blob: 6243e2b2a245080da038b074d957a617c2079f6d [file] [log] [blame]
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +09001#include "perf.h"
2#include "tests.h"
3#include "debug.h"
4#include "symbol.h"
5#include "sort.h"
6#include "evsel.h"
7#include "evlist.h"
8#include "machine.h"
9#include "thread.h"
10#include "parse-events.h"
Namhyung Kim6e344a92014-04-25 12:28:13 +090011#include "hists_common.h"
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090012
13struct sample {
14 u32 pid;
15 u64 ip;
16 struct thread *thread;
17 struct map *map;
18 struct symbol *sym;
19};
20
Namhyung Kim6e344a92014-04-25 12:28:13 +090021/* For the numbers, see hists_common.c */
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090022static struct sample fake_common_samples[] = {
23 /* perf [kernel] schedule() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090024 { .pid = FAKE_PID_PERF1, .ip = FAKE_IP_KERNEL_SCHEDULE, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090025 /* perf [perf] main() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090026 { .pid = FAKE_PID_PERF2, .ip = FAKE_IP_PERF_MAIN, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090027 /* perf [perf] cmd_record() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090028 { .pid = FAKE_PID_PERF2, .ip = FAKE_IP_PERF_CMD_RECORD, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090029 /* bash [bash] xmalloc() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090030 { .pid = FAKE_PID_BASH, .ip = FAKE_IP_BASH_XMALLOC, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090031 /* bash [libc] malloc() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090032 { .pid = FAKE_PID_BASH, .ip = FAKE_IP_LIBC_MALLOC, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090033};
34
35static struct sample fake_samples[][5] = {
36 {
37 /* perf [perf] run_command() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090038 { .pid = FAKE_PID_PERF1, .ip = FAKE_IP_PERF_RUN_COMMAND, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090039 /* perf [libc] malloc() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090040 { .pid = FAKE_PID_PERF1, .ip = FAKE_IP_LIBC_MALLOC, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090041 /* perf [kernel] page_fault() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090042 { .pid = FAKE_PID_PERF1, .ip = FAKE_IP_KERNEL_PAGE_FAULT, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090043 /* perf [kernel] sys_perf_event_open() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090044 { .pid = FAKE_PID_PERF2, .ip = FAKE_IP_KERNEL_SYS_PERF_EVENT_OPEN, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090045 /* bash [libc] free() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090046 { .pid = FAKE_PID_BASH, .ip = FAKE_IP_LIBC_FREE, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090047 },
48 {
49 /* perf [libc] free() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090050 { .pid = FAKE_PID_PERF2, .ip = FAKE_IP_LIBC_FREE, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090051 /* bash [libc] malloc() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090052 { .pid = FAKE_PID_BASH, .ip = FAKE_IP_LIBC_MALLOC, }, /* will be merged */
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090053 /* bash [bash] xfee() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090054 { .pid = FAKE_PID_BASH, .ip = FAKE_IP_BASH_XFREE, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090055 /* bash [libc] realloc() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090056 { .pid = FAKE_PID_BASH, .ip = FAKE_IP_LIBC_REALLOC, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090057 /* bash [kernel] page_fault() */
Namhyung Kima1891aa2014-05-23 14:59:57 +090058 { .pid = FAKE_PID_BASH, .ip = FAKE_IP_KERNEL_PAGE_FAULT, },
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090059 },
60};
61
62static int add_hist_entries(struct perf_evlist *evlist, struct machine *machine)
63{
64 struct perf_evsel *evsel;
65 struct addr_location al;
66 struct hist_entry *he;
Namhyung Kima1891aa2014-05-23 14:59:57 +090067 struct perf_sample sample = { .period = 1, };
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090068 size_t i = 0, k;
69
70 /*
71 * each evsel will have 10 samples - 5 common and 5 distinct.
72 * However the second evsel also has a collapsed entry for
73 * "bash [libc] malloc" so total 9 entries will be in the tree.
74 */
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -030075 evlist__for_each(evlist, evsel) {
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -030076 struct hists *hists = evsel__hists(evsel);
77
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090078 for (k = 0; k < ARRAY_SIZE(fake_common_samples); k++) {
79 const union perf_event event = {
Adrian Hunteref893252013-08-27 11:23:06 +030080 .header = {
81 .misc = PERF_RECORD_MISC_USER,
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090082 },
83 };
84
Adrian Hunteref893252013-08-27 11:23:06 +030085 sample.pid = fake_common_samples[k].pid;
Namhyung Kim13ce34d2014-05-12 09:56:42 +090086 sample.tid = fake_common_samples[k].pid;
Adrian Hunteref893252013-08-27 11:23:06 +030087 sample.ip = fake_common_samples[k].ip;
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090088 if (perf_event__preprocess_sample(&event, machine, &al,
Adrian Huntere44baa32013-08-08 14:32:25 +030089 &sample) < 0)
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090090 goto out;
91
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -030092 he = __hists__add_entry(hists, &al, NULL,
Namhyung Kima0b51af2012-09-11 13:34:27 +090093 NULL, NULL, 1, 1, 0, true);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030094 if (he == NULL) {
95 addr_location__put(&al);
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090096 goto out;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -030097 }
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +090098
99 fake_common_samples[k].thread = al.thread;
100 fake_common_samples[k].map = al.map;
101 fake_common_samples[k].sym = al.sym;
102 }
103
104 for (k = 0; k < ARRAY_SIZE(fake_samples[i]); k++) {
105 const union perf_event event = {
Adrian Hunteref893252013-08-27 11:23:06 +0300106 .header = {
107 .misc = PERF_RECORD_MISC_USER,
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900108 },
109 };
110
Adrian Hunteref893252013-08-27 11:23:06 +0300111 sample.pid = fake_samples[i][k].pid;
Namhyung Kim13ce34d2014-05-12 09:56:42 +0900112 sample.tid = fake_samples[i][k].pid;
Adrian Hunteref893252013-08-27 11:23:06 +0300113 sample.ip = fake_samples[i][k].ip;
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900114 if (perf_event__preprocess_sample(&event, machine, &al,
Adrian Huntere44baa32013-08-08 14:32:25 +0300115 &sample) < 0)
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900116 goto out;
117
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300118 he = __hists__add_entry(hists, &al, NULL,
Namhyung Kima0b51af2012-09-11 13:34:27 +0900119 NULL, NULL, 1, 1, 0, true);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300120 if (he == NULL) {
121 addr_location__put(&al);
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900122 goto out;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300123 }
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900124
125 fake_samples[i][k].thread = al.thread;
126 fake_samples[i][k].map = al.map;
127 fake_samples[i][k].sym = al.sym;
128 }
129 i++;
130 }
131
132 return 0;
133
134out:
135 pr_debug("Not enough memory for adding a hist entry\n");
136 return -1;
137}
138
139static int find_sample(struct sample *samples, size_t nr_samples,
140 struct thread *t, struct map *m, struct symbol *s)
141{
142 while (nr_samples--) {
143 if (samples->thread == t && samples->map == m &&
144 samples->sym == s)
145 return 1;
146 samples++;
147 }
148 return 0;
149}
150
151static int __validate_match(struct hists *hists)
152{
153 size_t count = 0;
154 struct rb_root *root;
155 struct rb_node *node;
156
157 /*
158 * Only entries from fake_common_samples should have a pair.
159 */
160 if (sort__need_collapse)
161 root = &hists->entries_collapsed;
162 else
163 root = hists->entries_in;
164
165 node = rb_first(root);
166 while (node) {
167 struct hist_entry *he;
168
169 he = rb_entry(node, struct hist_entry, rb_node_in);
170
171 if (hist_entry__has_pairs(he)) {
172 if (find_sample(fake_common_samples,
173 ARRAY_SIZE(fake_common_samples),
174 he->thread, he->ms.map, he->ms.sym)) {
175 count++;
176 } else {
177 pr_debug("Can't find the matched entry\n");
178 return -1;
179 }
180 }
181
182 node = rb_next(node);
183 }
184
185 if (count != ARRAY_SIZE(fake_common_samples)) {
186 pr_debug("Invalid count for matched entries: %zd of %zd\n",
187 count, ARRAY_SIZE(fake_common_samples));
188 return -1;
189 }
190
191 return 0;
192}
193
194static int validate_match(struct hists *leader, struct hists *other)
195{
196 return __validate_match(leader) || __validate_match(other);
197}
198
199static int __validate_link(struct hists *hists, int idx)
200{
201 size_t count = 0;
202 size_t count_pair = 0;
203 size_t count_dummy = 0;
204 struct rb_root *root;
205 struct rb_node *node;
206
207 /*
208 * Leader hists (idx = 0) will have dummy entries from other,
209 * and some entries will have no pair. However every entry
210 * in other hists should have (dummy) pair.
211 */
212 if (sort__need_collapse)
213 root = &hists->entries_collapsed;
214 else
215 root = hists->entries_in;
216
217 node = rb_first(root);
218 while (node) {
219 struct hist_entry *he;
220
221 he = rb_entry(node, struct hist_entry, rb_node_in);
222
223 if (hist_entry__has_pairs(he)) {
224 if (!find_sample(fake_common_samples,
225 ARRAY_SIZE(fake_common_samples),
226 he->thread, he->ms.map, he->ms.sym) &&
227 !find_sample(fake_samples[idx],
228 ARRAY_SIZE(fake_samples[idx]),
229 he->thread, he->ms.map, he->ms.sym)) {
230 count_dummy++;
231 }
232 count_pair++;
233 } else if (idx) {
234 pr_debug("A entry from the other hists should have pair\n");
235 return -1;
236 }
237
238 count++;
239 node = rb_next(node);
240 }
241
242 /*
243 * Note that we have a entry collapsed in the other (idx = 1) hists.
244 */
245 if (idx == 0) {
246 if (count_dummy != ARRAY_SIZE(fake_samples[1]) - 1) {
247 pr_debug("Invalid count of dummy entries: %zd of %zd\n",
248 count_dummy, ARRAY_SIZE(fake_samples[1]) - 1);
249 return -1;
250 }
251 if (count != count_pair + ARRAY_SIZE(fake_samples[0])) {
252 pr_debug("Invalid count of total leader entries: %zd of %zd\n",
253 count, count_pair + ARRAY_SIZE(fake_samples[0]));
254 return -1;
255 }
256 } else {
257 if (count != count_pair) {
258 pr_debug("Invalid count of total other entries: %zd of %zd\n",
259 count, count_pair);
260 return -1;
261 }
262 if (count_dummy > 0) {
263 pr_debug("Other hists should not have dummy entries: %zd\n",
264 count_dummy);
265 return -1;
266 }
267 }
268
269 return 0;
270}
271
272static int validate_link(struct hists *leader, struct hists *other)
273{
274 return __validate_link(leader, 0) || __validate_link(other, 1);
275}
276
Arnaldo Carvalho de Melo721a1f52015-11-19 12:01:48 -0300277int test__hists_link(int subtest __maybe_unused)
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900278{
279 int err = -1;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300280 struct hists *hists, *first_hists;
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300281 struct machines machines;
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900282 struct machine *machine = NULL;
283 struct perf_evsel *evsel, *first;
Namhyung Kim334fe7a2013-03-11 16:43:12 +0900284 struct perf_evlist *evlist = perf_evlist__new();
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900285
286 if (evlist == NULL)
287 return -ENOMEM;
288
Jiri Olsab39b8392015-04-22 21:10:16 +0200289 err = parse_events(evlist, "cpu-clock", NULL);
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900290 if (err)
291 goto out;
Jiri Olsab39b8392015-04-22 21:10:16 +0200292 err = parse_events(evlist, "task-clock", NULL);
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900293 if (err)
294 goto out;
295
296 /* default sort order (comm,dso,sym) will be used */
Namhyung Kim55309982013-02-06 14:57:16 +0900297 if (setup_sorting() < 0)
298 goto out;
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900299
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300300 machines__init(&machines);
301
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900302 /* setup threads/dso/map/symbols also */
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300303 machine = setup_fake_machine(&machines);
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900304 if (!machine)
305 goto out;
306
307 if (verbose > 1)
308 machine__fprintf(machine, stderr);
309
310 /* process sample events */
311 err = add_hist_entries(evlist, machine);
312 if (err < 0)
313 goto out;
314
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300315 evlist__for_each(evlist, evsel) {
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300316 hists = evsel__hists(evsel);
317 hists__collapse_resort(hists, NULL);
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900318
319 if (verbose > 2)
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300320 print_hists_in(hists);
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900321 }
322
323 first = perf_evlist__first(evlist);
324 evsel = perf_evlist__last(evlist);
325
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300326 first_hists = evsel__hists(first);
327 hists = evsel__hists(evsel);
328
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900329 /* match common entries */
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300330 hists__match(first_hists, hists);
331 err = validate_match(first_hists, hists);
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900332 if (err)
333 goto out;
334
335 /* link common and/or dummy entries */
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300336 hists__link(first_hists, hists);
337 err = validate_link(first_hists, hists);
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900338 if (err)
339 goto out;
340
341 err = 0;
342
343out:
344 /* tear down everything */
345 perf_evlist__delete(evlist);
Namhyung Kimf21d1812014-05-12 14:43:18 +0900346 reset_output_field();
Arnaldo Carvalho de Melo876650e2012-12-18 19:15:48 -0300347 machines__exit(&machines);
Namhyung Kimf8ebb0c2012-12-10 17:29:57 +0900348
349 return err;
350}