Home
last modified time | relevance | path

Searched refs:SectionData (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DDecompressor.cpp34 : SectionData(Data), DecompressedSize(0) {} in Decompressor()
37 if (!SectionData.startswith("ZLIB")) in consumeCompressedGnuHeader()
40 SectionData = SectionData.substr(4); in consumeCompressedGnuHeader()
43 if (SectionData.size() < 8) in consumeCompressedGnuHeader()
45 DecompressedSize = read64be(SectionData.data()); in consumeCompressedGnuHeader()
46 SectionData = SectionData.substr(8); in consumeCompressedGnuHeader()
55 if (SectionData.size() < HdrSize) in consumeCompressedZLibHeader()
58 DataExtractor Extractor(SectionData, IsLittleEndian, 0); in consumeCompressedZLibHeader()
71 SectionData = SectionData.substr(HdrSize); in consumeCompressedZLibHeader()
97 return zlib::uncompress(SectionData, Buffer.data(), Size); in decompress()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCOFFEmitter.cpp221 if (S.Name == ".debug$S" && S.SectionData.binary_size() == 0) { in layoutCOFF()
233 if (S.SectionData.binary_size() == 0) { in layoutCOFF()
237 S.SectionData = in layoutCOFF()
241 if (S.SectionData.binary_size() == 0) in layoutCOFF()
242 S.SectionData = CodeViewYAML::toDebugT(S.DebugT, CP.Allocator, S.Name); in layoutCOFF()
244 if (S.SectionData.binary_size() == 0) in layoutCOFF()
245 S.SectionData = CodeViewYAML::toDebugT(S.DebugP, CP.Allocator, S.Name); in layoutCOFF()
247 if (S.DebugH.hasValue() && S.SectionData.binary_size() == 0) in layoutCOFF()
248 S.SectionData = CodeViewYAML::toDebugH(*S.DebugH, CP.Allocator); in layoutCOFF()
251 if (S.SectionData.binary_size() > 0) { in layoutCOFF()
[all …]
H A DCOFFYAML.cpp571 IO.mapOptional("SectionData", Sec.SectionData); in mapping()
583 if (Sec.SectionData.binary_size() == 0 && in mapping()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A Dyaml2obj.rst30 SectionData:
156 SectionData: {type: str}
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DDecompressor.h59 StringRef SectionData; variable
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h37 extern llvm::cl::opt<bool> SectionData;
H A DWasmDumper.cpp209 if (opts::SectionData) { in printSectionHeaders()
H A Dllvm-readobj.cpp116 cl::opt<bool> SectionData("section-data", variable
713 cl::aliasopt(opts::SectionData)); in registerReadobjAliases()
H A DXCOFFDumper.cpp511 if (opts::SectionData) in printSectionHeaders()
H A DMachODumper.cpp505 if (opts::SectionData && !Section.isBSS()) in printSectionHeaders()
H A DCOFFDumper.cpp1399 if (opts::SectionData && in printSectionHeaders()
1809 if (opts::SectionData) in printCOFFResources()
H A DELFDumper.cpp6387 if (opts::SectionData && Sec.sh_type != ELF::SHT_NOBITS) { in printSectionHeaders()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DCOFFYAML.h72 yaml::BinaryRef SectionData; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1640 if (StringRef *SectionData = mapSectionToMember(SecIt.first())) in DWARFObjInMemory() local
1641 *SectionData = SecIt.second->getBuffer(); in DWARFObjInMemory()
1715 if (StringRef *SectionData = mapSectionToMember(Name)) { in DWARFObjInMemory() local
1716 *SectionData = Data; in DWARFObjInMemory()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp182 NewYAMLSection.SectionData = yaml::BinaryRef(sectionData); in dumpSections()