Home
last modified time | relevance | path

Searched refs:FixupSection (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyWasmObjectWriter.cpp38 const MCSectionWasm &FixupSection,
68 const MCSectionWasm &FixupSection, bool IsLocRel) const { in getRelocType() argument
123 if (FixupSection.isMetadata()) in getRelocType()
125 assert(FixupSection.isWasmData()); in getRelocType()
141 if (FixupSection.isMetadata()) in getRelocType()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h604 auto FixupSection = Obj.getSection(RelSect.sh_info); in forEachRelaRelocation() local
605 if (!FixupSection) in forEachRelaRelocation()
606 return FixupSection.takeError(); in forEachRelaRelocation()
609 Expected<StringRef> Name = Obj.getSectionName(**FixupSection); in forEachRelaRelocation()
619 if (excludeSection(**FixupSection)) { in forEachRelaRelocation()
637 if (Error Err = Func(R, **FixupSection, *BlockToFix)) in forEachRelaRelocation()
654 auto FixupSection = Obj.getSection(RelSect.sh_info); in forEachRelRelocation() local
655 if (!FixupSection) in forEachRelRelocation()
656 return FixupSection.takeError(); in forEachRelRelocation()
659 Expected<StringRef> Name = Obj.getSectionName(**FixupSection); in forEachRelRelocation()
[all …]
H A DELF_x86.cpp166 const typename ELFT::Shdr &FixupSection, in addSingleRelocation() argument
194 auto FixupAddress = orc::ExecutorAddr(FixupSection.sh_addr) + Rel.r_offset; in addSingleRelocation()
H A DELF_x86_64.cpp127 const typename ELFT::Shdr &FixupSection, in addSingleRelocation() argument
226 auto FixupAddress = orc::ExecutorAddr(FixupSection.sh_addr) + Rel.r_offset; in addSingleRelocation()
H A DELF_ppc64.cpp226 const typename ELFT::Shdr &FixupSection, in addSingleRelocation() argument
266 orc::ExecutorAddr(FixupSection.sh_addr) + Rel.r_offset; in addSingleRelocation()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp96 const MCSectionWasm *FixupSection; // The section the relocation is targeting. member
100 const MCSectionWasm *FixupSection) in WasmRelocationEntry()
102 FixupSection(FixupSection) {} in WasmRelocationEntry()
109 << ", FixupSection=" << FixupSection->getName(); in print()
483 const auto &FixupSection = cast<MCSectionWasm>(*F.getParent()); in recordRelocation() local
492 if (FixupSection.isText()) { in recordRelocation()
507 if (&SecB != &FixupSection) { in recordRelocation()
521 if (FixupSection.getName().starts_with(".init_array")) { in recordRelocation()
532 TargetObjectWriter->getRelocType(Target, Fixup, FixupSection, IsLocRel); in recordRelocation()
546 if (!FixupSection.isMetadata()) in recordRelocation()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCWasmObjectWriter.h38 const MCSectionWasm &FixupSection,