dm thin metadata: fix __udivdi3 undefined on 32-bit
[linux/fpc-iii.git] / tools / perf / tests / hists_cumulate.c
blob7ed737019de7f621226e698939a718b1af1594d6
1 #include "perf.h"
2 #include "util/debug.h"
3 #include "util/symbol.h"
4 #include "util/sort.h"
5 #include "util/evsel.h"
6 #include "util/evlist.h"
7 #include "util/machine.h"
8 #include "util/thread.h"
9 #include "util/parse-events.h"
10 #include "tests/tests.h"
11 #include "tests/hists_common.h"
13 struct sample {
14 u32 pid;
15 u64 ip;
16 struct thread *thread;
17 struct map *map;
18 struct symbol *sym;
21 /* For the numbers, see hists_common.c */
22 static struct sample fake_samples[] = {
23 /* perf [kernel] schedule() */
24 { .pid = FAKE_PID_PERF1, .ip = FAKE_IP_KERNEL_SCHEDULE, },
25 /* perf [perf] main() */
26 { .pid = FAKE_PID_PERF1, .ip = FAKE_IP_PERF_MAIN, },
27 /* perf [perf] cmd_record() */
28 { .pid = FAKE_PID_PERF1, .ip = FAKE_IP_PERF_CMD_RECORD, },
29 /* perf [libc] malloc() */
30 { .pid = FAKE_PID_PERF1, .ip = FAKE_IP_LIBC_MALLOC, },
31 /* perf [libc] free() */
32 { .pid = FAKE_PID_PERF1, .ip = FAKE_IP_LIBC_FREE, },
33 /* perf [perf] main() */
34 { .pid = FAKE_PID_PERF2, .ip = FAKE_IP_PERF_MAIN, },
35 /* perf [kernel] page_fault() */
36 { .pid = FAKE_PID_PERF2, .ip = FAKE_IP_KERNEL_PAGE_FAULT, },
37 /* bash [bash] main() */
38 { .pid = FAKE_PID_BASH, .ip = FAKE_IP_BASH_MAIN, },
39 /* bash [bash] xmalloc() */
40 { .pid = FAKE_PID_BASH, .ip = FAKE_IP_BASH_XMALLOC, },
41 /* bash [kernel] page_fault() */
42 { .pid = FAKE_PID_BASH, .ip = FAKE_IP_KERNEL_PAGE_FAULT, },
46 * Will be casted to struct ip_callchain which has all 64 bit entries
47 * of nr and ips[].
49 static u64 fake_callchains[][10] = {
50 /* schedule => run_command => main */
51 { 3, FAKE_IP_KERNEL_SCHEDULE, FAKE_IP_PERF_RUN_COMMAND, FAKE_IP_PERF_MAIN, },
52 /* main */
53 { 1, FAKE_IP_PERF_MAIN, },
54 /* cmd_record => run_command => main */
55 { 3, FAKE_IP_PERF_CMD_RECORD, FAKE_IP_PERF_RUN_COMMAND, FAKE_IP_PERF_MAIN, },
56 /* malloc => cmd_record => run_command => main */
57 { 4, FAKE_IP_LIBC_MALLOC, FAKE_IP_PERF_CMD_RECORD, FAKE_IP_PERF_RUN_COMMAND,
58 FAKE_IP_PERF_MAIN, },
59 /* free => cmd_record => run_command => main */
60 { 4, FAKE_IP_LIBC_FREE, FAKE_IP_PERF_CMD_RECORD, FAKE_IP_PERF_RUN_COMMAND,
61 FAKE_IP_PERF_MAIN, },
62 /* main */
63 { 1, FAKE_IP_PERF_MAIN, },
64 /* page_fault => sys_perf_event_open => run_command => main */
65 { 4, FAKE_IP_KERNEL_PAGE_FAULT, FAKE_IP_KERNEL_SYS_PERF_EVENT_OPEN,
66 FAKE_IP_PERF_RUN_COMMAND, FAKE_IP_PERF_MAIN, },
67 /* main */
68 { 1, FAKE_IP_BASH_MAIN, },
69 /* xmalloc => malloc => xmalloc => malloc => xmalloc => main */
70 { 6, FAKE_IP_BASH_XMALLOC, FAKE_IP_LIBC_MALLOC, FAKE_IP_BASH_XMALLOC,
71 FAKE_IP_LIBC_MALLOC, FAKE_IP_BASH_XMALLOC, FAKE_IP_BASH_MAIN, },
72 /* page_fault => malloc => main */
73 { 3, FAKE_IP_KERNEL_PAGE_FAULT, FAKE_IP_LIBC_MALLOC, FAKE_IP_BASH_MAIN, },
76 static int add_hist_entries(struct hists *hists, struct machine *machine)
78 struct addr_location al;
79 struct perf_evsel *evsel = hists_to_evsel(hists);
80 struct perf_sample sample = { .period = 1000, };
81 size_t i;
83 for (i = 0; i < ARRAY_SIZE(fake_samples); i++) {
84 const union perf_event event = {
85 .header = {
86 .misc = PERF_RECORD_MISC_USER,
89 struct hist_entry_iter iter = {
90 .evsel = evsel,
91 .sample = &sample,
92 .hide_unresolved = false,
95 if (symbol_conf.cumulate_callchain)
96 iter.ops = &hist_iter_cumulative;
97 else
98 iter.ops = &hist_iter_normal;
100 sample.pid = fake_samples[i].pid;
101 sample.tid = fake_samples[i].pid;
102 sample.ip = fake_samples[i].ip;
103 sample.callchain = (struct ip_callchain *)fake_callchains[i];
105 if (perf_event__preprocess_sample(&event, machine, &al,
106 &sample) < 0)
107 goto out;
109 if (hist_entry_iter__add(&iter, &al, PERF_MAX_STACK_DEPTH,
110 NULL) < 0) {
111 addr_location__put(&al);
112 goto out;
115 fake_samples[i].thread = al.thread;
116 fake_samples[i].map = al.map;
117 fake_samples[i].sym = al.sym;
120 return TEST_OK;
122 out:
123 pr_debug("Not enough memory for adding a hist entry\n");
124 return TEST_FAIL;
127 static void del_hist_entries(struct hists *hists)
129 struct hist_entry *he;
130 struct rb_root *root_in;
131 struct rb_root *root_out;
132 struct rb_node *node;
134 if (sort__need_collapse)
135 root_in = &hists->entries_collapsed;
136 else
137 root_in = hists->entries_in;
139 root_out = &hists->entries;
141 while (!RB_EMPTY_ROOT(root_out)) {
142 node = rb_first(root_out);
144 he = rb_entry(node, struct hist_entry, rb_node);
145 rb_erase(node, root_out);
146 rb_erase(&he->rb_node_in, root_in);
147 hist_entry__delete(he);
151 typedef int (*test_fn_t)(struct perf_evsel *, struct machine *);
153 #define COMM(he) (thread__comm_str(he->thread))
154 #define DSO(he) (he->ms.map->dso->short_name)
155 #define SYM(he) (he->ms.sym->name)
156 #define CPU(he) (he->cpu)
157 #define PID(he) (he->thread->tid)
158 #define DEPTH(he) (he->callchain->max_depth)
159 #define CDSO(cl) (cl->ms.map->dso->short_name)
160 #define CSYM(cl) (cl->ms.sym->name)
162 struct result {
163 u64 children;
164 u64 self;
165 const char *comm;
166 const char *dso;
167 const char *sym;
170 struct callchain_result {
171 u64 nr;
172 struct {
173 const char *dso;
174 const char *sym;
175 } node[10];
178 static int do_test(struct hists *hists, struct result *expected, size_t nr_expected,
179 struct callchain_result *expected_callchain, size_t nr_callchain)
181 char buf[32];
182 size_t i, c;
183 struct hist_entry *he;
184 struct rb_root *root;
185 struct rb_node *node;
186 struct callchain_node *cnode;
187 struct callchain_list *clist;
190 * adding and deleting hist entries must be done outside of this
191 * function since TEST_ASSERT_VAL() returns in case of failure.
193 hists__collapse_resort(hists, NULL);
194 hists__output_resort(hists, NULL);
196 if (verbose > 2) {
197 pr_info("use callchain: %d, cumulate callchain: %d\n",
198 symbol_conf.use_callchain,
199 symbol_conf.cumulate_callchain);
200 print_hists_out(hists);
203 root = &hists->entries;
204 for (node = rb_first(root), i = 0;
205 node && (he = rb_entry(node, struct hist_entry, rb_node));
206 node = rb_next(node), i++) {
207 scnprintf(buf, sizeof(buf), "Invalid hist entry #%zd", i);
209 TEST_ASSERT_VAL("Incorrect number of hist entry",
210 i < nr_expected);
211 TEST_ASSERT_VAL(buf, he->stat.period == expected[i].self &&
212 !strcmp(COMM(he), expected[i].comm) &&
213 !strcmp(DSO(he), expected[i].dso) &&
214 !strcmp(SYM(he), expected[i].sym));
216 if (symbol_conf.cumulate_callchain)
217 TEST_ASSERT_VAL(buf, he->stat_acc->period == expected[i].children);
219 if (!symbol_conf.use_callchain)
220 continue;
222 /* check callchain entries */
223 root = &he->callchain->node.rb_root;
224 cnode = rb_entry(rb_first(root), struct callchain_node, rb_node);
226 c = 0;
227 list_for_each_entry(clist, &cnode->val, list) {
228 scnprintf(buf, sizeof(buf), "Invalid callchain entry #%zd/%zd", i, c);
230 TEST_ASSERT_VAL("Incorrect number of callchain entry",
231 c < expected_callchain[i].nr);
232 TEST_ASSERT_VAL(buf,
233 !strcmp(CDSO(clist), expected_callchain[i].node[c].dso) &&
234 !strcmp(CSYM(clist), expected_callchain[i].node[c].sym));
235 c++;
237 /* TODO: handle multiple child nodes properly */
238 TEST_ASSERT_VAL("Incorrect number of callchain entry",
239 c <= expected_callchain[i].nr);
241 TEST_ASSERT_VAL("Incorrect number of hist entry",
242 i == nr_expected);
243 TEST_ASSERT_VAL("Incorrect number of callchain entry",
244 !symbol_conf.use_callchain || nr_expected == nr_callchain);
245 return 0;
248 /* NO callchain + NO children */
249 static int test1(struct perf_evsel *evsel, struct machine *machine)
251 int err;
252 struct hists *hists = evsel__hists(evsel);
254 * expected output:
256 * Overhead Command Shared Object Symbol
257 * ======== ======= ============= ==============
258 * 20.00% perf perf [.] main
259 * 10.00% bash [kernel] [k] page_fault
260 * 10.00% bash bash [.] main
261 * 10.00% bash bash [.] xmalloc
262 * 10.00% perf [kernel] [k] page_fault
263 * 10.00% perf [kernel] [k] schedule
264 * 10.00% perf libc [.] free
265 * 10.00% perf libc [.] malloc
266 * 10.00% perf perf [.] cmd_record
268 struct result expected[] = {
269 { 0, 2000, "perf", "perf", "main" },
270 { 0, 1000, "bash", "[kernel]", "page_fault" },
271 { 0, 1000, "bash", "bash", "main" },
272 { 0, 1000, "bash", "bash", "xmalloc" },
273 { 0, 1000, "perf", "[kernel]", "page_fault" },
274 { 0, 1000, "perf", "[kernel]", "schedule" },
275 { 0, 1000, "perf", "libc", "free" },
276 { 0, 1000, "perf", "libc", "malloc" },
277 { 0, 1000, "perf", "perf", "cmd_record" },
280 symbol_conf.use_callchain = false;
281 symbol_conf.cumulate_callchain = false;
282 perf_evsel__reset_sample_bit(evsel, CALLCHAIN);
284 setup_sorting();
285 callchain_register_param(&callchain_param);
287 err = add_hist_entries(hists, machine);
288 if (err < 0)
289 goto out;
291 err = do_test(hists, expected, ARRAY_SIZE(expected), NULL, 0);
293 out:
294 del_hist_entries(hists);
295 reset_output_field();
296 return err;
299 /* callcain + NO children */
300 static int test2(struct perf_evsel *evsel, struct machine *machine)
302 int err;
303 struct hists *hists = evsel__hists(evsel);
305 * expected output:
307 * Overhead Command Shared Object Symbol
308 * ======== ======= ============= ==============
309 * 20.00% perf perf [.] main
311 * --- main
313 * 10.00% bash [kernel] [k] page_fault
315 * --- page_fault
316 * malloc
317 * main
319 * 10.00% bash bash [.] main
321 * --- main
323 * 10.00% bash bash [.] xmalloc
325 * --- xmalloc
326 * malloc
327 * xmalloc <--- NOTE: there's a cycle
328 * malloc
329 * xmalloc
330 * main
332 * 10.00% perf [kernel] [k] page_fault
334 * --- page_fault
335 * sys_perf_event_open
336 * run_command
337 * main
339 * 10.00% perf [kernel] [k] schedule
341 * --- schedule
342 * run_command
343 * main
345 * 10.00% perf libc [.] free
347 * --- free
348 * cmd_record
349 * run_command
350 * main
352 * 10.00% perf libc [.] malloc
354 * --- malloc
355 * cmd_record
356 * run_command
357 * main
359 * 10.00% perf perf [.] cmd_record
361 * --- cmd_record
362 * run_command
363 * main
366 struct result expected[] = {
367 { 0, 2000, "perf", "perf", "main" },
368 { 0, 1000, "bash", "[kernel]", "page_fault" },
369 { 0, 1000, "bash", "bash", "main" },
370 { 0, 1000, "bash", "bash", "xmalloc" },
371 { 0, 1000, "perf", "[kernel]", "page_fault" },
372 { 0, 1000, "perf", "[kernel]", "schedule" },
373 { 0, 1000, "perf", "libc", "free" },
374 { 0, 1000, "perf", "libc", "malloc" },
375 { 0, 1000, "perf", "perf", "cmd_record" },
377 struct callchain_result expected_callchain[] = {
379 1, { { "perf", "main" }, },
382 3, { { "[kernel]", "page_fault" },
383 { "libc", "malloc" },
384 { "bash", "main" }, },
387 1, { { "bash", "main" }, },
390 6, { { "bash", "xmalloc" },
391 { "libc", "malloc" },
392 { "bash", "xmalloc" },
393 { "libc", "malloc" },
394 { "bash", "xmalloc" },
395 { "bash", "main" }, },
398 4, { { "[kernel]", "page_fault" },
399 { "[kernel]", "sys_perf_event_open" },
400 { "perf", "run_command" },
401 { "perf", "main" }, },
404 3, { { "[kernel]", "schedule" },
405 { "perf", "run_command" },
406 { "perf", "main" }, },
409 4, { { "libc", "free" },
410 { "perf", "cmd_record" },
411 { "perf", "run_command" },
412 { "perf", "main" }, },
415 4, { { "libc", "malloc" },
416 { "perf", "cmd_record" },
417 { "perf", "run_command" },
418 { "perf", "main" }, },
421 3, { { "perf", "cmd_record" },
422 { "perf", "run_command" },
423 { "perf", "main" }, },
427 symbol_conf.use_callchain = true;
428 symbol_conf.cumulate_callchain = false;
429 perf_evsel__set_sample_bit(evsel, CALLCHAIN);
431 setup_sorting();
432 callchain_register_param(&callchain_param);
434 err = add_hist_entries(hists, machine);
435 if (err < 0)
436 goto out;
438 err = do_test(hists, expected, ARRAY_SIZE(expected),
439 expected_callchain, ARRAY_SIZE(expected_callchain));
441 out:
442 del_hist_entries(hists);
443 reset_output_field();
444 return err;
447 /* NO callchain + children */
448 static int test3(struct perf_evsel *evsel, struct machine *machine)
450 int err;
451 struct hists *hists = evsel__hists(evsel);
453 * expected output:
455 * Children Self Command Shared Object Symbol
456 * ======== ======== ======= ============= =======================
457 * 70.00% 20.00% perf perf [.] main
458 * 50.00% 0.00% perf perf [.] run_command
459 * 30.00% 10.00% bash bash [.] main
460 * 30.00% 10.00% perf perf [.] cmd_record
461 * 20.00% 0.00% bash libc [.] malloc
462 * 10.00% 10.00% bash [kernel] [k] page_fault
463 * 10.00% 10.00% bash bash [.] xmalloc
464 * 10.00% 10.00% perf [kernel] [k] page_fault
465 * 10.00% 10.00% perf libc [.] malloc
466 * 10.00% 10.00% perf [kernel] [k] schedule
467 * 10.00% 10.00% perf libc [.] free
468 * 10.00% 0.00% perf [kernel] [k] sys_perf_event_open
470 struct result expected[] = {
471 { 7000, 2000, "perf", "perf", "main" },
472 { 5000, 0, "perf", "perf", "run_command" },
473 { 3000, 1000, "bash", "bash", "main" },
474 { 3000, 1000, "perf", "perf", "cmd_record" },
475 { 2000, 0, "bash", "libc", "malloc" },
476 { 1000, 1000, "bash", "[kernel]", "page_fault" },
477 { 1000, 1000, "bash", "bash", "xmalloc" },
478 { 1000, 1000, "perf", "[kernel]", "page_fault" },
479 { 1000, 1000, "perf", "[kernel]", "schedule" },
480 { 1000, 1000, "perf", "libc", "free" },
481 { 1000, 1000, "perf", "libc", "malloc" },
482 { 1000, 0, "perf", "[kernel]", "sys_perf_event_open" },
485 symbol_conf.use_callchain = false;
486 symbol_conf.cumulate_callchain = true;
487 perf_evsel__reset_sample_bit(evsel, CALLCHAIN);
489 setup_sorting();
490 callchain_register_param(&callchain_param);
492 err = add_hist_entries(hists, machine);
493 if (err < 0)
494 goto out;
496 err = do_test(hists, expected, ARRAY_SIZE(expected), NULL, 0);
498 out:
499 del_hist_entries(hists);
500 reset_output_field();
501 return err;
504 /* callchain + children */
505 static int test4(struct perf_evsel *evsel, struct machine *machine)
507 int err;
508 struct hists *hists = evsel__hists(evsel);
510 * expected output:
512 * Children Self Command Shared Object Symbol
513 * ======== ======== ======= ============= =======================
514 * 70.00% 20.00% perf perf [.] main
516 * --- main
518 * 50.00% 0.00% perf perf [.] run_command
520 * --- run_command
521 * main
523 * 30.00% 10.00% bash bash [.] main
525 * --- main
527 * 30.00% 10.00% perf perf [.] cmd_record
529 * --- cmd_record
530 * run_command
531 * main
533 * 20.00% 0.00% bash libc [.] malloc
535 * --- malloc
537 * |--50.00%-- xmalloc
538 * | main
539 * --50.00%-- main
541 * 10.00% 10.00% bash [kernel] [k] page_fault
543 * --- page_fault
544 * malloc
545 * main
547 * 10.00% 10.00% bash bash [.] xmalloc
549 * --- xmalloc
550 * malloc
551 * xmalloc <--- NOTE: there's a cycle
552 * malloc
553 * xmalloc
554 * main
556 * 10.00% 0.00% perf [kernel] [k] sys_perf_event_open
558 * --- sys_perf_event_open
559 * run_command
560 * main
562 * 10.00% 10.00% perf [kernel] [k] page_fault
564 * --- page_fault
565 * sys_perf_event_open
566 * run_command
567 * main
569 * 10.00% 10.00% perf [kernel] [k] schedule
571 * --- schedule
572 * run_command
573 * main
575 * 10.00% 10.00% perf libc [.] free
577 * --- free
578 * cmd_record
579 * run_command
580 * main
582 * 10.00% 10.00% perf libc [.] malloc
584 * --- malloc
585 * cmd_record
586 * run_command
587 * main
590 struct result expected[] = {
591 { 7000, 2000, "perf", "perf", "main" },
592 { 5000, 0, "perf", "perf", "run_command" },
593 { 3000, 1000, "bash", "bash", "main" },
594 { 3000, 1000, "perf", "perf", "cmd_record" },
595 { 2000, 0, "bash", "libc", "malloc" },
596 { 1000, 1000, "bash", "[kernel]", "page_fault" },
597 { 1000, 1000, "bash", "bash", "xmalloc" },
598 { 1000, 0, "perf", "[kernel]", "sys_perf_event_open" },
599 { 1000, 1000, "perf", "[kernel]", "page_fault" },
600 { 1000, 1000, "perf", "[kernel]", "schedule" },
601 { 1000, 1000, "perf", "libc", "free" },
602 { 1000, 1000, "perf", "libc", "malloc" },
604 struct callchain_result expected_callchain[] = {
606 1, { { "perf", "main" }, },
609 2, { { "perf", "run_command" },
610 { "perf", "main" }, },
613 1, { { "bash", "main" }, },
616 3, { { "perf", "cmd_record" },
617 { "perf", "run_command" },
618 { "perf", "main" }, },
621 4, { { "libc", "malloc" },
622 { "bash", "xmalloc" },
623 { "bash", "main" },
624 { "bash", "main" }, },
627 3, { { "[kernel]", "page_fault" },
628 { "libc", "malloc" },
629 { "bash", "main" }, },
632 6, { { "bash", "xmalloc" },
633 { "libc", "malloc" },
634 { "bash", "xmalloc" },
635 { "libc", "malloc" },
636 { "bash", "xmalloc" },
637 { "bash", "main" }, },
640 3, { { "[kernel]", "sys_perf_event_open" },
641 { "perf", "run_command" },
642 { "perf", "main" }, },
645 4, { { "[kernel]", "page_fault" },
646 { "[kernel]", "sys_perf_event_open" },
647 { "perf", "run_command" },
648 { "perf", "main" }, },
651 3, { { "[kernel]", "schedule" },
652 { "perf", "run_command" },
653 { "perf", "main" }, },
656 4, { { "libc", "free" },
657 { "perf", "cmd_record" },
658 { "perf", "run_command" },
659 { "perf", "main" }, },
662 4, { { "libc", "malloc" },
663 { "perf", "cmd_record" },
664 { "perf", "run_command" },
665 { "perf", "main" }, },
669 symbol_conf.use_callchain = true;
670 symbol_conf.cumulate_callchain = true;
671 perf_evsel__set_sample_bit(evsel, CALLCHAIN);
673 setup_sorting();
674 callchain_register_param(&callchain_param);
676 err = add_hist_entries(hists, machine);
677 if (err < 0)
678 goto out;
680 err = do_test(hists, expected, ARRAY_SIZE(expected),
681 expected_callchain, ARRAY_SIZE(expected_callchain));
683 out:
684 del_hist_entries(hists);
685 reset_output_field();
686 return err;
689 int test__hists_cumulate(void)
691 int err = TEST_FAIL;
692 struct machines machines;
693 struct machine *machine;
694 struct perf_evsel *evsel;
695 struct perf_evlist *evlist = perf_evlist__new();
696 size_t i;
697 test_fn_t testcases[] = {
698 test1,
699 test2,
700 test3,
701 test4,
704 TEST_ASSERT_VAL("No memory", evlist);
706 err = parse_events(evlist, "cpu-clock", NULL);
707 if (err)
708 goto out;
710 machines__init(&machines);
712 /* setup threads/dso/map/symbols also */
713 machine = setup_fake_machine(&machines);
714 if (!machine)
715 goto out;
717 if (verbose > 1)
718 machine__fprintf(machine, stderr);
720 evsel = perf_evlist__first(evlist);
722 for (i = 0; i < ARRAY_SIZE(testcases); i++) {
723 err = testcases[i](evsel, machine);
724 if (err < 0)
725 break;
728 out:
729 /* tear down everything */
730 perf_evlist__delete(evlist);
731 machines__exit(&machines);
733 return err;