Home
last modified time | relevance | path

Searched refs:SectionOffset (Results 1 – 20 of 20) sorted by relevance

/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPublicsStream.h22 struct SectionOffset;
40 FixedStreamArray<SectionOffset> getSectionOffsets() const { in getSectionOffsets()
49 FixedStreamArray<SectionOffset> SectionOffsets;
H A DRawTypes.h19 struct SectionOffset { struct
/src/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionWasm.h34 uint64_t SectionOffset = 0; variable
78 uint64_t getSectionOffset() const { return SectionOffset; } in getSectionOffset()
79 void setSectionOffset(uint64_t Offset) { SectionOffset = Offset; } in setSectionOffset()
/src/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.h45 uint64_t SectionOffset,
52 uint64_t SectionOffset, const RuntimeFunction &RF);
H A DWin64EHDumper.cpp360 uint64_t SectionOffset, in printRuntimeFunction() argument
363 printRuntimeFunctionEntry(Ctx, Section, SectionOffset, RF); in printRuntimeFunction()
367 resolveRelocation(Ctx, Section, SectionOffset + 8, XData, Offset); in printRuntimeFunction()
H A DCOFFDumper.cpp1184 size_t SectionOffset = Data.data() - SectionContents.data(); in printCodeViewSymbolSection() local
1185 size_t NextOffset = SectionOffset + SubSectionSize; in printCodeViewSymbolSection()
1226 SectionOffset, LinkageName)) in printCodeViewSymbolSection()
/src/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp701 uint64_t SectionOffset, in printRuntimeFunctionRels() argument
706 SectionOffset + in printRuntimeFunctionRels()
713 SectionOffset + in printRuntimeFunctionRels()
720 SectionOffset + in printRuntimeFunctionRels()
729 SectionOffset + in printRuntimeFunctionRels()
768 uint64_t SectionOffset = in printCOFFUnwindInfo() local
770 printRuntimeFunctionRels(Obj, RF, SectionOffset, Rels); in printCOFFUnwindInfo()
/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVLocation.h151 LVUnsigned SectionOffset, uint64_t LocDescOffset) {} in addObject() argument
179 void addObject(LVAddress LowPC, LVAddress HighPC, LVUnsigned SectionOffset,
H A DLVSymbol.h131 LVUnsigned SectionOffset, uint64_t LocDescOffset,
/src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSymbol.cpp66 LVAddress HighPC, LVUnsigned SectionOffset, in addLocation() argument
77 CurrentLocation->addObject(LowPC, HighPC, SectionOffset, LocDescOffset); in addLocation()
H A DLVLocation.cpp562 LVUnsigned SectionOffset, in addObject() argument
568 setOffset(LocDescOffset ? LocDescOffset : SectionOffset); in addObject()
/src/contrib/llvm-project/lld/ELF/
H A DWriter.cpp2588 struct SectionOffset { struct
2596 static void checkOverlap(StringRef name, std::vector<SectionOffset> &sections, in checkOverlap()
2598 llvm::sort(sections, [=](const SectionOffset &a, const SectionOffset &b) { in checkOverlap()
2605 SectionOffset a = sections[i - 1]; in checkOverlap()
2606 SectionOffset b = sections[i]; in checkOverlap()
2642 std::vector<SectionOffset> fileOffs; in checkSections()
2660 std::vector<SectionOffset> vmas; in checkSections()
2669 std::vector<SectionOffset> lmas; in checkSections()
/src/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp673 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { in verifyDebugInfoAttribute() local
680 if (*SectionOffset >= RangeSection.Data.size()) in verifyDebugInfoAttribute()
685 " bounds: " + llvm::formatv("{0:x8}", *SectionOffset)); in verifyDebugInfoAttribute()
693 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { in verifyDebugInfoAttribute() local
694 if (*SectionOffset >= U->getLineSection().Data.size()) in verifyDebugInfoAttribute()
697 llvm::formatv("{0:x8}", *SectionOffset)); in verifyDebugInfoAttribute()
/src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp688 size_t SectionOffset = Data.data() - SectionContents.data(); in traverseSymbolSection() local
689 size_t NextOffset = SectionOffset + SubSectionSize; in traverseSymbolSection()
723 SectionOffset, SymbolName)) in traverseSymbolSection()
/src/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp450 uint64_t SectionOffset = getSectionFileOffsetToRawData(DRI); in getSectionFileOffsetToRawData() local
453 uintptr_t SectionStart = reinterpret_cast<uintptr_t>(base() + SectionOffset); in getSectionFileOffsetToRawData()
483 Twine::utohexstr(SectionOffset) + " and size 0x" + in getSectionFileOffsetToRawData()
H A DWasmObjectFile.cpp1760 Segment.SectionOffset = Ctx.Ptr - Ctx.Start; in parseDataSection()
/src/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h122 uint32_t SectionOffset; member
/src/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h124 uint32_t SectionOffset; member
/src/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp464 IO.mapOptional("SectionOffset", Segment.SectionOffset); in mapping()
/src/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1679 for (const SectionOffset &SO : Publics.getSectionOffsets()) in dumpPublics()