Searched refs:SectionData (Results 1 – 15 of 15) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
H A D | Decompressor.cpp | 34 : 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 D | COFFEmitter.cpp | 221 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 D | COFFYAML.cpp | 571 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 D | yaml2obj.rst | 30 SectionData: 156 SectionData: {type: str}
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
H A D | Decompressor.h | 59 StringRef SectionData; variable
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
H A D | llvm-readobj.h | 37 extern llvm::cl::opt<bool> SectionData;
|
H A D | WasmDumper.cpp | 209 if (opts::SectionData) { in printSectionHeaders()
|
H A D | llvm-readobj.cpp | 116 cl::opt<bool> SectionData("section-data", variable 713 cl::aliasopt(opts::SectionData)); in registerReadobjAliases()
|
H A D | XCOFFDumper.cpp | 511 if (opts::SectionData) in printSectionHeaders()
|
H A D | MachODumper.cpp | 505 if (opts::SectionData && !Section.isBSS()) in printSectionHeaders()
|
H A D | COFFDumper.cpp | 1399 if (opts::SectionData && in printSectionHeaders() 1809 if (opts::SectionData) in printCOFFResources()
|
H A D | ELFDumper.cpp | 6387 if (opts::SectionData && Sec.sh_type != ELF::SHT_NOBITS) { in printSectionHeaders()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/ |
H A D | COFFYAML.h | 72 yaml::BinaryRef SectionData; member
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFContext.cpp | 1640 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 D | coff2yaml.cpp | 182 NewYAMLSection.SectionData = yaml::BinaryRef(sectionData); in dumpSections()
|