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