Lines Matching refs:objfile_up
130 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()
158 return objfile_up.release(); in CreateMemoryInstance()