2012-04-03 22:48:06 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
LTTng User Space Tracing backend.
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = "Lluís Vilanova <vilanova@ac.upc.edu>"
|
2014-02-23 23:37:02 +04:00
|
|
|
__copyright__ = "Copyright 2012-2014, Lluís Vilanova <vilanova@ac.upc.edu>"
|
2012-04-03 22:48:06 +04:00
|
|
|
__license__ = "GPL version 2 or (at your option) any later version"
|
|
|
|
|
|
|
|
__maintainer__ = "Stefan Hajnoczi"
|
|
|
|
__email__ = "stefanha@linux.vnet.ibm.com"
|
|
|
|
|
|
|
|
|
|
|
|
from tracetool import out
|
|
|
|
|
|
|
|
|
2013-03-05 17:47:26 +04:00
|
|
|
PUBLIC = True
|
|
|
|
|
2014-01-30 07:47:55 +04:00
|
|
|
|
2014-02-23 23:37:40 +04:00
|
|
|
def generate_h_begin(events):
|
2014-01-30 07:47:55 +04:00
|
|
|
out('#include <lttng/tracepoint.h>',
|
|
|
|
'#include "trace/generated-ust-provider.h"',
|
|
|
|
'')
|
2012-04-03 22:48:06 +04:00
|
|
|
|
2014-01-30 07:47:55 +04:00
|
|
|
|
2014-02-23 23:37:40 +04:00
|
|
|
def generate_h(event):
|
|
|
|
argnames = ", ".join(event.args.names())
|
|
|
|
if len(event.args) > 0:
|
|
|
|
argnames = ", " + argnames
|
2014-01-30 07:47:55 +04:00
|
|
|
|
2014-02-23 23:37:40 +04:00
|
|
|
out(' tracepoint(qemu, %(name)s%(tp_args)s);',
|
|
|
|
name=event.name,
|
|
|
|
tp_args=argnames)
|