Home
last modified time | relevance | path

Searched refs:cyc_cnt (Results 1 – 7 of 7) sorted by relevance

/tools/perf/scripts/python/
Dexported-sql-viewer.py515 …def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, br… argument
521 self.cyc_cnt = cyc_cnt
545 cyc_cnt = int(query.value(6))
549 cyc_cnt = 0
551 …value(1), query.value(2), query.value(3), int(query.value(4)), insn_cnt, cyc_cnt, branch_count, se…
559 …row, comm_id, thread_id, call_path_id, name, dso, count, time, insn_cnt, cyc_cnt, branch_count, pa… argument
560 …it__(glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, branch_count, pa…
564 cyc_pcnt = PercentToOneDP(cyc_cnt, parent_item.cyc_cnt)
566 ipc = CalcIPC(cyc_cnt, insn_cnt)
567 …), PercentToOneDP(time, parent_item.time), str(insn_cnt), insn_pcnt, str(cyc_cnt), cyc_pcnt, ipc, …
[all …]
Dexport-to-postgresql.py1028 …p, period, weight, transaction, data_src, branch_type, in_tx, call_path_id, insn_cnt, cyc_cnt, *x): argument
1030 …id, 8, to_sym_offset, 8, to_ip, 4, branch_type, 1, in_tx, 8, call_path_id, 8, insn_cnt, 8, cyc_cnt)
1032 …t, 8, transaction, 8, data_src, 4, branch_type, 1, in_tx, 8, call_path_id, 8, insn_cnt, 8, cyc_cnt)
1040 …e, branch_count, call_id, return_id, parent_call_path_id, flags, parent_id, insn_cnt, cyc_cnt, *x): argument
1042 … 8, call_id, 8, return_id, 8, parent_call_path_id, 4, flags, 8, parent_id, 8, insn_cnt, 8, cyc_cnt)
/tools/perf/util/
Devent.h128 u64 cyc_cnt; member
Dintel-pt.c1311 sample.cyc_cnt = ptq->ipc_cyc_cnt - ptq->last_br_cyc_cnt; in intel_pt_synth_branch_sample()
1312 if (sample.cyc_cnt) { in intel_pt_synth_branch_sample()
1374 sample.cyc_cnt = ptq->ipc_cyc_cnt - ptq->last_in_cyc_cnt; in intel_pt_synth_instruction_sample()
1375 if (sample.cyc_cnt) { in intel_pt_synth_instruction_sample()
Dthread-stack.c894 ts->cyc_count += sample->cyc_cnt; in thread_stack__process()
/tools/perf/
Dbuiltin-script.c1291 if (!PRINT_FIELD(IPC) || !sample->cyc_cnt || !sample->insn_cnt) in perf_sample__fprintf_ipc()
1294 ipc = (sample->insn_cnt * 100) / sample->cyc_cnt; in perf_sample__fprintf_ipc()
1297 ipc / 100, ipc % 100, sample->insn_cnt, sample->cyc_cnt); in perf_sample__fprintf_ipc()
/tools/perf/util/scripting-engines/
Dtrace-event-python.c1151 tuple_set_u64(t, 23, es->sample->cyc_cnt); in python_export_sample_table()