target/arm: Define an IDAU interface
[qemu/ar7.git] / scripts / tracetool / __init__.py
blob3646c2b9fce97b66b54d2ab2e70d8ba8b577d754
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
4 """
5 Machinery for generating tracing-related intermediate files.
6 """
8 __author__ = "Lluís Vilanova <vilanova@ac.upc.edu>"
9 __copyright__ = "Copyright 2012-2017, Lluís Vilanova <vilanova@ac.upc.edu>"
10 __license__ = "GPL version 2 or (at your option) any later version"
12 __maintainer__ = "Stefan Hajnoczi"
13 __email__ = "stefanha@linux.vnet.ibm.com"
16 import re
17 import sys
18 import weakref
20 import tracetool.format
21 import tracetool.backend
22 import tracetool.transform
25 def error_write(*lines):
26 """Write a set of error lines."""
27 sys.stderr.writelines("\n".join(lines) + "\n")
29 def error(*lines):
30 """Write a set of error lines and exit."""
31 error_write(*lines)
32 sys.exit(1)
35 def out(*lines, **kwargs):
36 """Write a set of output lines.
38 You can use kwargs as a shorthand for mapping variables when formating all
39 the strings in lines.
40 """
41 lines = [ l % kwargs for l in lines ]
42 sys.stdout.writelines("\n".join(lines) + "\n")
45 class Arguments:
46 """Event arguments description."""
48 def __init__(self, args):
49 """
50 Parameters
51 ----------
52 args :
53 List of (type, name) tuples or Arguments objects.
54 """
55 self._args = []
56 for arg in args:
57 if isinstance(arg, Arguments):
58 self._args.extend(arg._args)
59 else:
60 self._args.append(arg)
62 def copy(self):
63 """Create a new copy."""
64 return Arguments(list(self._args))
66 @staticmethod
67 def build(arg_str):
68 """Build and Arguments instance from an argument string.
70 Parameters
71 ----------
72 arg_str : str
73 String describing the event arguments.
74 """
75 res = []
76 for arg in arg_str.split(","):
77 arg = arg.strip()
78 if not arg:
79 raise ValueError("Empty argument (did you forget to use 'void'?)")
80 if arg == 'void':
81 continue
83 if '*' in arg:
84 arg_type, identifier = arg.rsplit('*', 1)
85 arg_type += '*'
86 identifier = identifier.strip()
87 else:
88 arg_type, identifier = arg.rsplit(None, 1)
90 res.append((arg_type, identifier))
91 return Arguments(res)
93 def __getitem__(self, index):
94 if isinstance(index, slice):
95 return Arguments(self._args[index])
96 else:
97 return self._args[index]
99 def __iter__(self):
100 """Iterate over the (type, name) pairs."""
101 return iter(self._args)
103 def __len__(self):
104 """Number of arguments."""
105 return len(self._args)
107 def __str__(self):
108 """String suitable for declaring function arguments."""
109 if len(self._args) == 0:
110 return "void"
111 else:
112 return ", ".join([ " ".join([t, n]) for t,n in self._args ])
114 def __repr__(self):
115 """Evaluable string representation for this object."""
116 return "Arguments(\"%s\")" % str(self)
118 def names(self):
119 """List of argument names."""
120 return [ name for _, name in self._args ]
122 def types(self):
123 """List of argument types."""
124 return [ type_ for type_, _ in self._args ]
126 def casted(self):
127 """List of argument names casted to their type."""
128 return ["(%s)%s" % (type_, name) for type_, name in self._args]
130 def transform(self, *trans):
131 """Return a new Arguments instance with transformed types.
133 The types in the resulting Arguments instance are transformed according
134 to tracetool.transform.transform_type.
136 res = []
137 for type_, name in self._args:
138 res.append((tracetool.transform.transform_type(type_, *trans),
139 name))
140 return Arguments(res)
143 class Event(object):
144 """Event description.
146 Attributes
147 ----------
148 name : str
149 The event name.
150 fmt : str
151 The event format string.
152 properties : set(str)
153 Properties of the event.
154 args : Arguments
155 The event arguments.
159 _CRE = re.compile("((?P<props>[\w\s]+)\s+)?"
160 "(?P<name>\w+)"
161 "\((?P<args>[^)]*)\)"
162 "\s*"
163 "(?:(?:(?P<fmt_trans>\".+),)?\s*(?P<fmt>\".+))?"
164 "\s*")
166 _VALID_PROPS = set(["disable", "tcg", "tcg-trans", "tcg-exec", "vcpu"])
168 def __init__(self, name, props, fmt, args, orig=None,
169 event_trans=None, event_exec=None):
171 Parameters
172 ----------
173 name : string
174 Event name.
175 props : list of str
176 Property names.
177 fmt : str, list of str
178 Event printing format string(s).
179 args : Arguments
180 Event arguments.
181 orig : Event or None
182 Original Event before transformation/generation.
183 event_trans : Event or None
184 Generated translation-time event ("tcg" property).
185 event_exec : Event or None
186 Generated execution-time event ("tcg" property).
189 self.name = name
190 self.properties = props
191 self.fmt = fmt
192 self.args = args
193 self.event_trans = event_trans
194 self.event_exec = event_exec
196 if len(args) > 10:
197 raise ValueError("Event '%s' has more than maximum permitted "
198 "argument count" % name)
200 if orig is None:
201 self.original = weakref.ref(self)
202 else:
203 self.original = orig
205 unknown_props = set(self.properties) - self._VALID_PROPS
206 if len(unknown_props) > 0:
207 raise ValueError("Unknown properties: %s"
208 % ", ".join(unknown_props))
209 assert isinstance(self.fmt, str) or len(self.fmt) == 2
211 def copy(self):
212 """Create a new copy."""
213 return Event(self.name, list(self.properties), self.fmt,
214 self.args.copy(), self, self.event_trans, self.event_exec)
216 @staticmethod
217 def build(line_str):
218 """Build an Event instance from a string.
220 Parameters
221 ----------
222 line_str : str
223 Line describing the event.
225 m = Event._CRE.match(line_str)
226 assert m is not None
227 groups = m.groupdict('')
229 name = groups["name"]
230 props = groups["props"].split()
231 fmt = groups["fmt"]
232 fmt_trans = groups["fmt_trans"]
233 if len(fmt_trans) > 0:
234 fmt = [fmt_trans, fmt]
235 args = Arguments.build(groups["args"])
237 if "tcg-trans" in props:
238 raise ValueError("Invalid property 'tcg-trans'")
239 if "tcg-exec" in props:
240 raise ValueError("Invalid property 'tcg-exec'")
241 if "tcg" not in props and not isinstance(fmt, str):
242 raise ValueError("Only events with 'tcg' property can have two format strings")
243 if "tcg" in props and isinstance(fmt, str):
244 raise ValueError("Events with 'tcg' property must have two format strings")
246 event = Event(name, props, fmt, args)
248 # add implicit arguments when using the 'vcpu' property
249 import tracetool.vcpu
250 event = tracetool.vcpu.transform_event(event)
252 return event
254 def __repr__(self):
255 """Evaluable string representation for this object."""
256 if isinstance(self.fmt, str):
257 fmt = self.fmt
258 else:
259 fmt = "%s, %s" % (self.fmt[0], self.fmt[1])
260 return "Event('%s %s(%s) %s')" % (" ".join(self.properties),
261 self.name,
262 self.args,
263 fmt)
264 # Star matching on PRI is dangerous as one might have multiple
265 # arguments with that format, hence the non-greedy version of it.
266 _FMT = re.compile("(%[\d\.]*\w+|%.*?PRI\S+)")
268 def formats(self):
269 """List conversion specifiers in the argument print format string."""
270 assert not isinstance(self.fmt, list)
271 return self._FMT.findall(self.fmt)
273 QEMU_TRACE = "trace_%(name)s"
274 QEMU_TRACE_NOCHECK = "_nocheck__" + QEMU_TRACE
275 QEMU_TRACE_TCG = QEMU_TRACE + "_tcg"
276 QEMU_DSTATE = "_TRACE_%(NAME)s_DSTATE"
277 QEMU_BACKEND_DSTATE = "TRACE_%(NAME)s_BACKEND_DSTATE"
278 QEMU_EVENT = "_TRACE_%(NAME)s_EVENT"
280 def api(self, fmt=None):
281 if fmt is None:
282 fmt = Event.QEMU_TRACE
283 return fmt % {"name": self.name, "NAME": self.name.upper()}
285 def transform(self, *trans):
286 """Return a new Event with transformed Arguments."""
287 return Event(self.name,
288 list(self.properties),
289 self.fmt,
290 self.args.transform(*trans),
291 self)
294 def read_events(fobj):
295 """Generate the output for the given (format, backends) pair.
297 Parameters
298 ----------
299 fobj : file
300 Event description file.
302 Returns a list of Event objects
305 events = []
306 for lineno, line in enumerate(fobj, 1):
307 if not line.strip():
308 continue
309 if line.lstrip().startswith('#'):
310 continue
312 try:
313 event = Event.build(line)
314 except ValueError as e:
315 arg0 = 'Error on line %d: %s' % (lineno, e.args[0])
316 e.args = (arg0,) + e.args[1:]
317 raise
319 # transform TCG-enabled events
320 if "tcg" not in event.properties:
321 events.append(event)
322 else:
323 event_trans = event.copy()
324 event_trans.name += "_trans"
325 event_trans.properties += ["tcg-trans"]
326 event_trans.fmt = event.fmt[0]
327 # ignore TCG arguments
328 args_trans = []
329 for atrans, aorig in zip(
330 event_trans.transform(tracetool.transform.TCG_2_HOST).args,
331 event.args):
332 if atrans == aorig:
333 args_trans.append(atrans)
334 event_trans.args = Arguments(args_trans)
336 event_exec = event.copy()
337 event_exec.name += "_exec"
338 event_exec.properties += ["tcg-exec"]
339 event_exec.fmt = event.fmt[1]
340 event_exec.args = event_exec.args.transform(tracetool.transform.TCG_2_HOST)
342 new_event = [event_trans, event_exec]
343 event.event_trans, event.event_exec = new_event
345 events.extend(new_event)
347 return events
350 class TracetoolError (Exception):
351 """Exception for calls to generate."""
352 pass
355 def try_import(mod_name, attr_name=None, attr_default=None):
356 """Try to import a module and get an attribute from it.
358 Parameters
359 ----------
360 mod_name : str
361 Module name.
362 attr_name : str, optional
363 Name of an attribute in the module.
364 attr_default : optional
365 Default value if the attribute does not exist in the module.
367 Returns
368 -------
369 A pair indicating whether the module could be imported and the module or
370 object or attribute value.
372 try:
373 module = __import__(mod_name, globals(), locals(), ["__package__"])
374 if attr_name is None:
375 return True, module
376 return True, getattr(module, str(attr_name), attr_default)
377 except ImportError:
378 return False, None
381 def generate(events, group, format, backends,
382 binary=None, probe_prefix=None):
383 """Generate the output for the given (format, backends) pair.
385 Parameters
386 ----------
387 events : list
388 list of Event objects to generate for
389 group: str
390 Name of the tracing group
391 format : str
392 Output format name.
393 backends : list
394 Output backend names.
395 binary : str or None
396 See tracetool.backend.dtrace.BINARY.
397 probe_prefix : str or None
398 See tracetool.backend.dtrace.PROBEPREFIX.
400 # fix strange python error (UnboundLocalError tracetool)
401 import tracetool
403 format = str(format)
404 if len(format) is 0:
405 raise TracetoolError("format not set")
406 if not tracetool.format.exists(format):
407 raise TracetoolError("unknown format: %s" % format)
409 if len(backends) is 0:
410 raise TracetoolError("no backends specified")
411 for backend in backends:
412 if not tracetool.backend.exists(backend):
413 raise TracetoolError("unknown backend: %s" % backend)
414 backend = tracetool.backend.Wrapper(backends, format)
416 import tracetool.backend.dtrace
417 tracetool.backend.dtrace.BINARY = binary
418 tracetool.backend.dtrace.PROBEPREFIX = probe_prefix
420 tracetool.format.generate(events, format, backend, group)