From: "Lluís Vilanova" <vilanova@ac.upc.edu>
To: qemu-devel@nongnu.org
Cc: blauwirbel@gmail.com, stefanha@gmail.com
Subject: [Qemu-devel] [PATCH 6/6] trace: [stderr] Port to generic event information and new control interface
Date: Fri, 03 Feb 2012 22:20:47 +0100 [thread overview]
Message-ID: <20120203212047.339.83050.stgit@ginnungagap.bsc.es> (raw)
In-Reply-To: <20120203211915.339.99432.stgit@ginnungagap.bsc.es>
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
---
scripts/tracetool.py | 26 ++++++++------------------
trace/stderr.c | 34 ++++++----------------------------
2 files changed, 14 insertions(+), 46 deletions(-)
diff --git a/scripts/tracetool.py b/scripts/tracetool.py
index f4ce927..c6f5ea6 100755
--- a/scripts/tracetool.py
+++ b/scripts/tracetool.py
@@ -343,10 +343,10 @@ def simple_c(events):
@for_backend("stderr", "h", "Stderr built-in backend")
def stderr_h(events):
- print '''#include <stdio.h>
-#include "trace/stderr.h"
-
-extern TraceEvent trace_list[];'''
+ print """\
+#include <stdio.h>
+#include "trace/control.h"
+"""
for num, event in enumerate(events):
argnames = ", ".join(event.args.names())
@@ -355,31 +355,21 @@ extern TraceEvent trace_list[];'''
print '''
static inline void trace_%(name)s(%(args)s)
{
- if (trace_list[%(event_num)s].state != 0) {
+ bool _state = trace_event_get_state(%(event_id)s);
+ if (_state) {
fprintf(stderr, "%(name)s " %(fmt)s "\\n" %(argnames)s);
}
}''' % {
'name': event.name,
'args': event.args,
- 'event_num': num,
+ 'event_id': "TRACE_" + event.name.upper(),
'fmt': event.fmt.rstrip('\n'),
'argnames': argnames
}
- print
- print '#define NR_TRACE_EVENTS %d' % len(events)
@for_backend("stderr", "c")
def stderr_c(events):
- print '''#include "trace.h"
-
-TraceEvent trace_list[] = {
-'''
- for event in events:
- print '{.tp_name = "%(name)s", .state=0},' % {
- 'name': event.name
-}
- print
- print '};'
+ pass
##################################################
diff --git a/trace/stderr.c b/trace/stderr.c
index 0810d6f..6685aeb 100644
--- a/trace/stderr.c
+++ b/trace/stderr.c
@@ -4,40 +4,18 @@
void trace_print_events(FILE *stream, fprintf_function stream_printf)
{
- unsigned int i;
+ TraceEventID i;
- for (i = 0; i < NR_TRACE_EVENTS; i++) {
+ for (i = 0; i < trace_event_count(); i++) {
+ TraceEvent *ev = trace_event_id(i);
stream_printf(stream, "%s [Event ID %u] : state %u\n",
- trace_list[i].tp_name, i, trace_list[i].state);
+ trace_event_get_name(ev), i, trace_event_get_state_dynamic(ev));
}
}
-bool trace_event_set_state(const char *name, bool state)
+void trace_event_set_state_dynamic(TraceEvent *ev, bool state)
{
- unsigned int i;
- unsigned int len;
- bool wildcard = false;
- bool matched = false;
-
- len = strlen(name);
- if (len > 0 && name[len - 1] == '*') {
- wildcard = true;
- len -= 1;
- }
- for (i = 0; i < NR_TRACE_EVENTS; i++) {
- if (wildcard) {
- if (!strncmp(trace_list[i].tp_name, name, len)) {
- trace_list[i].state = state;
- matched = true;
- }
- continue;
- }
- if (!strcmp(trace_list[i].tp_name, name)) {
- trace_list[i].state = state;
- return true;
- }
- }
- return matched;
+ ev->dstate = state;
}
bool trace_backend_init(const char *events, const char *file)
prev parent reply other threads:[~2012-02-03 21:21 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-03 21:19 [Qemu-devel] [PATCH 0/6] trace: Generic event state description Lluís Vilanova
2012-02-03 21:19 ` [Qemu-devel] [PATCH 1/6] trace: Provide a generic tracing event descriptor Lluís Vilanova
2012-02-03 21:19 ` [Qemu-devel] [PATCH 2/6] trace: Provide a detailed event control interface Lluís Vilanova
2012-02-03 21:20 ` [Qemu-devel] [PATCH 3/6] trace: [monitor] Use new " Lluís Vilanova
2012-02-03 21:20 ` [Qemu-devel] [PATCH 4/6] trace: [default] " Lluís Vilanova
2012-02-03 21:20 ` [Qemu-devel] [PATCH 5/6] trace: [simple] Port to generic event information and new " Lluís Vilanova
2012-02-03 21:20 ` Lluís Vilanova [this message]
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=20120203212047.339.83050.stgit@ginnungagap.bsc.es \
--to=vilanova@ac.upc.edu \
--cc=blauwirbel@gmail.com \
--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).