Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Object/
H A DDecompressor.cpp35 : SectionData(Data), DecompressedSize(0) {} in Decompressor()
38 if (!SectionData.startswith("ZLIB")) in consumeCompressedGnuHeader()
41 SectionData = SectionData.substr(4); in consumeCompressedGnuHeader()
44 if (SectionData.size() < 8) in consumeCompressedGnuHeader()
46 DecompressedSize = read64be(SectionData.data()); in consumeCompressedGnuHeader()
47 SectionData = SectionData.substr(8); in consumeCompressedGnuHeader()
56 if (SectionData.size() < HdrSize) in consumeCompressedZLibHeader()
59 DataExtractor Extractor(SectionData, IsLittleEndian, 0); in consumeCompressedZLibHeader()
72 SectionData = SectionData.substr(HdrSize); in consumeCompressedZLibHeader()
93 return zlib::uncompress(SectionData, Buffer.data(), Size); in decompress()
/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DDecompressor.h60 StringRef SectionData; variable
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h54 extern llvm::cl::opt<bool> SectionData;
H A DWasmDumper.cpp201 if (opts::SectionData) { in printSectionHeaders()
H A Dllvm-readobj.cpp107 cl::opt<bool> SectionData("section-data", variable
638 cl::aliasopt(opts::SectionData)); in registerReadobjAliases()
H A DMachODumper.cpp486 if (opts::SectionData) { in printSectionHeaders()
H A DCOFFDumper.cpp1323 if (opts::SectionData && in printSectionHeaders()
1737 if (opts::SectionData) in printCOFFResources()
H A DELFDumper.cpp4351 if (opts::SectionData && Sec.sh_type != ELF::SHT_NOBITS) { in printSectionHeaders()
/freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/
H A DCOFFYAML.h73 yaml::BinaryRef SectionData; member
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1365 if (StringRef *SectionData = mapSectionToMember(SecIt.first())) in DWARFObjInMemory() local
1366 *SectionData = SecIt.second->getBuffer(); in DWARFObjInMemory()
1425 if (StringRef *SectionData = mapSectionToMember(Name)) { in DWARFObjInMemory() local
1426 *SectionData = Data; in DWARFObjInMemory()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp569 IO.mapOptional("SectionData", Sec.SectionData); in mapping()