blob: 904dad34f7f7e959fa59cb5b3d91bf1593fabff3 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Jiri Olsaacbe6132016-02-15 09:34:34 +01002#ifndef __PERF_MEM_EVENTS_H
3#define __PERF_MEM_EVENTS_H
4
5#include <stdbool.h>
Jiri Olsaaadddd62016-09-22 17:36:30 +02006#include <stdint.h>
7#include <stdio.h>
8#include <linux/types.h>
Arnaldo Carvalho de Melod3300a32019-08-30 15:09:54 -03009#include <linux/refcount.h>
10#include <linux/perf_event.h>
Jiri Olsaaadddd62016-09-22 17:36:30 +020011#include "stat.h"
Jiri Olsaacbe6132016-02-15 09:34:34 +010012
13struct perf_mem_event {
14 bool record;
Jiri Olsa54fbad52016-02-24 09:46:42 +010015 bool supported;
Jiri Olsace1e22b2016-02-15 09:34:35 +010016 const char *tag;
Jiri Olsaacbe6132016-02-15 09:34:34 +010017 const char *name;
Jiri Olsa54fbad52016-02-24 09:46:42 +010018 const char *sysfs_name;
Jiri Olsaacbe6132016-02-15 09:34:34 +010019};
20
Arnaldo Carvalho de Melod3300a32019-08-30 15:09:54 -030021struct mem_info {
22 struct addr_map_symbol iaddr;
23 struct addr_map_symbol daddr;
24 union perf_mem_data_src data_src;
25 refcount_t refcnt;
26};
27
Jiri Olsaacbe6132016-02-15 09:34:34 +010028enum {
29 PERF_MEM_EVENTS__LOAD,
30 PERF_MEM_EVENTS__STORE,
31 PERF_MEM_EVENTS__MAX,
32};
33
34extern struct perf_mem_event perf_mem_events[PERF_MEM_EVENTS__MAX];
Jiri Olsab0d745b2016-06-14 20:19:11 +020035extern unsigned int perf_mem_events__loads_ldlat;
Jiri Olsaacbe6132016-02-15 09:34:34 +010036
Jiri Olsace1e22b2016-02-15 09:34:35 +010037int perf_mem_events__parse(const char *str);
Jiri Olsa54fbad52016-02-24 09:46:42 +010038int perf_mem_events__init(void);
Jiri Olsace1e22b2016-02-15 09:34:35 +010039
Jiri Olsa2ba7ac52016-02-24 09:46:43 +010040char *perf_mem_events__name(int i);
Jiri Olsa0c877d72016-02-24 09:46:46 +010041
Ian Rogersb027cc62020-05-07 15:06:04 -070042void perf_mem_events__list(void);
43
Jiri Olsa0c877d72016-02-24 09:46:46 +010044struct mem_info;
Jiri Olsab1a5fbea2016-02-24 09:46:50 +010045int perf_mem__tlb_scnprintf(char *out, size_t sz, struct mem_info *mem_info);
Jiri Olsa96907562016-02-24 09:46:51 +010046int perf_mem__lvl_scnprintf(char *out, size_t sz, struct mem_info *mem_info);
Jiri Olsa149d7502016-02-24 09:46:52 +010047int perf_mem__snp_scnprintf(char *out, size_t sz, struct mem_info *mem_info);
Jiri Olsa8b0819c2016-02-24 09:46:53 +010048int perf_mem__lck_scnprintf(char *out, size_t sz, struct mem_info *mem_info);
Jiri Olsa69a77272016-02-24 09:46:49 +010049
Jiri Olsac19ac912016-02-24 09:46:54 +010050int perf_script__meminfo_scnprintf(char *bf, size_t size, struct mem_info *mem_info);
51
Jiri Olsaaadddd62016-09-22 17:36:30 +020052struct c2c_stats {
53 u32 nr_entries;
54
55 u32 locks; /* count of 'lock' transactions */
56 u32 store; /* count of all stores in trace */
57 u32 st_uncache; /* stores to uncacheable address */
58 u32 st_noadrs; /* cacheable store with no address */
59 u32 st_l1hit; /* count of stores that hit L1D */
60 u32 st_l1miss; /* count of stores that miss L1D */
61 u32 load; /* count of all loads in trace */
62 u32 ld_excl; /* exclusive loads, rmt/lcl DRAM - snp none/miss */
63 u32 ld_shared; /* shared loads, rmt/lcl DRAM - snp hit */
64 u32 ld_uncache; /* loads to uncacheable address */
65 u32 ld_io; /* loads to io address */
66 u32 ld_miss; /* loads miss */
67 u32 ld_noadrs; /* cacheable load with no address */
68 u32 ld_fbhit; /* count of loads hitting Fill Buffer */
69 u32 ld_l1hit; /* count of loads that hit L1D */
70 u32 ld_l2hit; /* count of loads that hit L2D */
71 u32 ld_llchit; /* count of loads that hit LLC */
72 u32 lcl_hitm; /* count of loads with local HITM */
73 u32 rmt_hitm; /* count of loads with remote HITM */
Jiri Olsadba8ab92016-11-21 22:33:29 +010074 u32 tot_hitm; /* count of loads with local and remote HITM */
Jiri Olsaaadddd62016-09-22 17:36:30 +020075 u32 rmt_hit; /* count of loads with remote hit clean; */
76 u32 lcl_dram; /* count of loads miss to local DRAM */
77 u32 rmt_dram; /* count of loads miss to remote DRAM */
78 u32 nomap; /* count of load/stores with no phys adrs */
79 u32 noparse; /* count of unparsable data sources */
80};
81
82struct hist_entry;
83int c2c_decode_stats(struct c2c_stats *stats, struct mem_info *mi);
Jiri Olsa0a9a24c2016-09-22 17:36:31 +020084void c2c_add_stats(struct c2c_stats *stats, struct c2c_stats *add);
Jiri Olsaaadddd62016-09-22 17:36:30 +020085
Jiri Olsaacbe6132016-02-15 09:34:34 +010086#endif /* __PERF_MEM_EVENTS_H */