OSDN Git Service

debug print
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 13 Jul 2003 17:34:37 +0000 (17:34 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 13 Jul 2003 17:34:37 +0000 (17:34 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@329 c046a42c-6fe2-441c-8c8c-71466251a162

translate.c

index 72b4d24..68c7622 100644 (file)
@@ -182,13 +182,14 @@ int cpu_restore_state(TranslationBlock *tb,
 #ifdef DEBUG_DISAS
         if (loglevel) {
             int i;
+            fprintf(logfile, "RESTORE:\n");
             for(i=0;i<=j; i++) {
                 if (gen_opc_instr_start[i]) {
-                    fprintf(logfile, "0x%04x: 0x%08x", i, gen_opc_pc[i]);
+                    fprintf(logfile, "0x%04x: 0x%08x\n", i, gen_opc_pc[i]);
                 }
             }
-            fprintf(logfile, "j=0x%x eip=0x%lx cs_base=%lx\n", 
-                    j, gen_opc_pc[j] - tb->cs_base, tb->cs_base);
+            fprintf(logfile, "spc=0x%08lx j=0x%x eip=0x%lx cs_base=%lx\n", 
+                    searched_pc, j, gen_opc_pc[j] - tb->cs_base, tb->cs_base);
         }
 #endif
         env->eip = gen_opc_pc[j] - tb->cs_base;