Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFContext.h26 struct SectionData { struct
31 SectionData m_data_debug_abbrev; argument
32 SectionData m_data_debug_addr;
33 SectionData m_data_debug_aranges;
35 SectionData m_data_debug_info;
36 SectionData m_data_debug_line;
38 SectionData m_data_debug_loc;
40 SectionData m_data_debug_macro;
41 SectionData m_data_debug_ranges;
43 SectionData m_data_debug_str;
[all …]
H A DDWARFContext.cpp33 SectionData &data) { in LoadOrGetSection()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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()
244 if (S.SectionData.binary_size() == 0) 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()
254 S.Header.SizeOfRawData = S.SectionData.binary_size(); in layoutCOFF()
508 S.SectionData.writeAsBinary(OS); in writeCOFF()
[all …]
H A DXCOFFEmitter.cpp129 if (InitSections[I].SectionData.binary_size()) { in initSectionHeader()
131 CurrentOffset += InitSections[I].SectionData.binary_size(); in initSectionHeader()
227 if (YamlSec.SectionData.binary_size()) { in writeSectionData()
237 YamlSec.SectionData.writeAsBinary(W.OS); in writeSectionData()
H A DXCOFFYAML.cpp141 IO.mapOptional("SectionData", Sec.SectionData); in mapping()
H A DCOFFYAML.cpp572 IO.mapOptional("SectionData", Sec.SectionData); in mapping()
584 if (Sec.SectionData.binary_size() == 0 && in mapping()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h37 extern bool SectionData;
H A Dllvm-readobj.cpp105 bool SectionData; variable
208 opts::SectionData = Args.hasArg(OPT_section_data); in parseOptions()
H A DWasmDumper.cpp209 if (opts::SectionData) { in printSectionHeaders()
H A DXCOFFDumper.cpp563 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.cpp6431 if (opts::SectionData && Sec.sh_type != ELF::SHT_NOBITS) { in printSectionHeaders()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DDecompressor.h59 StringRef SectionData; variable
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DXCOFFYAML.h49 yaml::BinaryRef SectionData; member
H A DCOFFYAML.h72 yaml::BinaryRef SectionData; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1640 if (StringRef *SectionData = mapSectionToMember(SecIt.first())) in DWARFObjInMemory() local
1641 *SectionData = SecIt.second->getBuffer(); in DWARFObjInMemory()
1716 if (StringRef *SectionData = mapSectionToMember(Name)) { in DWARFObjInMemory() local
1717 *SectionData = Data; in DWARFObjInMemory()