2012-04-04 02:47:50 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
2014-02-24 03:37:30 +08:00
|
|
|
trace/generated-tracers.h
|
2012-04-04 02:47:50 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = "Lluís Vilanova <vilanova@ac.upc.edu>"
|
2014-02-24 03:37:02 +08:00
|
|
|
__copyright__ = "Copyright 2012-2014, Lluís Vilanova <vilanova@ac.upc.edu>"
|
2012-04-04 02:47:50 +08: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-24 03:37:40 +08:00
|
|
|
def generate(events, backend):
|
2012-04-04 02:47:50 +08:00
|
|
|
out('/* This file is autogenerated by tracetool, do not edit. */',
|
|
|
|
'',
|
2012-12-15 03:13:09 +08:00
|
|
|
'#ifndef TRACE__GENERATED_TRACERS_H',
|
|
|
|
'#define TRACE__GENERATED_TRACERS_H',
|
2012-04-04 02:47:50 +08:00
|
|
|
'',
|
2014-02-24 03:37:40 +08:00
|
|
|
'#include "qemu-common.h"',
|
|
|
|
'')
|
2012-04-04 02:47:50 +08:00
|
|
|
|
2014-02-24 03:37:40 +08:00
|
|
|
backend.generate_begin(events)
|
2012-04-04 02:47:50 +08:00
|
|
|
|
|
|
|
for e in events:
|
|
|
|
out('',
|
2014-02-24 03:37:02 +08:00
|
|
|
'static inline void %(api)s(%(args)s)',
|
2012-04-04 02:47:50 +08:00
|
|
|
'{',
|
2014-02-24 03:37:40 +08:00
|
|
|
api=e.api(),
|
|
|
|
args=e.args)
|
|
|
|
|
|
|
|
if "disable" not in e.properties:
|
|
|
|
backend.generate(e)
|
|
|
|
|
|
|
|
out('}')
|
|
|
|
|
|
|
|
backend.generate_end(events)
|
|
|
|
|
|
|
|
out('#endif /* TRACE__GENERATED_TRACERS_H */')
|