Home
last modified time | relevance | path

Searched refs:FixupSection (Results 1 – 8 of 8) 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
125 if (FixupSection.getKind().isMetadata()) in getRelocType()
127 assert(FixupSection.isWasmData()); in getRelocType()
143 if (FixupSection.getKind().isMetadata()) in getRelocType()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h603 auto FixupSection = Obj.getSection(RelSect.sh_info); in forEachRelaRelocation() local
604 if (!FixupSection) in forEachRelaRelocation()
605 return FixupSection.takeError(); in forEachRelaRelocation()
608 Expected<StringRef> Name = Obj.getSectionName(**FixupSection); in forEachRelaRelocation()
618 if (excludeSection(**FixupSection)) { in forEachRelaRelocation()
636 if (Error Err = Func(R, **FixupSection, *BlockToFix)) in forEachRelaRelocation()
653 auto FixupSection = Obj.getSection(RelSect.sh_info); in forEachRelRelocation() local
654 if (!FixupSection) in forEachRelRelocation()
655 return FixupSection.takeError(); in forEachRelRelocation()
668 if (excludeSection(**FixupSection)) { in forEachRelRelocation()
[all …]
H A DELF_i386.cpp163 const typename ELFT::Shdr &FixupSection, in addSingleRelocation() argument
185 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
214 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.cpp102 const MCSectionWasm *FixupSection) in WasmRelocationEntry()
104 FixupSection(FixupSection) {} in WasmRelocationEntry()
111 << ", FixupSection=" << FixupSection->getName(); in print()
502 if (FixupSection.getKind().isText()) { in recordRelocation()
517 if (&SecB != &FixupSection) { in recordRelocation()
532 if (FixupSection.getName().starts_with(".init_array")) { in recordRelocation()
564 if (!FixupSection.getKind().isMetadata()) in recordRelocation()
628 if (FixupSection.isWasmData()) { in recordRelocation()
630 } else if (FixupSection.getKind().isText()) { in recordRelocation()
632 } else if (FixupSection.getKind().isMetadata()) { in recordRelocation()
[all …]
H A DELFObjectWriter.cpp1445 const MCSectionELF &FixupSection = cast<MCSectionELF>(*Fragment->getParent()); in recordRelocation() local
1461 if (&SecB != &FixupSection) { in recordRelocation()
1490 if (!checkRelocation(Ctx, Fixup.getLoc(), &FixupSection, SecA)) in recordRelocation()
1515 Relocations[&FixupSection].push_back(Rec); in recordRelocation()
1530 Relocations[&FixupSection].push_back(Rec); in recordRelocation()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCWasmObjectWriter.h38 const MCSectionWasm &FixupSection,