/linux-6.1.9/tools/perf/util/ |
D | evsel.h | 60 struct evsel { struct 61 struct perf_evsel core; argument 70 * Please check evsel__clone() to copy them properly so that argument 73 struct { 110 struct evsel **metric_events; argument 111 struct evsel *metric_leader; argument 117 struct perf_stat_evsel *stats; argument 141 * For reporting purposes, an evsel sample can have a callchain argument 147 __u64 synth_sample_type; 154 struct bpf_counter_ops *bpf_counter_ops; [all …]
|
D | evsel.c | 115 int evsel__object_config(size_t object_size, int (*init)(struct evsel *evsel), in evsel__object_config() 116 void (*fini)(struct evsel *evsel)) in evsel__object_config() 215 void evsel__calc_id_pos(struct evsel *evsel) in evsel__calc_id_pos() 221 void __evsel__set_sample_bit(struct evsel *evsel, in __evsel__set_sample_bit() 231 void __evsel__reset_sample_bit(struct evsel *evsel, in __evsel__reset_sample_bit() 241 void evsel__set_sample_id(struct evsel *evsel, in evsel__set_sample_id() 261 bool evsel__is_function_event(struct evsel *evsel) in evsel__is_function_event() 271 void evsel__init(struct evsel *evsel, in evsel__init() 298 struct evsel *evsel = zalloc(perf_evsel__object.size); in evsel__new_idx() local 331 struct evsel *evsel; in evsel__new_cycles() local [all …]
|
D | bpf_counter.c | 48 static int bpf_program_profiler__destroy(struct evsel *evsel) in bpf_program_profiler__destroy() 102 static int bpf_program_profiler_load_one(struct evsel *evsel, u32 prog_id) in bpf_program_profiler_load_one() 167 static int bpf_program_profiler__load(struct evsel *evsel, struct target *target) in bpf_program_profiler__load() 198 static int bpf_program_profiler__enable(struct evsel *evsel) in bpf_program_profiler__enable() 214 static int bpf_program_profiler__disable(struct evsel *evsel) in bpf_program_profiler__disable() 225 static int bpf_program_profiler__read(struct evsel *evsel) in bpf_program_profiler__read() 273 static int bpf_program_profiler__install_pe(struct evsel *evsel, int cpu_map_idx, in bpf_program_profiler__install_pe() 380 static int bperf_check_target(struct evsel *evsel, in bperf_check_target() 413 static int bperf_reload_leader_program(struct evsel *evsel, int attr_map_fd, in bperf_reload_leader_program() 462 static int bperf__load(struct evsel *evsel, struct target *target) in bperf__load() [all …]
|
D | stat.c | 84 bool __perf_stat_evsel__is(struct evsel *evsel, enum perf_stat_evsel_id id) in __perf_stat_evsel__is() 116 static void perf_stat_evsel_id_init(struct evsel *evsel) in perf_stat_evsel_id_init() 133 static void evsel__reset_stat_priv(struct evsel *evsel) in evsel__reset_stat_priv() 140 static int evsel__alloc_stat_priv(struct evsel *evsel) in evsel__alloc_stat_priv() 150 static void evsel__free_stat_priv(struct evsel *evsel) in evsel__free_stat_priv() 159 static int evsel__alloc_prev_raw_counts(struct evsel *evsel) in evsel__alloc_prev_raw_counts() 172 static void evsel__free_prev_raw_counts(struct evsel *evsel) in evsel__free_prev_raw_counts() 178 static void evsel__reset_prev_raw_counts(struct evsel *evsel) in evsel__reset_prev_raw_counts() 184 static int evsel__alloc_stats(struct evsel *evsel, bool alloc_raw) in evsel__alloc_stats() 196 struct evsel *evsel; in evlist__alloc_stats() local [all …]
|
D | perf_api_probe.c | 17 struct evsel *evsel; in perf_do_probe_api() local 82 static void perf_probe_sample_identifier(struct evsel *evsel) in perf_probe_sample_identifier() 87 static void perf_probe_comm_exec(struct evsel *evsel) in perf_probe_comm_exec() 92 static void perf_probe_context_switch(struct evsel *evsel) in perf_probe_context_switch() 97 static void perf_probe_text_poke(struct evsel *evsel) in perf_probe_text_poke() 102 static void perf_probe_build_id(struct evsel *evsel) in perf_probe_build_id() 107 static void perf_probe_cgroup(struct evsel *evsel) in perf_probe_cgroup()
|
D | evlist.h | 244 struct perf_evsel *evsel = perf_evlist__first(&evlist->core); in evlist__first() local 251 struct perf_evsel *evsel = perf_evlist__last(&evlist->core); in evlist__last() local 267 #define __evlist__for_each_entry(list, evsel) \ argument 275 #define evlist__for_each_entry(evlist, evsel) \ argument 283 #define __evlist__for_each_entry_continue(list, evsel) \ argument 291 #define evlist__for_each_entry_continue(evlist, evsel) \ argument 299 #define __evlist__for_each_entry_from(list, evsel) \ argument 307 #define evlist__for_each_entry_from(evlist, evsel) \ argument 315 #define __evlist__for_each_entry_reverse(list, evsel) \ argument 323 #define evlist__for_each_entry_reverse(evlist, evsel) \ argument [all …]
|
D | bpf_counter_cgroup.c | 47 struct evsel *evsel; in bperf_load_program() local 170 static int bperf_cgrp__load(struct evsel *evsel, in bperf_cgrp__load() 211 static int bperf_cgrp__enable(struct evsel *evsel) in bperf_cgrp__enable() 222 static int bperf_cgrp__disable(struct evsel *evsel) in bperf_cgrp__disable() 233 static int bperf_cgrp__read(struct evsel *evsel) in bperf_cgrp__read() 277 static int bperf_cgrp__destroy(struct evsel *evsel) in bperf_cgrp__destroy()
|
D | evlist.c | 130 struct evsel *evsel; in evlist__update_id_pos() local 181 void evlist__remove(struct evlist *evlist, struct evsel *evsel) in evlist__remove() 190 struct evsel *evsel, *temp, *leader = NULL; in evlist__splice_list_tail() local 216 struct evsel *evsel = evlist__find_tracepoint_by_name(evlist, assocs[i].name); in __evlist__set_tracepoints_handlers() local 238 struct evsel *evsel; in __evlist__add_default() local 262 struct evsel *evsel = evlist__dummy_event(evlist); in evlist__add_dummy() local 273 struct evsel *evsel = evlist__dummy_event(evlist); in evlist__add_aux_dummy() local 293 struct evsel *evsel = evsel__newtp_idx("sched", "sched_switch", 0); in evlist__add_sched_switch() local 310 struct evsel *evsel, *n; in evlist__add_attrs() local 353 struct evsel *evsel; in evlist__find_tracepoint_by_id() local [all …]
|
D | record.c | 26 static struct evsel *evsel__read_sampler(struct evsel *evsel, struct evlist *evlist) in evsel__read_sampler() 41 static u64 evsel__config_term_mask(struct evsel *evsel) in evsel__config_term_mask() 53 static void evsel__config_leader_sampling(struct evsel *evsel, struct evlist *evlist) in evsel__config_leader_sampling() 97 struct evsel *evsel; in evlist__config() local 231 struct evsel *evsel; in evlist__can_select_event() local
|
D | evlist-hybrid.c | 21 struct evsel *evsel; in evlist__add_default_hybrid() local 63 struct evsel *evsel; in evlist__warn_hybrid_group() local 78 struct evsel *evsel; in evlist__has_hybrid() local 93 struct evsel *evsel, *tmp; in evlist__fix_hybrid_cpus() local
|
D | counts.c | 54 void evsel__reset_counts(struct evsel *evsel) in evsel__reset_counts() 59 int evsel__alloc_counts(struct evsel *evsel) in evsel__alloc_counts() 68 void evsel__free_counts(struct evsel *evsel) in evsel__free_counts()
|
/linux-6.1.9/tools/perf/tests/ |
D | parse-events.c | 51 struct evsel *evsel = evlist__first(evlist); in test__checkevent_tracepoint() local 64 struct evsel *evsel; in test__checkevent_tracepoint_multi() local 82 struct evsel *evsel = evlist__first(evlist); in test__checkevent_raw() local 92 struct evsel *evsel = evlist__first(evlist); in test__checkevent_numeric() local 102 struct evsel *evsel = evlist__first(evlist); in test__checkevent_symbolic_name() local 113 struct evsel *evsel = evlist__first(evlist); in test__checkevent_symbolic_name_config() local 134 struct evsel *evsel = evlist__first(evlist); in test__checkevent_symbolic_alias() local 145 struct evsel *evsel = evlist__first(evlist); in test__checkevent_genhw() local 155 struct evsel *evsel = evlist__first(evlist); in test__checkevent_breakpoint() local 169 struct evsel *evsel = evlist__first(evlist); in test__checkevent_breakpoint_x() local [all …]
|
D | event-times.c | 19 struct evsel *evsel = evlist__last(evlist); in attach__enable_on_exec() local 61 struct evsel *evsel = evlist__last(evlist); in attach__current_disabled() local 87 struct evsel *evsel = evlist__last(evlist); in attach__current_enabled() local 107 struct evsel *evsel = evlist__last(evlist); in detach__disable() local 114 struct evsel *evsel = evlist__last(evlist); in attach__cpu_disabled() local 143 struct evsel *evsel = evlist__last(evlist); in attach__cpu_enabled() local 168 struct evsel *evsel; in test_times() local
|
D | hists_output.c | 53 struct evsel *evsel = hists_to_evsel(hists); in add_hist_entries() local 125 static int test1(struct evsel *evsel, struct machine *machine) in test1() 227 static int test2(struct evsel *evsel, struct machine *machine) in test2() 283 static int test3(struct evsel *evsel, struct machine *machine) in test3() 357 static int test4(struct evsel *evsel, struct machine *machine) in test4() 459 static int test5(struct evsel *evsel, struct machine *machine) in test5() 583 struct evsel *evsel; in test__hists_output() local
|
/linux-6.1.9/tools/lib/perf/ |
D | evsel.c | 22 void perf_evsel__init(struct perf_evsel *evsel, struct perf_event_attr *attr, in perf_evsel__init() 33 struct perf_evsel *evsel = zalloc(sizeof(*evsel)); in perf_evsel__new() local 41 void perf_evsel__delete(struct perf_evsel *evsel) in perf_evsel__delete() 52 int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads) in perf_evsel__alloc_fd() 72 static int perf_evsel__alloc_mmap(struct perf_evsel *evsel, int ncpus, int nthreads) in perf_evsel__alloc_mmap() 87 static int get_group_fd(struct perf_evsel *evsel, int cpu_map_idx, int thread, int *group_fd) in get_group_fd() 113 int perf_evsel__open(struct perf_evsel *evsel, struct perf_cpu_map *cpus, in perf_evsel__open() 180 static void perf_evsel__close_fd_cpu(struct perf_evsel *evsel, int cpu_map_idx) in perf_evsel__close_fd_cpu() 194 void perf_evsel__close_fd(struct perf_evsel *evsel) in perf_evsel__close_fd() 200 void perf_evsel__free_fd(struct perf_evsel *evsel) in perf_evsel__free_fd() [all …]
|
D | evlist.c | 37 struct perf_evsel *evsel) in __perf_evlist__propagate_maps() 68 struct perf_evsel *evsel; in perf_evlist__propagate_maps() local 77 struct perf_evsel *evsel) in perf_evlist__add() 88 struct perf_evsel *evsel) in perf_evlist__remove() 185 struct perf_evsel *evsel; in perf_evlist__open() local 203 struct perf_evsel *evsel; in perf_evlist__close() local 211 struct perf_evsel *evsel; in perf_evlist__enable() local 219 struct perf_evsel *evsel; in perf_evlist__disable() local 235 struct perf_evsel *evsel, in perf_evlist__id_hash() 256 struct perf_evsel *evsel, in perf_evlist__id_add() [all …]
|
/linux-6.1.9/tools/perf/arch/x86/util/ |
D | kvm-stat.c | 31 static void mmio_event_get_key(struct evsel *evsel, struct perf_sample *sample, in mmio_event_get_key() 42 static bool mmio_event_begin(struct evsel *evsel, in mmio_event_begin() 59 static bool mmio_event_end(struct evsel *evsel, struct perf_sample *sample, in mmio_event_end() 93 static void ioport_event_get_key(struct evsel *evsel, in ioport_event_get_key() 101 static bool ioport_event_begin(struct evsel *evsel, in ioport_event_begin() 113 static bool ioport_event_end(struct evsel *evsel, in ioport_event_end() 137 static void msr_event_get_key(struct evsel *evsel, in msr_event_get_key() 145 static bool msr_event_begin(struct evsel *evsel, in msr_event_begin() 157 static bool msr_event_end(struct evsel *evsel, in msr_event_end()
|
D | evsel.c | 14 void arch_evsel__set_sample_weight(struct evsel *evsel) in arch_evsel__set_sample_weight() 40 bool evsel__sys_has_perf_metrics(const struct evsel *evsel) in evsel__sys_has_perf_metrics() 59 bool arch_evsel__must_be_in_group(const struct evsel *evsel) in arch_evsel__must_be_in_group() 69 int arch_evsel__hw_name(struct evsel *evsel, char *bf, size_t size) in arch_evsel__hw_name() 96 void arch__post_evsel_config(struct evsel *evsel, struct perf_event_attr *attr) in arch__post_evsel_config()
|
/linux-6.1.9/tools/lib/perf/include/internal/ |
D | evlist.h | 71 #define __perf_evlist__for_each_entry(list, evsel) \ argument 79 #define perf_evlist__for_each_entry(evlist, evsel) \ argument 87 #define __perf_evlist__for_each_entry_reverse(list, evsel) \ argument 95 #define perf_evlist__for_each_entry_reverse(evlist, evsel) \ argument 104 #define __perf_evlist__for_each_entry_safe(list, tmp, evsel) \ argument 113 #define perf_evlist__for_each_entry_safe(evlist, tmp, evsel) \ argument
|
/linux-6.1.9/tools/perf/ |
D | builtin-kwork.c | 385 struct evsel *evsel, in work_push_atom() 430 struct evsel *evsel, in work_pop_atom() 490 struct evsel *evsel, in report_entry_event() 501 struct evsel *evsel, in report_exit_event() 545 struct evsel *evsel, in latency_raise_event() 556 struct evsel *evsel, in latency_entry_event() 579 struct evsel *evsel, in timehist_save_callchain() 696 struct evsel *evsel, in timehist_raise_event() 707 struct evsel *evsel, in timehist_entry_event() 728 struct evsel *evsel, in timehist_exit_event() [all …]
|
D | builtin-top.c | 113 struct evsel *evsel; in perf_top__parse_source() local 198 struct evsel *evsel, u64 ip) in perf_top__record_precise_ip() 241 struct evsel *evsel; in perf_top__show_details() local 322 struct evsel *evsel = top->sym_evsel; in perf_top__print_sym_table() local 731 struct evsel *evsel = iter->evsel; in hist_iter__top_callback() local 744 struct evsel *evsel, in perf_event__process_sample() 853 struct evsel *evsel) in perf_top__process_lost() 863 struct evsel *evsel) in perf_top__process_lost_samples() 948 struct evsel *evsel; in perf_top__overwrite_check() local 988 struct evsel *evsel) in perf_top_overwrite_fallback() [all …]
|
/linux-6.1.9/tools/perf/arch/s390/util/ |
D | kvm-stat.c | 27 static void event_icpt_insn_get_key(struct evsel *evsel, in event_icpt_insn_get_key() 38 static void event_sigp_get_key(struct evsel *evsel, in event_sigp_get_key() 46 static void event_diag_get_key(struct evsel *evsel, in event_diag_get_key() 54 static void event_icpt_prog_get_key(struct evsel *evsel, in event_icpt_prog_get_key()
|
/linux-6.1.9/tools/lib/perf/tests/ |
D | test-evsel.c | 23 struct perf_evsel *evsel; in test_stat_cpu() local 57 struct perf_evsel *evsel; in test_stat_thread() local 89 struct perf_evsel *evsel; in test_stat_thread_enable() local 131 struct perf_evsel *evsel; in test_stat_user_read() local 197 struct perf_evsel *evsel; in test_stat_read_format_single() local
|
D | test-evlist.c | 38 struct perf_evsel *evsel, *leader; in test_stat_cpu() local 97 struct perf_evsel *evsel, *leader; in test_stat_thread() local 152 struct perf_evsel *evsel, *leader; in test_stat_thread_enable() local 216 struct perf_evsel *evsel; in test_mmap_thread() local 327 struct perf_evsel *evsel; in test_mmap_cpus() local 445 struct perf_evsel *evsel; in test_stat_multiplexing() local
|
/linux-6.1.9/tools/perf/arch/arm64/util/ |
D | kvm-stat.c | 25 static void event_get_key(struct evsel *evsel, in event_get_key() 44 static bool event_begin(struct evsel *evsel, in event_begin() 51 static bool event_end(struct evsel *evsel, in event_end()
|