Home
last modified time | relevance | path

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

/external/llvm/tools/obj2yaml/
Delf2yaml.cpp34 ELFYAML::RelocationSection &S);
39 ErrorOr<ELFYAML::RelocationSection *> dumpRelSection(const Elf_Shdr *Shdr);
40 ErrorOr<ELFYAML::RelocationSection *> dumpRelaSection(const Elf_Shdr *Shdr);
79 ErrorOr<ELFYAML::RelocationSection *> S = dumpRelaSection(&Sec); in dump()
86 ErrorOr<ELFYAML::RelocationSection *> S = dumpRelSection(&Sec); in dump()
214 ELFYAML::RelocationSection &S) { in dumpCommonRelocationSection()
229 ErrorOr<ELFYAML::RelocationSection *>
232 auto S = make_unique<ELFYAML::RelocationSection>(); in dumpRelSection()
249 ErrorOr<ELFYAML::RelocationSection *>
252 auto S = make_unique<ELFYAML::RelocationSection>(); in dumpRelaSection()
/external/llvm/include/llvm/Object/
DELFYAML.h118 struct RelocationSection : Section { struct
120 RelocationSection() : Section(SectionKind::Relocation) {} in RelocationSection() argument
/external/llvm/tools/yaml2obj/
Dyaml2elf.cpp132 const ELFYAML::RelocationSection &Section,
213 else if (auto S = dyn_cast<ELFYAML::RelocationSection>(Sec.get())) { in initSectionHeaders()
345 const ELFYAML::RelocationSection &Section, in writeSectionContent()
/external/llvm/lib/Object/
DELFYAML.cpp519 static void sectionMapping(IO &IO, ELFYAML::RelocationSection &Section) { in sectionMapping()
546 Section.reset(new ELFYAML::RelocationSection()); in mapping()
547 sectionMapping(IO, *cast<ELFYAML::RelocationSection>(Section.get())); in mapping()