Searched refs:SectionData (Results 1 - 24 of 24) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFContext.h27 struct SectionData { struct in class:lldb_private::plugin::dwarf::DWARFContext
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
[all...]
H A DDWARFContext.cpp35 SectionData &data) {
/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DDecompressor.cpp30 : SectionData(Data), DecompressedSize(0) {}
35 if (SectionData.size() < HdrSize)
38 DataExtractor Extractor(SectionData, IsLittleEndian, 0);
62 SectionData = SectionData.substr(HdrSize);
68 arrayRefFromStringRef(SectionData),
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Object/
H A DDecompressor.h49 StringRef SectionData; member in class:llvm::object::Decompressor
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h39 extern bool SectionData;
H A DWasmDumper.cpp214 if (opts::SectionData) {
215 W.printBinaryBlock("SectionData", WasmSec.Content);
H A Dllvm-readobj.cpp113 bool SectionData; member in namespace:opts
227 opts::SectionData = Args.hasArg(OPT_section_data); member in class:opts
H A DXCOFFDumper.cpp1210 if (opts::SectionData)
H A DMachODumper.cpp517 if (opts::SectionData && !Section.isBSS())
518 W.printBinaryBlock("SectionData", unwrapOrError(Obj->getFileName(),
H A DCOFFDumper.cpp1545 if (opts::SectionData &&
1548 W.printBinaryBlock("SectionData", Data);
1967 if (opts::SectionData)
H A DELFDumper.cpp7145 if (opts::SectionData && Sec.sh_type != ELF::SHT_NOBITS) {
7149 "SectionData",
/freebsd-current/contrib/llvm-project/llvm/lib/ObjCopy/wasm/
H A DWasmObjcopy.cpp130 llvm::StringRef(NewSection.SectionData->getBufferStart(),
131 NewSection.SectionData->getBufferSize());
133 InputData, NewSection.SectionData->getBufferIdentifier());
/freebsd-current/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCOFFEmitter.cpp209 // We support specifying exactly one of SectionData or Subsections. So if
210 // there is already some SectionData, then we don't need to do any of this.
211 if (S.Name == ".debug$S" && S.SectionData.binary_size() == 0) {
223 if (S.SectionData.binary_size() == 0) {
227 S.SectionData =
231 if (S.SectionData.binary_size() == 0)
232 S.SectionData = CodeViewYAML::toDebugT(S.DebugT, CP.Allocator, S.Name);
234 if (S.SectionData.binary_size() == 0)
235 S.SectionData = CodeViewYAML::toDebugT(S.DebugP, CP.Allocator, S.Name);
237 if (S.DebugH && S.SectionData
[all...]
H A DXCOFFEmitter.cpp147 if (InitSections[I].SectionData.binary_size()) {
149 CurrentOffset += InitSections[I].SectionData.binary_size();
487 if (YamlSec.SectionData.binary_size()) {
496 YamlSec.SectionData.writeAsBinary(W.OS);
H A DCOFFYAML.cpp675 IO.mapOptional("SectionData", Sec.SectionData);
687 if (!Sec.StructuredData.empty() && Sec.SectionData.binary_size()) {
688 IO.setError("StructuredData and SectionData can't be used together");
H A DXCOFFYAML.cpp224 IO.mapOptional("SectionData", Sec.SectionData);
/freebsd-current/contrib/llvm-project/llvm/lib/ObjCopy/COFF/
H A DCOFFObjcopy.cpp273 NewSection.SectionData->getBufferStart()),
274 NewSection.SectionData->getBufferSize()),
292 if (ContentSize < NewSection.SectionData->getBufferSize())
296 It->setOwnedContents({NewSection.SectionData->getBufferStart(),
297 NewSection.SectionData->getBufferEnd()});
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h195 : SectionName(Name), SectionData(std::move(Buffer)) {}
198 std::shared_ptr<MemoryBuffer> SectionData; member in struct:llvm::objcopy::NewSectionInfo
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebuggerSupportPlugin.cpp149 StringRef SectionData(SR.getFirstBlock()->getContent().data(),
152 MemoryBuffer::getMemBuffer(SectionData, G.getName(), false);
154 DebugLineSectionData = SectionData;
/freebsd-current/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOObjcopy.cpp316 Obj.NewSectionsContents.save(NewSection.SectionData->getBuffer());
372 if (NewSection.SectionData->getBufferSize() > Sec.Size)
376 Sec.Content = O.NewSectionsContents.save(NewSection.SectionData->getBuffer());
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCOFFYAML.h83 yaml::BinaryRef SectionData; member in struct:llvm::COFFYAML::Section
H A DXCOFFYAML.h82 yaml::BinaryRef SectionData; member in struct:llvm::XCOFFYAML::Section
/freebsd-current/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp604 NewSection.SectionData->getBufferStart()),
605 NewSection.SectionData->getBufferSize());
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp2115 if (StringRef *SectionData = mapSectionToMember(SecIt.first()))
2116 *SectionData = SecIt.second->getBuffer();
2189 if (StringRef *SectionData = mapSectionToMember(Name)) {
2190 *SectionData = Data;

Completed in 386 milliseconds