blob: 94250024684a7b890f0308fd4ee0318ef653bc69 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Jiri Olsa67424342015-10-25 15:51:28 +01002#include <linux/compiler.h>
3#include "event.h"
4#include "tests.h"
5#include "stat.h"
Jiri Olsa5796f8f2015-10-25 15:51:31 +01006#include "counts.h"
Jiri Olsa67424342015-10-25 15:51:28 +01007#include "debug.h"
8
9static bool has_term(struct stat_config_event *config,
10 u64 tag, u64 val)
11{
12 unsigned i;
13
14 for (i = 0; i < config->nr; i++) {
15 if ((config->data[i].tag == tag) &&
16 (config->data[i].val == val))
17 return true;
18 }
19
20 return false;
21}
22
Jiri Olsa5796f8f2015-10-25 15:51:31 +010023static int process_stat_config_event(struct perf_tool *tool __maybe_unused,
24 union perf_event *event,
25 struct perf_sample *sample __maybe_unused,
26 struct machine *machine __maybe_unused)
Jiri Olsa67424342015-10-25 15:51:28 +010027{
28 struct stat_config_event *config = &event->stat_config;
Jiri Olsa8e381592015-10-25 15:51:29 +010029 struct perf_stat_config stat_config;
Jiri Olsa67424342015-10-25 15:51:28 +010030
31#define HAS(term, val) \
32 has_term(config, PERF_STAT_CONFIG_TERM__##term, val)
33
34 TEST_ASSERT_VAL("wrong nr", config->nr == PERF_STAT_CONFIG_TERM__MAX);
35 TEST_ASSERT_VAL("wrong aggr_mode", HAS(AGGR_MODE, AGGR_CORE));
36 TEST_ASSERT_VAL("wrong scale", HAS(SCALE, 1));
37 TEST_ASSERT_VAL("wrong interval", HAS(INTERVAL, 1));
38
39#undef HAS
40
Jiri Olsa8e381592015-10-25 15:51:29 +010041 perf_event__read_stat_config(&stat_config, config);
42
43 TEST_ASSERT_VAL("wrong aggr_mode", stat_config.aggr_mode == AGGR_CORE);
44 TEST_ASSERT_VAL("wrong scale", stat_config.scale == 1);
45 TEST_ASSERT_VAL("wrong interval", stat_config.interval == 1);
Jiri Olsa67424342015-10-25 15:51:28 +010046 return 0;
47}
48
Arnaldo Carvalho de Melo81f17c92017-08-03 15:16:31 -030049int test__synthesize_stat_config(struct test *test __maybe_unused, int subtest __maybe_unused)
Jiri Olsa67424342015-10-25 15:51:28 +010050{
51 struct perf_stat_config stat_config = {
52 .aggr_mode = AGGR_CORE,
53 .scale = 1,
54 .interval = 1,
55 };
56
57 TEST_ASSERT_VAL("failed to synthesize stat_config",
Jiri Olsa5796f8f2015-10-25 15:51:31 +010058 !perf_event__synthesize_stat_config(NULL, &stat_config, process_stat_config_event, NULL));
59
60 return 0;
61}
62
63static int process_stat_event(struct perf_tool *tool __maybe_unused,
64 union perf_event *event,
65 struct perf_sample *sample __maybe_unused,
66 struct machine *machine __maybe_unused)
67{
68 struct stat_event *st = &event->stat;
69
70 TEST_ASSERT_VAL("wrong cpu", st->cpu == 1);
71 TEST_ASSERT_VAL("wrong thread", st->thread == 2);
72 TEST_ASSERT_VAL("wrong id", st->id == 3);
73 TEST_ASSERT_VAL("wrong val", st->val == 100);
74 TEST_ASSERT_VAL("wrong run", st->ena == 200);
75 TEST_ASSERT_VAL("wrong ena", st->run == 300);
76 return 0;
77}
78
Arnaldo Carvalho de Melo81f17c92017-08-03 15:16:31 -030079int test__synthesize_stat(struct test *test __maybe_unused, int subtest __maybe_unused)
Jiri Olsa5796f8f2015-10-25 15:51:31 +010080{
81 struct perf_counts_values count;
82
83 count.val = 100;
84 count.ena = 200;
85 count.run = 300;
86
87 TEST_ASSERT_VAL("failed to synthesize stat_config",
88 !perf_event__synthesize_stat(NULL, 1, 2, 3, &count, process_stat_event, NULL));
Jiri Olsa67424342015-10-25 15:51:28 +010089
90 return 0;
91}
Jiri Olsad4c22592015-10-25 15:51:34 +010092
93static int process_stat_round_event(struct perf_tool *tool __maybe_unused,
94 union perf_event *event,
95 struct perf_sample *sample __maybe_unused,
96 struct machine *machine __maybe_unused)
97{
98 struct stat_round_event *stat_round = &event->stat_round;
99
100 TEST_ASSERT_VAL("wrong time", stat_round->time == 0xdeadbeef);
101 TEST_ASSERT_VAL("wrong type", stat_round->type == PERF_STAT_ROUND_TYPE__INTERVAL);
102 return 0;
103}
104
Arnaldo Carvalho de Melo81f17c92017-08-03 15:16:31 -0300105int test__synthesize_stat_round(struct test *test __maybe_unused, int subtest __maybe_unused)
Jiri Olsad4c22592015-10-25 15:51:34 +0100106{
107 TEST_ASSERT_VAL("failed to synthesize stat_config",
108 !perf_event__synthesize_stat_round(NULL, 0xdeadbeef, PERF_STAT_ROUND_TYPE__INTERVAL,
109 process_stat_round_event, NULL));
110
111 return 0;
112}