mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-02-16 03:40:27 +00:00
Add log messages for PPU compilation
This commit is contained in:
parent
17d413c110
commit
a4f67ccb87
@ -1579,6 +1579,8 @@ extern void ppu_initialize(const ppu_module& info)
|
|||||||
|
|
||||||
if (!Emu.IsStopped())
|
if (!Emu.IsStopped())
|
||||||
{
|
{
|
||||||
|
LOG_WARNING(PPU, "LLVM: Compiling module %s", obj_name);
|
||||||
|
|
||||||
// Use another JIT instance
|
// Use another JIT instance
|
||||||
jit_compiler jit2({}, g_cfg.core.llvm_cpu);
|
jit_compiler jit2({}, g_cfg.core.llvm_cpu);
|
||||||
ppu_initialize2(jit2, part, cache_path, obj_name);
|
ppu_initialize2(jit2, part, cache_path, obj_name);
|
||||||
@ -1595,6 +1597,8 @@ extern void ppu_initialize(const ppu_module& info)
|
|||||||
// Proceed with original JIT instance
|
// Proceed with original JIT instance
|
||||||
std::lock_guard lock(jmutex);
|
std::lock_guard lock(jmutex);
|
||||||
jit->add(cache_path + obj_name);
|
jit->add(cache_path + obj_name);
|
||||||
|
|
||||||
|
LOG_SUCCESS(PPU, "LLVM: Compiled module %s", obj_name);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user