Searched refs:Sect (Results 1 - 13 of 13) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Object/
H A DMachOObjectFile.cpp349 InMemoryStruct<macho::Section64> Sect; local
350 MachOObj->ReadSection64(LCI, DRI.d.b, Sect);
352 strcpy(result, Sect->SegmentName);
354 strcat(result, Sect->Name);
359 InMemoryStruct<macho::Section> Sect; local
360 MachOObj->ReadSection(LCI, DRI.d.b, Sect);
362 strcpy(result, Sect->SegmentName);
364 strcat(result, Sect->Name);
373 InMemoryStruct<macho::Section64> Sect; local
374 getSection64(DRI, Sect);
377 InMemoryStruct<macho::Section> Sect; local
387 InMemoryStruct<macho::Section64> Sect; local
391 InMemoryStruct<macho::Section> Sect; local
401 InMemoryStruct<macho::Section64> Sect; local
405 InMemoryStruct<macho::Section> Sect; local
415 InMemoryStruct<macho::Section64> Sect; local
419 InMemoryStruct<macho::Section> Sect; local
429 InMemoryStruct<macho::Section64> Sect; local
433 InMemoryStruct<macho::Section> Sect; local
493 InMemoryStruct<macho::Section64> Sect; local
497 InMemoryStruct<macho::Section> Sect; local
528 InMemoryStruct<macho::Section64> Sect; local
532 InMemoryStruct<macho::Section> Sect; local
548 InMemoryStruct<macho::Section64> Sect; local
552 InMemoryStruct<macho::Section> Sect; local
602 InMemoryStruct<macho::Section64> Sect; local
606 InMemoryStruct<macho::Section> Sect; local
[all...]
/external/swiftshader/third_party/LLVM/tools/macho-dump/
H A Dmacho-dump.cpp143 InMemoryStruct<macho::Section> Sect; local
144 Obj.ReadSection(LCI, i, Sect);
150 if ((Res = DumpSectionData(Obj, i, StringRef(Sect->Name, 16),
151 StringRef(Sect->SegmentName, 16), Sect->Address,
152 Sect->Size, Sect->Offset, Sect->Align,
153 Sect->RelocationTableOffset,
154 Sect
179 InMemoryStruct<macho::Section64> Sect; local
[all...]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp144 InMemoryStruct<macho::Section> Sect; local
145 Obj->ReadSection(*SegmentLCI, SectNum, Sect);
146 if (!Sect)
150 if (Sect->Flags != 0x80000400)
186 (Sect->Address + STE->Value) << "\n");
199 uint64_t StartOffset = Sect->Address + Symbols[i].first;
208 uint64_t EndOffset = Sect->Size - 1;
215 for (unsigned j = 0; j != Sect->NumRelocationTableEntries; ++j) {
217 Obj->ReadRelocationEntry(Sect->RelocationTableOffset, j, RE);
283 InMemoryStruct<macho::Section64> Sect; local
[all...]
/external/compiler-rt/lib/profile/
H A DInstrProfilingPort.h37 #define COMPILER_RT_SECTION(Sect) __declspec(allocate(Sect))
39 #define COMPILER_RT_SECTION(Sect) __attribute__((section(Sect)))
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp308 MachO::section Sect = Obj->getSection(Sec); local
309 Section.Address = Sect.addr;
310 Section.Size = Sect.size;
311 Section.Offset = Sect.offset;
312 Section.Alignment = Sect.align;
313 Section.RelocationTableOffset = Sect.reloff;
314 Section.NumRelocationTableEntries = Sect.nreloc;
315 Section.Flags = Sect.flags;
316 Section.Reserved1 = Sect.reserved1;
317 Section.Reserved2 = Sect
320 MachO::section_64 Sect = Obj->getSection64(Sec); local
[all...]
/external/llvm/include/llvm-c/
H A DObject.h52 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp164 MachO::section_64 Sect = O->getSection64(Sec); local
165 return Sect.flags;
167 MachO::section Sect = O->getSection(Sec); local
168 return Sect.flags;
623 MachO::section_64 Sect = getSection64(Sec); local
624 SectOffset = Sect.offset;
625 SectSize = Sect.size;
626 SectType = Sect.flags & MachO::SECTION_TYPE;
628 MachO::section Sect = getSection(Sec); local
629 SectOffset = Sect
649 MachO::section_64 Sect = getSection64(Sec); local
653 MachO::section Sect = getSection(Sec); local
665 MachO::section_64 Sect = getSection64(Sec); local
668 MachO::section Sect = getSection(Sec); local
728 MachO::section_64 Sect = getSection64(Sec); local
731 MachO::section Sect = getSection(Sec); local
2206 MachO::section_64 Sect = getSection64(Sec); local
2209 MachO::section Sect = getSection(Sec); local
[all...]
H A DObject.cpp102 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, argument
112 *unwrap(Sect) = *SecOrErr;
/external/llvm/tools/dsymutil/
H A DMachOUtils.cpp259 auto Sect = getSection(Obj, Segment, LCI, i); local
260 Sect.offset = Sect.reloff = Sect.nreloc = 0;
262 MachO::swapStruct(Sect);
263 Writer.writeBytes(StringRef(reinterpret_cast<char *>(&Sect), sizeof(Sect)));
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
H A DMachODump.cpp105 static Section copySection(const T &Sect) { argument
107 memcpy(S.Name, Sect->Name, 16);
108 S.Address = Sect->Address;
109 S.Size = Sect->Size;
110 S.Offset = Sect->Offset;
111 S.NumRelocs = Sect->NumRelocationTableEntries;
112 S.RelocTableOffset = Sect->RelocationTableOffset;
229 InMemoryStruct<macho::Section> Sect; local
230 MachOObj->ReadSection(LCI, SectNum, Sect);
231 Sections.push_back(copySection(Sect));
[all...]
/external/llvm/lib/MC/
H A DMCMachOStreamer.cpp72 void ChangeSection(MCSection *Sect, const MCExpr *Subsect) override;
/external/abi-dumper/
H A Dabi-dumper.pl1001 my $Sect = `$READELF_L --wide -S \"$Path\" 2>\"$TMP_DIR/error\"`;
1003 if($Sect!~/\.z?debug_info/)
1058 if($Sect=~/\.gnu_debugaltlink/)
3821 my ($Addr, $Sect) = ("", "");
3832 $Sect = $1;
3837 foreach ($Sect, "")
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp883 auto Sect = std::find_if(LiteralSections.begin(), LiteralSections.end(), local
888 if (Sect == LiteralSections.end()) {
893 uint64_t SectAddress = Sect->getAddress();
894 uint64_t SectSize = Sect->getSize();
897 Sect->getName(SectName);
898 DataRefImpl Ref = Sect->getRawDataRefImpl();
912 Sect->getContents(BytesStr);

Completed in 436 milliseconds