Home
last modified time | relevance | path

Searched refs:RelocationSection (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h39 class RelocationSection; variable
81 virtual Error visit(const RelocationSection &Sec) = 0;
98 virtual Error visit(RelocationSection &Sec) = 0;
119 Error visit(const RelocationSection &Sec) override = 0;
139 Error visit(const RelocationSection &Sec) override;
163 Error visit(RelocationSection &Sec) override;
183 Error visit(const RelocationSection &Sec) override;
788 class RelocationSection
796 RelocationSection(const Object &O) : Obj(O) {} in RelocationSection() function
1102 MustBeRelocatable |= isa<RelocationSection>(*Ptr); in addSection()
H A DELFObject.cpp110 Error ELFSectionSizer<ELFT>::visit(RelocationSection &Sec) { in visit()
154 Error BinarySectionWriter::visit(const RelocationSection &Sec) { in visit()
880 Error RelocationSection::removeSectionReferences( in removeSectionReferences()
965 Error ELFSectionWriter<ELFT>::visit(const RelocationSection &Sec) { in visit()
976 Error RelocationSection::accept(SectionVisitor &Visitor) const { in accept()
980 Error RelocationSection::accept(MutableSectionVisitor &Visitor) { in accept()
984 Error RelocationSection::removeSymbols( in removeSymbols()
995 void RelocationSection::markSymbols() { in markSymbols()
1001 void RelocationSection::replaceSectionReferences( in replaceSectionReferences()
1686 return Obj.addSection<RelocationSection>(Obj); in makeSection()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h611 struct RelocationSection : Section { struct
615 RelocationSection() : Section(ChunkKind::Relocation) {} in RelocationSection() argument
/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp1703 RelocationSection<ELFT>::RelocationSection(StringRef name, bool combreloc, in RelocationSection() function in RelocationSection
1712 template <class ELFT> void RelocationSection<ELFT>::writeTo(uint8_t *buf) { in writeTo()
4030 template class elf::RelocationSection<ELF32LE>; member in elf
4031 template class elf::RelocationSection<ELF32BE>; member in elf
4032 template class elf::RelocationSection<ELF64LE>; member in elf
4033 template class elf::RelocationSection<ELF64BE>; member in elf
H A DSyntheticSections.h566 class RelocationSection final : public RelocationBaseSection {
571 RelocationSection(StringRef name, bool combreloc, unsigned concurrency);
H A DWriter.cpp423 part.relaDyn = std::make_unique<RelocationSection<ELFT>>( in createSyntheticSections()
548 in.relaPlt = std::make_unique<RelocationSection<ELFT>>( in createSyntheticSections()
559 in.relaIplt = std::make_unique<RelocationSection<ELFT>>( in createSyntheticSections()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp252 const ELFYAML::RelocationSection &Section,
860 } else if (auto S = dyn_cast<ELFYAML::RelocationSection>(Sec)) { in initSectionHeaders()
1269 Elf_Shdr &SHeader, const ELFYAML::RelocationSection &Section, in writeSectionContent()
H A DELFYAML.cpp1447 static void sectionMapping(IO &IO, ELFYAML::RelocationSection &Section) { in sectionMapping()
1609 Section.reset(new ELFYAML::RelocationSection()); in mapping()
1610 sectionMapping(IO, *cast<ELFYAML::RelocationSection>(Section.get())); in mapping()