/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFContext.h | 27 struct SectionData { 32 SectionData m_data_debug_abbrev; 33 SectionData m_data_debug_addr; 34 SectionData m_data_debug_aranges; 35 SectionData m_data_debug_cu_index; 36 SectionData m_data_debug_info; 37 SectionData m_data_debug_line; 38 SectionData m_data_debug_line_str; 39 SectionData m_data_debug_loc; 40 SectionData m_data_debug_loclist 26 struct SectionData { global() struct 31 dataSectionData global() argument [all...] |
H A D | DWARFContext.cpp | 35 SectionData &data) { in LoadOrGetSection()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | Decompressor.cpp | 30 : SectionData(Data), DecompressedSize(0) {} in Decompressor() 35 if (SectionData.size() < HdrSize) in consumeCompressedHeader() 38 DataExtractor Extractor(SectionData, IsLittleEndian, 0); in consumeCompressedHeader() 62 SectionData = SectionData.substr(HdrSize); in consumeCompressedHeader() 68 arrayRefFromStringRef(SectionData), in decompress()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | COFFEmitter.cpp | 211 if (S.Name == ".debug$S" && S.SectionData.binary_size() == 0) { in layoutCOFF() 223 if (S.SectionData.binary_size() == 0) { in layoutCOFF() 227 S.SectionData = in layoutCOFF() 231 if (S.SectionData.binary_size() == 0) in layoutCOFF() 232 S.SectionData = CodeViewYAML::toDebugT(S.DebugT, CP.Allocator, S.Name); in layoutCOFF() 234 if (S.SectionData.binary_size() == 0) in layoutCOFF() 235 S.SectionData = CodeViewYAML::toDebugT(S.DebugP, CP.Allocator, S.Name); in layoutCOFF() 237 if (S.DebugH && S.SectionData.binary_size() == 0) in layoutCOFF() 238 S.SectionData = CodeViewYAML::toDebugH(*S.DebugH, CP.Allocator); in layoutCOFF() 241 size_t DataSize = S.SectionData.binary_size(); in layoutCOFF() [all …]
|
H A D | XCOFFEmitter.cpp | 161 InitSections[I].Size = InitSections[I].SectionData.binary_size(); in initSectionHeaders() 191 if (InitSections[I].SectionData.binary_size()) { in initSectionHeaders() 205 CurrentOffset += InitSections[I].SectionData.binary_size(); in initSectionHeaders() 561 if (YamlSec.SectionData.binary_size()) { in writeSectionData() 570 YamlSec.SectionData.writeAsBinary(W.OS); in writeSectionData()
|
H A D | COFFYAML.cpp | 675 IO.mapOptional("SectionData", Sec.SectionData); in mapping() 687 if (!Sec.StructuredData.empty() && Sec.SectionData.binary_size()) { in mapping()
|
H A D | XCOFFYAML.cpp | 254 IO.mapOptional("SectionData", Sec.SectionData); in mapping()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/COFF/ |
H A D | COFFObjcopy.cpp | 273 NewSection.SectionData->getBufferStart()), in handleArgs() 274 NewSection.SectionData->getBufferSize()), in handleArgs() 292 if (ContentSize < NewSection.SectionData->getBufferSize()) in handleArgs() 296 It->setOwnedContents({NewSection.SectionData->getBufferStart(), in handleArgs() 297 NewSection.SectionData->getBufferEnd()}); in handleArgs()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/wasm/ |
H A D | WasmObjcopy.cpp | 130 llvm::StringRef(NewSection.SectionData->getBufferStart(), in handleArgs() 131 NewSection.SectionData->getBufferSize()); in handleArgs() 133 InputData, NewSection.SectionData->getBufferIdentifier()); in handleArgs()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | Decompressor.h | 49 StringRef SectionData; variable
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | llvm-readobj.h | 39 extern bool SectionData;
|
H A D | WasmDumper.cpp | 214 if (opts::SectionData) { in printSectionHeaders() 215 W.printBinaryBlock("SectionData", WasmSec.Content); in printSectionHeaders()
|
H A D | llvm-readobj.cpp | 114 bool SectionData; variable 232 opts::SectionData = Args.hasArg(OPT_section_data); in parseOptions()
|
H A D | MachODumper.cpp | 517 if (opts::SectionData && !Section.isBSS()) in printSectionHeaders() 518 W.printBinaryBlock("SectionData", unwrapOrError(Obj->getFileName(), in printSectionHeaders()
|
H A D | COFFDumper.cpp | 1548 if (opts::SectionData && in printSectionHeaders() 1970 if (opts::SectionData) in printCOFFResources()
|
H A D | XCOFFDumper.cpp | 1233 if (opts::SectionData) in printSectionHeaders()
|
H A D | ELFDumper.cpp | 7301 if (opts::SectionData && Sec.sh_type != ELF::SHT_NOBITS) { in printSectionHeaders()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/ |
H A D | CommonConfig.h | 188 : SectionName(Name), SectionData(std::move(Buffer)) {} in NewSectionInfo() 191 std::shared_ptr<MemoryBuffer> SectionData; member
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
H A D | MachOObjcopy.cpp | 316 Obj.NewSectionsContents.save(NewSection.SectionData->getBuffer()); in addSection() 372 if (NewSection.SectionData->getBufferSize() > Sec.Size) 376 Sec.Content = O.NewSectionsContents.save(NewSection.SectionData->getBuffer()); in isValidMachOCannonicalName()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | COFFYAML.h | 83 yaml::BinaryRef SectionData; member
|
H A D | XCOFFYAML.h | 83 yaml::BinaryRef SectionData; member
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObjcopy.cpp | 621 NewSection.SectionData->getBufferStart()), in handleUserSection() 622 NewSection.SectionData->getBufferSize()); in handleUserSection()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFContext.cpp | 2117 if (StringRef *SectionData = mapSectionToMember(SecIt.first())) in DWARFObjInMemory() local 2118 *SectionData = SecIt.second->getBuffer(); in DWARFObjInMemory() 2191 if (StringRef *SectionData = mapSectionToMember(Name)) { in DWARFObjInMemory() local 2192 *SectionData = Data; in DWARFObjInMemory()
|