Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFContext.h27 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 DDWARFContext.cpp35 SectionData &data) { in LoadOrGetSection()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DDecompressor.cpp30 : 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 DCOFFEmitter.cpp205 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 DXCOFFEmitter.cpp162 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 DCOFFYAML.cpp698 IO.mapOptional("SectionData", Sec.SectionData); in mapping()
710 if (!Sec.StructuredData.empty() && Sec.SectionData.binary_size()) { in mapping()
H A DXCOFFYAML.cpp254 IO.mapOptional("SectionData", Sec.SectionData); in mapping()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/wasm/
H A DWasmObjcopy.cpp131 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 DCOFFObjcopy.cpp281 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 Dllvm-readobj.h39 extern bool SectionData;
H A DWasmDumper.cpp214 if (opts::SectionData) { in printSectionHeaders()
215 W.printBinaryBlock("SectionData", WasmSec.Content); in printSectionHeaders()
H A Dllvm-readobj.cpp116 bool SectionData; variable
234 opts::SectionData = Args.hasArg(OPT_section_data); in parseOptions()
H A DMachODumper.cpp517 if (opts::SectionData && !Section.isBSS()) in printSectionHeaders()
518 W.printBinaryBlock("SectionData", unwrapOrError(Obj->getFileName(), in printSectionHeaders()
H A DCOFFDumper.cpp1594 if (opts::SectionData && in printSectionHeaders()
2016 if (opts::SectionData) in printCOFFResources()
H A DXCOFFDumper.cpp1242 if (opts::SectionData) in printSectionHeaders()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DDecompressor.h50 StringRef SectionData; variable
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DXCOFFLinkGraphBuilder.h52 object::SectionRef SectionData; member
H A DXCOFFLinkGraphBuilder.cpp291 SectionTable[ParentSectionNumber].SectionData; in processCsectsAndSymbols()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebuggerSupportPlugin.cpp145 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 DCommonConfig.h201 : 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 DMachOObjcopy.cpp335 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 DCOFFYAML.h83 yaml::BinaryRef SectionData; member
H A DXCOFFYAML.h83 yaml::BinaryRef SectionData; member
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp2117 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 DELFObjcopy.cpp724 NewSection.SectionData->getBufferStart()), in handleUserSection()
725 NewSection.SectionData->getBufferSize()); in handleUserSection()

12