From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44726) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bnSQ8-0007AC-5G for qemu-devel@nongnu.org; Fri, 23 Sep 2016 11:29:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bnSQ4-0001wg-GL for qemu-devel@nongnu.org; Fri, 23 Sep 2016 11:29:47 -0400 Received: from mail-it0-x241.google.com ([2607:f8b0:4001:c0b::241]:33150) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bnSQ4-0001wU-C2 for qemu-devel@nongnu.org; Fri, 23 Sep 2016 11:29:44 -0400 Received: by mail-it0-x241.google.com with SMTP id x192so1234855itb.0 for ; Fri, 23 Sep 2016 08:29:44 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Fri, 23 Sep 2016 08:29:09 -0700 Message-Id: <1474644551-5819-2-git-send-email-rth@twiddle.net> In-Reply-To: <1474644551-5819-1-git-send-email-rth@twiddle.net> References: <1474644551-5819-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH 2/4] 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: "Edgar E . Iglesias" Dumping cpu state is what -d cpu is for. Cc: 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