qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Lluís Vilanova" <vilanova@ac.upc.edu>
To: qemu-devel@nongnu.org
Cc: stefanha@gmail.com
Subject: [Qemu-devel] [PATCH v7 4/8] tracetool: Add support for the 'stderr' backend
Date: Mon,  2 Apr 2012 23:44:41 +0200	[thread overview]
Message-ID: <20120402214441.775.45404.stgit@ginnungagap.bsc.es> (raw)
In-Reply-To: <20120402214417.775.35250.stgit@ginnungagap.bsc.es>

Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
---
 scripts/tracetool/backend/stderr.py |   56 +++++++++++++++++++++++++++++++++++
 1 files changed, 56 insertions(+), 0 deletions(-)
 create mode 100644 scripts/tracetool/backend/stderr.py

diff --git a/scripts/tracetool/backend/stderr.py b/scripts/tracetool/backend/stderr.py
new file mode 100644
index 0000000..917fde7
--- /dev/null
+++ b/scripts/tracetool/backend/stderr.py
@@ -0,0 +1,56 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+"""
+Stderr built-in backend.
+"""
+
+__author__     = "Lluís Vilanova <vilanova@ac.upc.edu>"
+__copyright__  = "Copyright 2012, Lluís Vilanova <vilanova@ac.upc.edu>"
+__license__    = "GPL version 2 or (at your option) any later version"
+
+__maintainer__ = "Stefan Hajnoczi"
+__email__      = "stefanha@linux.vnet.ibm.com"
+
+
+from tracetool import out
+
+
+def c(events):
+    out('#include "trace.h"',
+        '',
+        'TraceEvent trace_list[] = {')
+
+    for e in events:
+        out('{.tp_name = "%(name)s", .state=0},',
+            name = e.name,
+            )
+
+    out('};')
+
+def h(events):
+    out('#include <stdio.h>',
+        '#include "trace/stderr.h"',
+        '',
+        'extern TraceEvent trace_list[];')
+
+    for num, e in enumerate(events):
+        argnames = ", ".join(e.args.names())
+        if len(e.args) > 0:
+            argnames = ", " + argnames
+
+        out('static inline void trace_%(name)s(%(args)s)',
+            '{',
+            '    if (trace_list[%(event_num)s].state != 0) {',
+            '        fprintf(stderr, "%(name)s " %(fmt)s "\\n" %(argnames)s);',
+            '    }',
+            '}',
+            name = e.name,
+            args = e.args,
+            event_num = num,
+            fmt = e.fmt,
+            argnames = argnames,
+            )
+
+    out('',
+        '#define NR_TRACE_EVENTS %d' % len(events))

  parent reply	other threads:[~2012-04-02 21:44 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-02 21:44 [Qemu-devel] [PATCH v7 0/8] Rewrite tracetool using python modules Lluís Vilanova
2012-04-02 21:44 ` [Qemu-devel] [PATCH v7 1/8] tracetool: Rewrite infrastructure as " Lluís Vilanova
2012-04-02 21:44 ` [Qemu-devel] [PATCH v7 2/8] tracetool: Add module for the 'c' format Lluís Vilanova
2012-04-02 21:44 ` [Qemu-devel] [PATCH v7 3/8] tracetool: Add module for the 'h' format Lluís Vilanova
2012-04-02 21:44 ` Lluís Vilanova [this message]
2012-04-02 21:44 ` [Qemu-devel] [PATCH v7 5/8] tracetool: Add support for the 'simple' backend Lluís Vilanova
2012-04-02 21:44 ` [Qemu-devel] [PATCH v7 6/8] tracetool: Add support for the 'ust' backend Lluís Vilanova
2012-04-02 21:44 ` [Qemu-devel] [PATCH v7 7/8] tracetool: Add support for the 'dtrace' backend Lluís Vilanova
2012-04-02 21:45 ` [Qemu-devel] [PATCH v7 8/8] tracetool: Add MAINTAINERS info Lluís Vilanova
2012-04-02 21:49 ` [Qemu-devel] [PATCH v7 0/8] Rewrite tracetool using python modules Lluís Vilanova

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120402214441.775.45404.stgit@ginnungagap.bsc.es \
    --to=vilanova@ac.upc.edu \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).