Lines Matching refs:insn_cnt
509 …def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, br… argument
514 self.insn_cnt = insn_cnt
538 insn_cnt = int(query.value(5))
542 insn_cnt = 0
545 …), query.value(1), query.value(2), query.value(3), int(query.value(4)), insn_cnt, cyc_cnt, branch_…
553 … params, row, comm_id, thread_id, call_path_id, name, dso, count, time, insn_cnt, cyc_cnt, branch_… argument
554 …elf).__init__(glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, branch_…
557 insn_pcnt = PercentToOneDP(insn_cnt, parent_item.insn_cnt)
560 ipc = CalcIPC(cyc_cnt, insn_cnt)
561 …dso, str(count), str(time), PercentToOneDP(time, parent_item.time), str(insn_cnt), insn_pcnt, str(…
582 self.insn_cnt += child_item.insn_cnt
588 child_item.data[6] = PercentToOneDP(child_item.insn_cnt, self.insn_cnt)
788 …def __init__(self, glb, params, row, comm_id, thread_id, calls_id, time, insn_cnt, cyc_cnt, branch… argument
793 self.insn_cnt = insn_cnt
818 insn_cnt = int(query.value(5))
822 insn_cnt = 0
825 …), query.value(1), query.value(2), query.value(3), int(query.value(4)), insn_cnt, cyc_cnt, branch_…
833 …glb, params, row, comm_id, thread_id, calls_id, name, dso, count, time, insn_cnt, cyc_cnt, branch_… argument
834 …m, self).__init__(glb, params, row, comm_id, thread_id, calls_id, time, insn_cnt, cyc_cnt, branch_…
837 insn_pcnt = PercentToOneDP(insn_cnt, parent_item.insn_cnt)
840 ipc = CalcIPC(cyc_cnt, insn_cnt)
841 …dso, str(count), str(time), PercentToOneDP(time, parent_item.time), str(insn_cnt), insn_pcnt, str(…
862 self.insn_cnt += child_item.insn_cnt
868 child_item.data[6] = PercentToOneDP(child_item.insn_cnt, self.insn_cnt)
1644 def CalcIPC(cyc_cnt, insn_cnt): argument
1645 if cyc_cnt and insn_cnt:
1646 ipc = Decimal(float(insn_cnt) / cyc_cnt)
1661 insn_cnt = query.value(16)
1663 ipc = CalcIPC(cyc_cnt, insn_cnt)
1664 data.append(insn_cnt)