1 // SPDX-License-Identifier: GPL-2.0
4 #include "util/debug.h"
6 #include "util/symbol.h"
8 #include "util/evsel.h"
9 #include "util/evlist.h"
10 #include "util/machine.h"
11 #include "util/thread.h"
12 #include "tests/hists_common.h"
13 #include <linux/kernel.h>
19 { FAKE_PID_PERF1
, "perf" },
20 { FAKE_PID_PERF2
, "perf" },
21 { FAKE_PID_BASH
, "bash" },
28 } fake_mmap_info
[] = {
29 { FAKE_PID_PERF1
, FAKE_MAP_PERF
, "perf" },
30 { FAKE_PID_PERF1
, FAKE_MAP_LIBC
, "libc" },
31 { FAKE_PID_PERF1
, FAKE_MAP_KERNEL
, "[kernel]" },
32 { FAKE_PID_PERF2
, FAKE_MAP_PERF
, "perf" },
33 { FAKE_PID_PERF2
, FAKE_MAP_LIBC
, "libc" },
34 { FAKE_PID_PERF2
, FAKE_MAP_KERNEL
, "[kernel]" },
35 { FAKE_PID_BASH
, FAKE_MAP_BASH
, "bash" },
36 { FAKE_PID_BASH
, FAKE_MAP_LIBC
, "libc" },
37 { FAKE_PID_BASH
, FAKE_MAP_KERNEL
, "[kernel]" },
46 static struct fake_sym perf_syms
[] = {
47 { FAKE_SYM_OFFSET1
, FAKE_SYM_LENGTH
, "main" },
48 { FAKE_SYM_OFFSET2
, FAKE_SYM_LENGTH
, "run_command" },
49 { FAKE_SYM_OFFSET3
, FAKE_SYM_LENGTH
, "cmd_record" },
52 static struct fake_sym bash_syms
[] = {
53 { FAKE_SYM_OFFSET1
, FAKE_SYM_LENGTH
, "main" },
54 { FAKE_SYM_OFFSET2
, FAKE_SYM_LENGTH
, "xmalloc" },
55 { FAKE_SYM_OFFSET3
, FAKE_SYM_LENGTH
, "xfree" },
58 static struct fake_sym libc_syms
[] = {
59 { 700, 100, "malloc" },
61 { 900, 100, "realloc" },
62 { FAKE_SYM_OFFSET1
, FAKE_SYM_LENGTH
, "malloc" },
63 { FAKE_SYM_OFFSET2
, FAKE_SYM_LENGTH
, "free" },
64 { FAKE_SYM_OFFSET3
, FAKE_SYM_LENGTH
, "realloc" },
67 static struct fake_sym kernel_syms
[] = {
68 { FAKE_SYM_OFFSET1
, FAKE_SYM_LENGTH
, "schedule" },
69 { FAKE_SYM_OFFSET2
, FAKE_SYM_LENGTH
, "page_fault" },
70 { FAKE_SYM_OFFSET3
, FAKE_SYM_LENGTH
, "sys_perf_event_open" },
75 struct fake_sym
*syms
;
78 { "perf", perf_syms
, ARRAY_SIZE(perf_syms
) },
79 { "bash", bash_syms
, ARRAY_SIZE(bash_syms
) },
80 { "libc", libc_syms
, ARRAY_SIZE(libc_syms
) },
81 { "[kernel]", kernel_syms
, ARRAY_SIZE(kernel_syms
) },
84 struct machine
*setup_fake_machine(struct machines
*machines
)
86 struct machine
*machine
= machines__find(machines
, HOST_KERNEL_ID
);
89 if (machine
== NULL
) {
90 pr_debug("Not enough memory for machine setup\n");
94 for (i
= 0; i
< ARRAY_SIZE(fake_threads
); i
++) {
95 struct thread
*thread
;
97 thread
= machine__findnew_thread(machine
, fake_threads
[i
].pid
,
102 thread__set_comm(thread
, fake_threads
[i
].comm
, 0);
106 for (i
= 0; i
< ARRAY_SIZE(fake_mmap_info
); i
++) {
107 struct perf_sample sample
= {
108 .cpumode
= PERF_RECORD_MISC_USER
,
110 union perf_event fake_mmap_event
= {
112 .pid
= fake_mmap_info
[i
].pid
,
113 .tid
= fake_mmap_info
[i
].pid
,
114 .start
= fake_mmap_info
[i
].start
,
115 .len
= FAKE_MAP_LENGTH
,
120 strcpy(fake_mmap_event
.mmap
.filename
,
121 fake_mmap_info
[i
].filename
);
123 machine__process_mmap_event(machine
, &fake_mmap_event
, &sample
);
126 for (i
= 0; i
< ARRAY_SIZE(fake_symbols
); i
++) {
130 dso
= machine__findnew_dso(machine
, fake_symbols
[i
].dso_name
);
134 /* emulate dso__load() */
135 dso__set_loaded(dso
);
137 for (k
= 0; k
< fake_symbols
[i
].nr_syms
; k
++) {
139 struct fake_sym
*fsym
= &fake_symbols
[i
].syms
[k
];
141 sym
= symbol__new(fsym
->start
, fsym
->length
,
142 STB_GLOBAL
, STT_FUNC
, fsym
->name
);
148 symbols__insert(&dso
->symbols
, sym
);
157 pr_debug("Not enough memory for machine setup\n");
158 machine__delete_threads(machine
);
162 void print_hists_in(struct hists
*hists
)
165 struct rb_root_cached
*root
;
166 struct rb_node
*node
;
168 if (hists__has(hists
, need_collapse
))
169 root
= &hists
->entries_collapsed
;
171 root
= hists
->entries_in
;
173 pr_info("----- %s --------\n", __func__
);
174 node
= rb_first_cached(root
);
176 struct hist_entry
*he
;
178 he
= rb_entry(node
, struct hist_entry
, rb_node_in
);
181 pr_info("%2d: entry: %-8s [%-8s] %20s: period = %"PRIu64
"\n",
182 i
, thread__comm_str(he
->thread
),
183 he
->ms
.map
->dso
->short_name
,
184 he
->ms
.sym
->name
, he
->stat
.period
);
188 node
= rb_next(node
);
192 void print_hists_out(struct hists
*hists
)
195 struct rb_root_cached
*root
;
196 struct rb_node
*node
;
198 root
= &hists
->entries
;
200 pr_info("----- %s --------\n", __func__
);
201 node
= rb_first_cached(root
);
203 struct hist_entry
*he
;
205 he
= rb_entry(node
, struct hist_entry
, rb_node
);
208 pr_info("%2d: entry: %8s:%5d [%-8s] %20s: period = %"PRIu64
"/%"PRIu64
"\n",
209 i
, thread__comm_str(he
->thread
), he
->thread
->tid
,
210 he
->ms
.map
->dso
->short_name
,
211 he
->ms
.sym
->name
, he
->stat
.period
,
212 he
->stat_acc
? he
->stat_acc
->period
: 0);
216 node
= rb_next(node
);