2012-04-03 20:47:55 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
Stderr built-in backend.
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = "Lluís Vilanova <vilanova@ac.upc.edu>"
|
2017-07-04 10:50:46 +02:00
|
|
|
__copyright__ = "Copyright 2012-2017, Lluís Vilanova <vilanova@ac.upc.edu>"
|
2012-04-03 20:47:55 +02:00
|
|
|
__license__ = "GPL version 2 or (at your option) any later version"
|
|
|
|
|
|
|
|
__maintainer__ = "Stefan Hajnoczi"
|
2020-05-11 10:28:16 +02:00
|
|
|
__email__ = "stefanha@redhat.com"
|
2012-04-03 20:47:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
from tracetool import out
|
|
|
|
|
|
|
|
|
2013-03-05 14:47:26 +01:00
|
|
|
PUBLIC = True
|
|
|
|
|
|
|
|
|
2016-10-04 15:35:59 +02:00
|
|
|
def generate_h_begin(events, group):
|
2018-02-13 15:00:29 +01:00
|
|
|
out('#include "qemu/log-for-trace.h"',
|
2014-02-23 20:37:40 +01:00
|
|
|
'')
|
|
|
|
|
|
|
|
|
2016-10-04 15:35:59 +02:00
|
|
|
def generate_h(event, group):
|
2014-02-23 20:37:40 +01:00
|
|
|
argnames = ", ".join(event.args.names())
|
|
|
|
if len(event.args) > 0:
|
|
|
|
argnames = ", " + argnames
|
|
|
|
|
2016-07-11 12:53:46 +02:00
|
|
|
if "vcpu" in event.properties:
|
|
|
|
# already checked on the generic format code
|
|
|
|
cond = "true"
|
|
|
|
else:
|
|
|
|
cond = "trace_event_get_state(%s)" % ("TRACE_" + event.name.upper())
|
|
|
|
|
2018-02-13 15:00:29 +01:00
|
|
|
out(' if (%(cond)s && qemu_loglevel_mask(LOG_TRACE)) {',
|
2017-07-04 10:50:46 +02:00
|
|
|
' struct timeval _now;',
|
|
|
|
' gettimeofday(&_now, NULL);',
|
2018-06-21 19:12:47 +02:00
|
|
|
' qemu_log("%%d@%%zu.%%06zu:%(name)s " %(fmt)s "\\n",',
|
2018-10-04 16:30:09 +02:00
|
|
|
' qemu_get_thread_id(),',
|
2018-02-13 15:00:29 +01:00
|
|
|
' (size_t)_now.tv_sec, (size_t)_now.tv_usec',
|
|
|
|
' %(argnames)s);',
|
2017-07-04 10:50:46 +02:00
|
|
|
' }',
|
2016-07-11 12:53:46 +02:00
|
|
|
cond=cond,
|
2014-02-23 20:37:40 +01:00
|
|
|
name=event.name,
|
|
|
|
fmt=event.fmt.rstrip("\n"),
|
|
|
|
argnames=argnames)
|
2017-07-31 16:07:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
def generate_h_backend_dstate(event, group):
|
|
|
|
out(' trace_event_get_state_dynamic_by_id(%(event_id)s) || \\',
|
|
|
|
event_id="TRACE_" + event.name.upper())
|