Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DELFYAML.h404 struct VerdefSection : Section { struct
410 VerdefSection() : Section(ChunkKind::Verdef) {} in VerdefSection() argument
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DELFYAML.h498 struct VerdefSection : Section { struct
503 VerdefSection() : Section(ChunkKind::Verdef) {} in VerdefSection() argument
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DELFYAML.cpp1079 static void sectionMapping(IO &IO, ELFYAML::VerdefSection &Section) { in sectionMapping()
1246 Section.reset(new ELFYAML::VerdefSection()); in mapping()
1247 sectionMapping(IO, *cast<ELFYAML::VerdefSection>(Section.get())); in mapping()
1441 if (const auto *VD = dyn_cast<ELFYAML::VerdefSection>(C.get())) { in validate()
DELFEmitter.cpp184 const ELFYAML::VerdefSection &Section,
479 } else if (auto S = dyn_cast<ELFYAML::VerdefSection>(Sec)) { in initSectionHeaders()
1011 const ELFYAML::VerdefSection &Section, in writeSectionContent()
1392 } else if (auto VerDef = dyn_cast<ELFYAML::VerdefSection>(Sec)) { in finalizeStrings()
/external/llvm-project/llvm/lib/ObjectYAML/
DELFEmitter.cpp261 const ELFYAML::VerdefSection &Section,
756 } else if (auto S = dyn_cast<ELFYAML::VerdefSection>(Sec)) { in initSectionHeaders()
1478 const ELFYAML::VerdefSection &Section, in writeSectionContent()
1879 } else if (auto VerDef = dyn_cast<ELFYAML::VerdefSection>(Sec)) { in finalizeStrings()
DELFYAML.cpp1201 static void sectionMapping(IO &IO, ELFYAML::VerdefSection &Section) { in sectionMapping()
1381 Section.reset(new ELFYAML::VerdefSection()); in mapping()
1382 sectionMapping(IO, *cast<ELFYAML::VerdefSection>(Section.get())); in mapping()
/external/llvm-project/llvm/tools/obj2yaml/
Delf2yaml.cpp95 Expected<ELFYAML::VerdefSection *> dumpVerdefSection(const Elf_Shdr *Shdr);
1307 Expected<ELFYAML::VerdefSection *>
1312 auto S = std::make_unique<ELFYAML::VerdefSection>(); in dumpVerdefSection()