Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp130 std::unique_ptr<ObjectFileWasm> objfile_up(new ObjectFileWasm( in CreateInstance() local
132 ArchSpec spec = objfile_up->GetArchitecture(); in CreateInstance()
133 if (spec && objfile_up->SetModulesArchitecture(spec)) { in CreateInstance()
136 static_cast<void *>(objfile_up.get()), in CreateInstance()
137 static_cast<void *>(objfile_up->GetModule().get()), in CreateInstance()
138 objfile_up->GetModule()->GetSpecificationDescription().c_str(), in CreateInstance()
140 return objfile_up.release(); in CreateInstance()
154 std::unique_ptr<ObjectFileWasm> objfile_up( in CreateMemoryInstance() local
156 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()
157 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()
[all …]
/freebsd-13.1/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-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp380 std::unique_ptr<ObjectFileELF> objfile_up(new ObjectFileELF( in CreateInstance() local
382 ArchSpec spec = objfile_up->GetArchitecture(); in CreateInstance()
383 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateInstance()
384 return objfile_up.release(); in CreateInstance()
398 std::unique_ptr<ObjectFileELF> objfile_up( in CreateMemoryInstance() local
400 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()
401 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()
402 return objfile_up.release(); in CreateMemoryInstance()