Lines Matching refs:evsel
48 struct evsel { struct
97 struct evsel **metric_events; argument
98 struct evsel *metric_leader; argument
182 static inline struct perf_cpu_map *evsel__cpus(struct evsel *evsel) in evsel__cpus() argument
184 return perf_evsel__cpus(&evsel->core); in evsel__cpus()
187 static inline int evsel__nr_cpus(struct evsel *evsel) in evsel__nr_cpus() argument
189 return evsel__cpus(evsel)->nr; in evsel__nr_cpus()
195 void evsel__compute_deltas(struct evsel *evsel, int cpu, int thread,
199 int (*init)(struct evsel *evsel),
200 void (*fini)(struct evsel *evsel));
202 struct perf_pmu *evsel__find_pmu(struct evsel *evsel);
203 bool evsel__is_aux_event(struct evsel *evsel);
205 struct evsel *evsel__new_idx(struct perf_event_attr *attr, int idx);
207 static inline struct evsel *evsel__new(struct perf_event_attr *attr) in evsel__new()
212 struct evsel *evsel__clone(struct evsel *orig);
213 struct evsel *evsel__newtp_idx(const char *sys, const char *name, int idx);
221 static inline struct evsel *evsel__newtp(const char *sys, const char *name) in evsel__newtp()
226 struct evsel *evsel__new_cycles(bool precise, __u32 type, __u64 config);
230 void evsel__init(struct evsel *evsel, struct perf_event_attr *attr, int idx);
231 void evsel__exit(struct evsel *evsel);
232 void evsel__delete(struct evsel *evsel);
236 void evsel__config(struct evsel *evsel, struct record_opts *opts,
238 void evsel__config_callchain(struct evsel *evsel, struct record_opts *opts,
242 void evsel__calc_id_pos(struct evsel *evsel);
246 static inline bool evsel__is_bpf(struct evsel *evsel) in evsel__is_bpf() argument
248 return evsel->bpf_counter_ops != NULL; in evsel__is_bpf()
251 static inline bool evsel__is_bperf(struct evsel *evsel) in evsel__is_bperf() argument
253 return evsel->bpf_counter_ops != NULL && list_empty(&evsel->bpf_counter_list); in evsel__is_bperf()
267 const char *evsel__name(struct evsel *evsel);
269 const char *evsel__group_name(struct evsel *evsel);
270 int evsel__group_desc(struct evsel *evsel, char *buf, size_t size);
272 void __evsel__set_sample_bit(struct evsel *evsel, enum perf_event_sample_format bit);
273 void __evsel__reset_sample_bit(struct evsel *evsel, enum perf_event_sample_format bit);
275 #define evsel__set_sample_bit(evsel, bit) \ argument
276 __evsel__set_sample_bit(evsel, PERF_SAMPLE_##bit)
278 #define evsel__reset_sample_bit(evsel, bit) \ argument
279 __evsel__reset_sample_bit(evsel, PERF_SAMPLE_##bit)
281 void evsel__set_sample_id(struct evsel *evsel, bool use_sample_identifier);
283 void arch_evsel__set_sample_weight(struct evsel *evsel);
285 int evsel__set_filter(struct evsel *evsel, const char *filter);
286 int evsel__append_tp_filter(struct evsel *evsel, const char *filter);
287 int evsel__append_addr_filter(struct evsel *evsel, const char *filter);
288 int evsel__enable_cpu(struct evsel *evsel, int cpu);
289 int evsel__enable(struct evsel *evsel);
290 int evsel__disable(struct evsel *evsel);
291 int evsel__disable_cpu(struct evsel *evsel, int cpu);
293 int evsel__open_per_cpu(struct evsel *evsel, struct perf_cpu_map *cpus, int cpu);
294 int evsel__open_per_thread(struct evsel *evsel, struct perf_thread_map *threads);
295 int evsel__open(struct evsel *evsel, struct perf_cpu_map *cpus,
297 void evsel__close(struct evsel *evsel);
298 int evsel__prepare_open(struct evsel *evsel, struct perf_cpu_map *cpus,
300 bool evsel__detect_missing_features(struct evsel *evsel);
305 bool evsel__ignore_missing_thread(struct evsel *evsel,
309 bool evsel__precise_ip_fallback(struct evsel *evsel);
313 void *evsel__rawptr(struct evsel *evsel, struct perf_sample *sample, const char *name);
314 u64 evsel__intval(struct evsel *evsel, struct perf_sample *sample, const char *name);
316 static inline char *evsel__strval(struct evsel *evsel, struct perf_sample *sample, const char *name) in evsel__strval() argument
318 return evsel__rawptr(evsel, sample, name); in evsel__strval()
325 struct tep_format_field *evsel__field(struct evsel *evsel, const char *name);
327 #define evsel__match(evsel, t, c) \ argument
328 (evsel->core.attr.type == PERF_TYPE_##t && \
329 evsel->core.attr.config == PERF_COUNT_##c)
331 static inline bool evsel__match2(struct evsel *e1, struct evsel *e2) in evsel__match2()
337 int evsel__read_counter(struct evsel *evsel, int cpu, int thread);
339 int __evsel__read_on_cpu(struct evsel *evsel, int cpu, int thread, bool scale);
348 static inline int evsel__read_on_cpu(struct evsel *evsel, int cpu, int thread) in evsel__read_on_cpu() argument
350 return __evsel__read_on_cpu(evsel, cpu, thread, false); in evsel__read_on_cpu()
360 static inline int evsel__read_on_cpu_scaled(struct evsel *evsel, int cpu, int thread) in evsel__read_on_cpu_scaled() argument
362 return __evsel__read_on_cpu(evsel, cpu, thread, true); in evsel__read_on_cpu_scaled()
365 int evsel__parse_sample(struct evsel *evsel, union perf_event *event,
368 int evsel__parse_sample_timestamp(struct evsel *evsel, union perf_event *event,
371 static inline struct evsel *evsel__next(struct evsel *evsel) in evsel__next() argument
373 return list_entry(evsel->core.node.next, struct evsel, core.node); in evsel__next()
376 static inline struct evsel *evsel__prev(struct evsel *evsel) in evsel__prev() argument
378 return list_entry(evsel->core.node.prev, struct evsel, core.node); in evsel__prev()
388 static inline bool evsel__is_group_leader(const struct evsel *evsel) in evsel__is_group_leader() argument
390 return evsel->core.leader == &evsel->core; in evsel__is_group_leader()
401 static inline bool evsel__is_group_event(struct evsel *evsel) in evsel__is_group_event() argument
406 return evsel__is_group_leader(evsel) && evsel->core.nr_members > 1; in evsel__is_group_event()
409 bool evsel__is_function_event(struct evsel *evsel);
411 static inline bool evsel__is_bpf_output(struct evsel *evsel) in evsel__is_bpf_output() argument
413 return evsel__match(evsel, SOFTWARE, SW_BPF_OUTPUT); in evsel__is_bpf_output()
416 static inline bool evsel__is_clock(struct evsel *evsel) in evsel__is_clock() argument
418 return evsel__match(evsel, SOFTWARE, SW_CPU_CLOCK) || in evsel__is_clock()
419 evsel__match(evsel, SOFTWARE, SW_TASK_CLOCK); in evsel__is_clock()
422 bool evsel__fallback(struct evsel *evsel, int err, char *msg, size_t msgsize);
423 int evsel__open_strerror(struct evsel *evsel, struct target *target,
426 static inline int evsel__group_idx(struct evsel *evsel) in evsel__group_idx() argument
428 return evsel->core.idx - evsel->core.leader->idx; in evsel__group_idx()
433 for ((_evsel) = list_entry((_leader)->core.node.next, struct evsel, core.node); \
435 (_evsel) = list_entry((_evsel)->core.node.next, struct evsel, core.node))
441 (_evsel) = list_entry((_evsel)->core.node.next, struct evsel, core.node))
443 static inline bool evsel__has_branch_callstack(const struct evsel *evsel) in evsel__has_branch_callstack() argument
445 return evsel->core.attr.branch_sample_type & PERF_SAMPLE_BRANCH_CALL_STACK; in evsel__has_branch_callstack()
448 static inline bool evsel__has_branch_hw_idx(const struct evsel *evsel) in evsel__has_branch_hw_idx() argument
450 return evsel->core.attr.branch_sample_type & PERF_SAMPLE_BRANCH_HW_INDEX; in evsel__has_branch_hw_idx()
453 static inline bool evsel__has_callchain(const struct evsel *evsel) in evsel__has_callchain() argument
459 return evsel->core.attr.sample_type & PERF_SAMPLE_CALLCHAIN || in evsel__has_callchain()
460 evsel->synth_sample_type & PERF_SAMPLE_CALLCHAIN; in evsel__has_callchain()
463 static inline bool evsel__has_br_stack(const struct evsel *evsel) in evsel__has_br_stack() argument
469 return evsel->core.attr.sample_type & PERF_SAMPLE_BRANCH_STACK || in evsel__has_br_stack()
470 evsel->synth_sample_type & PERF_SAMPLE_BRANCH_STACK; in evsel__has_br_stack()
473 static inline bool evsel__is_dummy_event(struct evsel *evsel) in evsel__is_dummy_event() argument
475 return (evsel->core.attr.type == PERF_TYPE_SOFTWARE) && in evsel__is_dummy_event()
476 (evsel->core.attr.config == PERF_COUNT_SW_DUMMY); in evsel__is_dummy_event()
479 struct perf_env *evsel__env(struct evsel *evsel);
481 int evsel__store_ids(struct evsel *evsel, struct evlist *evlist);
483 void evsel__zero_per_pkg(struct evsel *evsel);
484 bool evsel__is_hybrid(struct evsel *evsel);
485 struct evsel *evsel__leader(struct evsel *evsel);
486 bool evsel__has_leader(struct evsel *evsel, struct evsel *leader);
487 bool evsel__is_leader(struct evsel *evsel);
488 void evsel__set_leader(struct evsel *evsel, struct evsel *leader);