1#!/usr/bin/env python 2# -*- coding: utf-8 -*- 3 4""" 5trace/generated-tracers.h 6""" 7 8__author__ = "Lluís Vilanova <vilanova@ac.upc.edu>" 9__copyright__ = "Copyright 2012-2016, Lluís Vilanova <vilanova@ac.upc.edu>" 10__license__ = "GPL version 2 or (at your option) any later version" 11 12__maintainer__ = "Stefan Hajnoczi" 13__email__ = "stefanha@linux.vnet.ibm.com" 14 15 16from tracetool import out 17 18 19def generate(events, backend): 20 out('/* This file is autogenerated by tracetool, do not edit. */', 21 '', 22 '#ifndef TRACE__GENERATED_TRACERS_H', 23 '#define TRACE__GENERATED_TRACERS_H', 24 '', 25 '#include "qemu-common.h"', 26 '#include "qemu/typedefs.h"', 27 '') 28 29 backend.generate_begin(events) 30 31 for e in events: 32 out('', 33 'static inline void %(api)s(%(args)s)', 34 '{', 35 api=e.api(), 36 args=e.args) 37 38 if "disable" not in e.properties: 39 backend.generate(e) 40 41 out('}') 42 43 backend.generate_end(events) 44 45 out('#endif /* TRACE__GENERATED_TRACERS_H */') 46