2012-04-03 22:47:50 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
2014-02-23 23:37:30 +04:00
|
|
|
trace/generated-tracers.h
|
2012-04-03 22:47:50 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = "Lluís Vilanova <vilanova@ac.upc.edu>"
|
2016-02-25 19:43:38 +03:00
|
|
|
__copyright__ = "Copyright 2012-2016, Lluís Vilanova <vilanova@ac.upc.edu>"
|
2012-04-03 22:47:50 +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
|
|
|
|
|
|
|
|
|
2014-02-23 23:37:40 +04:00
|
|
|
def generate(events, backend):
|
2012-04-03 22:47:50 +04:00
|
|
|
out('/* This file is autogenerated by tracetool, do not edit. */',
|
|
|
|
'',
|
2012-12-14 23:13:09 +04:00
|
|
|
'#ifndef TRACE__GENERATED_TRACERS_H',
|
|
|
|
'#define TRACE__GENERATED_TRACERS_H',
|
2012-04-03 22:47:50 +04:00
|
|
|
'',
|
2014-02-23 23:37:40 +04:00
|
|
|
'#include "qemu-common.h"',
|
2016-07-11 13:53:46 +03:00
|
|
|
'#include "trace/control.h"',
|
2014-02-23 23:37:40 +04:00
|
|
|
'')
|
2012-04-03 22:47:50 +04:00
|
|
|
|
2014-02-23 23:37:40 +04:00
|
|
|
backend.generate_begin(events)
|
2012-04-03 22:47:50 +04:00
|
|
|
|
|
|
|
for e in events:
|
2016-07-11 13:53:46 +03:00
|
|
|
if "vcpu" in e.properties:
|
|
|
|
trace_cpu = next(iter(e.args))[1]
|
|
|
|
cond = "trace_event_get_vcpu_state(%(cpu)s,"\
|
2016-10-04 16:35:49 +03:00
|
|
|
" TRACE_%(id)s)"\
|
2016-07-11 13:53:46 +03:00
|
|
|
% dict(
|
|
|
|
cpu=trace_cpu,
|
|
|
|
id=e.name.upper())
|
|
|
|
else:
|
|
|
|
cond = "true"
|
|
|
|
|
2012-04-03 22:47:50 +04:00
|
|
|
out('',
|
2014-02-23 23:37:02 +04:00
|
|
|
'static inline void %(api)s(%(args)s)',
|
2012-04-03 22:47:50 +04:00
|
|
|
'{',
|
2016-07-11 13:53:46 +03:00
|
|
|
' if (%(cond)s) {',
|
2014-02-23 23:37:40 +04:00
|
|
|
api=e.api(),
|
2016-07-11 13:53:46 +03:00
|
|
|
args=e.args,
|
|
|
|
cond=cond)
|
2014-02-23 23:37:40 +04:00
|
|
|
|
|
|
|
if "disable" not in e.properties:
|
|
|
|
backend.generate(e)
|
|
|
|
|
2016-07-11 13:53:46 +03:00
|
|
|
out(' }',
|
|
|
|
'}')
|
2014-02-23 23:37:40 +04:00
|
|
|
|
|
|
|
backend.generate_end(events)
|
|
|
|
|
|
|
|
out('#endif /* TRACE__GENERATED_TRACERS_H */')
|