1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * db-export.h: Support for exporting data suitable for import to a database 4 * Copyright (c) 2014, Intel Corporation. 5 */ 6 7 #ifndef __PERF_DB_EXPORT_H 8 #define __PERF_DB_EXPORT_H 9 10 #include <linux/types.h> 11 #include <linux/list.h> 12 13 struct evsel; 14 struct machine; 15 struct thread; 16 struct comm; 17 struct dso; 18 struct perf_sample; 19 struct addr_location; 20 struct call_return_processor; 21 struct call_path_root; 22 struct call_path; 23 struct call_return; 24 25 struct export_sample { 26 union perf_event *event; 27 struct perf_sample *sample; 28 struct addr_location *al; 29 u64 db_id; 30 u64 comm_db_id; 31 u64 dso_db_id; 32 u64 sym_db_id; 33 u64 offset; /* ip offset from symbol start */ 34 u64 addr_dso_db_id; 35 u64 addr_sym_db_id; 36 u64 addr_offset; /* addr offset from symbol start */ 37 u64 call_path_id; 38 }; 39 40 struct db_export { 41 int (*export_evsel)(struct db_export *dbe, struct evsel *evsel); 42 int (*export_machine)(struct db_export *dbe, struct machine *machine); 43 int (*export_thread)(struct db_export *dbe, struct thread *thread, 44 u64 main_thread_db_id, struct machine *machine); 45 int (*export_comm)(struct db_export *dbe, struct comm *comm, 46 struct thread *thread); 47 int (*export_comm_thread)(struct db_export *dbe, u64 db_id, 48 struct comm *comm, struct thread *thread); 49 int (*export_dso)(struct db_export *dbe, struct dso *dso, 50 struct machine *machine); 51 int (*export_symbol)(struct db_export *dbe, struct symbol *sym, 52 struct dso *dso); 53 int (*export_branch_type)(struct db_export *dbe, u32 branch_type, 54 const char *name); 55 int (*export_sample)(struct db_export *dbe, struct export_sample *es); 56 int (*export_call_path)(struct db_export *dbe, struct call_path *cp); 57 int (*export_call_return)(struct db_export *dbe, 58 struct call_return *cr); 59 int (*export_context_switch)(struct db_export *dbe, u64 db_id, 60 struct machine *machine, 61 struct perf_sample *sample, 62 u64 th_out_id, u64 comm_out_id, 63 u64 th_in_id, u64 comm_in_id, int flags); 64 struct call_return_processor *crp; 65 struct call_path_root *cpr; 66 u64 evsel_last_db_id; 67 u64 machine_last_db_id; 68 u64 thread_last_db_id; 69 u64 comm_last_db_id; 70 u64 comm_thread_last_db_id; 71 u64 dso_last_db_id; 72 u64 symbol_last_db_id; 73 u64 sample_last_db_id; 74 u64 call_path_last_db_id; 75 u64 call_return_last_db_id; 76 u64 context_switch_last_db_id; 77 }; 78 79 int db_export__init(struct db_export *dbe); 80 void db_export__exit(struct db_export *dbe); 81 int db_export__evsel(struct db_export *dbe, struct evsel *evsel); 82 int db_export__machine(struct db_export *dbe, struct machine *machine); 83 int db_export__thread(struct db_export *dbe, struct thread *thread, 84 struct machine *machine, struct thread *main_thread); 85 int db_export__comm(struct db_export *dbe, struct comm *comm, 86 struct thread *thread); 87 int db_export__exec_comm(struct db_export *dbe, struct comm *comm, 88 struct thread *main_thread); 89 int db_export__comm_thread(struct db_export *dbe, struct comm *comm, 90 struct thread *thread); 91 int db_export__dso(struct db_export *dbe, struct dso *dso, 92 struct machine *machine); 93 int db_export__symbol(struct db_export *dbe, struct symbol *sym, 94 struct dso *dso); 95 int db_export__branch_type(struct db_export *dbe, u32 branch_type, 96 const char *name); 97 int db_export__sample(struct db_export *dbe, union perf_event *event, 98 struct perf_sample *sample, 99 struct addr_location *al, struct addr_location *addr_al); 100 101 int db_export__branch_types(struct db_export *dbe); 102 103 int db_export__call_path(struct db_export *dbe, struct call_path *cp); 104 int db_export__call_return(struct db_export *dbe, struct call_return *cr, 105 u64 *parent_db_id); 106 int db_export__switch(struct db_export *dbe, union perf_event *event, 107 struct perf_sample *sample, struct machine *machine); 108 109 #endif 110