qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 5/5] PPC: use device info for CPU statistics


From: Blue Swirl
Subject: [Qemu-devel] [PATCH 5/5] PPC: use device info for CPU statistics
Date: Wed, 9 Sep 2009 21:07:10 +0300

Signed-off-by: Blue Swirl <address@hidden>
---
 cpu-all.h              |    3 ---
 monitor.c              |   15 ---------------
 qemu-monitor.hx        |    2 --
 target-ppc/cpu.h       |    2 ++
 target-ppc/helper.c    |    4 ++++
 target-ppc/translate.c |   45 ++++++++++++++++++++++++++++++---------------
 6 files changed, 36 insertions(+), 35 deletions(-)

diff --git a/cpu-all.h b/cpu-all.h
index 1a6a812..de65fb8 100644
--- a/cpu-all.h
+++ b/cpu-all.h
@@ -752,9 +752,6 @@ CPUState *qemu_get_cpu(int cpu);
 void cpu_dump_state(CPUState *env, FILE *f,
                     int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
                     int flags);
-void cpu_dump_statistics (CPUState *env, FILE *f,
-                          int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
-                          int flags);

 void QEMU_NORETURN cpu_abort(CPUState *env, const char *fmt, ...)
     __attribute__ ((__format__ (__printf__, 2, 3)));
diff --git a/monitor.c b/monitor.c
index 202c457..be141ed 100644
--- a/monitor.c
+++ b/monitor.c
@@ -420,17 +420,6 @@ static void do_info_history(Monitor *mon)
     }
 }

-#if defined(TARGET_PPC)
-/* XXX: not implemented in other targets */
-static void do_info_cpu_stats(Monitor *mon)
-{
-    CPUState *env;
-
-    env = mon_get_cpu();
-    cpu_dump_statistics(env, (FILE *)mon, &monitor_fprintf, 0);
-}
-#endif
-
 static void do_quit(Monitor *mon, const QDict *qdict)
 {
     exit(0);
@@ -1872,10 +1861,6 @@ static const mon_cmd_t info_cmds[] = {
       "", "show the current VM name" },
     { "uuid", "", do_info_uuid,
       "", "show the current VM UUID" },
-#if defined(TARGET_PPC)
-    { "cpustats", "", do_info_cpu_stats,
-      "", "show CPU statistics", },
-#endif
 #if defined(CONFIG_SLIRP)
     { "usernet", "", do_info_usernet,
       "", "show user network stack connection states", },
diff --git a/qemu-monitor.hx b/qemu-monitor.hx
index 26f9cf7..8720c81 100644
--- a/qemu-monitor.hx
+++ b/qemu-monitor.hx
@@ -73,8 +73,6 @@ show the vnc server status
 show the current VM name
 @item info uuid
 show the current VM UUID
address@hidden info cpustats
-show CPU statistics
 @item info usernet
 show user network stack connection states
 @item info migrate
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h
index 27f523f..3cb0424 100644
--- a/target-ppc/cpu.h
+++ b/target-ppc/cpu.h
@@ -827,6 +827,8 @@ static inline void cpu_clone_regs(CPUState *env,
target_ulong newsp)
 }
 #endif

+void register_stats_handler(const char *name, CPUState *env1);
+
 #include "cpu-all.h"
 #include "exec-all.h"

diff --git a/target-ppc/helper.c b/target-ppc/helper.c
index 5c85c61..158ef20 100644
--- a/target-ppc/helper.c
+++ b/target-ppc/helper.c
@@ -2813,6 +2813,10 @@ CPUPPCState *cpu_ppc_init (const char *cpu_model)
     cpu_ppc_register_internal(env, def);
     cpu_ppc_reset(env);

+#if !defined(CONFIG_USER_ONLY)
+    register_stats_handler(cpu_model, env);
+#endif
+
     qemu_init_vcpu(env);

     return env;
diff --git a/target-ppc/translate.c b/target-ppc/translate.c
index 1c54fa7..c571629 100644
--- a/target-ppc/translate.c
+++ b/target-ppc/translate.c
@@ -28,6 +28,7 @@
 #include "tcg-op.h"
 #include "qemu-common.h"
 #include "host-utils.h"
+#include "monitor.h"

 #include "helper.h"
 #define GEN_HELPER 1
@@ -8898,11 +8899,11 @@ void cpu_dump_state (CPUState *env, FILE *f,
 #undef RFPL
 }

-void cpu_dump_statistics (CPUState *env, FILE*f,
-                          int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
-                          int flags)
+#if !defined(CONFIG_USER_ONLY)
+static void cpu_dump_statistics(Monitor *mon, void *opaque)
 {
 #if defined(DO_PPC_STATISTICS)
+    CPUState *env = opaque;
     opc_handler_t **t1, **t2, **t3, *handler;
     int op1, op2, op3;

@@ -8919,32 +8920,46 @@ void cpu_dump_statistics (CPUState *env, FILE*f,
                         handler = t3[op3];
                         if (handler->count == 0)
                             continue;
-                        cpu_fprintf(f, "%02x %02x %02x (%02x %04d) %16s: "
-                                    "%016llx %lld\n",
-                                    op1, op2, op3, op1, (op3 << 5) | op2,
-                                    handler->oname,
-                                    handler->count, handler->count);
+                        monitor_printf(mon, "%02x %02x %02x (%02x %04d) %16s: "
+                                       "%016" PRIx64 " %" PRId64 "\n",
+                                       op1, op2, op3, op1, (op3 << 5) | op2,
+                                       handler->oname,
+                                       handler->count, handler->count);
                     }
                 } else {
                     if (handler->count == 0)
                         continue;
-                    cpu_fprintf(f, "%02x %02x    (%02x %04d) %16s: "
-                                "%016llx %lld\n",
-                                op1, op2, op1, op2, handler->oname,
-                                handler->count, handler->count);
+                    monitor_printf(mon, "%02x %02x    (%02x %04d) %16s: "
+                                   "%016" PRIx64 " %" PRId64 "\n",
+                                   op1, op2, op1, op2, handler->oname,
+                                   handler->count, handler->count);
                 }
             }
         } else {
             if (handler->count == 0)
                 continue;
-            cpu_fprintf(f, "%02x       (%02x     ) %16s: %016llx %lld\n",
-                        op1, op1, handler->oname,
-                        handler->count, handler->count);
+            monitor_printf(mon, "%02x       (%02x     ) %16s: %016" PRIx64
+                           " %" PRId64 "\n",
+                           op1, op1, handler->oname,
+                           handler->count, handler->count);
         }
     }
+#else
+    monitor_printf(mon, "CPU statistics not compiled\n");
 #endif
 }

+static const struct MonDevInfo cpu_statistics_info = {
+    .dev_name = "cpu.stats",
+    .dev_info_cb = cpu_dump_statistics,
+};
+
+void register_stats_handler(const char *name, CPUState *env1)
+{
+    monitor_register_device_info(&cpu_statistics_info, env1);
+}
+#endif
+
 /*****************************************************************************/
 static inline void gen_intermediate_code_internal(CPUState *env,
                                                   TranslationBlock *tb,
-- 
1.6.2.4




reply via email to

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