Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.h39 class RelocationSection; variable
81 virtual Error visit(const RelocationSection &Sec) = 0;
98 virtual Error visit(RelocationSection &Sec) = 0;
119 virtual 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;
769 class RelocationSection
1085 MustBeRelocatable |= isa<RelocationSection>(*Ptr); in addSection()
H A DObject.cpp110 Error ELFSectionSizer<ELFT>::visit(RelocationSection &Sec) { in visit()
154 Error BinarySectionWriter::visit(const RelocationSection &Sec) { in visit()
896 Error RelocationSection::removeSectionReferences( in removeSectionReferences()
990 Error RelocationSection::accept(SectionVisitor &Visitor) const { in accept()
994 Error RelocationSection::accept(MutableSectionVisitor &Visitor) { in accept()
998 Error RelocationSection::removeSymbols( in removeSymbols()
1009 void RelocationSection::markSymbols() { in markSymbols()
1015 void RelocationSection::replaceSectionReferences( in replaceSectionReferences()
1628 static Error initRelocations(RelocationSection *Relocs, in initRelocations()
1687 return Obj.addSection<RelocationSection>(); in makeSection()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h593 struct RelocationSection : Section { struct
597 RelocationSection() : Section(ChunkKind::Relocation) {} in RelocationSection() argument
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp1697 RelocationSection<ELFT>::RelocationSection(StringRef name, bool sort) in RelocationSection() function in RelocationSection
1705 template <class ELFT> void RelocationSection<ELFT>::writeTo(uint8_t *buf) { in writeTo()
3900 template class elf::RelocationSection<ELF32LE>; member in elf
3901 template class elf::RelocationSection<ELF32BE>; member in elf
3902 template class elf::RelocationSection<ELF64LE>; member in elf
3903 template class elf::RelocationSection<ELF64BE>; member in elf
H A DSyntheticSections.h560 class RelocationSection final : public RelocationBaseSection {
565 RelocationSection(StringRef name, bool sort);
H A DWriter.cpp427 make<RelocationSection<ELFT>>(relaDynName, config->zCombreloc); in createSyntheticSections()
535 in.relaPlt = make<RelocationSection<ELFT>>( in createSyntheticSections()
545 in.relaIplt = make<RelocationSection<ELFT>>( in createSyntheticSections()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1343 static void sectionMapping(IO &IO, ELFYAML::RelocationSection &Section) { in sectionMapping()
1505 Section.reset(new ELFYAML::RelocationSection()); in mapping()
1506 sectionMapping(IO, *cast<ELFYAML::RelocationSection>(Section.get())); in mapping()
H A DELFEmitter.cpp250 const ELFYAML::RelocationSection &Section,
859 } else if (auto S = dyn_cast<ELFYAML::RelocationSection>(Sec)) { in initSectionHeaders()
1268 Elf_Shdr &SHeader, const ELFYAML::RelocationSection &Section, in writeSectionContent()