Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/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;
34 SectionData m_data_debug_cu_index;
35 SectionData m_data_debug_info;
36 SectionData m_data_debug_line;
37 SectionData m_data_debug_line_str;
38 SectionData m_data_debug_loc;
39 SectionData m_data_debug_loclists;
[all …]
H A DDWARFContext.cpp34 SectionData &data) { in LoadOrGetSection()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DDecompressor.cpp29 : SectionData(Data), DecompressedSize(0) {} in Decompressor()
34 if (SectionData.size() < HdrSize) in consumeCompressedHeader()
37 DataExtractor Extractor(SectionData, IsLittleEndian, 0); in consumeCompressedHeader()
61 SectionData = SectionData.substr(HdrSize); in consumeCompressedHeader()
67 arrayRefFromStringRef(SectionData), in decompress()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DCOFFEmitter.cpp216 if (S.Name == ".debug$S" && S.SectionData.binary_size() == 0) { in layoutCOFF()
228 if (S.SectionData.binary_size() == 0) { in layoutCOFF()
232 S.SectionData = in layoutCOFF()
236 if (S.SectionData.binary_size() == 0) in layoutCOFF()
237 S.SectionData = CodeViewYAML::toDebugT(S.DebugT, CP.Allocator, S.Name); in layoutCOFF()
239 if (S.SectionData.binary_size() == 0) in layoutCOFF()
240 S.SectionData = CodeViewYAML::toDebugT(S.DebugP, CP.Allocator, S.Name); in layoutCOFF()
242 if (S.DebugH && S.SectionData.binary_size() == 0) in layoutCOFF()
243 S.SectionData = CodeViewYAML::toDebugH(*S.DebugH, CP.Allocator); in layoutCOFF()
246 if (S.SectionData.binary_size() > 0) { in layoutCOFF()
[all …]
H A DXCOFFEmitter.cpp147 if (InitSections[I].SectionData.binary_size()) { in initSectionHeader()
149 CurrentOffset += InitSections[I].SectionData.binary_size(); in initSectionHeader()
487 if (YamlSec.SectionData.binary_size()) { in writeSectionData()
496 YamlSec.SectionData.writeAsBinary(W.OS); in writeSectionData()
H A DCOFFYAML.cpp579 IO.mapOptional("SectionData", Sec.SectionData); in mapping()
591 if (Sec.SectionData.binary_size() == 0 && in mapping()
H A DXCOFFYAML.cpp224 IO.mapOptional("SectionData", Sec.SectionData); in mapping()
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/COFF/
H A DCOFFObjcopy.cpp243 NewSection.SectionData->getBufferStart()), in handleArgs()
244 NewSection.SectionData->getBufferSize()), in handleArgs()
262 if (ContentSize < NewSection.SectionData->getBufferSize()) in handleArgs()
266 It->setOwnedContents({NewSection.SectionData->getBufferStart(), in handleArgs()
267 NewSection.SectionData->getBufferEnd()}); in handleArgs()
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/wasm/
H A DWasmObjcopy.cpp130 llvm::StringRef(NewSection.SectionData->getBufferStart(), in handleArgs()
131 NewSection.SectionData->getBufferSize()); in handleArgs()
133 InputData, NewSection.SectionData->getBufferIdentifier()); in handleArgs()
/openbsd-src/gnu/llvm/llvm/docs/
H A Dyaml2obj.rst30 SectionData:
156 SectionData: {type: str}
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DDecompressor.h49 StringRef SectionData; variable
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h40 extern bool SectionData;
H A DWasmDumper.cpp214 if (opts::SectionData) { in printSectionHeaders()
H A Dllvm-readobj.cpp119 bool SectionData; variable
230 opts::SectionData = Args.hasArg(OPT_section_data); in parseOptions()
H A DMachODumper.cpp517 if (opts::SectionData && !Section.isBSS()) in printSectionHeaders()
H A DCOFFDumper.cpp1457 if (opts::SectionData && in printSectionHeaders()
1878 if (opts::SectionData) in printCOFFResources()
H A DXCOFFDumper.cpp1209 if (opts::SectionData) in printSectionHeaders()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h194 : SectionName(Name), SectionData(std::move(Buffer)) {} in NewSectionInfo()
197 std::shared_ptr<MemoryBuffer> SectionData; member
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/MachO/
H A DMachOObjcopy.cpp305 Obj.NewSectionsContents.save(NewSection.SectionData->getBuffer()); in addSection()
361 if (NewSection.SectionData->getBufferSize() > Sec.Size) in updateSection()
365 Sec.Content = O.NewSectionsContents.save(NewSection.SectionData->getBuffer()); in updateSection()
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dxcoff2yaml.cpp87 YamlSec.SectionData = SecDataRefOrErr.get(); in dumpSections()
H A Dcoff2yaml.cpp184 NewYAMLSection.SectionData = yaml::BinaryRef(sectionData); in dumpSections()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DCOFFYAML.h72 yaml::BinaryRef SectionData; member
H A DXCOFFYAML.h82 yaml::BinaryRef SectionData; member
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp587 NewSection.SectionData->getBufferStart()), in handleUserSection()
588 NewSection.SectionData->getBufferSize()); in handleUserSection()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1739 if (StringRef *SectionData = mapSectionToMember(SecIt.first())) in DWARFObjInMemory() local
1740 *SectionData = SecIt.second->getBuffer(); in DWARFObjInMemory()
1817 if (StringRef *SectionData = mapSectionToMember(Name)) { in DWARFObjInMemory() local
1818 *SectionData = Data; in DWARFObjInMemory()

12