Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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;
779 class RelocationSection
787 RelocationSection(const Object &O) : Obj(O) {} in RelocationSection() function
1093 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()
867 Error RelocationSection::removeSectionReferences( in removeSectionReferences()
952 Error ELFSectionWriter<ELFT>::visit(const RelocationSection &Sec) { in visit()
963 Error RelocationSection::accept(SectionVisitor &Visitor) const { in accept()
967 Error RelocationSection::accept(MutableSectionVisitor &Visitor) { in accept()
971 Error RelocationSection::removeSymbols( in removeSymbols()
982 void RelocationSection::markSymbols() { in markSymbols()
988 void RelocationSection::replaceSectionReferences( in replaceSectionReferences()
1612 static Error initRelocations(RelocationSection *Relocs, T RelRange) { in initRelocations()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Delf2yaml.cpp67 ELFYAML::RelocationSection &S);
80 Expected<ELFYAML::RelocationSection *> dumpRelocSection(const Elf_Shdr *Shdr);
821 const Elf_Shdr *Shdr, ELFYAML::RelocationSection &S) { in dumpCommonRelocationSection()
1096 Expected<ELFYAML::RelocationSection *>
1098 auto S = std::make_unique<ELFYAML::RelocationSection>(); in dumpRelocSection()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h597 struct RelocationSection : Section { struct
601 RelocationSection() : Section(ChunkKind::Relocation) {} in RelocationSection() argument
/openbsd-src/gnu/llvm/lld/ELF/
H A DSyntheticSections.cpp1676 RelocationSection<ELFT>::RelocationSection(StringRef name, bool combreloc, in RelocationSection() function in RelocationSection
1685 template <class ELFT> void RelocationSection<ELFT>::writeTo(uint8_t *buf) { in writeTo()
3928 template class elf::RelocationSection<ELF32LE>; member in elf
3929 template class elf::RelocationSection<ELF32BE>; member in elf
3930 template class elf::RelocationSection<ELF64LE>; member in elf
3931 template class elf::RelocationSection<ELF64BE>; member in elf
H A DSyntheticSections.h564 class RelocationSection final : public RelocationBaseSection {
569 RelocationSection(StringRef name, bool combreloc, unsigned concurrency);
H A DWriter.cpp358 part.relaDyn = std::make_unique<RelocationSection<ELFT>>( in createSyntheticSections()
471 in.relaPlt = std::make_unique<RelocationSection<ELFT>>( in createSyntheticSections()
482 in.relaIplt = std::make_unique<RelocationSection<ELFT>>( in createSyntheticSections()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1430 static void sectionMapping(IO &IO, ELFYAML::RelocationSection &Section) { in sectionMapping()
1592 Section.reset(new ELFYAML::RelocationSection()); in mapping()
1593 sectionMapping(IO, *cast<ELFYAML::RelocationSection>(Section.get())); in mapping()
H A DELFEmitter.cpp251 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()