2 # -*- coding: utf-8 -*-
5 trace/generated-tracers.h
8 __author__
= "Lluís Vilanova <vilanova@ac.upc.edu>"
9 __copyright__
= "Copyright 2012-2017, Lluís Vilanova <vilanova@ac.upc.edu>"
10 __license__
= "GPL version 2 or (at your option) any later version"
12 __maintainer__
= "Stefan Hajnoczi"
13 __email__
= "stefanha@linux.vnet.ibm.com"
16 from tracetool
import out
19 def generate(events
, backend
, group
):
20 out('/* This file is autogenerated by tracetool, do not edit. */',
22 '#ifndef TRACE_%s_GENERATED_TRACERS_H' % group
.upper(),
23 '#define TRACE_%s_GENERATED_TRACERS_H' % group
.upper(),
25 '#include "qemu-common.h"',
26 '#include "trace/control.h"',
30 out('extern TraceEvent %(event)s;',
31 event
= e
.api(e
.QEMU_EVENT
))
34 out('extern uint16_t %s;' % e
.api(e
.QEMU_DSTATE
))
38 if 'disable' in e
.properties
:
42 if "tcg-exec" in e
.properties
:
43 # a single define for the two "sub-events"
44 out('#define TRACE_%(name)s_ENABLED %(enabled)d',
45 name
=e
.original
.name
.upper(),
47 out('#define TRACE_%s_ENABLED %d' % (e
.name
.upper(), enabled
))
49 backend
.generate_begin(events
, group
)
52 # tracer-specific dstate
54 '#define %(api)s() ( \\',
55 api
=e
.api(e
.QEMU_BACKEND_DSTATE
))
57 if "disable" not in e
.properties
:
58 backend
.generate_backend_dstate(e
, group
)
62 # tracer without checks
64 'static inline void %(api)s(%(args)s)',
66 api
=e
.api(e
.QEMU_TRACE_NOCHECK
),
69 if "disable" not in e
.properties
:
70 backend
.generate(e
, group
)
74 # tracer wrapper with checks (per-vCPU tracing)
75 if "vcpu" in e
.properties
:
76 trace_cpu
= next(iter(e
.args
))[1]
77 cond
= "trace_event_get_vcpu_state(%(cpu)s,"\
86 'static inline void %(api)s(%(args)s)',
89 ' %(api_nocheck)s(%(names)s);',
93 api_nocheck
=e
.api(e
.QEMU_TRACE_NOCHECK
),
95 names
=", ".join(e
.args
.names()),
98 backend
.generate_end(events
, group
)
100 out('#endif /* TRACE_%s_GENERATED_TRACERS_H */' % group
.upper())