Searched refs:objfile_up (Results 1 – 5 of 5) sorted by relevance
130 std::unique_ptr<ObjectFileWasm> objfile_up(new ObjectFileWasm( in CreateInstance() local132 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() local156 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()157 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()[all …]
98 auto objfile_up = std::make_unique<ObjectFilePDB>( in CreateInstance() local100 if (!objfile_up->initPDBFile()) in CreateInstance()102 return objfile_up.release(); in CreateInstance()
108 auto objfile_up = std::make_unique<ObjectFilePECOFF>( in CreateInstance() local110 if (!objfile_up || !objfile_up->ParseHeader()) in CreateInstance()114 if (!objfile_up->CreateBinary()) in CreateInstance()116 return objfile_up.release(); in CreateInstance()124 auto objfile_up = std::make_unique<ObjectFilePECOFF>( in CreateMemoryInstance() local126 if (objfile_up.get() && objfile_up->ParseHeader()) { in CreateMemoryInstance()127 return objfile_up.release(); in CreateMemoryInstance()
364 std::unique_ptr<ObjectFileELF> objfile_up(new ObjectFileELF( in CreateInstance() local366 ArchSpec spec = objfile_up->GetArchitecture(); in CreateInstance()367 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateInstance()368 return objfile_up.release(); in CreateInstance()382 std::unique_ptr<ObjectFileELF> objfile_up( in CreateMemoryInstance() local384 ArchSpec spec = objfile_up->GetArchitecture(); in CreateMemoryInstance()385 if (spec && objfile_up->SetModulesArchitecture(spec)) in CreateMemoryInstance()386 return objfile_up.release(); in CreateMemoryInstance()
800 auto objfile_up = std::make_unique<ObjectFileMachO>( in CreateInstance() local802 if (!objfile_up || !objfile_up->ParseHeader()) in CreateInstance()805 return objfile_up.release(); in CreateInstance()812 std::unique_ptr<ObjectFile> objfile_up( in CreateMemoryInstance() local814 if (objfile_up.get() && objfile_up->ParseHeader()) in CreateMemoryInstance()815 return objfile_up.release(); in CreateMemoryInstance()