Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Delf2yaml.cpp81 Expected<ELFYAML::RawContentSection *>
100 Expected<ELFYAML::RawContentSection *>
202 if (const ELFYAML::RawContentSection *RawSec = in shouldPrintSection()
203 dyn_cast<const ELFYAML::RawContentSection>(&S)) { in shouldPrintSection()
520 if (ELFYAML::RawContentSection *RawSec = in dumpDWARFSections()
521 dyn_cast<ELFYAML::RawContentSection>(C.get())) { in dumpDWARFSections()
557 Expected<ELFYAML::RawContentSection *>
559 auto S = std::make_unique<ELFYAML::RawContentSection>(); in dumpPlaceholderSection()
1158 Expected<ELFYAML::RawContentSection *>
1160 auto S = std::make_unique<ELFYAML::RawContentSection>(); in dumpContentSection()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp247 const ELFYAML::RawContentSection &Section,
671 if (YAMLSec && !isa<ELFYAML::RawContentSection>(YAMLSec)) in initImplicitHeader()
838 if (auto RawSec = dyn_cast<ELFYAML::RawContentSection>(Sec)) { in initSectionHeaders()
854 if (auto S = dyn_cast<ELFYAML::RawContentSection>(Sec)) { in initSectionHeaders()
981 ELFYAML::RawContentSection *RawSec = in initSymtabSectionHeader()
982 dyn_cast_or_null<ELFYAML::RawContentSection>(YAMLSec); in initSymtabSectionHeader()
1042 ELFYAML::RawContentSection *RawSec = in initStrtabSectionHeader()
1043 dyn_cast_or_null<ELFYAML::RawContentSection>(YAMLSec); in initStrtabSectionHeader()
1102 ELFYAML::RawContentSection *RawSec = in initDWARFSectionHeader()
1103 dyn_cast_or_null<ELFYAML::RawContentSection>(YAMLSec); in initDWARFSectionHeader()
[all …]
H A DELFYAML.cpp1343 static void sectionMapping(IO &IO, ELFYAML::RawContentSection &Section) { in sectionMapping()
1667 Section = std::make_unique<ELFYAML::RawContentSection>(); in mapping()
1670 if (auto S = dyn_cast<ELFYAML::RawContentSection>(Section.get())) in mapping()
1723 if (const auto *RawSection = dyn_cast<ELFYAML::RawContentSection>(C.get())) { in validate()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h360 struct RawContentSection : Section { struct
363 RawContentSection() : Section(ChunkKind::RawContent) {} in RawContentSection() argument