aboutsummaryrefslogtreecommitdiff
path: root/scripts/tracetool/backend/simple.py
blob: fbb5717c6642af9ed5d5363e4e73c834818c475b (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
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Simple 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 "trace/simple.h"',
        '')

    for num, e in enumerate(events):
        if len(e.args):
            argstr = e.args.names()
            arg_prefix = ', (uint64_t)(uintptr_t)'
            cast_args = arg_prefix + arg_prefix.join(argstr)
            simple_args = (str(num) + cast_args)
        else:
            simple_args = str(num)

        out('static inline void trace_%(name)s(%(args)s)',
            '{',
            '    trace%(argc)d(%(trace_args)s);',
            '}',
            name = e.name,
            args = e.args,
            argc = len(e.args),
            trace_args = simple_args,
            )

    out('#define NR_TRACE_EVENTS %d' % len(events))
    out('extern TraceEvent trace_list[NR_TRACE_EVENTS];')