Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionWasm.h34 uint64_t SectionOffset = 0; variable
75 uint64_t getSectionOffset() const { return SectionOffset; } in getSectionOffset()
76 void setSectionOffset(uint64_t Offset) { SectionOffset = Offset; } in setSectionOffset()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPublicsStream.h43 FixedStreamArray<SectionOffset> getSectionOffsets() const { in getSectionOffsets()
52 FixedStreamArray<SectionOffset> SectionOffsets;
H A DRawTypes.h19 struct SectionOffset { struct
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWin64EHDumper.h45 uint64_t SectionOffset,
52 uint64_t SectionOffset, const RuntimeFunction &RF);
H A DWin64EHDumper.cpp321 uint64_t SectionOffset, in printRuntimeFunction() argument
324 printRuntimeFunctionEntry(Ctx, Section, SectionOffset, RF); in printRuntimeFunction()
328 resolveRelocation(Ctx, Section, SectionOffset + 8, XData, Offset); in printRuntimeFunction()
H A DCOFFDumper.cpp1036 size_t SectionOffset = Data.data() - SectionContents.data(); in printCodeViewSymbolSection() local
1037 size_t NextOffset = SectionOffset + SubSectionSize; in printCodeViewSymbolSection()
1078 SectionOffset, LinkageName)) in printCodeViewSymbolSection()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp555 uint64_t SectionOffset, in printRuntimeFunctionRels() argument
560 SectionOffset + in printRuntimeFunctionRels()
567 SectionOffset + in printRuntimeFunctionRels()
574 SectionOffset + in printRuntimeFunctionRels()
583 SectionOffset + in printRuntimeFunctionRels()
622 uint64_t SectionOffset = in printCOFFUnwindInfo() local
624 printRuntimeFunctionRels(Obj, RF, SectionOffset, Rels); in printCOFFUnwindInfo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp478 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { in verifyDebugInfoAttribute() local
483 if (*SectionOffset >= RangeSection.Data.size()) in verifyDebugInfoAttribute()
487 " bounds: " + llvm::formatv("{0:x8}", *SectionOffset)); in verifyDebugInfoAttribute()
494 if (auto SectionOffset = AttrValue.Value.getAsSectionOffset()) { in verifyDebugInfoAttribute() local
495 if (*SectionOffset >= DObj.getLineSection().Data.size()) in verifyDebugInfoAttribute()
497 llvm::formatv("{0:x8}", *SectionOffset)); in verifyDebugInfoAttribute()
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DWriter.cpp2741 struct SectionOffset { struct
2749 static void checkOverlap(StringRef name, std::vector<SectionOffset> &sections, in checkOverlap()
2751 llvm::sort(sections, [=](const SectionOffset &a, const SectionOffset &b) { in checkOverlap()
2758 SectionOffset a = sections[i - 1]; in checkOverlap()
2759 SectionOffset b = sections[i]; in checkOverlap()
2795 std::vector<SectionOffset> fileOffs; in checkSections()
2813 std::vector<SectionOffset> vmas; in checkSections()
2822 std::vector<SectionOffset> lmas; in checkSections()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasm.h118 uint32_t SectionOffset; member
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h120 uint32_t SectionOffset; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp457 IO.mapOptional("SectionOffset", Segment.SectionOffset); in mapping()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1774 for (const SectionOffset &SO : Publics.getSectionOffsets()) in dumpPublics()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp1441 Segment.SectionOffset = Ctx.Ptr - Ctx.Start; in parseDataSection()