summaryrefslogtreecommitdiff
path: root/scripts/tracetool/backend/stderr.py
blob: a10fbb83f497cfae437182fe0cacb3ba617bd597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/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


PUBLIC = True


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))