Home
last modified time | relevance | path

Searched refs:RawSec (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/llvm/lib/ObjectYAML/
DELFEmitter.cpp716 if (auto RawSec = dyn_cast<ELFYAML::RawContentSection>(Sec)) { in initSectionHeaders() local
718 if (RawSec->Size) in initSectionHeaders()
719 SHeader.sh_size = *RawSec->Size; in initSectionHeaders()
720 if (RawSec->Info) in initSectionHeaders()
721 SHeader.sh_info = *RawSec->Info; in initSectionHeaders()
861 ELFYAML::RawContentSection *RawSec = in initSymtabSectionHeader() local
863 if (RawSec && (RawSec->Content || RawSec->Size)) { in initSymtabSectionHeader()
868 if (RawSec->Content) in initSymtabSectionHeader()
870 " for symbol table section '" + RawSec->Name + "'"); in initSymtabSectionHeader()
871 if (RawSec->Size) in initSymtabSectionHeader()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DELFEmitter.cpp446 if (auto RawSec = dyn_cast<ELFYAML::RawContentSection>(Sec)) { in initSectionHeaders() local
448 if (RawSec->Size) in initSectionHeaders()
449 SHeader.sh_size = *RawSec->Size; in initSectionHeaders()
450 if (RawSec->Info) in initSectionHeaders()
451 SHeader.sh_info = *RawSec->Info; in initSectionHeaders()
573 ELFYAML::RawContentSection *RawSec = in initSymtabSectionHeader() local
575 if (RawSec && (RawSec->Content || RawSec->Size)) { in initSymtabSectionHeader()
580 if (RawSec->Content) in initSymtabSectionHeader()
582 " for symbol table section '" + RawSec->Name + "'"); in initSymtabSectionHeader()
583 if (RawSec->Size) in initSymtabSectionHeader()
[all …]
/external/llvm-project/llvm/tools/obj2yaml/
Delf2yaml.cpp207 if (const ELFYAML::RawContentSection *RawSec = in shouldPrintSection() local
209 if (RawSec->Type != ELF::SHT_PROGBITS || RawSec->Link || RawSec->Info || in shouldPrintSection()
210 RawSec->AddressAlign != 1 || RawSec->Address || RawSec->EntSize) in shouldPrintSection()
213 ELFYAML::ELF_SHF ShFlags = RawSec->Flags.getValueOr(ELFYAML::ELF_SHF(0)); in shouldPrintSection()
490 if (ELFYAML::RawContentSection *RawSec = in dumpDWARFSections() local
495 if (RawSec->Name == ".debug_aranges") in dumpDWARFSections()
497 else if (RawSec->Name == ".debug_str") in dumpDWARFSections()
499 else if (RawSec->Name == ".debug_ranges") in dumpDWARFSections()
501 else if (RawSec->Name == ".debug_addr") in dumpDWARFSections()
511 RawSec->Content.reset(); in dumpDWARFSections()