Home
last modified time | relevance | path

Searched refs:SectionHeaders (Results 1 – 19 of 19) sorted by relevance

/external/llvm-project/llvm/tools/llvm-objcopy/wasm/
DWriter.cpp46 SectionHeaders.reserve(Obj.Sections.size()); in finalize()
50 SectionHeaders.push_back(createSectionHeader(S, SectionSize)); in finalize()
68 for (size_t I = 0, S = SectionHeaders.size(); I < S; ++I) { in write()
69 Ptr = std::copy(SectionHeaders[I].begin(), SectionHeaders[I].end(), Ptr); in write()
DWriter.h30 std::vector<SectionHeader> SectionHeaders; variable
/external/llvm-project/llvm/lib/ObjectYAML/
DELFEmitter.cpp370 if (!Doc.SectionHeaders || !Doc.SectionHeaders->NoHeaders.getValueOr(false)) in ELFState()
446 else if (!Doc.SectionHeaders || in writeELFHeader()
447 (Doc.SectionHeaders->NoHeaders && !*Doc.SectionHeaders->NoHeaders)) in writeELFHeader()
453 (Doc.SectionHeaders->Sections ? Doc.SectionHeaders->Sections->size() in writeELFHeader()
531 if (!Doc.SectionHeaders || (Doc.SectionHeaders->NoHeaders && in toSectionIndex()
532 !Doc.SectionHeaders->NoHeaders.getValue())) in toSectionIndex()
535 assert(!Doc.SectionHeaders->NoHeaders.getValueOr(false) || in toSectionIndex()
536 !Doc.SectionHeaders->Sections); in toSectionIndex()
538 Doc.SectionHeaders->Sections ? Doc.SectionHeaders->Sections->size() : 0; in toSectionIndex()
1766 if (!Doc.SectionHeaders || Doc.SectionHeaders->NoHeaders) in buildSectionHeaderReorderMap()
[all …]
DELFYAML.cpp1656 IO.mapOptional("SectionHeaderTable", Object.SectionHeaders); in mapping()
/external/llvm-project/llvm/tools/llvm-readobj/
Dllvm-readobj.cpp96 cl::opt<bool> SectionHeaders("section-headers", variable
99 cl::aliasopt(SectionHeaders), cl::NotHidden);
102 cl::aliasopt(SectionHeaders), cl::NotHidden);
499 if (opts::SectionDetails || opts::SectionHeaders) { in dumpObject()
678 cl::aliasopt(opts::SectionHeaders), in registerReadobjAliases()
745 opts::SectionHeaders = true; in main()
763 opts::SectionHeaders = true; in main()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DDbiStream.h125 FixedStreamArray<object::coff_section> SectionHeaders; variable
/external/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
DDbiStream.h125 FixedStreamArray<object::coff_section> SectionHeaders; variable
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DDbiStream.cpp202 return SectionHeaders; in getSectionHeaders()
275 if (auto EC = Reader.readArray(SectionHeaders, NumSections)) in initializeSectionHeadersData()
/external/llvm/lib/DebugInfo/PDB/Raw/
DDbiStream.cpp246 return SectionHeaders; in getSectionHeaders()
300 if (auto EC = Reader.readArray(SectionHeaders, NumSections)) in initializeSectionHeadersData()
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DDbiStream.cpp202 return SectionHeaders; in getSectionHeaders()
275 if (auto EC = Reader.readArray(SectionHeaders, NumSections)) in initializeSectionHeadersData()
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
DDbiStream.h139 codeview::FixedStreamArray<object::coff_section> SectionHeaders; variable
/external/llvm-project/llvm/tools/llvm-objdump/
Dllvm-objdump.h46 extern cl::opt<bool> SectionHeaders;
Dllvm-objdump.cpp283 cl::opt<bool> objdump::SectionHeaders( member in objdump
290 cl::aliasopt(SectionHeaders));
294 cl::aliasopt(SectionHeaders));
2839 if (SectionHeaders) in dumpObject()
2981 SectionHeaders = SymbolTable = true; in main()
2989 !Relocations && !SectionHeaders && !SectionContents && !SymbolTable && in main()
DMachODump.cpp1976 if (SectionHeaders) in ProcessMachO()
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.h57 extern cl::opt<bool> SectionHeaders;
Dllvm-objdump.cpp132 llvm::SectionHeaders("section-headers", cl::desc("Display summaries of the " member in llvm
136 cl::aliasopt(SectionHeaders));
139 cl::aliasopt(SectionHeaders));
1670 if (SectionHeaders) in DumpObject()
1774 && !SectionHeaders in main()
DMachODump.cpp1255 if (SectionHeaders) in ProcessMachO()
/external/llvm-project/llvm/tools/obj2yaml/
Delf2yaml.cpp393 Y->SectionHeaders.emplace(); in dump()
394 Y->SectionHeaders->Sections.emplace(); in dump()
396 Y->SectionHeaders->Sections->push_back({S->Name}); in dump()
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DELFYAML.h635 Optional<SectionHeaderTable> SectionHeaders; member