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