Home
last modified time | relevance | path

Searched refs:objfile_up (Results 1 – 3 of 3) 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/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.cpp409 std::unique_ptr<ObjectFileELF> objfile_up(new ObjectFileELF( in CreateInstance() local
411 ArchSpec spec = objfile_up->GetArchitecture(); in CreateInstance()
412 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateInstance()
413 return objfile_up.release(); in CreateInstance()
427 std::unique_ptr<ObjectFileELF> objfile_up( in CreateMemoryInstance() local
429 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()
430 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()
431 return objfile_up.release(); in CreateMemoryInstance()