1 # SPDX-License-Identifier: GPL-2.0
2 # intel-pt-events.py: Print Intel PT Events including Power Events and PTWRITE
3 # Copyright (c) 2017-2021, Intel Corporation.
5 # This program is free software; you can redistribute it and/or modify it
6 # under the terms and conditions of the GNU General Public License,
7 # version 2, as published by the Free Software Foundation.
9 # This program is distributed in the hope it will be useful, but WITHOUT
10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 from __future__ import print_function
21 from libxed import LibXED
22 from ctypes import create_string_buffer, addressof
24 sys.path.append(os.environ['PERF_EXEC_PATH'] + \
25 '/scripts/python/Perf-Trace-Util/lib/Perf/Trace')
27 from perf_trace_context import perf_set_itrace_options, \
28 perf_sample_insn, perf_sample_srccode
31 broken_pipe_exception = BrokenPipeError
33 broken_pipe_exception = IOError
37 glb_disassembler = None
39 glb_source_file_name = None
40 glb_line_number = None
43 def get_optional_null(perf_dict, field):
44 if field in perf_dict:
45 return perf_dict[field]
48 def get_optional_zero(perf_dict, field):
49 if field in perf_dict:
50 return perf_dict[field]
53 def get_optional_bytes(perf_dict, field):
54 if field in perf_dict:
55 return perf_dict[field]
58 def get_optional(perf_dict, field):
59 if field in perf_dict:
60 return perf_dict[field]
63 def get_offset(perf_dict, field):
64 if field in perf_dict:
65 return "+%#x" % perf_dict[field]
69 ap = argparse.ArgumentParser(usage = "", add_help = False)
70 ap.add_argument("--insn-trace", action='store_true')
71 ap.add_argument("--src-trace", action='store_true')
72 ap.add_argument("--all-switch-events", action='store_true')
76 glb_args = ap.parse_args()
77 if glb_args.insn_trace:
78 print("Intel PT Instruction Trace")
81 elif glb_args.src_trace:
82 print("Intel PT Source Trace")
87 print("Intel PT Branch Trace, Power Events, Event Trace and PTWRITE")
89 global glb_disassembler
91 glb_disassembler = LibXED()
93 glb_disassembler = None
94 perf_set_itrace_options(perf_script_context, itrace)
99 def trace_unhandled(event_name, context, event_fields_dict):
100 print(' '.join(['%s=%s'%(k,str(v))for k,v in sorted(event_fields_dict.items())]))
102 def print_ptwrite(raw_buf):
103 data = struct.unpack_from("<IQ", raw_buf)
108 s = payload.to_bytes(8, "little").decode("ascii").rstrip("\x00")
109 if not s.isprintable():
113 print("IP: %u payload: %#x" % (exact_ip, payload), s, end=' ')
115 def print_cbr(raw_buf):
116 data = struct.unpack_from("<BBBBII", raw_buf)
118 f = (data[4] + 500) / 1000
119 p = ((cbr * 1000 / data[2]) + 5) / 10
120 print("%3u freq: %4u MHz (%3u%%)" % (cbr, f, p), end=' ')
122 def print_mwait(raw_buf):
123 data = struct.unpack_from("<IQ", raw_buf)
125 hints = payload & 0xff
126 extensions = (payload >> 32) & 0x3
127 print("hints: %#x extensions: %#x" % (hints, extensions), end=' ')
129 def print_pwre(raw_buf):
130 data = struct.unpack_from("<IQ", raw_buf)
132 hw = (payload >> 7) & 1
133 cstate = (payload >> 12) & 0xf
134 subcstate = (payload >> 8) & 0xf
135 print("hw: %u cstate: %u sub-cstate: %u" % (hw, cstate, subcstate),
138 def print_exstop(raw_buf):
139 data = struct.unpack_from("<I", raw_buf)
142 print("IP: %u" % (exact_ip), end=' ')
144 def print_pwrx(raw_buf):
145 data = struct.unpack_from("<IQ", raw_buf)
147 deepest_cstate = payload & 0xf
148 last_cstate = (payload >> 4) & 0xf
149 wake_reason = (payload >> 8) & 0xf
150 print("deepest cstate: %u last cstate: %u wake reason: %#x" %
151 (deepest_cstate, last_cstate, wake_reason), end=' ')
153 def print_psb(raw_buf):
154 data = struct.unpack_from("<IQ", raw_buf)
156 print("offset: %#x" % (offset), end=' ')
158 glb_cfe = ["", "INTR", "IRET", "SMI", "RSM", "SIPI", "INIT", "VMENTRY", "VMEXIT",
159 "VMEXIT_INTR", "SHUTDOWN", "", "UINT", "UIRET"] + [""] * 18
160 glb_evd = ["", "PFA", "VMXQ", "VMXR"] + [""] * 60
162 def print_evt(raw_buf):
163 data = struct.unpack_from("<BBH", raw_buf)
165 ip_flag = (data[0] & 0x80) >> 7
170 print(" cfe: %s IP: %u vector: %u" % (s, ip_flag, vector), end=' ')
172 print(" cfe: %u IP: %u vector: %u" % (typ, ip_flag, vector), end=' ')
174 for i in range(evd_cnt):
175 data = struct.unpack_from("<QQ", raw_buf)
179 print("%s: %#x" % (s, data[1]), end=' ')
181 print("EVD_%u: %#x" % (et, data[1]), end=' ')
183 def print_iflag(raw_buf):
184 data = struct.unpack_from("<IQ", raw_buf)
186 old_iflag = iflag ^ 1
187 via_branch = data[0] & 2
193 print("IFLAG: %u->%u %s branch" % (old_iflag, iflag, s), end=' ')
195 def common_start_str(comm, sample):
200 return "%16s %5u/%-5u [%03u] %9u.%09u " % (comm, pid, tid, cpu, ts / 1000000000, ts %1000000000)
202 def print_common_start(comm, sample, name):
203 flags_disp = get_optional_null(sample, "flags_disp")
205 # period = sample["period"]
206 # phys_addr = sample["phys_addr"]
207 # weight = sample["weight"]
208 # transaction = sample["transaction"]
209 # cpumode = get_optional_zero(sample, "cpumode")
210 print(common_start_str(comm, sample) + "%8s %21s" % (name, flags_disp), end=' ')
212 def print_instructions_start(comm, sample):
213 if "x" in get_optional_null(sample, "flags"):
214 print(common_start_str(comm, sample) + "x", end=' ')
216 print(common_start_str(comm, sample), end=' ')
218 def disassem(insn, ip):
219 inst = glb_disassembler.Instruction()
220 glb_disassembler.SetMode(inst, 0) # Assume 64-bit
221 buf = create_string_buffer(64)
223 return glb_disassembler.DisassembleOne(inst, addressof(buf), len(insn), ip)
225 def print_common_ip(param_dict, sample, symbol, dso):
227 offs = get_offset(param_dict, "symoff")
228 if "cyc_cnt" in sample:
229 cyc_cnt = sample["cyc_cnt"]
230 insn_cnt = get_optional_zero(sample, "insn_cnt")
231 ipc_str = " IPC: %#.2f (%u/%u)" % (insn_cnt / cyc_cnt, insn_cnt, cyc_cnt)
234 if glb_insn and glb_disassembler is not None:
235 insn = perf_sample_insn(perf_script_context)
236 if insn and len(insn):
237 cnt, text = disassem(insn, ip)
238 byte_str = ("%x" % ip).rjust(16)
239 if sys.version_info.major >= 3:
241 byte_str += " %02x" % insn[k]
243 for k in xrange(cnt):
244 byte_str += " %02x" % ord(insn[k])
245 print("%-40s %-30s" % (byte_str, text), end=' ')
246 print("%s%s (%s)" % (symbol, offs, dso), end=' ')
248 print("%16x %s%s (%s)" % (ip, symbol, offs, dso), end=' ')
249 if "addr_correlates_sym" in sample:
250 addr = sample["addr"]
251 dso = get_optional(sample, "addr_dso")
252 symbol = get_optional(sample, "addr_symbol")
253 offs = get_offset(sample, "addr_symoff")
254 print("=> %x %s%s (%s)%s" % (addr, symbol, offs, dso, ipc_str))
258 def print_srccode(comm, param_dict, sample, symbol, dso, with_insn):
260 if symbol == "[unknown]":
261 start_str = common_start_str(comm, sample) + ("%x" % ip).rjust(16).ljust(40)
263 offs = get_offset(param_dict, "symoff")
264 start_str = common_start_str(comm, sample) + (symbol + offs).ljust(40)
266 if with_insn and glb_insn and glb_disassembler is not None:
267 insn = perf_sample_insn(perf_script_context)
268 if insn and len(insn):
269 cnt, text = disassem(insn, ip)
270 start_str += text.ljust(30)
272 global glb_source_file_name
273 global glb_line_number
276 source_file_name, line_number, source_line = perf_sample_srccode(perf_script_context)
278 if glb_line_number == line_number and glb_source_file_name == source_file_name:
281 if len(source_file_name) > 40:
282 src_file = ("..." + source_file_name[-37:]) + " "
284 src_file = source_file_name.ljust(41)
285 if source_line is None:
286 src_str = src_file + str(line_number).rjust(4) + " <source not found>"
288 src_str = src_file + str(line_number).rjust(4) + " " + source_line
296 glb_line_number = line_number
297 glb_source_file_name = source_file_name
299 print(start_str, src_str)
301 def do_process_event(param_dict):
302 event_attr = param_dict["attr"]
303 sample = param_dict["sample"]
304 raw_buf = param_dict["raw_buf"]
305 comm = param_dict["comm"]
306 name = param_dict["ev_name"]
308 # callchain = param_dict["callchain"]
309 # brstack = param_dict["brstack"]
310 # brstacksym = param_dict["brstacksym"]
312 # Symbol and dso info are not always resolved
313 dso = get_optional(param_dict, "dso")
314 symbol = get_optional(param_dict, "symbol")
317 if cpu in glb_switch_str:
318 print(glb_switch_str[cpu])
319 del glb_switch_str[cpu]
321 if name[0:12] == "instructions":
323 print_srccode(comm, param_dict, sample, symbol, dso, True)
325 print_instructions_start(comm, sample)
326 print_common_ip(param_dict, sample, symbol, dso)
327 elif name[0:8] == "branches":
329 print_srccode(comm, param_dict, sample, symbol, dso, False)
331 print_common_start(comm, sample, name)
332 print_common_ip(param_dict, sample, symbol, dso)
333 elif name == "ptwrite":
334 print_common_start(comm, sample, name)
335 print_ptwrite(raw_buf)
336 print_common_ip(param_dict, sample, symbol, dso)
338 print_common_start(comm, sample, name)
340 print_common_ip(param_dict, sample, symbol, dso)
341 elif name == "mwait":
342 print_common_start(comm, sample, name)
344 print_common_ip(param_dict, sample, symbol, dso)
346 print_common_start(comm, sample, name)
348 print_common_ip(param_dict, sample, symbol, dso)
349 elif name == "exstop":
350 print_common_start(comm, sample, name)
351 print_exstop(raw_buf)
352 print_common_ip(param_dict, sample, symbol, dso)
354 print_common_start(comm, sample, name)
356 print_common_ip(param_dict, sample, symbol, dso)
358 print_common_start(comm, sample, name)
360 print_common_ip(param_dict, sample, symbol, dso)
362 print_common_start(comm, sample, name)
364 print_common_ip(param_dict, sample, symbol, dso)
365 elif name == "iflag":
366 print_common_start(comm, sample, name)
368 print_common_ip(param_dict, sample, symbol, dso)
370 print_common_start(comm, sample, name)
371 print_common_ip(param_dict, sample, symbol, dso)
373 def process_event(param_dict):
375 do_process_event(param_dict)
376 except broken_pipe_exception:
377 # Stop python printing broken pipe errors and traceback
378 sys.stdout = open(os.devnull, 'w')
381 def auxtrace_error(typ, code, cpu, pid, tid, ip, ts, msg, cpumode, *x):
383 print("%16s %5u/%-5u [%03u] %9u.%09u error type %u code %u: %s ip 0x%16x" %
384 ("Trace error", pid, tid, cpu, ts / 1000000000, ts %1000000000, typ, code, msg, ip))
385 except broken_pipe_exception:
386 # Stop python printing broken pipe errors and traceback
387 sys.stdout = open(os.devnull, 'w')
390 def context_switch(ts, cpu, pid, tid, np_pid, np_tid, machine_pid, out, out_preempt, *x):
392 out_str = "Switch out "
394 out_str = "Switch In "
396 preempt_str = "preempt"
399 if machine_pid == -1:
402 machine_str = "machine PID %d" % machine_pid
403 switch_str = "%16s %5d/%-5d [%03u] %9u.%09u %5d/%-5d %s %s" % \
404 (out_str, pid, tid, cpu, ts / 1000000000, ts %1000000000, np_pid, np_tid, machine_str, preempt_str)
405 if glb_args.all_switch_events:
408 global glb_switch_str
409 glb_switch_str[cpu] = switch_str