Searched refs:ipc (Results 1 – 17 of 17) sorted by relevance
| /tools/perf/tests/shell/ |
| A D | stat+shadow_stat.sh | 19 while read num evt _ ipc rest 39 if [ "$ipc" != "$res" ]; then 41 diff=`echo $ipc $res $THRESHOLD | \ 45 echo "IPC is different: $res != $ipc ($num / $cyc)" 58 while read cpu num evt _ ipc rest 81 if [ "$ipc" != "$res" ]; then 83 diff=`echo $ipc $res $THRESHOLD | \ 87 echo "IPC is different: $res != $ipc ($num / $cyc)"
|
| /tools/perf/util/ |
| A D | annotate.c | 477 float ipc = n_insn / ((double)ch->cycles / (double)ch->num); in annotation__count_and_fill() local 492 if (al->cycles && al->cycles->ipc == 0.0) { in annotation__count_and_fill() 493 al->cycles->ipc = ipc; in annotation__count_and_fill() 1780 double ipc = 0.0, coverage = 0.0; in ipc_coverage_string() local 1784 ipc = branch->hit_insn / ((double)branch->hit_cycles); in ipc_coverage_string() 1792 ipc, coverage); in ipc_coverage_string() 1957 if (al->cycles->ipc == 0.0 && al->cycles->avg == 0) in __annotation_line__write() 1994 if (al->cycles && al->cycles->ipc) in __annotation_line__write() 1995 obj__printf(obj, "%*.2f ", ANNOTATION__IPC_WIDTH - 1, al->cycles->ipc); in __annotation_line__write()
|
| A D | annotate.h | 106 float ipc; member
|
| A D | sort.c | 672 double ipc = 0.0, coverage = 0.0; in hist_entry__sym_ipc_snprintf() local 681 ipc = branch->hit_insn / ((double)branch->hit_cycles); in hist_entry__sym_ipc_snprintf() 688 snprintf(tmp, sizeof(tmp), "%-5.2f [%5.1f%%]", ipc, coverage); in hist_entry__sym_ipc_snprintf()
|
| /tools/testing/selftests/ |
| A D | Makefile | 47 TARGETS += ipc
|
| /tools/perf/arch/sparc/entry/syscalls/ |
| A D | syscall.tbl | 259 215 32 ipc sys_ipc compat_sys_ipc 260 215 64 ipc sys_sparc_ipc
|
| /tools/perf/Documentation/ |
| A D | tips.txt | 48 …'{intel_pt//,cycles}' ; perf script --call-trace or --insn-trace --xed -F +ipc (remove --xed if no…
|
| A D | perf-script.txt | 136 insnlen, synth, phys_addr, metric, misc, srccode, ipc, data_page_size, 228 The ipc (instructions per cycle) field is synthesized and may have a value when
|
| A D | perf-intel-pt.txt | 146 Another interesting field that is not printed by default is 'ipc' which can be 149 perf script --itrace=be -F+ipc 1367 $ perf script --guestkallsyms $KALLSYMS --insn-trace=disasm -F+ipc | grep -C10 vmresume | head -21 1468 …$ perf script -i perf.data.kvm --guestkallsyms $KALLSYMS --insn-trace=disasm -F+ipc | grep -C10 vm…
|
| /tools/perf/scripts/python/ |
| A D | exported-sql-viewer.py | 579 ipc = CalcIPC(cyc_cnt, insn_cnt) 580 …time, parent_item.time), str(insn_cnt), insn_pcnt, str(cyc_cnt), cyc_pcnt, ipc, str(branch_count),… 864 ipc = CalcIPC(cyc_cnt, insn_cnt) 865 …time, parent_item.time), str(insn_cnt), insn_pcnt, str(cyc_cnt), cyc_pcnt, ipc, str(branch_count),… 3034 ipc = Decimal(float(insn_cnt) / cyc_cnt) 3035 ipc = str(ipc.quantize(Decimal(".01"), rounding=ROUND_HALF_UP)) 3037 ipc = "0" 3038 return ipc 3051 ipc = CalcIPC(cyc_cnt, insn_cnt) 3054 data.append(ipc)
|
| /tools/perf/arch/sh/entry/syscalls/ |
| A D | syscall.tbl | 127 117 common ipc sys_ipc
|
| /tools/perf/arch/arm/entry/syscalls/ |
| A D | syscall.tbl | 134 117 oabi ipc sys_ipc sys_oabi_ipc
|
| /tools/perf/arch/x86/entry/syscalls/ |
| A D | syscall_32.tbl | 132 117 i386 ipc sys_ipc compat_sys_ipc
|
| /tools/perf/arch/powerpc/entry/syscalls/ |
| A D | syscall.tbl | 156 117 nospu ipc sys_ipc compat_sys_ipc
|
| /tools/perf/arch/s390/entry/syscalls/ |
| A D | syscall.tbl | 109 117 common ipc sys_s390_ipc compat_sys_s390_ipc
|
| /tools/perf/ |
| A D | builtin-script.c | 1650 unsigned int ipc; in perf_sample__fprintf_ipc() local 1655 ipc = (sample->insn_cnt * 100) / sample->cyc_cnt; in perf_sample__fprintf_ipc() 1658 ipc / 100, ipc % 100, sample->insn_cnt, sample->cyc_cnt); in perf_sample__fprintf_ipc()
|
| /tools/perf/ui/browsers/ |
| A D | annotate.c | 337 if (max_percent < 0.01 && (!pos->al.cycles || pos->al.cycles->ipc == 0)) { in annotate_browser__calc_percent()
|
Completed in 58 milliseconds