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