Searched refs:brstack (Results 1 – 12 of 12) sorted by relevance
/linux/tools/perf/tests/workloads/ |
H A D | brstack.c | 25 static int brstack(int argc, const char **argv) in brstack() function 40 DEFINE_WORKLOAD(brstack);
|
H A D | Build | 7 perf-test-y += brstack.o
|
/linux/tools/perf/tests/shell/ |
H A D | record.sh | 15 testsym2="brstack" 264 perf test -w brstack 2> /dev/null 270 perf script -i "${perfdata}" | grep brstack > $script_output 374 if ! perf record -o "${perfdata}" $cmd_flags perf test -w brstack
|
H A D | test_brstack.sh | 22 TESTPROG="perf test -w brstack" 54 "^brstack\+[^ ]*/brstack\+[^ ]*/UNCOND/.*$" 76 perf script -i "$TMPDIR/perf.data" --fields brstack > "$TMPDIR/perf.script"
|
H A D | test_intel_pt.sh | 556 if "brstack" in param_dict: 557 brstack = param_dict["brstack"] 558 n = len(brstack) 564 print("max brstack", bmax) 569 times_val=$(perf script -i "${perfdatafile}" --itrace=L -s "${maxbrstack}" 2>/dev/null | grep "max brstack " | cut -d " " -f 3)
|
/linux/tools/perf/Documentation/ |
H A D | perf-test.txt | 59 noploop, thloop, leafloop, sqrtloop, brstack, datasym and landlock. 66 nrloops: brstack
|
H A D | perf-dlfilter.txt | 111 __u64 brstack_nr; /* Number of brstack entries */ 112 const struct perf_branch_entry *brstack; /* Refer <linux/perf_event.h> */
|
H A 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']:
|
H A D | perf-script.txt | 134 srcline, period, iregs, uregs, brstack, brstacksym, flags, bpf-output, 241 The brstack output includes branch related information with raw addresses using the 259 The brstacksym is identical to brstack, except that the FROM and TO addresses are printed in a symbolic form if possible.
|
/linux/tools/perf/include/perf/ |
H A D | perf_dlfilter.h | 66 __u64 brstack_nr; /* Number of brstack entries */ 67 const struct perf_branch_entry *brstack; /* Refer <linux/perf_event.h> */ member
|
/linux/tools/perf/util/ |
H A D | dlfilter.c | 549 d_sample.brstack = (struct perf_branch_entry *)perf_sample__branch_entries(sample); in dlfilter__do_filter_event() 552 d_sample.brstack = NULL; in dlfilter__do_filter_event()
|
/linux/tools/perf/util/scripting-engines/ |
H A D | trace-event-python.c | 836 PyObject *dict, *dict_sample, *brstack, *brstacksym; in get_perf_sample_dict() local 888 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()
|