Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp127 std::unique_ptr<ObjectFileWasm> objfile_up(new ObjectFileWasm( in CreateInstance() local
129 ArchSpec spec = objfile_up->GetArchitecture(); in CreateInstance()
130 if (spec && objfile_up->SetModulesArchitecture(spec)) { in CreateInstance()
133 static_cast<void *>(objfile_up.get()), in CreateInstance()
134 static_cast<void *>(objfile_up->GetModule().get()), in CreateInstance()
135 objfile_up->GetModule()->GetSpecificationDescription().c_str(), in CreateInstance()
137 return objfile_up.release(); in CreateInstance()
151 std::unique_ptr<ObjectFileWasm> objfile_up( in CreateMemoryInstance() local
153 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()
154 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/XCOFF/
H A DObjectFileXCOFF.cpp76 auto objfile_up = std::make_unique<ObjectFileXCOFF>( in CreateInstance() local
78 if (!objfile_up) in CreateInstance()
82 if (!objfile_up->CreateBinary()) in CreateInstance()
85 if (!objfile_up->ParseHeader()) in CreateInstance()
88 return objfile_up.release(); in CreateInstance()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp98 auto objfile_up = std::make_unique<ObjectFilePDB>( in CreateInstance() local
100 if (!objfile_up->initPDBFile()) in CreateInstance()
102 return objfile_up.release(); in CreateInstance()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp410 std::unique_ptr<ObjectFileELF> objfile_up(new ObjectFileELF( in CreateInstance() local
412 ArchSpec spec = objfile_up->GetArchitecture(); in CreateInstance()
413 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateInstance()
414 return objfile_up.release(); in CreateInstance()
446 std::unique_ptr<ObjectFileELF> objfile_up( in CreateMemoryInstance() local
448 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()
449 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()
450 return objfile_up.release(); in CreateMemoryInstance()