/linux/tools/perf/dlfilters/ |
H A D | dlfilter-show-cycles.c | 86 if (!sample->cyc_cnt) in filter_event_early() 92 cycles[cpu][pos] += sample->cyc_cnt; in filter_event_early() 94 add_entry(tid, pos, sample->cyc_cnt); in filter_event_early()
|
/linux/tools/perf/scripts/python/ |
H A D | export-to-postgresql.py | 1031 …od, weight, transaction, data_src, branch_type, in_tx, call_path_id, insn_cnt, cyc_cnt, flags, *x): argument 1033 …sym_offset, 8, to_ip, 4, branch_type, 1, in_tx, 8, call_path_id, 8, insn_cnt, 8, cyc_cnt, 4, flags) 1035 …saction, 8, data_src, 4, branch_type, 1, in_tx, 8, call_path_id, 8, insn_cnt, 8, cyc_cnt, 4, flags) 1043 …e, branch_count, call_id, return_id, parent_call_path_id, flags, parent_id, insn_cnt, cyc_cnt, *x): argument 1045 … 8, call_id, 8, return_id, 8, parent_call_path_id, 4, flags, 8, parent_id, 8, insn_cnt, 8, cyc_cnt)
|
H A D | exported-sql-viewer.py | 528 …def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, br… argument 534 self.cyc_cnt = cyc_cnt 558 cyc_cnt = int(query.value(6)) 562 cyc_cnt = 0 564 …value(1), query.value(2), query.value(3), int(query.value(4)), insn_cnt, cyc_cnt, branch_count, se… 572 …row, comm_id, thread_id, call_path_id, name, dso, count, time, insn_cnt, cyc_cnt, branch_count, pa… argument 573 …it__(glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, branch_count, pa… 577 cyc_pcnt = PercentToOneDP(cyc_cnt, parent_item.cyc_cnt) 579 ipc = CalcIPC(cyc_cnt, insn_cnt) 580 …), PercentToOneDP(time, parent_item.time), str(insn_cnt), insn_pcnt, str(cyc_cnt), cyc_pcnt, ipc, … [all …]
|
H A D | intel-pt-events.py | 270 cyc_cnt = sample["cyc_cnt"] 272 ipc_str = " IPC: %#.2f (%u/%u)" % (insn_cnt / cyc_cnt, insn_cnt, cyc_cnt)
|
/linux/tools/perf/util/ |
H A D | sample.h | 92 u64 cyc_cnt; member
|
H A D | dlfilter.c | 532 ASSIGN(cyc_cnt); in dlfilter__do_filter_event()
|
H A D | thread-stack.c | 1145 ts->cyc_count += sample->cyc_cnt; in thread_stack__process()
|
/linux/tools/perf/include/perf/ |
H A D | perf_dlfilter.h | 53 __u64 cyc_cnt; /* For instructions-per-cycle (IPC) */ member
|
/linux/tools/perf/Documentation/ |
H A D | perf-dlfilter.txt | 98 __u64 cyc_cnt; /* For instructions-per-cycle (IPC) */
|