X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=deps%2Flightrec%2Frecompiler.c;fp=deps%2Flightrec%2Frecompiler.c;h=c764f11913a0333dcf3db8ae2ee04ee0513ebc76;hb=f5ee77cadf78d389ce40f00988ee9bde1d567dc7;hp=08a9235a6dfcbe3fc00409bd62fc86ab9e224462;hpb=6c307d2d02698d02f84e4b7f8e0f3bac4c93f83c;p=pcsx_rearmed.git diff --git a/deps/lightrec/recompiler.c b/deps/lightrec/recompiler.c index 08a9235a..c764f119 100644 --- a/deps/lightrec/recompiler.c +++ b/deps/lightrec/recompiler.c @@ -159,7 +159,7 @@ static void lightrec_compile_list(struct recompiler *rec, } if (ret) { - pr_err("Unable to compile block at PC 0x%x: %d\n", + pr_err("Unable to compile block at "PC_FMT": %d\n", block->pc, ret); } } @@ -361,7 +361,7 @@ int lightrec_recompiler_add(struct recompiler *rec, struct block *block) goto out_unlock; } - pr_debug("Adding block PC 0x%x to recompiler\n", block->pc); + pr_debug("Adding block "PC_FMT" to recompiler\n", block->pc); block_rec->block = block; block_rec->compiling = false; @@ -438,7 +438,7 @@ void * lightrec_recompiler_run_first_pass(struct lightrec_state *state, old_flags = block_set_flags(block, BLOCK_NO_OPCODE_LIST); if (!(old_flags & BLOCK_NO_OPCODE_LIST)) { - pr_debug("Block PC 0x%08x is fully tagged" + pr_debug("Block "PC_FMT" is fully tagged" " - free opcode list\n", block->pc); /* The block was already compiled but the opcode list @@ -466,7 +466,7 @@ void * lightrec_recompiler_run_first_pass(struct lightrec_state *state, old_flags = block_set_flags(block, BLOCK_NO_OPCODE_LIST); if (!(old_flags & BLOCK_NO_OPCODE_LIST)) { - pr_debug("Block PC 0x%08x is fully tagged" + pr_debug("Block "PC_FMT" is fully tagged" " - free opcode list\n", block->pc); lightrec_free_opcode_list(state, block->opcode_list);