1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/compiler.h>
4 #include <perf/cpumap.h>
5 #include <perf/evlist.h>
6 #include "metricgroup.h"
8 #include "pmu-events/pmu-events.h"
21 static u64
find_value(const char *name
, struct value
*values
)
23 struct value
*v
= values
;
26 if (!strcmp(name
, v
->event
))
33 static void load_runtime_stat(struct evlist
*evlist
, struct value
*vals
)
38 evlist__alloc_aggr_stats(evlist
, 1);
39 evlist__for_each_entry(evlist
, evsel
) {
40 count
= find_value(evsel
->name
, vals
);
41 evsel
->supported
= true;
42 evsel
->stats
->aggr
->counts
.val
= count
;
43 if (evsel__name_is(evsel
, "duration_time"))
44 update_stats(&walltime_nsecs_stats
, count
);
48 static double compute_single(struct rblist
*metric_events
, struct evlist
*evlist
,
51 struct metric_expr
*mexp
;
52 struct metric_event
*me
;
55 evlist__for_each_entry(evlist
, evsel
) {
56 me
= metricgroup__lookup(metric_events
, evsel
, false);
58 list_for_each_entry (mexp
, &me
->head
, nd
) {
59 if (strcmp(mexp
->metric_name
, name
))
61 return test_generic_metric(mexp
, 0);
68 static int __compute_metric(const char *name
, struct value
*vals
,
69 const char *name1
, double *ratio1
,
70 const char *name2
, double *ratio2
)
72 struct rblist metric_events
= {
75 const struct pmu_metrics_table
*pme_test
;
76 struct perf_cpu_map
*cpus
;
77 struct evlist
*evlist
;
81 * We need to prepare evlist for stat mode running on CPU 0
82 * because that's where all the stats are going to be created.
84 evlist
= evlist__new();
88 cpus
= perf_cpu_map__new("0");
90 evlist__delete(evlist
);
94 perf_evlist__set_maps(&evlist
->core
, cpus
, NULL
);
96 /* Parse the metric into metric_events list. */
97 pme_test
= find_core_metrics_table("testarch", "testcpu");
98 err
= metricgroup__parse_groups_test(evlist
, pme_test
, name
,
103 err
= evlist__alloc_stats(/*config=*/NULL
, evlist
, /*alloc_raw=*/false);
107 /* Load the runtime stats with given numbers for events. */
108 load_runtime_stat(evlist
, vals
);
110 /* And execute the metric */
112 *ratio1
= compute_single(&metric_events
, evlist
, name1
);
114 *ratio2
= compute_single(&metric_events
, evlist
, name2
);
118 metricgroup__rblist_exit(&metric_events
);
119 evlist__free_stats(evlist
);
120 perf_cpu_map__put(cpus
);
121 evlist__delete(evlist
);
125 static int compute_metric(const char *name
, struct value
*vals
, double *ratio
)
127 return __compute_metric(name
, vals
, name
, ratio
, NULL
, NULL
);
130 static int compute_metric_group(const char *name
, struct value
*vals
,
131 const char *name1
, double *ratio1
,
132 const char *name2
, double *ratio2
)
134 return __compute_metric(name
, vals
, name1
, ratio1
, name2
, ratio2
);
137 static int test_ipc(void)
140 struct value vals
[] = {
141 { .event
= "inst_retired.any", .val
= 300 },
142 { .event
= "cpu_clk_unhalted.thread", .val
= 200 },
146 TEST_ASSERT_VAL("failed to compute metric",
147 compute_metric("IPC", vals
, &ratio
) == 0);
149 TEST_ASSERT_VAL("IPC failed, wrong ratio",
154 static int test_frontend(void)
157 struct value vals
[] = {
158 { .event
= "idq_uops_not_delivered.core", .val
= 300 },
159 { .event
= "cpu_clk_unhalted.thread", .val
= 200 },
160 { .event
= "cpu_clk_unhalted.one_thread_active", .val
= 400 },
161 { .event
= "cpu_clk_unhalted.ref_xclk", .val
= 600 },
165 TEST_ASSERT_VAL("failed to compute metric",
166 compute_metric("Frontend_Bound_SMT", vals
, &ratio
) == 0);
168 TEST_ASSERT_VAL("Frontend_Bound_SMT failed, wrong ratio",
173 static int test_cache_miss_cycles(void)
176 struct value vals
[] = {
177 { .event
= "l1d-loads-misses", .val
= 300 },
178 { .event
= "l1i-loads-misses", .val
= 200 },
179 { .event
= "inst_retired.any", .val
= 400 },
183 TEST_ASSERT_VAL("failed to compute metric",
184 compute_metric("cache_miss_cycles", vals
, &ratio
) == 0);
186 TEST_ASSERT_VAL("cache_miss_cycles failed, wrong ratio",
193 * DCache_L2_All_Hits = l2_rqsts.demand_data_rd_hit + l2_rqsts.pf_hit + l2_rqsts.rfo_hi
194 * DCache_L2_All_Miss = max(l2_rqsts.all_demand_data_rd - l2_rqsts.demand_data_rd_hit, 0) +
195 * l2_rqsts.pf_miss + l2_rqsts.rfo_miss
196 * DCache_L2_All = dcache_l2_all_hits + dcache_l2_all_miss
197 * DCache_L2_Hits = d_ratio(dcache_l2_all_hits, dcache_l2_all)
198 * DCache_L2_Misses = d_ratio(dcache_l2_all_miss, dcache_l2_all)
200 * l2_rqsts.demand_data_rd_hit = 100
201 * l2_rqsts.pf_hit = 200
202 * l2_rqsts.rfo_hi = 300
203 * l2_rqsts.all_demand_data_rd = 400
204 * l2_rqsts.pf_miss = 500
205 * l2_rqsts.rfo_miss = 600
207 * DCache_L2_All_Hits = 600
208 * DCache_L2_All_Miss = MAX(400 - 100, 0) + 500 + 600 = 1400
209 * DCache_L2_All = 600 + 1400 = 2000
210 * DCache_L2_Hits = 600 / 2000 = 0.3
211 * DCache_L2_Misses = 1400 / 2000 = 0.7
213 static int test_dcache_l2(void)
216 struct value vals
[] = {
217 { .event
= "l2_rqsts.demand_data_rd_hit", .val
= 100 },
218 { .event
= "l2_rqsts.pf_hit", .val
= 200 },
219 { .event
= "l2_rqsts.rfo_hit", .val
= 300 },
220 { .event
= "l2_rqsts.all_demand_data_rd", .val
= 400 },
221 { .event
= "l2_rqsts.pf_miss", .val
= 500 },
222 { .event
= "l2_rqsts.rfo_miss", .val
= 600 },
226 TEST_ASSERT_VAL("failed to compute metric",
227 compute_metric("DCache_L2_Hits", vals
, &ratio
) == 0);
229 TEST_ASSERT_VAL("DCache_L2_Hits failed, wrong ratio",
232 TEST_ASSERT_VAL("failed to compute metric",
233 compute_metric("DCache_L2_Misses", vals
, &ratio
) == 0);
235 TEST_ASSERT_VAL("DCache_L2_Misses failed, wrong ratio",
240 static int test_recursion_fail(void)
243 struct value vals
[] = {
244 { .event
= "inst_retired.any", .val
= 300 },
245 { .event
= "cpu_clk_unhalted.thread", .val
= 200 },
249 TEST_ASSERT_VAL("failed to find recursion",
250 compute_metric("M1", vals
, &ratio
) == -1);
252 TEST_ASSERT_VAL("failed to find recursion",
253 compute_metric("M3", vals
, &ratio
) == -1);
257 static int test_memory_bandwidth(void)
260 struct value vals
[] = {
261 { .event
= "l1d.replacement", .val
= 4000000 },
262 { .event
= "duration_time", .val
= 200000000 },
266 TEST_ASSERT_VAL("failed to compute metric",
267 compute_metric("L1D_Cache_Fill_BW", vals
, &ratio
) == 0);
268 TEST_ASSERT_VAL("L1D_Cache_Fill_BW, wrong ratio",
274 static int test_metric_group(void)
276 double ratio1
, ratio2
;
277 struct value vals
[] = {
278 { .event
= "cpu_clk_unhalted.thread", .val
= 200 },
279 { .event
= "l1d-loads-misses", .val
= 300 },
280 { .event
= "l1i-loads-misses", .val
= 200 },
281 { .event
= "inst_retired.any", .val
= 400 },
285 TEST_ASSERT_VAL("failed to find recursion",
286 compute_metric_group("group1", vals
,
288 "cache_miss_cycles", &ratio2
) == 0);
290 TEST_ASSERT_VAL("group IPC failed, wrong ratio",
293 TEST_ASSERT_VAL("group cache_miss_cycles failed, wrong ratio",
298 static int test__parse_metric(struct test_suite
*test __maybe_unused
, int subtest __maybe_unused
)
300 TEST_ASSERT_VAL("IPC failed", test_ipc() == 0);
301 TEST_ASSERT_VAL("frontend failed", test_frontend() == 0);
302 TEST_ASSERT_VAL("DCache_L2 failed", test_dcache_l2() == 0);
303 TEST_ASSERT_VAL("recursion fail failed", test_recursion_fail() == 0);
304 TEST_ASSERT_VAL("Memory bandwidth", test_memory_bandwidth() == 0);
305 TEST_ASSERT_VAL("cache_miss_cycles failed", test_cache_miss_cycles() == 0);
306 TEST_ASSERT_VAL("test metric group", test_metric_group() == 0);
310 DEFINE_SUITE("Parse and process metrics", parse_metric
);