From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41868) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YywUN-0002MM-1R for qemu-devel@nongnu.org; Sun, 31 May 2015 02:12:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YywUM-0000bE-6H for qemu-devel@nongnu.org; Sun, 31 May 2015 02:12:50 -0400 Received: from mail-pd0-x22a.google.com ([2607:f8b0:400e:c02::22a]:34655) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YywUL-0000az-Vl for qemu-devel@nongnu.org; Sun, 31 May 2015 02:12:50 -0400 Received: by pdbki1 with SMTP id ki1so84166812pdb.1 for ; Sat, 30 May 2015 23:12:49 -0700 (PDT) From: Peter Crosthwaite Date: Sat, 30 May 2015 23:11:48 -0700 Message-Id: In-Reply-To: References: In-Reply-To: References: Subject: [Qemu-devel] [RFC v2 15/34] HACK: monitor: Comment out TCG profile ops List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, Peter Crosthwaite , pbonzini@redhat.com, edgar.iglesias@gmail.com, afaerber@suse.de, rth@twiddle.net Not dealing with this problem as of this RFC, but comments on how to solve it welcome. The approach adopted by this series is to implement multi-arch as multiple translators, so a single global TCG profiler is now ill-defined. Signed-off-by: Peter Crosthwaite --- monitor.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/monitor.c b/monitor.c index 1a17cf3..f3ee785 100644 --- a/monitor.c +++ b/monitor.c @@ -1036,13 +1036,17 @@ static void hmp_info_registers(Monitor *mon, const QDict *qdict) static void hmp_info_jit(Monitor *mon, const QDict *qdict) { +#if 0 dump_exec_info((FILE *)mon, monitor_fprintf); +#endif dump_drift_info((FILE *)mon, monitor_fprintf); } static void hmp_info_opcount(Monitor *mon, const QDict *qdict) { +#if 0 dump_opcount_info((FILE *)mon, monitor_fprintf); +#endif } static void hmp_info_history(Monitor *mon, const QDict *qdict) -- 1.9.1