Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Jiri Olsa | acbe613 | 2016-02-15 09:34:34 +0100 | [diff] [blame] | 2 | #ifndef __PERF_MEM_EVENTS_H |
| 3 | #define __PERF_MEM_EVENTS_H |
| 4 | |
| 5 | #include <stdbool.h> |
Jiri Olsa | aadddd6 | 2016-09-22 17:36:30 +0200 | [diff] [blame] | 6 | #include <stdint.h> |
| 7 | #include <stdio.h> |
| 8 | #include <linux/types.h> |
Arnaldo Carvalho de Melo | d3300a3 | 2019-08-30 15:09:54 -0300 | [diff] [blame] | 9 | #include <linux/refcount.h> |
| 10 | #include <linux/perf_event.h> |
Jiri Olsa | aadddd6 | 2016-09-22 17:36:30 +0200 | [diff] [blame] | 11 | #include "stat.h" |
Kan Liang | 2a57d40 | 2021-02-02 12:09:06 -0800 | [diff] [blame] | 12 | #include "evsel.h" |
Jiri Olsa | acbe613 | 2016-02-15 09:34:34 +0100 | [diff] [blame] | 13 | |
| 14 | struct perf_mem_event { |
| 15 | bool record; |
Jiri Olsa | 54fbad5 | 2016-02-24 09:46:42 +0100 | [diff] [blame] | 16 | bool supported; |
Jiri Olsa | ce1e22b | 2016-02-15 09:34:35 +0100 | [diff] [blame] | 17 | const char *tag; |
Jiri Olsa | acbe613 | 2016-02-15 09:34:34 +0100 | [diff] [blame] | 18 | const char *name; |
Jiri Olsa | 54fbad5 | 2016-02-24 09:46:42 +0100 | [diff] [blame] | 19 | const char *sysfs_name; |
Jiri Olsa | acbe613 | 2016-02-15 09:34:34 +0100 | [diff] [blame] | 20 | }; |
| 21 | |
Arnaldo Carvalho de Melo | d3300a3 | 2019-08-30 15:09:54 -0300 | [diff] [blame] | 22 | struct mem_info { |
| 23 | struct addr_map_symbol iaddr; |
| 24 | struct addr_map_symbol daddr; |
| 25 | union perf_mem_data_src data_src; |
| 26 | refcount_t refcnt; |
| 27 | }; |
| 28 | |
Jiri Olsa | acbe613 | 2016-02-15 09:34:34 +0100 | [diff] [blame] | 29 | enum { |
| 30 | PERF_MEM_EVENTS__LOAD, |
| 31 | PERF_MEM_EVENTS__STORE, |
Leo Yan | 4ba2452 | 2020-11-06 17:48:47 +0800 | [diff] [blame] | 32 | PERF_MEM_EVENTS__LOAD_STORE, |
Jiri Olsa | acbe613 | 2016-02-15 09:34:34 +0100 | [diff] [blame] | 33 | PERF_MEM_EVENTS__MAX, |
| 34 | }; |
| 35 | |
Jiri Olsa | b0d745b | 2016-06-14 20:19:11 +0200 | [diff] [blame] | 36 | extern unsigned int perf_mem_events__loads_ldlat; |
Jiri Olsa | acbe613 | 2016-02-15 09:34:34 +0100 | [diff] [blame] | 37 | |
Jiri Olsa | ce1e22b | 2016-02-15 09:34:35 +0100 | [diff] [blame] | 38 | int perf_mem_events__parse(const char *str); |
Jiri Olsa | 54fbad5 | 2016-02-24 09:46:42 +0100 | [diff] [blame] | 39 | int perf_mem_events__init(void); |
Jiri Olsa | ce1e22b | 2016-02-15 09:34:35 +0100 | [diff] [blame] | 40 | |
Jin Yao | d2f327a | 2021-05-27 08:16:04 +0800 | [diff] [blame] | 41 | char *perf_mem_events__name(int i, char *pmu_name); |
Leo Yan | eaf6aae | 2020-11-06 17:48:46 +0800 | [diff] [blame] | 42 | struct perf_mem_event *perf_mem_events__ptr(int i); |
Kan Liang | 2a57d40 | 2021-02-02 12:09:06 -0800 | [diff] [blame] | 43 | bool is_mem_loads_aux_event(struct evsel *leader); |
Jiri Olsa | 0c877d7 | 2016-02-24 09:46:46 +0100 | [diff] [blame] | 44 | |
Ian Rogers | b027cc6 | 2020-05-07 15:06:04 -0700 | [diff] [blame] | 45 | void perf_mem_events__list(void); |
Jin Yao | 4a9086a | 2021-05-27 08:16:07 +0800 | [diff] [blame] | 46 | int perf_mem_events__record_args(const char **rec_argv, int *argv_nr, |
| 47 | char **rec_tmp, int *tmp_nr); |
Ian Rogers | b027cc6 | 2020-05-07 15:06:04 -0700 | [diff] [blame] | 48 | |
Jiri Olsa | b1a5fbea | 2016-02-24 09:46:50 +0100 | [diff] [blame] | 49 | int perf_mem__tlb_scnprintf(char *out, size_t sz, struct mem_info *mem_info); |
Jiri Olsa | 9690756 | 2016-02-24 09:46:51 +0100 | [diff] [blame] | 50 | int perf_mem__lvl_scnprintf(char *out, size_t sz, struct mem_info *mem_info); |
Jiri Olsa | 149d750 | 2016-02-24 09:46:52 +0100 | [diff] [blame] | 51 | int perf_mem__snp_scnprintf(char *out, size_t sz, struct mem_info *mem_info); |
Jiri Olsa | 8b0819c | 2016-02-24 09:46:53 +0100 | [diff] [blame] | 52 | int perf_mem__lck_scnprintf(char *out, size_t sz, struct mem_info *mem_info); |
Kan Liang | a054c29 | 2021-02-02 12:09:07 -0800 | [diff] [blame] | 53 | int perf_mem__blk_scnprintf(char *out, size_t sz, struct mem_info *mem_info); |
Jiri Olsa | 69a7727 | 2016-02-24 09:46:49 +0100 | [diff] [blame] | 54 | |
Jiri Olsa | c19ac91 | 2016-02-24 09:46:54 +0100 | [diff] [blame] | 55 | int perf_script__meminfo_scnprintf(char *bf, size_t size, struct mem_info *mem_info); |
| 56 | |
Jiri Olsa | aadddd6 | 2016-09-22 17:36:30 +0200 | [diff] [blame] | 57 | struct c2c_stats { |
| 58 | u32 nr_entries; |
| 59 | |
| 60 | u32 locks; /* count of 'lock' transactions */ |
| 61 | u32 store; /* count of all stores in trace */ |
| 62 | u32 st_uncache; /* stores to uncacheable address */ |
| 63 | u32 st_noadrs; /* cacheable store with no address */ |
| 64 | u32 st_l1hit; /* count of stores that hit L1D */ |
| 65 | u32 st_l1miss; /* count of stores that miss L1D */ |
| 66 | u32 load; /* count of all loads in trace */ |
| 67 | u32 ld_excl; /* exclusive loads, rmt/lcl DRAM - snp none/miss */ |
| 68 | u32 ld_shared; /* shared loads, rmt/lcl DRAM - snp hit */ |
| 69 | u32 ld_uncache; /* loads to uncacheable address */ |
| 70 | u32 ld_io; /* loads to io address */ |
| 71 | u32 ld_miss; /* loads miss */ |
| 72 | u32 ld_noadrs; /* cacheable load with no address */ |
| 73 | u32 ld_fbhit; /* count of loads hitting Fill Buffer */ |
| 74 | u32 ld_l1hit; /* count of loads that hit L1D */ |
| 75 | u32 ld_l2hit; /* count of loads that hit L2D */ |
| 76 | u32 ld_llchit; /* count of loads that hit LLC */ |
| 77 | u32 lcl_hitm; /* count of loads with local HITM */ |
| 78 | u32 rmt_hitm; /* count of loads with remote HITM */ |
Jiri Olsa | dba8ab9 | 2016-11-21 22:33:29 +0100 | [diff] [blame] | 79 | u32 tot_hitm; /* count of loads with local and remote HITM */ |
Jiri Olsa | aadddd6 | 2016-09-22 17:36:30 +0200 | [diff] [blame] | 80 | u32 rmt_hit; /* count of loads with remote hit clean; */ |
| 81 | u32 lcl_dram; /* count of loads miss to local DRAM */ |
| 82 | u32 rmt_dram; /* count of loads miss to remote DRAM */ |
Kan Liang | d9d5d767 | 2021-02-02 12:09:08 -0800 | [diff] [blame] | 83 | u32 blk_data; /* count of loads blocked by data */ |
| 84 | u32 blk_addr; /* count of loads blocked by address conflict */ |
Ingo Molnar | 4d39c89 | 2021-03-23 17:09:15 +0100 | [diff] [blame] | 85 | u32 nomap; /* count of load/stores with no phys addrs */ |
Jiri Olsa | aadddd6 | 2016-09-22 17:36:30 +0200 | [diff] [blame] | 86 | u32 noparse; /* count of unparsable data sources */ |
| 87 | }; |
| 88 | |
| 89 | struct hist_entry; |
| 90 | int c2c_decode_stats(struct c2c_stats *stats, struct mem_info *mi); |
Jiri Olsa | 0a9a24c | 2016-09-22 17:36:31 +0200 | [diff] [blame] | 91 | void c2c_add_stats(struct c2c_stats *stats, struct c2c_stats *add); |
Jiri Olsa | aadddd6 | 2016-09-22 17:36:30 +0200 | [diff] [blame] | 92 | |
Jiri Olsa | acbe613 | 2016-02-15 09:34:34 +0100 | [diff] [blame] | 93 | #endif /* __PERF_MEM_EVENTS_H */ |