mirror of https://github.com/xemu-project/xemu.git
target-sh4: log instructions start in TCG code
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
6f396c8f38
commit
be15c50d8e
|
@ -1892,6 +1892,10 @@ static void decode_opc(DisasContext * ctx)
|
||||||
{
|
{
|
||||||
uint32_t old_flags = ctx->flags;
|
uint32_t old_flags = ctx->flags;
|
||||||
|
|
||||||
|
if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP))) {
|
||||||
|
tcg_gen_debug_insn_start(ctx->pc);
|
||||||
|
}
|
||||||
|
|
||||||
_decode_opc(ctx);
|
_decode_opc(ctx);
|
||||||
|
|
||||||
if (old_flags & (DELAY_SLOT | DELAY_SLOT_CONDITIONAL)) {
|
if (old_flags & (DELAY_SLOT | DELAY_SLOT_CONDITIONAL)) {
|
||||||
|
|
Loading…
Reference in New Issue