1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _PERF_RECORD_H 3 #define _PERF_RECORD_H 4 5 #include <time.h> 6 #include <stdbool.h> 7 #include <linux/types.h> 8 #include <linux/stddef.h> 9 #include <linux/perf_event.h> 10 #include "util/target.h" 11 12 struct option; 13 14 struct record_opts { 15 struct target target; 16 bool group; 17 bool inherit_stat; 18 bool no_buffering; 19 bool no_inherit; 20 bool no_inherit_set; 21 bool no_samples; 22 bool raw_samples; 23 bool sample_address; 24 bool sample_phys_addr; 25 bool sample_data_page_size; 26 bool sample_weight; 27 bool sample_time; 28 bool sample_time_set; 29 bool sample_cpu; 30 bool period; 31 bool period_set; 32 bool running_time; 33 bool full_auxtrace; 34 bool auxtrace_snapshot_mode; 35 bool auxtrace_snapshot_on_exit; 36 bool auxtrace_sample_mode; 37 bool record_namespaces; 38 bool record_cgroup; 39 bool record_switch_events; 40 bool record_switch_events_set; 41 bool all_kernel; 42 bool all_user; 43 bool kernel_callchains; 44 bool user_callchains; 45 bool tail_synthesize; 46 bool overwrite; 47 bool ignore_missing_thread; 48 bool strict_freq; 49 bool sample_id; 50 bool no_bpf_event; 51 bool kcore; 52 bool text_poke; 53 unsigned int freq; 54 unsigned int mmap_pages; 55 unsigned int auxtrace_mmap_pages; 56 unsigned int user_freq; 57 u64 branch_stack; 58 u64 sample_intr_regs; 59 u64 sample_user_regs; 60 u64 default_interval; 61 u64 user_interval; 62 size_t auxtrace_snapshot_size; 63 const char *auxtrace_snapshot_opts; 64 const char *auxtrace_sample_opts; 65 bool sample_transaction; 66 int initial_delay; 67 bool use_clockid; 68 clockid_t clockid; 69 u64 clockid_res_ns; 70 int nr_cblocks; 71 int affinity; 72 int mmap_flush; 73 unsigned int comp_level; 74 unsigned int nr_threads_synthesize; 75 int ctl_fd; 76 int ctl_fd_ack; 77 bool ctl_fd_close; 78 }; 79 80 extern const char * const *record_usage; 81 extern struct option *record_options; 82 83 int record__parse_freq(const struct option *opt, const char *str, int unset); 84 85 static inline bool record_opts__no_switch_events(const struct record_opts *opts) 86 { 87 return opts->record_switch_events_set && !opts->record_switch_events; 88 } 89 90 #endif // _PERF_RECORD_H 91