From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52512) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c1XrB-0007fk-Kv for qemu-devel@nongnu.org; Tue, 01 Nov 2016 08:07:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c1XrA-0007fn-Ii for qemu-devel@nongnu.org; Tue, 01 Nov 2016 08:07:57 -0400 Received: from mail-oi0-x243.google.com ([2607:f8b0:4003:c06::243]:34529) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1c1XrA-0007fh-Db for qemu-devel@nongnu.org; Tue, 01 Nov 2016 08:07:56 -0400 Received: by mail-oi0-x243.google.com with SMTP id 62so13568014oif.1 for ; Tue, 01 Nov 2016 05:07:56 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Tue, 1 Nov 2016 06:07:43 -0600 Message-Id: <1478002070-26676-3-git-send-email-rth@twiddle.net> In-Reply-To: <1478002070-26676-1-git-send-email-rth@twiddle.net> References: <1478002070-26676-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PULL v2 for-2.8 2/9] target-microblaze: Do not dump cpu state with -d in_asm List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org Dumping cpu state is what -d cpu is for. Reviewed-by: Edgar E. Iglesias Signed-off-by: Richard Henderson --- target-microblaze/translate.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/target-microblaze/translate.c b/target-microblaze/translate.c index 80098ec..5a4a8b9 100644 --- a/target-microblaze/translate.c +++ b/target-microblaze/translate.c @@ -1670,13 +1670,6 @@ void gen_intermediate_code(CPUMBState *env, struct TranslationBlock *tb) cpu_abort(cs, "Microblaze: unaligned PC=%x\n", pc_start); } - if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { -#if !SIM_COMPAT - qemu_log("--------------\n"); - log_cpu_state(CPU(cpu), 0); -#endif - } - next_page_start = (pc_start & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE; num_insns = 0; max_insns = tb->cflags & CF_COUNT_MASK; @@ -1820,7 +1813,7 @@ void gen_intermediate_code(CPUMBState *env, struct TranslationBlock *tb) #if !SIM_COMPAT if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM) && qemu_log_in_addr_range(pc_start)) { - qemu_log("\n"); + qemu_log("--------------\n"); #if DISAS_GNU log_target_disas(cs, pc_start, dc->pc - pc_start, 0); #endif -- 2.7.4