Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/wasm/
H A DWasmWriter.cpp50 SectionHeaders.reserve(Obj.Sections.size()); in finalize()
54 SectionHeaders.push_back(createSectionHeader(S, SectionSize)); in finalize()
71 for (size_t I = 0, S = SectionHeaders.size(); I < S; ++I) { in write()
72 Out.write(SectionHeaders[I].data(), SectionHeaders[I].size()); in write()
H A DWasmWriter.h29 std::vector<SectionHeader> SectionHeaders; variable
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp514 const ELFYAML::SectionHeaderTable &SectionHeaders = in writeELFHeader() local
519 else if (SectionHeaders.Offset) in writeELFHeader()
520 Header.e_shoff = *SectionHeaders.Offset; in writeELFHeader()
527 Header.e_shnum = SectionHeaders.getNumHeaders(Doc.getSections().size()); in writeELFHeader()
531 else if (SectionHeaders.Offset && in writeELFHeader()
604 const ELFYAML::SectionHeaderTable &SectionHeaders = in toSectionIndex() local
606 if (SectionHeaders.IsImplicit || in toSectionIndex()
607 (SectionHeaders.NoHeaders && !*SectionHeaders.NoHeaders) || in toSectionIndex()
608 SectionHeaders.isDefault()) in toSectionIndex()
611 assert(!SectionHeaders.NoHeaders.value_or(false) || !SectionHeaders.Sections); in toSectionIndex()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp116 static bool SectionHeaders; variable
234 opts::SectionHeaders = Args.hasArg(OPT_section_headers); in parseOptions()
423 if (opts::SectionDetails || opts::SectionHeaders) { in dumpObject()
677 opts::SectionHeaders = true; in llvm_readobj_main()
697 opts::SectionHeaders = true; in llvm_readobj_main()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStream.h127 FixedStreamArray<object::coff_section> SectionHeaders; variable
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStream.cpp200 return SectionHeaders; in getSectionHeaders()
273 if (auto EC = Reader.readArray(SectionHeaders, NumSections)) in initializeSectionHeadersData()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h65 extern bool SectionHeaders;
H A Dllvm-objdump.cpp332 bool objdump::SectionHeaders; member in objdump
3295 if (SectionHeaders) in dumpObject()
3536 SectionHeaders = InputArgs.hasArg(OBJDUMP_section_headers); in parseObjdumpOptions()
3722 SectionHeaders = SymbolTable = true; in llvm_objdump_main()
3730 !Relocations && !SectionHeaders && !SectionContents && !SymbolTable && in llvm_objdump_main()
H A DMachODump.cpp2175 if (SectionHeaders) in ProcessMachO()