Home
last modified time | relevance | path

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

/freebsd/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;
186 Error visit(const RelocationSection &Sec) override;
905 class RelocationSection
913 RelocationSection(const Object &O) : Obj(O) {} in RelocationSection() function
1227 MustBeRelocatable |= isa<RelocationSection>(*Ptr); in addSection()
H A DELFObject.cpp125 Error ELFSectionSizer<ELFT>::visit(RelocationSection &Sec) { in visit()
173 Error BinarySectionWriter::visit(const RelocationSection &Sec) { in visit()
902 Error RelocationSection::removeSectionReferences( in removeSectionReferences()
987 Error ELFSectionWriter<ELFT>::visit(const RelocationSection &Sec) { in visit()
1002 Error RelocationSection::accept(SectionVisitor &Visitor) const { in accept()
1006 Error RelocationSection::accept(MutableSectionVisitor &Visitor) { in accept()
1010 Error RelocationSection::removeSymbols( in removeSymbols()
1021 void RelocationSection::markSymbols() { in markSymbols()
1027 void RelocationSection::replaceSectionReferences( in replaceSectionReferences()
1658 static Error initRelocations(RelocationSection *Relocs, T RelRange) { in initRelocations()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h623 struct RelocationSection : Section { struct
627 RelocationSection() : Section(ChunkKind::Relocation) {} in RelocationSection() argument
/freebsd/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.h573 class RelocationSection final : public RelocationBaseSection {
578 RelocationSection(StringRef name, bool combreloc, unsigned concurrency);
H A DSyntheticSections.cpp1721 RelocationSection<ELFT>::RelocationSection(StringRef name, bool combreloc, in RelocationSection() function in RelocationSection
1730 template <class ELFT> void RelocationSection<ELFT>::writeTo(uint8_t *buf) { in writeTo()
4754 part.relaDyn = std::make_unique<RelocationSection<ELFT>>( in createSyntheticSections()
4878 in.relaPlt = std::make_unique<RelocationSection<ELFT>>( in createSyntheticSections()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp258 const ELFYAML::RelocationSection &Section,
866 } else if (auto S = dyn_cast<ELFYAML::RelocationSection>(Sec)) { in initSectionHeaders()
1275 Elf_Shdr &SHeader, const ELFYAML::RelocationSection &Section, in writeSectionContent()
H A DELFYAML.cpp1465 static void sectionMapping(IO &IO, ELFYAML::RelocationSection &Section) { in sectionMapping()
1628 Section.reset(new ELFYAML::RelocationSection()); in mapping()
1629 sectionMapping(IO, *cast<ELFYAML::RelocationSection>(Section.get())); in mapping()