qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [5181] alpha: only print debug information to the log file


From: Aurelien Jarno
Subject: [Qemu-devel] [5181] alpha: only print debug information to the log file
Date: Sun, 07 Sep 2008 21:00:13 +0000

Revision: 5181
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5181
Author:   aurel32
Date:     2008-09-07 21:00:01 +0000 (Sun, 07 Sep 2008)

Log Message:
-----------
alpha: only print debug information to the log file

Signed-off-by: Aurelien Jarno <address@hidden>

Modified Paths:
--------------
    trunk/hw/alpha_palcode.c
    trunk/linux-user/main.c

Modified: trunk/hw/alpha_palcode.c
===================================================================
--- trunk/hw/alpha_palcode.c    2008-09-07 18:07:39 UTC (rev 5180)
+++ trunk/hw/alpha_palcode.c    2008-09-07 21:00:01 UTC (rev 5181)
@@ -1061,13 +1061,11 @@
 {
     target_ulong ret;
 
-    printf("%s: palcode %02x\n", __func__, palcode);
     if (logfile != NULL)
         fprintf(logfile, "%s: palcode %02x\n", __func__, palcode);
     switch (palcode) {
     case 0x83:
         /* CALLSYS */
-        printf("CALLSYS n " TARGET_FMT_ld "\n", env->ir[0]);
         if (logfile != NULL)
             fprintf(logfile, "CALLSYS n " TARGET_FMT_ld "\n", env->ir[0]);
         ret = do_syscall(env, env->ir[IR_V0], env->ir[IR_A0], env->ir[IR_A1],
@@ -1083,15 +1081,16 @@
     case 0x9E:
         /* RDUNIQUE */
         env->ir[IR_V0] = env->unique;
-        printf("RDUNIQUE: " TARGET_FMT_lx "\n", env->unique);
+        if (logfile != NULL)
+            fprintf(logfile, "RDUNIQUE: " TARGET_FMT_lx "\n", env->unique);
         break;
     case 0x9F:
         /* WRUNIQUE */
         env->unique = env->ir[IR_A0];
-        printf("WRUNIQUE: " TARGET_FMT_lx "\n", env->unique);
+        if (logfile != NULL)
+            fprintf(logfile, "WRUNIQUE: " TARGET_FMT_lx "\n", env->unique);
         break;
     default:
-        printf("%s: unhandled palcode %02x\n", __func__, palcode);
         if (logfile != NULL)
             fprintf(logfile, "%s: unhandled palcode %02x\n",
                     __func__, palcode);

Modified: trunk/linux-user/main.c
===================================================================
--- trunk/linux-user/main.c     2008-09-07 18:07:39 UTC (rev 5180)
+++ trunk/linux-user/main.c     2008-09-07 21:00:01 UTC (rev 5181)
@@ -2143,7 +2143,6 @@
             exit(1);
             break;
         case EXCP_CALL_PAL ... (EXCP_CALL_PALP - 1):
-            fprintf(stderr, "Call to PALcode\n");
             call_pal(env, (trapnr >> 6) | 0x80);
             break;
         case EXCP_CALL_PALP ... (EXCP_CALL_PALE - 1):






reply via email to

[Prev in Thread] Current Thread [Next in Thread]