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 "tests/hists_common.h" 10 11 static struct { 12 u32 pid; 13 const char *comm; 14 } fake_threads[] = { 15 { FAKE_PID_PERF1, "perf" }, 16 { FAKE_PID_PERF2, "perf" }, 17 { FAKE_PID_BASH, "bash" }, 18 }; 19 20 static struct { 21 u32 pid; 22 u64 start; 23 const char *filename; 24 } fake_mmap_info[] = { 25 { FAKE_PID_PERF1, FAKE_MAP_PERF, "perf" }, 26 { FAKE_PID_PERF1, FAKE_MAP_LIBC, "libc" }, 27 { FAKE_PID_PERF1, FAKE_MAP_KERNEL, "[kernel]" }, 28 { FAKE_PID_PERF2, FAKE_MAP_PERF, "perf" }, 29 { FAKE_PID_PERF2, FAKE_MAP_LIBC, "libc" }, 30 { FAKE_PID_PERF2, FAKE_MAP_KERNEL, "[kernel]" }, 31 { FAKE_PID_BASH, FAKE_MAP_BASH, "bash" }, 32 { FAKE_PID_BASH, FAKE_MAP_LIBC, "libc" }, 33 { FAKE_PID_BASH, FAKE_MAP_KERNEL, "[kernel]" }, 34 }; 35 36 struct fake_sym { 37 u64 start; 38 u64 length; 39 const char *name; 40 }; 41 42 static struct fake_sym perf_syms[] = { 43 { FAKE_SYM_OFFSET1, FAKE_SYM_LENGTH, "main" }, 44 { FAKE_SYM_OFFSET2, FAKE_SYM_LENGTH, "run_command" }, 45 { FAKE_SYM_OFFSET3, FAKE_SYM_LENGTH, "cmd_record" }, 46 }; 47 48 static struct fake_sym bash_syms[] = { 49 { FAKE_SYM_OFFSET1, FAKE_SYM_LENGTH, "main" }, 50 { FAKE_SYM_OFFSET2, FAKE_SYM_LENGTH, "xmalloc" }, 51 { FAKE_SYM_OFFSET3, FAKE_SYM_LENGTH, "xfree" }, 52 }; 53 54 static struct fake_sym libc_syms[] = { 55 { 700, 100, "malloc" }, 56 { 800, 100, "free" }, 57 { 900, 100, "realloc" }, 58 { FAKE_SYM_OFFSET1, FAKE_SYM_LENGTH, "malloc" }, 59 { FAKE_SYM_OFFSET2, FAKE_SYM_LENGTH, "free" }, 60 { FAKE_SYM_OFFSET3, FAKE_SYM_LENGTH, "realloc" }, 61 }; 62 63 static struct fake_sym kernel_syms[] = { 64 { FAKE_SYM_OFFSET1, FAKE_SYM_LENGTH, "schedule" }, 65 { FAKE_SYM_OFFSET2, FAKE_SYM_LENGTH, "page_fault" }, 66 { FAKE_SYM_OFFSET3, FAKE_SYM_LENGTH, "sys_perf_event_open" }, 67 }; 68 69 static struct { 70 const char *dso_name; 71 struct fake_sym *syms; 72 size_t nr_syms; 73 } fake_symbols[] = { 74 { "perf", perf_syms, ARRAY_SIZE(perf_syms) }, 75 { "bash", bash_syms, ARRAY_SIZE(bash_syms) }, 76 { "libc", libc_syms, ARRAY_SIZE(libc_syms) }, 77 { "[kernel]", kernel_syms, ARRAY_SIZE(kernel_syms) }, 78 }; 79 80 struct machine *setup_fake_machine(struct machines *machines) 81 { 82 struct machine *machine = machines__find(machines, HOST_KERNEL_ID); 83 size_t i; 84 85 if (machine == NULL) { 86 pr_debug("Not enough memory for machine setup\n"); 87 return NULL; 88 } 89 90 if (machine__create_kernel_maps(machine)) { 91 pr_debug("Cannot create kernel maps\n"); 92 return NULL; 93 } 94 95 for (i = 0; i < ARRAY_SIZE(fake_threads); i++) { 96 struct thread *thread; 97 98 thread = machine__findnew_thread(machine, fake_threads[i].pid, 99 fake_threads[i].pid); 100 if (thread == NULL) 101 goto out; 102 103 thread__set_comm(thread, fake_threads[i].comm, 0); 104 thread__put(thread); 105 } 106 107 for (i = 0; i < ARRAY_SIZE(fake_mmap_info); i++) { 108 union perf_event fake_mmap_event = { 109 .mmap = { 110 .header = { .misc = PERF_RECORD_MISC_USER, }, 111 .pid = fake_mmap_info[i].pid, 112 .tid = fake_mmap_info[i].pid, 113 .start = fake_mmap_info[i].start, 114 .len = FAKE_MAP_LENGTH, 115 .pgoff = 0ULL, 116 }, 117 }; 118 119 strcpy(fake_mmap_event.mmap.filename, 120 fake_mmap_info[i].filename); 121 122 machine__process_mmap_event(machine, &fake_mmap_event, NULL); 123 } 124 125 for (i = 0; i < ARRAY_SIZE(fake_symbols); i++) { 126 size_t k; 127 struct dso *dso; 128 129 dso = machine__findnew_dso(machine, fake_symbols[i].dso_name); 130 if (dso == NULL) 131 goto out; 132 133 /* emulate dso__load() */ 134 dso__set_loaded(dso, MAP__FUNCTION); 135 136 for (k = 0; k < fake_symbols[i].nr_syms; k++) { 137 struct symbol *sym; 138 struct fake_sym *fsym = &fake_symbols[i].syms[k]; 139 140 sym = symbol__new(fsym->start, fsym->length, 141 STB_GLOBAL, fsym->name); 142 if (sym == NULL) { 143 dso__put(dso); 144 goto out; 145 } 146 147 symbols__insert(&dso->symbols[MAP__FUNCTION], sym); 148 } 149 150 dso__put(dso); 151 } 152 153 return machine; 154 155 out: 156 pr_debug("Not enough memory for machine setup\n"); 157 machine__delete_threads(machine); 158 return NULL; 159 } 160 161 void print_hists_in(struct hists *hists) 162 { 163 int i = 0; 164 struct rb_root *root; 165 struct rb_node *node; 166 167 if (sort__need_collapse) 168 root = &hists->entries_collapsed; 169 else 170 root = hists->entries_in; 171 172 pr_info("----- %s --------\n", __func__); 173 node = rb_first(root); 174 while (node) { 175 struct hist_entry *he; 176 177 he = rb_entry(node, struct hist_entry, rb_node_in); 178 179 if (!he->filtered) { 180 pr_info("%2d: entry: %-8s [%-8s] %20s: period = %"PRIu64"\n", 181 i, thread__comm_str(he->thread), 182 he->ms.map->dso->short_name, 183 he->ms.sym->name, he->stat.period); 184 } 185 186 i++; 187 node = rb_next(node); 188 } 189 } 190 191 void print_hists_out(struct hists *hists) 192 { 193 int i = 0; 194 struct rb_root *root; 195 struct rb_node *node; 196 197 root = &hists->entries; 198 199 pr_info("----- %s --------\n", __func__); 200 node = rb_first(root); 201 while (node) { 202 struct hist_entry *he; 203 204 he = rb_entry(node, struct hist_entry, rb_node); 205 206 if (!he->filtered) { 207 pr_info("%2d: entry: %8s:%5d [%-8s] %20s: period = %"PRIu64"/%"PRIu64"\n", 208 i, thread__comm_str(he->thread), he->thread->tid, 209 he->ms.map->dso->short_name, 210 he->ms.sym->name, he->stat.period, 211 he->stat_acc ? he->stat_acc->period : 0); 212 } 213 214 i++; 215 node = rb_next(node); 216 } 217 } 218