Home
last modified time | relevance | path

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

/external/llvm/tools/obj2yaml/
Delf2yaml.cpp35 ELFYAML::RelocationSection &S);
40 ErrorOr<ELFYAML::RelocationSection *> dumpRelSection(const Elf_Shdr *Shdr);
41 ErrorOr<ELFYAML::RelocationSection *> dumpRelaSection(const Elf_Shdr *Shdr);
96 ErrorOr<ELFYAML::RelocationSection *> S = dumpRelaSection(&Sec); in dump()
103 ErrorOr<ELFYAML::RelocationSection *> S = dumpRelSection(&Sec); in dump()
260 ELFYAML::RelocationSection &S) { in dumpCommonRelocationSection()
277 ErrorOr<ELFYAML::RelocationSection *>
280 auto S = make_unique<ELFYAML::RelocationSection>(); in dumpRelSection()
301 ErrorOr<ELFYAML::RelocationSection *>
304 auto S = make_unique<ELFYAML::RelocationSection>(); in dumpRelaSection()
/external/llvm-project/llvm/tools/llvm-objcopy/ELF/
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;
766 class RelocationSection
1082 MustBeRelocatable |= isa<RelocationSection>(*Ptr); in addSection()
DObject.cpp111 Error ELFSectionSizer<ELFT>::visit(RelocationSection &Sec) { in visit()
155 Error BinarySectionWriter::visit(const RelocationSection &Sec) { in visit()
896 Error RelocationSection::removeSectionReferences( in removeSectionReferences()
981 Error ELFSectionWriter<ELFT>::visit(const RelocationSection &Sec) { in visit()
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()
1615 static Error initRelocations(RelocationSection *Relocs, in initRelocations()
[all …]
/external/llvm/include/llvm/ObjectYAML/
DELFYAML.h139 struct RelocationSection : Section { struct
141 RelocationSection() : Section(SectionKind::Relocation) {} in RelocationSection() function
/external/llvm/tools/yaml2obj/
Dyaml2elf.cpp134 const ELFYAML::RelocationSection &Section,
218 else if (auto S = dyn_cast<ELFYAML::RelocationSection>(Sec.get())) { in initSectionHeaders()
365 const ELFYAML::RelocationSection &Section, in writeSectionContent()
/external/llvm/lib/ObjectYAML/
DELFYAML.cpp695 static void sectionMapping(IO &IO, ELFYAML::RelocationSection &Section) { in sectionMapping()
742 Section.reset(new ELFYAML::RelocationSection()); in mapping()
743 sectionMapping(IO, *cast<ELFYAML::RelocationSection>(Section.get())); in mapping()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DELFYAML.h433 struct RelocationSection : Section { struct
437 RelocationSection() : Section(ChunkKind::Relocation) {} in RelocationSection() function
/external/llvm-project/llvm/tools/obj2yaml/
Delf2yaml.cpp72 ELFYAML::RelocationSection &S);
85 Expected<ELFYAML::RelocationSection *> dumpRelocSection(const Elf_Shdr *Shdr);
791 const Elf_Shdr *Shdr, ELFYAML::RelocationSection &S) { in dumpCommonRelocationSection()
1063 Expected<ELFYAML::RelocationSection *>
1065 auto S = std::make_unique<ELFYAML::RelocationSection>(); in dumpRelocSection()
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DELFYAML.h534 struct RelocationSection : Section { struct
538 RelocationSection() : Section(ChunkKind::Relocation) {} in RelocationSection() function
/external/llvm-project/lld/ELF/
DSyntheticSections.cpp1639 RelocationSection<ELFT>::RelocationSection(StringRef name, bool sort) in RelocationSection() function in RelocationSection
1647 template <class ELFT> void RelocationSection<ELFT>::writeTo(uint8_t *buf) { in writeTo()
3828 template class elf::RelocationSection<ELF32LE>; member in elf
3829 template class elf::RelocationSection<ELF32BE>; member in elf
3830 template class elf::RelocationSection<ELF64LE>; member in elf
3831 template class elf::RelocationSection<ELF64BE>; member in elf
DSyntheticSections.h516 class RelocationSection final : public RelocationBaseSection {
521 RelocationSection(StringRef name, bool sort);
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()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DELFEmitter.cpp167 const ELFYAML::RelocationSection &Section,
459 } else if (auto S = dyn_cast<ELFYAML::RelocationSection>(Sec)) { in initSectionHeaders()
792 Elf_Shdr &SHeader, const ELFYAML::RelocationSection &Section, in writeSectionContent()
DELFYAML.cpp1098 static void sectionMapping(IO &IO, ELFYAML::RelocationSection &Section) { in sectionMapping()
1206 Section.reset(new ELFYAML::RelocationSection()); in mapping()
1207 sectionMapping(IO, *cast<ELFYAML::RelocationSection>(Section.get())); in mapping()
/external/llvm-project/llvm/lib/ObjectYAML/
DELFYAML.cpp1218 static void sectionMapping(IO &IO, ELFYAML::RelocationSection &Section) { in sectionMapping()
1346 Section.reset(new ELFYAML::RelocationSection()); in mapping()
1347 sectionMapping(IO, *cast<ELFYAML::RelocationSection>(Section.get())); in mapping()
DELFEmitter.cpp243 const ELFYAML::RelocationSection &Section,
738 } else if (auto S = dyn_cast<ELFYAML::RelocationSection>(Sec)) { in initSectionHeaders()
1187 Elf_Shdr &SHeader, const ELFYAML::RelocationSection &Section, in writeSectionContent()