Home
last modified time | relevance | path

Searched refs:Sect (Results 1 – 16 of 16) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Object/
DMachOObjectFile.cpp349 InMemoryStruct<macho::Section64> Sect; in getSectionName() local
350 MachOObj->ReadSection64(LCI, DRI.d.b, Sect); in getSectionName()
352 strcpy(result, Sect->SegmentName); in getSectionName()
354 strcat(result, Sect->Name); in getSectionName()
359 InMemoryStruct<macho::Section> Sect; in getSectionName() local
360 MachOObj->ReadSection(LCI, DRI.d.b, Sect); in getSectionName()
362 strcpy(result, Sect->SegmentName); in getSectionName()
364 strcat(result, Sect->Name); in getSectionName()
373 InMemoryStruct<macho::Section64> Sect; in getSectionAddress() local
374 getSection64(DRI, Sect); in getSectionAddress()
[all …]
/external/swiftshader/third_party/LLVM/tools/macho-dump/
Dmacho-dump.cpp143 InMemoryStruct<macho::Section> Sect; in DumpSegmentCommand() local
144 Obj.ReadSection(LCI, i, Sect); in DumpSegmentCommand()
150 if ((Res = DumpSectionData(Obj, i, StringRef(Sect->Name, 16), in DumpSegmentCommand()
151 StringRef(Sect->SegmentName, 16), Sect->Address, in DumpSegmentCommand()
152 Sect->Size, Sect->Offset, Sect->Align, in DumpSegmentCommand()
153 Sect->RelocationTableOffset, in DumpSegmentCommand()
154 Sect->NumRelocationTableEntries, Sect->Flags, in DumpSegmentCommand()
155 Sect->Reserved1, Sect->Reserved2))) in DumpSegmentCommand()
179 InMemoryStruct<macho::Section64> Sect; in DumpSegment64Command() local
180 Obj.ReadSection64(LCI, i, Sect); in DumpSegment64Command()
[all …]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.cpp144 InMemoryStruct<macho::Section> Sect; in loadSegment32() local
145 Obj->ReadSection(*SegmentLCI, SectNum, Sect); in loadSegment32()
146 if (!Sect) in loadSegment32()
150 if (Sect->Flags != 0x80000400) in loadSegment32()
186 (Sect->Address + STE->Value) << "\n"); in loadSegment32()
199 uint64_t StartOffset = Sect->Address + Symbols[i].first; in loadSegment32()
208 uint64_t EndOffset = Sect->Size - 1; in loadSegment32()
215 for (unsigned j = 0; j != Sect->NumRelocationTableEntries; ++j) { in loadSegment32()
217 Obj->ReadRelocationEntry(Sect->RelocationTableOffset, j, RE); in loadSegment32()
283 InMemoryStruct<macho::Section64> Sect; in loadSegment64() local
[all …]
/external/llvm/tools/llvm-readobj/
DMachODumper.cpp308 MachO::section Sect = Obj->getSection(Sec); in getSection() local
309 Section.Address = Sect.addr; in getSection()
310 Section.Size = Sect.size; in getSection()
311 Section.Offset = Sect.offset; in getSection()
312 Section.Alignment = Sect.align; in getSection()
313 Section.RelocationTableOffset = Sect.reloff; in getSection()
314 Section.NumRelocationTableEntries = Sect.nreloc; in getSection()
315 Section.Flags = Sect.flags; in getSection()
316 Section.Reserved1 = Sect.reserved1; in getSection()
317 Section.Reserved2 = Sect.reserved2; in getSection()
[all …]
/external/compiler-rt/lib/profile/
DInstrProfilingPort.h37 #define COMPILER_RT_SECTION(Sect) __declspec(allocate(Sect)) argument
39 #define COMPILER_RT_SECTION(Sect) __attribute__((section(Sect))) argument
DInstrProfData.inc638 #define INSTR_PROF_SECT_START(Sect) \
639 INSTR_PROF_CONCAT(__start_,Sect)
640 #define INSTR_PROF_SECT_STOP(Sect) \
641 INSTR_PROF_CONCAT(__stop_,Sect)
/external/llvm/lib/Object/
DMachOObjectFile.cpp164 MachO::section_64 Sect = O->getSection64(Sec); in getSectionFlags() local
165 return Sect.flags; in getSectionFlags()
167 MachO::section Sect = O->getSection(Sec); in getSectionFlags() local
168 return Sect.flags; in getSectionFlags()
623 MachO::section_64 Sect = getSection64(Sec); in getSectionSize() local
624 SectOffset = Sect.offset; in getSectionSize()
625 SectSize = Sect.size; in getSectionSize()
626 SectType = Sect.flags & MachO::SECTION_TYPE; in getSectionSize()
628 MachO::section Sect = getSection(Sec); in getSectionSize() local
629 SectOffset = Sect.offset; in getSectionSize()
[all …]
DObject.cpp102 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, in LLVMMoveToContainingSection() argument
112 *unwrap(Sect) = *SecOrErr; in LLVMMoveToContainingSection()
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
DMachODump.cpp105 static Section copySection(const T &Sect) { in copySection() argument
107 memcpy(S.Name, Sect->Name, 16); in copySection()
108 S.Address = Sect->Address; in copySection()
109 S.Size = Sect->Size; in copySection()
110 S.Offset = Sect->Offset; in copySection()
111 S.NumRelocs = Sect->NumRelocationTableEntries; in copySection()
112 S.RelocTableOffset = Sect->RelocationTableOffset; in copySection()
229 InMemoryStruct<macho::Section> Sect; in getSectionsAndSymbols() local
230 MachOObj->ReadSection(LCI, SectNum, Sect); in getSectionsAndSymbols()
231 Sections.push_back(copySection(Sect)); in getSectionsAndSymbols()
/external/llvm/tools/dsymutil/
DMachOUtils.cpp259 auto Sect = getSection(Obj, Segment, LCI, i); in transferSegmentAndSections() local
260 Sect.offset = Sect.reloff = Sect.nreloc = 0; in transferSegmentAndSections()
262 MachO::swapStruct(Sect); in transferSegmentAndSections()
263 Writer.writeBytes(StringRef(reinterpret_cast<char *>(&Sect), sizeof(Sect))); in transferSegmentAndSections()
/external/llvm/include/llvm-c/
DObject.h52 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
/external/wpa_supplicant_8/wpa_supplicant/
Dtodo.txt19 * OTP Extended Responses (Sect. 5.5)
22 RFC 3748 Sect. 4.2
/external/llvm/include/llvm/ProfileData/
DInstrProfData.inc638 #define INSTR_PROF_SECT_START(Sect) \
639 INSTR_PROF_CONCAT(__start_,Sect)
640 #define INSTR_PROF_SECT_STOP(Sect) \
641 INSTR_PROF_CONCAT(__stop_,Sect)
/external/abi-dumper/
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/lib/MC/
DMCMachOStreamer.cpp72 void ChangeSection(MCSection *Sect, const MCExpr *Subsect) override;
/external/llvm/tools/llvm-objdump/
DMachODump.cpp883 auto Sect = std::find_if(LiteralSections.begin(), LiteralSections.end(), in DumpLiteralPointerSection() local
888 if (Sect == LiteralSections.end()) { in DumpLiteralPointerSection()
893 uint64_t SectAddress = Sect->getAddress(); in DumpLiteralPointerSection()
894 uint64_t SectSize = Sect->getSize(); in DumpLiteralPointerSection()
897 Sect->getName(SectName); in DumpLiteralPointerSection()
898 DataRefImpl Ref = Sect->getRawDataRefImpl(); in DumpLiteralPointerSection()
912 Sect->getContents(BytesStr); in DumpLiteralPointerSection()