Searched refs:branch_count (Results 1 - 7 of 7) sorted by relevance

/linux-master/tools/perf/util/
H A Dcallchain.c598 call->branch_count = 1;
768 cnode->branch_count++;
1270 u64 *branch_count, u64 *predicted_count,
1276 if (branch_count)
1277 *branch_count += clist->branch_count;
1291 u64 *branch_count,
1304 callchain_node_branch_counts_cumul(child, branch_count,
1309 callchain_counts_value(child, branch_count,
1318 u64 *branch_count, u6
1269 callchain_counts_value(struct callchain_node *node, u64 *branch_count, u64 *predicted_count, u64 *abort_count, u64 *cycles_count) argument
1290 callchain_node_branch_counts_cumul(struct callchain_node *node, u64 *branch_count, u64 *predicted_count, u64 *abort_count, u64 *cycles_count) argument
1317 callchain_branch_counts(struct callchain_root *root, u64 *branch_count, u64 *predicted_count, u64 *abort_count, u64 *cycles_count) argument
1354 branch_to_str(char *bf, int bfsize, u64 branch_count, u64 predicted_count, u64 abort_count, const struct branch_type_stat *brtype_stat) argument
1383 branch_from_str(char *bf, int bfsize, u64 branch_count, u64 cycles_count, u64 iter_count, u64 iter_cycles, u64 from_count) argument
1416 counts_str_build(char *bf, int bfsize, u64 branch_count, u64 predicted_count, u64 abort_count, u64 cycles_count, u64 iter_count, u64 iter_cycles, u64 from_count, const struct branch_type_stat *brtype_stat) argument
1443 callchain_counts_printf(FILE *fp, char *bf, int bfsize, u64 branch_count, u64 predicted_count, u64 abort_count, u64 cycles_count, u64 iter_count, u64 iter_cycles, u64 from_count, const struct branch_type_stat *brtype_stat) argument
1467 u64 branch_count, predicted_count; local
[all...]
H A Dthread-stack.h44 * @branch_count: number of branches seen between call and return
59 u64 branch_count; member in struct:call_return
H A Dcallchain.h123 u64 branch_count; member in struct:callchain_list
302 u64 *branch_count, u64 *predicted_count,
H A Dthread-stack.c44 * @branch_count: the branch count when the entry was created
57 u64 branch_count; member in struct:thread_stack_entry
74 * @branch_count: running branch count
93 u64 branch_count; member in struct:thread_stack
315 cr.branch_count = ts->branch_count - tse->branch_count;
802 tse->branch_count = ts->branch_count;
1143 ts->branch_count
[all...]
/linux-master/tools/perf/scripts/python/
H A Dexported-sql-viewer.py528 def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, branch_count, parent_item):
535 self.branch_count = branch_count
545 QueryExec(query, "SELECT call_path_id, name, short_name, COUNT(calls.id), SUM(return_time - call_time)" + ipc_str + ", SUM(branch_count)"
559 branch_count = int(query.value(7))
563 branch_count = int(query.value(5))
564 child_item = CallGraphLevelThreeItem(self.glb, self.params, self.child_count, self.comm_id, self.thread_id, query.value(0), query.value(1), query.value(2), query.value(3), int(query.value(4)), insn_cnt, cyc_cnt, branch_count, self)
572 def __init__(self, glb, params, row, comm_id, thread_id, call_path_id, name, dso, count, time, insn_cnt, cyc_cnt, branch_count, parent_item):
573 super(CallGraphLevelThreeItem, self).__init__(glb, params, row, comm_id, thread_id, call_path_id, time, insn_cnt, cyc_cnt, branch_count, parent_item)
578 br_pcnt = PercentToOneDP(branch_count, parent_ite
[all...]
H A Dexport-to-postgresql.py154 # SUM(elapsed_time) AS tot_elapsed_time,SUM(branch_count) AS tot_branch_count
446 'branch_count bigint,'
577 'branch_count,'
1043 def call_return_table(cr_id, thread_id, comm_id, call_path_id, call_time, return_time, branch_count, call_id, return_id, parent_call_path_id, flags, parent_id, insn_cnt, cyc_cnt, *x):
1045 value = struct.pack(fmt, 14, 8, cr_id, 8, thread_id, 8, comm_id, 8, call_path_id, 8, call_time, 8, return_time, 8, branch_count, 8, call_id, 8, return_id, 8, parent_call_path_id, 4, flags, 8, parent_id, 8, insn_cnt, 8, cyc_cnt)
/linux-master/tools/perf/util/scripting-engines/
H A Dtrace-event-python.c1415 tuple_set_d64(t, 6, cr->branch_count);

Completed in 230 milliseconds