diff --git a/cpu-exec.c b/cpu-exec.c index 77516257b3..f7be38df50 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -532,7 +532,7 @@ int cpu_exec(CPUState *env1) } } #ifdef DEBUG_EXEC - if ((loglevel & CPU_LOG_TB_CPU)) { + if (qemu_loglevel_mask(CPU_LOG_TB_CPU)) { /* restore flags in standard format */ regs_to_env(); #if defined(TARGET_I386) diff --git a/hw/ppc_prep.c b/hw/ppc_prep.c index 506391c8e4..1d61cc9ce8 100644 --- a/hw/ppc_prep.c +++ b/hw/ppc_prep.c @@ -52,7 +52,7 @@ #if defined (HARD_DEBUG_PPC_IO) #define PPC_IO_DPRINTF(fmt, args...) \ do { \ - if (loglevel & CPU_LOG_IOPORT) { \ + if (qemu_loglevel_mask(CPU_LOG_IOPORT)) { \ qemu_log("%s: " fmt, __func__ , ##args); \ } else { \ printf("%s : " fmt, __func__ , ##args); \ diff --git a/target-alpha/translate.c b/target-alpha/translate.c index 9fa3ea01ee..3affb21983 100644 --- a/target-alpha/translate.c +++ b/target-alpha/translate.c @@ -2442,7 +2442,7 @@ static always_inline void gen_intermediate_code_internal (CPUState *env, } #if defined ALPHA_DEBUG_DISAS log_cpu_state_mask(CPU_LOG_TB_CPU, env, 0); - if (loglevel & CPU_LOG_TB_IN_ASM) { + if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { qemu_log("IN: %s\n", lookup_symbol(pc_start)); log_target_disas(pc_start, ctx.pc - pc_start, 1); qemu_log("\n"); diff --git a/target-arm/translate.c b/target-arm/translate.c index a0e7282d00..3cef021155 100644 --- a/target-arm/translate.c +++ b/target-arm/translate.c @@ -8870,7 +8870,7 @@ done_generating: *gen_opc_ptr = INDEX_op_end; #ifdef DEBUG_DISAS - if (loglevel & CPU_LOG_TB_IN_ASM) { + if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { qemu_log("----------------\n"); qemu_log("IN: %s\n", lookup_symbol(pc_start)); log_target_disas(pc_start, dc->pc - pc_start, env->thumb); diff --git a/target-cris/translate.c b/target-cris/translate.c index 8bd2136677..2ff6fe2d32 100644 --- a/target-cris/translate.c +++ b/target-cris/translate.c @@ -3035,7 +3035,7 @@ cris_decoder(DisasContext *dc) unsigned int insn_len = 2; int i; - if (unlikely(loglevel & CPU_LOG_TB_OP)) + if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP))) tcg_gen_debug_insn_start(dc->pc); /* Load a halfword onto the instruction register. */ @@ -3179,7 +3179,7 @@ gen_intermediate_code_internal(CPUState *env, TranslationBlock *tb, dc->cpustate_changed = 0; - if (loglevel & CPU_LOG_TB_IN_ASM) { + if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { qemu_log( "srch=%d pc=%x %x flg=%llx bt=%x ds=%u ccs=%x\n" "pid=%x usp=%x\n" @@ -3331,7 +3331,7 @@ gen_intermediate_code_internal(CPUState *env, TranslationBlock *tb, #ifdef DEBUG_DISAS #if !DISAS_CRIS - if (loglevel & CPU_LOG_TB_IN_ASM) { + if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { log_target_disas(pc_start, dc->pc - pc_start, 0); qemu_log("\nisize=%d osize=%zd\n", dc->pc - pc_start, gen_opc_ptr - gen_opc_buf); diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index 8ebc63b085..dcbc361a02 100644 --- a/target-i386/op_helper.c +++ b/target-i386/op_helper.c @@ -1206,7 +1206,7 @@ void do_interrupt_user(int intno, int is_int, int error_code, void do_interrupt(int intno, int is_int, int error_code, target_ulong next_eip, int is_hw) { - if (loglevel & CPU_LOG_INT) { + if (qemu_loglevel_mask(CPU_LOG_INT)) { if ((env->cr[0] & CR0_PE_MASK)) { static int count; qemu_log("%6d: v=%02x e=%04x i=%d cpl=%d IP=%04x:" TARGET_FMT_lx " pc=" TARGET_FMT_lx " SP=%04x:" TARGET_FMT_lx, diff --git a/target-i386/translate.c b/target-i386/translate.c index d7f97dc207..4b894fd708 100644 --- a/target-i386/translate.c +++ b/target-i386/translate.c @@ -3961,7 +3961,7 @@ static target_ulong disas_insn(DisasContext *s, target_ulong pc_start) target_ulong next_eip, tval; int rex_w, rex_r; - if (unlikely(loglevel & CPU_LOG_TB_OP)) + if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP))) tcg_gen_debug_insn_start(pc_start); s->pc = pc_start; prefixes = 0; @@ -7676,7 +7676,7 @@ static inline void gen_intermediate_code_internal(CPUState *env, #ifdef DEBUG_DISAS log_cpu_state_mask(CPU_LOG_TB_CPU, env, X86_DUMP_CCOP); - if (loglevel & CPU_LOG_TB_IN_ASM) { + if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { int disas_flags; qemu_log("----------------\n"); qemu_log("IN: %s\n", lookup_symbol(pc_start)); @@ -7712,7 +7712,7 @@ void gen_pc_load(CPUState *env, TranslationBlock *tb, { int cc_op; #ifdef DEBUG_DISAS - if (loglevel & CPU_LOG_TB_OP) { + if (qemu_loglevel_mask(CPU_LOG_TB_OP)) { int i; qemu_log("RESTORE:\n"); for(i = 0;i <= pc_pos; i++) { diff --git a/target-m68k/translate.c b/target-m68k/translate.c index 6f379fa9bc..ef976cf563 100644 --- a/target-m68k/translate.c +++ b/target-m68k/translate.c @@ -3063,7 +3063,7 @@ gen_intermediate_code_internal(CPUState *env, TranslationBlock *tb, *gen_opc_ptr = INDEX_op_end; #ifdef DEBUG_DISAS - if (loglevel & CPU_LOG_TB_IN_ASM) { + if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { qemu_log("----------------\n"); qemu_log("IN: %s\n", lookup_symbol(pc_start)); log_target_disas(pc_start, dc->pc - pc_start, 0); diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index 6b0600a33b..50f5e671a9 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -1194,7 +1194,7 @@ void do_mtc0_status (target_ulong t0) old = env->CP0_Status; env->CP0_Status = (env->CP0_Status & ~mask) | val; compute_hflags(env); - if (loglevel & CPU_LOG_EXEC) + if (qemu_loglevel_mask(CPU_LOG_EXEC)) do_mtc0_status_debug(old, val); cpu_mips_update_irq(env); } @@ -1705,7 +1705,7 @@ target_ulong do_ei (void) static void debug_pre_eret (void) { - if (loglevel & CPU_LOG_EXEC) { + if (qemu_loglevel_mask(CPU_LOG_EXEC)) { qemu_log("ERET: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx, env->active_tc.PC, env->CP0_EPC); if (env->CP0_Status & (1 << CP0St_ERL)) @@ -1718,7 +1718,7 @@ static void debug_pre_eret (void) static void debug_post_eret (void) { - if (loglevel & CPU_LOG_EXEC) { + if (qemu_loglevel_mask(CPU_LOG_EXEC)) { qemu_log(" => PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx, env->active_tc.PC, env->CP0_EPC); if (env->CP0_Status & (1 << CP0St_ERL)) diff --git a/target-mips/translate.c b/target-mips/translate.c index a3bbd742bc..692ea6dc07 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -8289,7 +8289,7 @@ done_generating: } #ifdef DEBUG_DISAS LOG_DISAS("\n"); - if (loglevel & CPU_LOG_TB_IN_ASM) { + if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { qemu_log("IN: %s\n", lookup_symbol(pc_start)); log_target_disas(pc_start, ctx.pc - pc_start, 0); qemu_log("\n"); diff --git a/target-ppc/translate.c b/target-ppc/translate.c index be3954c189..1bbe7f5afd 100644 --- a/target-ppc/translate.c +++ b/target-ppc/translate.c @@ -8334,7 +8334,7 @@ static always_inline void gen_intermediate_code_internal (CPUState *env, #if defined(DEBUG_DISAS) qemu_log_mask(CPU_LOG_TB_CPU, "---------------- excp: %04x\n", ctx.exception); log_cpu_state_mask(CPU_LOG_TB_CPU, env, 0); - if (loglevel & CPU_LOG_TB_IN_ASM) { + if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { int flags; flags = env->bfd_mach; flags |= ctx.le_mode << 16; diff --git a/target-sh4/helper.c b/target-sh4/helper.c index d4e0a842a8..7f5430abcb 100644 --- a/target-sh4/helper.c +++ b/target-sh4/helper.c @@ -105,7 +105,7 @@ void do_interrupt(CPUState * env) } } - if (loglevel & CPU_LOG_INT) { + if (qemu_loglevel_mask(CPU_LOG_INT)) { const char *expname; switch (env->exception_index) { case 0x0e0: diff --git a/target-sh4/translate.c b/target-sh4/translate.c index 0f48bf130f..9137e38014 100644 --- a/target-sh4/translate.c +++ b/target-sh4/translate.c @@ -1937,7 +1937,7 @@ gen_intermediate_code_internal(CPUState * env, TranslationBlock * tb, #ifdef SH4_DEBUG_DISAS qemu_log_mask(CPU_LOG_TB_IN_ASM, "\n"); #endif - if (loglevel & CPU_LOG_TB_IN_ASM) { + if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { qemu_log("IN:\n"); /* , lookup_symbol(pc_start)); */ log_target_disas(pc_start, ctx.pc - pc_start, 0); qemu_log("\n"); diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c index 0ba4caec53..2f88f4c1e3 100644 --- a/target-sparc/op_helper.c +++ b/target-sparc/op_helper.c @@ -2811,7 +2811,7 @@ void do_interrupt(CPUState *env) int intno = env->exception_index; #ifdef DEBUG_PCALL - if (loglevel & CPU_LOG_INT) { + if (qemu_loglevel_mask(CPU_LOG_INT)) { static int count; const char *name; @@ -2942,7 +2942,7 @@ void do_interrupt(CPUState *env) int cwp, intno = env->exception_index; #ifdef DEBUG_PCALL - if (loglevel & CPU_LOG_INT) { + if (qemu_loglevel_mask(CPU_LOG_INT)) { static int count; const char *name; diff --git a/target-sparc/translate.c b/target-sparc/translate.c index 8b380e8299..53997ae936 100644 --- a/target-sparc/translate.c +++ b/target-sparc/translate.c @@ -1933,7 +1933,7 @@ static void disas_sparc_insn(DisasContext * dc) { unsigned int insn, opc, rs1, rs2, rd; - if (unlikely(loglevel & CPU_LOG_TB_OP)) + if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP))) tcg_gen_debug_insn_start(dc->pc); insn = ldl_code(dc->pc); opc = GET_FIELD(insn, 0, 1); @@ -4905,7 +4905,7 @@ static inline void gen_intermediate_code_internal(TranslationBlock * tb, tb->icount = num_insns; } #ifdef DEBUG_DISAS - if (loglevel & CPU_LOG_TB_IN_ASM) { + if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { qemu_log("--------------\n"); qemu_log("IN: %s\n", lookup_symbol(pc_start)); log_target_disas(pc_start, last_pc + 4 - pc_start, 0); diff --git a/tcg/tcg.c b/tcg/tcg.c index 39254a6d45..8fe3658099 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -1878,7 +1878,7 @@ static inline int tcg_gen_code_common(TCGContext *s, uint8_t *gen_code_buf, const TCGArg *args; #ifdef DEBUG_DISAS - if (unlikely(loglevel & CPU_LOG_TB_OP)) { + if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP))) { qemu_log("OP:\n"); tcg_dump_ops(s, logfile); qemu_log("\n"); @@ -1894,7 +1894,7 @@ static inline int tcg_gen_code_common(TCGContext *s, uint8_t *gen_code_buf, #endif #ifdef DEBUG_DISAS - if (unlikely(loglevel & CPU_LOG_TB_OP_OPT)) { + if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP_OPT))) { qemu_log("OP after la:\n"); tcg_dump_ops(s, logfile); qemu_log("\n"); diff --git a/translate-all.c b/translate-all.c index 454ea7aeac..4bdf2c99d7 100644 --- a/translate-all.c +++ b/translate-all.c @@ -127,7 +127,7 @@ int cpu_gen_code(CPUState *env, TranslationBlock *tb, int *gen_code_size_ptr) #endif #ifdef DEBUG_DISAS - if (loglevel & CPU_LOG_TB_OUT_ASM) { + if (qemu_loglevel_mask(CPU_LOG_TB_OUT_ASM)) { qemu_log("OUT: [size=%d]\n", *gen_code_size_ptr); log_disas(tb->tc_ptr, *gen_code_size_ptr); qemu_log("\n");