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