mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 08:21:29 +12:00
PPU Precompilation: Abort compilation as soon as possible on Emu.Stop()
This commit is contained in:
parent
87411da95f
commit
4d24ba1f35
1 changed files with 5 additions and 0 deletions
|
@ -3741,6 +3741,11 @@ bool ppu_initialize(const ppu_module& info, bool check_only)
|
||||||
// Allocate "core"
|
// Allocate "core"
|
||||||
std::lock_guard jlock(g_fxo->get<jit_core_allocator>().sem);
|
std::lock_guard jlock(g_fxo->get<jit_core_allocator>().sem);
|
||||||
|
|
||||||
|
if (Emu.IsStopped())
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
ppu_log.warning("LLVM: Compiling module %s%s", cache_path, obj_name);
|
ppu_log.warning("LLVM: Compiling module %s%s", cache_path, obj_name);
|
||||||
|
|
||||||
// Use another JIT instance
|
// Use another JIT instance
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue