Home
last modified time | relevance | path

Searched refs:objfile_up (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp126 std::unique_ptr<ObjectFileWasm> objfile_up(new ObjectFileWasm( in CreateInstance() local
128 ArchSpec spec = objfile_up->GetArchitecture(); in CreateInstance()
129 if (spec && objfile_up->SetModulesArchitecture(spec)) { in CreateInstance()
132 static_cast<void *>(objfile_up.get()), in CreateInstance()
133 static_cast<void *>(objfile_up->GetModule().get()), in CreateInstance()
134 objfile_up->GetModule()->GetSpecificationDescription().c_str(), in CreateInstance()
136 return objfile_up.release(); in CreateInstance()
150 std::unique_ptr<ObjectFileWasm> objfile_up( in CreateMemoryInstance() local
152 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()
153 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp93 auto objfile_up = std::make_unique<ObjectFilePDB>( in CreateInstance() local
95 if (!objfile_up->initPDBFile()) in CreateInstance()
97 return objfile_up.release(); in CreateInstance()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp227 auto objfile_up = std::make_unique<ObjectFilePECOFF>( in CreateInstance() local
229 if (!objfile_up || !objfile_up->ParseHeader()) in CreateInstance()
233 if (!objfile_up->CreateBinary()) in CreateInstance()
235 return objfile_up.release(); in CreateInstance()
243 auto objfile_up = std::make_unique<ObjectFilePECOFF>( in CreateMemoryInstance() local
245 if (objfile_up.get() && objfile_up->ParseHeader()) { in CreateMemoryInstance()
246 return objfile_up.release(); in CreateMemoryInstance()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp392 std::unique_ptr<ObjectFileELF> objfile_up(new ObjectFileELF( in CreateInstance() local
394 ArchSpec spec = objfile_up->GetArchitecture(); in CreateInstance()
395 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateInstance()
396 return objfile_up.release(); in CreateInstance()
410 std::unique_ptr<ObjectFileELF> objfile_up( in CreateMemoryInstance() local
412 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()
413 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()
414 return objfile_up.release(); in CreateMemoryInstance()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp842 auto objfile_up = std::make_unique<ObjectFileMachO>( in CreateInstance() local
844 if (!objfile_up || !objfile_up->ParseHeader()) in CreateInstance()
847 return objfile_up.release(); in CreateInstance()
854 std::unique_ptr<ObjectFile> objfile_up( in CreateMemoryInstance() local
856 if (objfile_up.get() && objfile_up->ParseHeader()) in CreateMemoryInstance()
857 return objfile_up.release(); in CreateMemoryInstance()