[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 13/13] trace: Add a proper API to manage auto-generat
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PULL 13/13] trace: Add a proper API to manage auto-generated events from the 'tcg' property |
Date: |
Tue, 1 Mar 2016 15:48:14 +0000 |
From: Lluís Vilanova <address@hidden>
Formalizes the existence of the 'event_trans' and 'event_exec' event
attributes, which until now were monkey-patched only when necessary.
Signed-off-by: Lluís Vilanova <address@hidden>
Message-id: address@hidden
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
scripts/tracetool/__init__.py | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/scripts/tracetool/__init__.py b/scripts/tracetool/__init__.py
index 23caba0..be24039 100644
--- a/scripts/tracetool/__init__.py
+++ b/scripts/tracetool/__init__.py
@@ -163,7 +163,8 @@ class Event(object):
_VALID_PROPS = set(["disable", "tcg", "tcg-trans", "tcg-exec", "vcpu"])
- def __init__(self, name, props, fmt, args, orig=None):
+ def __init__(self, name, props, fmt, args, orig=None,
+ event_trans=None, event_exec=None):
"""
Parameters
----------
@@ -176,13 +177,19 @@ class Event(object):
args : Arguments
Event arguments.
orig : Event or None
- Original Event before transformation.
+ Original Event before transformation/generation.
+ event_trans : Event or None
+ Generated translation-time event ("tcg" property).
+ event_exec : Event or None
+ Generated execution-time event ("tcg" property).
"""
self.name = name
self.properties = props
self.fmt = fmt
self.args = args
+ self.event_trans = event_trans
+ self.event_exec = event_exec
if orig is None:
self.original = weakref.ref(self)
@@ -198,7 +205,7 @@ class Event(object):
def copy(self):
"""Create a new copy."""
return Event(self.name, list(self.properties), self.fmt,
- self.args.copy(), self)
+ self.args.copy(), self, self.event_trans, self.event_exec)
@staticmethod
def build(line_str):
--
2.5.0
- [Qemu-devel] [PULL 06/13] trace: Extend API to manage event arguments, (continued)
- [Qemu-devel] [PULL 06/13] trace: Extend API to manage event arguments, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 04/13] trace: use addresses instead of offsets in memory tracepoints, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 03/13] trace: split subpage MMIOs into their own trace events., Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 05/13] vl: fix tracing initialization, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 07/13] trace: Remove unnecessary intermediate event copies, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 08/13] tcg: Add type for vCPU pointers, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 10/13] trace: Add helper function to cast event arguments, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 11/13] typedefs: Add CPUState, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 09/13] tcg: Move definition of type TCGv, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 12/13] trace: Add 'vcpu' event property to trace guest vCPU, Stefan Hajnoczi, 2016/03/01
- [Qemu-devel] [PULL 13/13] trace: Add a proper API to manage auto-generated events from the 'tcg' property,
Stefan Hajnoczi <=
- Re: [Qemu-devel] [PULL 00/13] Tracing patches, Peter Maydell, 2016/03/01