Home
last modified time | relevance | path

Searched refs:brstack (Results 1 – 7 of 7) sorted by relevance

/tools/perf/include/perf/
Dperf_dlfilter.h61 const struct perf_branch_entry *brstack; /* Refer <linux/perf_event.h> */ member
/tools/perf/dlfilters/
Ddlfilter-test-api-v0.c66 const struct perf_branch_entry *brstack; /* Refer <linux/perf_event.h> */ member
219 CHECK(!sample->brstack); in check_sample()
/tools/perf/Documentation/
Dperf-dlfilter.txt105 __u64 brstack_nr; /* Number of brstack entries */
106 const struct perf_branch_entry *brstack; /* Refer <linux/perf_event.h> */
Dperf-script-python.txt647 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']:
Dperf-script.txt131 srcline, period, iregs, uregs, brstack, brstacksym, flags, bpf-output,
226 The brstack output includes branch related information with raw addresses using the
235 …The brstacksym is identical to brstack, except that the FROM and TO addresses are printed in a sym…
/tools/perf/util/
Ddlfilter.c501 d_sample.brstack = (struct perf_branch_entry *)perf_sample__branch_entries(sample); in dlfilter__do_filter_event()
504 d_sample.brstack = NULL; in dlfilter__do_filter_event()
/tools/perf/util/scripting-engines/
Dtrace-event-python.c781 PyObject *dict, *dict_sample, *brstack, *brstacksym; in get_perf_sample_dict() local
826 brstack = python_process_brstack(sample, al->thread); in get_perf_sample_dict()
827 pydict_set_item_string_decref(dict, "brstack", brstack); in get_perf_sample_dict()