Searched refs:brstack (Results  1 – 13 of 13) sorted by relevance
| /Linux-v6.6/tools/perf/tests/workloads/ | 
| D | brstack.c | 25 static int brstack(int argc, const char **argv)  in brstack()  function40 DEFINE_WORKLOAD(brstack);
 
 | 
| D | Build | 7 perf-y += brstack.o
 | 
| /Linux-v6.6/tools/perf/tests/shell/ | 
| D | test_brstack.sh | 56 	perf script -i $TMPDIR/perf.data --fields brstack | xargs -n1 > $TMPDIR/perf.script
 | 
| D | test_intel_pt.sh | 551 		brstack = param_dict["brstack"]552 		n = len(brstack)
 
 | 
| /Linux-v6.6/tools/perf/dlfilters/ | 
| D | dlfilter-test-api-v0.c | 66 	const struct perf_branch_entry *brstack; /* Refer <linux/perf_event.h> */  member219 	CHECK(!sample->brstack);  in check_sample()
 
 | 
| D | dlfilter-test-api-v2.c | 72 	const struct perf_branch_entry *brstack; /* Refer <linux/perf_event.h> */  member234 	CHECK(!sample->brstack);  in check_sample()
 
 | 
| /Linux-v6.6/tools/perf/include/perf/ | 
| D | perf_dlfilter.h | 67 	const struct perf_branch_entry *brstack; /* Refer <linux/perf_event.h> */  member
 | 
| /Linux-v6.6/tools/perf/tests/ | 
| D | tests.h | 205 DECLARE_WORKLOAD(brstack);
 | 
| /Linux-v6.6/tools/perf/util/ | 
| D | dlfilter.c | 546 		d_sample.brstack = (struct perf_branch_entry *)perf_sample__branch_entries(sample);  in dlfilter__do_filter_event()549 		d_sample.brstack = NULL;  in dlfilter__do_filter_event()
 
 | 
| /Linux-v6.6/tools/perf/Documentation/ | 
| D | perf-dlfilter.txt | 111 	__u64 brstack_nr;	/* Number of brstack entries */112 	const struct perf_branch_entry *brstack; /* Refer <linux/perf_event.h> */
 
 | 
| D | perf-script-python.txt | 647 brstack, brstacksym, datasrc, datasrc_decode, iregs, uregs,663 brstack:
 671 We can use this code to print brstack "from", "to", "cycles".
 673 if 'brstack' in dict:
 674 	for entry in dict['brstack']:
 
 | 
| D | perf-script.txt | 134         srcline, period, iregs, uregs, brstack, brstacksym, flags, bpf-output,240 	The brstack output includes branch related information with raw addresses using the
 249 …The brstacksym is identical to brstack, except that the FROM and TO addresses are printed in a sym…
 
 | 
| /Linux-v6.6/tools/perf/util/scripting-engines/ | 
| D | trace-event-python.c | 842 	PyObject *dict, *dict_sample, *brstack, *brstacksym;  in get_perf_sample_dict()  local888 	brstack = python_process_brstack(sample, al->thread);  in get_perf_sample_dict()
 889 	pydict_set_item_string_decref(dict, "brstack", brstack);  in get_perf_sample_dict()
 
 |