Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DELFYAML.h330 struct VerneedSection : Section { struct
335 VerneedSection() : Section(ChunkKind::Verneed) {} in VerneedSection() argument
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DELFYAML.h394 struct VerneedSection : Section { struct
398 VerneedSection() : Section(ChunkKind::Verneed) {} in VerneedSection() argument
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DELFYAML.cpp1091 static void sectionMapping(IO &IO, ELFYAML::VerneedSection &Section) { in sectionMapping()
1256 Section.reset(new ELFYAML::VerneedSection()); in mapping()
1257 sectionMapping(IO, *cast<ELFYAML::VerneedSection>(Section.get())); in mapping()
1448 if (const auto *VD = dyn_cast<ELFYAML::VerneedSection>(C.get())) { in validate()
DELFEmitter.cpp181 const ELFYAML::VerneedSection &Section,
477 } else if (auto S = dyn_cast<ELFYAML::VerneedSection>(Sec)) { in initSectionHeaders()
1063 const ELFYAML::VerneedSection &Section, in writeSectionContent()
1384 if (auto VerNeed = dyn_cast<ELFYAML::VerneedSection>(Sec)) { in finalizeStrings()
/external/llvm-project/llvm/lib/ObjectYAML/
DELFEmitter.cpp258 const ELFYAML::VerneedSection &Section,
754 } else if (auto S = dyn_cast<ELFYAML::VerneedSection>(Sec)) { in initSectionHeaders()
1523 const ELFYAML::VerneedSection &Section, in writeSectionContent()
1871 if (auto VerNeed = dyn_cast<ELFYAML::VerneedSection>(Sec)) { in finalizeStrings()
DELFYAML.cpp1212 static void sectionMapping(IO &IO, ELFYAML::VerneedSection &Section) { in sectionMapping()
1391 Section.reset(new ELFYAML::VerneedSection()); in mapping()
1392 sectionMapping(IO, *cast<ELFYAML::VerneedSection>(Section.get())); in mapping()
/external/llvm-project/llvm/tools/obj2yaml/
Delf2yaml.cpp97 Expected<ELFYAML::VerneedSection *> dumpVerneedSection(const Elf_Shdr *Shdr);
1379 Expected<ELFYAML::VerneedSection *>
1384 auto S = std::make_unique<ELFYAML::VerneedSection>(); in dumpVerneedSection()