| /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 | 205 if (S.Name == ".debug$S" && S.SectionData.binary_size() == 0) { in layoutCOFF() 217 if (S.SectionData.binary_size() == 0) { in layoutCOFF() 221 S.SectionData = in layoutCOFF() 225 if (S.SectionData.binary_size() == 0) in layoutCOFF() 226 S.SectionData = CodeViewYAML::toDebugT(S.DebugT, CP.Allocator, S.Name); in layoutCOFF() 228 if (S.SectionData.binary_size() == 0) in layoutCOFF() 229 S.SectionData = CodeViewYAML::toDebugT(S.DebugP, CP.Allocator, S.Name); in layoutCOFF() 231 if (S.DebugH && S.SectionData.binary_size() == 0) in layoutCOFF() 232 S.SectionData = CodeViewYAML::toDebugH(*S.DebugH, CP.Allocator); in layoutCOFF() 235 size_t DataSize = S.SectionData.binary_size(); in layoutCOFF() [all …]
|
| H A D | XCOFFEmitter.cpp | 162 InitSections[I].Size = InitSections[I].SectionData.binary_size(); in initSectionHeaders() 192 if (InitSections[I].SectionData.binary_size()) { in initSectionHeaders() 206 CurrentOffset += InitSections[I].SectionData.binary_size(); in initSectionHeaders() 562 if (YamlSec.SectionData.binary_size()) { in writeSectionData() 571 YamlSec.SectionData.writeAsBinary(W.OS); in writeSectionData()
|
| H A D | COFFYAML.cpp | 698 IO.mapOptional("SectionData", Sec.SectionData); in mapping() 710 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/wasm/ |
| H A D | WasmObjcopy.cpp | 131 llvm::StringRef(NewSection.SectionData->getBufferStart(), in handleArgs() 132 NewSection.SectionData->getBufferSize()); in handleArgs() 134 InputData, NewSection.SectionData->getBufferIdentifier()); in handleArgs()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/COFF/ |
| H A D | COFFObjcopy.cpp | 281 NewSection.SectionData->getBufferStart()), in handleArgs() 282 NewSection.SectionData->getBufferSize()), in handleArgs() 300 if (ContentSize < NewSection.SectionData->getBufferSize()) in handleArgs() 304 It->setOwnedContents({NewSection.SectionData->getBufferStart(), in handleArgs() 305 NewSection.SectionData->getBufferEnd()}); in handleArgs()
|
| /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 | 116 bool SectionData; variable 234 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 | 1594 if (opts::SectionData && in printSectionHeaders() 2016 if (opts::SectionData) in printCOFFResources()
|
| H A D | XCOFFDumper.cpp | 1242 if (opts::SectionData) in printSectionHeaders()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | Decompressor.h | 50 StringRef SectionData; variable
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | XCOFFLinkGraphBuilder.h | 52 object::SectionRef SectionData; member
|
| H A D | XCOFFLinkGraphBuilder.cpp | 291 SectionTable[ParentSectionNumber].SectionData; in processCsectsAndSymbols()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/ |
| H A D | DebuggerSupportPlugin.cpp | 145 StringRef SectionData(SR.getFirstBlock()->getContent().data(), in startSynthesis() local 148 MemoryBuffer::getMemBuffer(SectionData, G.getName(), false); in startSynthesis() 150 DebugLineSectionData = SectionData; in startSynthesis()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/ |
| H A D | CommonConfig.h | 201 : SectionName(Name), SectionData(std::move(Buffer)) {} in NewSectionInfo() 204 std::shared_ptr<MemoryBuffer> SectionData; member
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObjcopy.cpp | 335 Obj.NewSectionsContents.save(NewSection.SectionData->getBuffer()); in addSection() 409 if (NewSection.SectionData->getBufferSize() > Sec.Size) in updateSection() 413 Sec.Content = O.NewSectionsContents.save(NewSection.SectionData->getBuffer()); in updateSection()
|
| /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/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()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObjcopy.cpp | 724 NewSection.SectionData->getBufferStart()), in handleUserSection() 725 NewSection.SectionData->getBufferSize()); in handleUserSection()
|