From a4f67ccb87a25c5b6db33be8c628901cf7629ac1 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Mon, 31 Dec 2018 19:25:19 +0100 Subject: [PATCH] Add log messages for PPU compilation --- rpcs3/Emu/Cell/PPUThread.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index dbe8178e39..a76cc53ba3 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -1579,6 +1579,8 @@ extern void ppu_initialize(const ppu_module& info) if (!Emu.IsStopped()) { + LOG_WARNING(PPU, "LLVM: Compiling module %s", obj_name); + // Use another JIT instance jit_compiler jit2({}, g_cfg.core.llvm_cpu); 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 std::lock_guard lock(jmutex); jit->add(cache_path + obj_name); + + LOG_SUCCESS(PPU, "LLVM: Compiled module %s", obj_name); }); }