diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-11-13 13:24:26 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-12-17 17:33:47 +0100 |
commit | 79e8ed35977f9976b4df6f9b2550f46db77939ef (patch) | |
tree | b0aaba11e6863a9e793b54cbe77156b545979b36 /target-cris | |
parent | c6ce9f176f5bc8d24ce0030198dffc8b80e77f80 (diff) |
cris: avoid "naked" qemu_log
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-cris')
-rw-r--r-- | target-cris/helper.h | 1 | ||||
-rw-r--r-- | target-cris/op_helper.c | 5 | ||||
-rw-r--r-- | target-cris/translate.c | 2 | ||||
-rw-r--r-- | target-cris/translate_v10.c | 2 |
4 files changed, 2 insertions, 8 deletions
diff --git a/target-cris/helper.h b/target-cris/helper.h index 0b383b25a4..ff3595641a 100644 --- a/target-cris/helper.h +++ b/target-cris/helper.h @@ -1,7 +1,6 @@ DEF_HELPER_2(raise_exception, void, env, i32) DEF_HELPER_2(tlb_flush_pid, void, env, i32) DEF_HELPER_2(spc_write, void, env, i32) -DEF_HELPER_3(dump, void, i32, i32, i32) DEF_HELPER_1(rfe, void, env) DEF_HELPER_1(rfn, void, env) diff --git a/target-cris/op_helper.c b/target-cris/op_helper.c index 5c0c14d992..22966771e9 100644 --- a/target-cris/op_helper.c +++ b/target-cris/op_helper.c @@ -91,11 +91,6 @@ void helper_spc_write(CPUCRISState *env, uint32_t new_spc) #endif } -void helper_dump(uint32_t a0, uint32_t a1, uint32_t a2) -{ - qemu_log("%s: a0=%x a1=%x\n", __func__, a0, a1); -} - /* Used by the tlb decoder. */ #define EXTRACT_FIELD(src, start, end) \ (((src) >> start) & ((1 << (end - start + 1)) - 1)) diff --git a/target-cris/translate.c b/target-cris/translate.c index 354c86dd96..24299314d0 100644 --- a/target-cris/translate.c +++ b/target-cris/translate.c @@ -779,7 +779,7 @@ static void cris_alu_op_exec(DisasContext *dc, int op, t_gen_subx_carry(dc, dst); break; default: - qemu_log("illegal ALU op.\n"); + qemu_log_mask(LOG_GUEST_ERROR, "illegal ALU op.\n"); BUG(); break; } diff --git a/target-cris/translate_v10.c b/target-cris/translate_v10.c index 3ab1c398e0..df20bdc5f1 100644 --- a/target-cris/translate_v10.c +++ b/target-cris/translate_v10.c @@ -58,7 +58,7 @@ static inline int dec10_size(unsigned int size) static inline void cris_illegal_insn(DisasContext *dc) { - qemu_log("illegal insn at pc=%x\n", dc->pc); + qemu_log_mask(LOG_GUEST_ERROR, "illegal insn at pc=%x\n", dc->pc); t_gen_raise_exception(EXCP_BREAK); } |