Lines Matching +full:qemu +full:- +full:system +full:-
2 # -*- python -*-
6 # QEMU SystemTap Trace Tool
31 return re.sub("-", ".", filename) + ".log"
76 script = """probe begin { print("Running script, <Ctrl>-c to quit\\n") } """ + script
79 # can be easily overflowed by frequently firing QEMU traces
80 stapargs = [stap, "-s", "8", "-I", tapsets ]
82 stapargs.extend(["-x", args.pid])
83 stapargs.extend(["-e", script])
101 proc = subprocess.Popen([stap, "-I", tapsets, "-l", script],
121 parser = argparse.ArgumentParser(description="QEMU SystemTap trace tool")
122 parser.add_argument("-v", "--verbose", help="Print verbose progress info",
133 To watch all trace points on the qemu-system-x86_64 binary:
135 %(argv0)s run qemu-system-x86_64
139 %(argv0)s run qemu-system-x86_64 'qio*' 'qcrypto*'
142 runparser.add_argument("--pid", "-p", dest="pid",
144 runparser.add_argument("binary", help="QEMU system or user emulator binary")
152 To list all trace points on the qemu-system-x86_64 binary:
154 %(argv0)s list qemu-system-x86_64
158 %(argv0)s list qemu-system-x86_64 'qio*' 'qcrypto*'
161 listparser.add_argument("binary", help="QEMU system or user emulator binary")