Searched refs:objfile_up (Results 1 – 5 of 5) sorted by relevance
126 std::unique_ptr<ObjectFileWasm> objfile_up(new ObjectFileWasm( in CreateInstance() local128 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() local152 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()153 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()[all …]
93 auto objfile_up = std::make_unique<ObjectFilePDB>( in CreateInstance() local95 if (!objfile_up->initPDBFile()) in CreateInstance()97 return objfile_up.release(); in CreateInstance()
227 auto objfile_up = std::make_unique<ObjectFilePECOFF>( in CreateInstance() local229 if (!objfile_up || !objfile_up->ParseHeader()) in CreateInstance()233 if (!objfile_up->CreateBinary()) in CreateInstance()235 return objfile_up.release(); in CreateInstance()243 auto objfile_up = std::make_unique<ObjectFilePECOFF>( in CreateMemoryInstance() local245 if (objfile_up.get() && objfile_up->ParseHeader()) { in CreateMemoryInstance()246 return objfile_up.release(); in CreateMemoryInstance()
392 std::unique_ptr<ObjectFileELF> objfile_up(new ObjectFileELF( in CreateInstance() local394 ArchSpec spec = objfile_up->GetArchitecture(); in CreateInstance()395 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateInstance()396 return objfile_up.release(); in CreateInstance()410 std::unique_ptr<ObjectFileELF> objfile_up( in CreateMemoryInstance() local412 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()413 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()414 return objfile_up.release(); in CreateMemoryInstance()
842 auto objfile_up = std::make_unique<ObjectFileMachO>( in CreateInstance() local844 if (!objfile_up || !objfile_up->ParseHeader()) in CreateInstance()847 return objfile_up.release(); in CreateInstance()854 std::unique_ptr<ObjectFile> objfile_up( in CreateMemoryInstance() local856 if (objfile_up.get() && objfile_up->ParseHeader()) in CreateMemoryInstance()857 return objfile_up.release(); in CreateMemoryInstance()