| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldCOFF.cpp | 97 auto EntryOffset = alignTo(Sec.getStubOffset(), PointerSize); in getDLLImportOffset() local 98 Sec.advanceStubOffset(EntryOffset + PointerSize - Sec.getStubOffset()); in getDLLImportOffset() 99 Stubs[Reloc] = EntryOffset; in getDLLImportOffset() 101 RelocationEntry RE(SectionID, EntryOffset, PointerReloc, 0, false, in getDLLImportOffset() 111 EntryOffset, Sec.getLoadAddress() + EntryOffset) in getDLLImportOffset() 114 return EntryOffset; in getDLLImportOffset()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DebugLocStream.h | 36 size_t EntryOffset; member 37 List(DwarfCompileUnit *CU, size_t EntryOffset) in List() 38 : CU(CU), EntryOffset(EntryOffset) {} in List() 113 .slice(Lists[LI].EntryOffset, getNumEntries(LI)); in getEntries() 140 return Entries.size() - Lists[LI].EntryOffset; in getNumEntries() 141 return Lists[LI + 1].EntryOffset - Lists[LI].EntryOffset; in getNumEntries()
|
| H A D | DebugLocStream.cpp | 16 if (Lists.back().EntryOffset == Entries.size()) { in finalizeList() 36 assert(Lists.back().EntryOffset <= Entries.size() && in finalizeEntry()
|
| /llvm-project-15.0.7/bolt/lib/Core/ |
| H A D | JumpTable.cpp | 87 uint64_t EntryOffset = BaseOffset; in updateOriginal() local 92 Type == JTT_NORMAL ? 0 : EntryOffset - BaseOffset; in updateOriginal() 96 getOutputSection().removeRelocationAt(EntryOffset); in updateOriginal() 97 getOutputSection().addRelocation(EntryOffset, Entry, RelType, RelAddend); in updateOriginal() 98 EntryOffset += EntrySize; in updateOriginal()
|
| H A D | DebugData.cpp | 145 const uint64_t EntryOffset = addRanges(Ranges); in addRanges() local 146 CachedRanges.emplace(std::move(Ranges), EntryOffset); in addRanges() 148 return EntryOffset; in addRanges() 159 const uint32_t EntryOffset = SectionOffset; in addRanges() local 162 return EntryOffset; in addRanges() 521 const uint32_t EntryOffset = LocSectionOffset; in addList() local 536 LocListDebugInfoPatches.push_back({AttrOffset, EntryOffset}); in addList() 537 DebugInfoPatcher.addLE32Patch(AttrOffset, EntryOffset); in addList() 571 const uint32_t EntryOffset = LocBuffer.size(); in writeLegacyLocList() local 590 DebugInfoPatcher.addLE32Patch(AttrOffset, EntryOffset); in writeLegacyLocList()
|
| H A D | BinaryFunction.cpp | 1699 uint64_t EntryOffset = JTAddress - JT->getAddress(); in postProcessJumpTables() local 1700 while (EntryOffset < JT->getSize()) { in postProcessJumpTables() 1701 uint64_t EntryAddress = JT->EntriesAsAddress[EntryOffset / JT->EntrySize]; in postProcessJumpTables() 1710 EntryOffset += JT->EntrySize; in postProcessJumpTables() 1713 if (JT->Labels.count(EntryOffset)) in postProcessJumpTables()
|
| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | OffloadEmitter.cpp | 56 if (Doc.EntryOffset) in yaml2offload() 57 TheHeader->EntryOffset = *Doc.EntryOffset; in yaml2offload()
|
| H A D | OffloadYAML.cpp | 53 IO.mapOptional("EntryOffset", O.EntryOffset); in mapping()
|
| /llvm-project-15.0.7/llvm/lib/Object/ |
| H A D | OffloadBinary.cpp | 40 TheHeader->EntryOffset > TheHeader->Size - sizeof(Entry) || in create() 45 reinterpret_cast<const Entry *>(&Start[TheHeader->EntryOffset]); in create() 79 TheHeader.EntryOffset = sizeof(Header); in write()
|
| H A D | COFFObjectFile.cpp | 1874 ptrdiff_t EntryOffset = EntryPtr - BBS.data().data(); in getContents() local 1875 coff_relocation RelocTarget{ulittle32_t(EntryOffset), ulittle32_t(0), in getContents()
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFAcceleratorTable.h | 361 uint64_t EntryOffset; variable 365 uint64_t StringOffset, uint64_t EntryOffset) in NameTableEntry() argument 367 EntryOffset(EntryOffset) {} in NameTableEntry() 383 uint64_t getEntryOffset() const { return EntryOffset; } in getEntryOffset()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugArangeSet.cpp | 138 uint64_t EntryOffset = *offset_ptr; in extract() local 151 Offset, EntryOffset)); in extract()
|
| H A D | DWARFAcceleratorTable.cpp | 647 uint64_t EntryOffset = AS.getUnsigned(&EntryOffsetOffset, SectionOffsetSize); in getNameTableEntry() local 648 EntryOffset += EntriesBase; in getNameTableEntry() 649 return {Section.StringSection, Index, StringOffset, EntryOffset}; in getNameTableEntry() 694 uint64_t EntryOffset = NTE.getEntryOffset(); in dumpName() local 695 while (dumpEntry(W, &EntryOffset)) in dumpName()
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/Offloading/Inputs/ |
| H A D | malformed.yaml | 2 EntryOffset: 999999999
|
| /llvm-project-15.0.7/llvm/test/ObjectYAML/Offload/ |
| H A D | malformed-offset.yaml | 3 EntryOffset: 999999999
|
| /llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/ |
| H A D | OffloadYAML.h | 42 Optional<uint64_t> EntryOffset; member
|
| /llvm-project-15.0.7/llvm/include/llvm/Object/ |
| H A D | OffloadBinary.h | 110 uint64_t EntryOffset; // Offset of the metadata entry in bytes. member
|
| /llvm-project-15.0.7/bolt/lib/Rewrite/ |
| H A D | RewriteInstance.cpp | 1231 const auto EntryOffset = ISym->Address - BF->getAddress(); in discoverFileObjects() local 1233 BF->markCodeAtOffset(EntryOffset); in discoverFileObjects() 1237 BF->markDataAtOffset(EntryOffset); in discoverFileObjects() 1310 uint64_t EntryOffset = InstrOffset; in disassemblePLTSectionAArch64() local 1323 const uint64_t EntryAddress = SectionAddress + EntryOffset; in disassemblePLTSectionAArch64() 1366 for (uint64_t EntryOffset = 0; EntryOffset + EntrySize <= SectionSize; in disassemblePLTSectionX86() local 1367 EntryOffset += EntrySize) { in disassemblePLTSectionX86() 1369 uint64_t InstrSize, InstrOffset = EntryOffset; in disassemblePLTSectionX86() 1370 while (InstrOffset < EntryOffset + EntrySize) { in disassemblePLTSectionX86() 1383 if (InstrOffset + InstrSize > EntryOffset + EntrySize) in disassemblePLTSectionX86() [all …]
|
| /llvm-project-15.0.7/llvm/lib/DWARFLinker/ |
| H A D | DWARFLinker.cpp | 1897 uint64_t EntryOffset = InputOffset; in patchFrameInfoForObject() local 1905 StringRef CIEData = FrameData.substr(EntryOffset, InitialLength + 4); in patchFrameInfoForObject() 1906 LocalCIES[EntryOffset] = CIEData; in patchFrameInfoForObject() 1922 InputOffset = EntryOffset + InitialLength + 4; in patchFrameInfoForObject()
|