Frederic Weisbecker | 8a0ecfb | 2010-05-13 19:47:16 +0200 | [diff] [blame] | 1 | #include "util.h" |
Frederic Weisbecker | 598357e | 2010-05-21 12:48:39 +0200 | [diff] [blame] | 2 | #include "build-id.h" |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 3 | #include "hist.h" |
Arnaldo Carvalho de Melo | 4e4f06e | 2009-12-14 13:10:39 -0200 | [diff] [blame] | 4 | #include "session.h" |
| 5 | #include "sort.h" |
Arnaldo Carvalho de Melo | 2a1731f | 2014-10-10 15:49:21 -0300 | [diff] [blame] | 6 | #include "evlist.h" |
Namhyung Kim | 29d720e | 2013-01-22 18:09:33 +0900 | [diff] [blame] | 7 | #include "evsel.h" |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 8 | #include "annotate.h" |
Namhyung Kim | 740b97f | 2014-12-22 13:44:10 +0900 | [diff] [blame] | 9 | #include "ui/progress.h" |
Arnaldo Carvalho de Melo | 9b33827 | 2009-12-16 14:31:49 -0200 | [diff] [blame] | 10 | #include <math.h> |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 11 | |
Arnaldo Carvalho de Melo | 90cf1fb | 2011-10-19 13:09:10 -0200 | [diff] [blame] | 12 | static bool hists__filter_entry_by_dso(struct hists *hists, |
| 13 | struct hist_entry *he); |
| 14 | static bool hists__filter_entry_by_thread(struct hists *hists, |
| 15 | struct hist_entry *he); |
Namhyung Kim | e94d53e | 2012-03-16 17:50:51 +0900 | [diff] [blame] | 16 | static bool hists__filter_entry_by_symbol(struct hists *hists, |
| 17 | struct hist_entry *he); |
Kan Liang | 21394d9 | 2015-09-04 10:45:44 -0400 | [diff] [blame] | 18 | static bool hists__filter_entry_by_socket(struct hists *hists, |
| 19 | struct hist_entry *he); |
Arnaldo Carvalho de Melo | 90cf1fb | 2011-10-19 13:09:10 -0200 | [diff] [blame] | 20 | |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 21 | u16 hists__col_len(struct hists *hists, enum hist_column col) |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 22 | { |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 23 | return hists->col_len[col]; |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 24 | } |
| 25 | |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 26 | void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len) |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 27 | { |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 28 | hists->col_len[col] = len; |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 29 | } |
| 30 | |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 31 | bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len) |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 32 | { |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 33 | if (len > hists__col_len(hists, col)) { |
| 34 | hists__set_col_len(hists, col, len); |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 35 | return true; |
| 36 | } |
| 37 | return false; |
| 38 | } |
| 39 | |
Namhyung Kim | 7ccf4f9 | 2012-08-20 13:52:05 +0900 | [diff] [blame] | 40 | void hists__reset_col_len(struct hists *hists) |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 41 | { |
| 42 | enum hist_column col; |
| 43 | |
| 44 | for (col = 0; col < HISTC_NR_COLS; ++col) |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 45 | hists__set_col_len(hists, col, 0); |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 46 | } |
| 47 | |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 48 | static void hists__set_unres_dso_col_len(struct hists *hists, int dso) |
| 49 | { |
| 50 | const unsigned int unresolved_col_width = BITS_PER_LONG / 4; |
| 51 | |
| 52 | if (hists__col_len(hists, dso) < unresolved_col_width && |
| 53 | !symbol_conf.col_width_list_str && !symbol_conf.field_sep && |
| 54 | !symbol_conf.dso_list) |
| 55 | hists__set_col_len(hists, dso, unresolved_col_width); |
| 56 | } |
| 57 | |
Namhyung Kim | 7ccf4f9 | 2012-08-20 13:52:05 +0900 | [diff] [blame] | 58 | void hists__calc_col_len(struct hists *hists, struct hist_entry *h) |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 59 | { |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 60 | const unsigned int unresolved_col_width = BITS_PER_LONG / 4; |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 61 | int symlen; |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 62 | u16 len; |
| 63 | |
Namhyung Kim | ded19d5 | 2013-04-01 20:35:19 +0900 | [diff] [blame] | 64 | /* |
| 65 | * +4 accounts for '[x] ' priv level info |
| 66 | * +2 accounts for 0x prefix on raw addresses |
| 67 | * +3 accounts for ' y ' symtab origin info |
| 68 | */ |
| 69 | if (h->ms.sym) { |
| 70 | symlen = h->ms.sym->namelen + 4; |
| 71 | if (verbose) |
| 72 | symlen += BITS_PER_LONG / 4 + 2 + 3; |
| 73 | hists__new_col_len(hists, HISTC_SYMBOL, symlen); |
| 74 | } else { |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 75 | symlen = unresolved_col_width + 4 + 2; |
| 76 | hists__new_col_len(hists, HISTC_SYMBOL, symlen); |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 77 | hists__set_unres_dso_col_len(hists, HISTC_DSO); |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 78 | } |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 79 | |
| 80 | len = thread__comm_len(h->thread); |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 81 | if (hists__new_col_len(hists, HISTC_COMM, len)) |
| 82 | hists__set_col_len(hists, HISTC_THREAD, len + 6); |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 83 | |
| 84 | if (h->ms.map) { |
| 85 | len = dso__name_len(h->ms.map->dso); |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 86 | hists__new_col_len(hists, HISTC_DSO, len); |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 87 | } |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 88 | |
Namhyung Kim | cb99374 | 2012-12-27 18:11:42 +0900 | [diff] [blame] | 89 | if (h->parent) |
| 90 | hists__new_col_len(hists, HISTC_PARENT, h->parent->namelen); |
| 91 | |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 92 | if (h->branch_info) { |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 93 | if (h->branch_info->from.sym) { |
| 94 | symlen = (int)h->branch_info->from.sym->namelen + 4; |
Namhyung Kim | ded19d5 | 2013-04-01 20:35:19 +0900 | [diff] [blame] | 95 | if (verbose) |
| 96 | symlen += BITS_PER_LONG / 4 + 2 + 3; |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 97 | hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen); |
| 98 | |
| 99 | symlen = dso__name_len(h->branch_info->from.map->dso); |
| 100 | hists__new_col_len(hists, HISTC_DSO_FROM, symlen); |
| 101 | } else { |
| 102 | symlen = unresolved_col_width + 4 + 2; |
| 103 | hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen); |
| 104 | hists__set_unres_dso_col_len(hists, HISTC_DSO_FROM); |
| 105 | } |
| 106 | |
| 107 | if (h->branch_info->to.sym) { |
| 108 | symlen = (int)h->branch_info->to.sym->namelen + 4; |
Namhyung Kim | ded19d5 | 2013-04-01 20:35:19 +0900 | [diff] [blame] | 109 | if (verbose) |
| 110 | symlen += BITS_PER_LONG / 4 + 2 + 3; |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 111 | hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen); |
| 112 | |
| 113 | symlen = dso__name_len(h->branch_info->to.map->dso); |
| 114 | hists__new_col_len(hists, HISTC_DSO_TO, symlen); |
| 115 | } else { |
| 116 | symlen = unresolved_col_width + 4 + 2; |
| 117 | hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen); |
| 118 | hists__set_unres_dso_col_len(hists, HISTC_DSO_TO); |
| 119 | } |
| 120 | } |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 121 | |
| 122 | if (h->mem_info) { |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 123 | if (h->mem_info->daddr.sym) { |
| 124 | symlen = (int)h->mem_info->daddr.sym->namelen + 4 |
| 125 | + unresolved_col_width + 2; |
| 126 | hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL, |
| 127 | symlen); |
Don Zickus | 9b32ba7 | 2014-06-01 15:38:29 +0200 | [diff] [blame] | 128 | hists__new_col_len(hists, HISTC_MEM_DCACHELINE, |
| 129 | symlen + 1); |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 130 | } else { |
| 131 | symlen = unresolved_col_width + 4 + 2; |
| 132 | hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL, |
| 133 | symlen); |
| 134 | } |
Jiri Olsa | b34b3bf | 2015-10-05 20:06:08 +0200 | [diff] [blame] | 135 | |
| 136 | if (h->mem_info->iaddr.sym) { |
| 137 | symlen = (int)h->mem_info->iaddr.sym->namelen + 4 |
| 138 | + unresolved_col_width + 2; |
| 139 | hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL, |
| 140 | symlen); |
| 141 | } else { |
| 142 | symlen = unresolved_col_width + 4 + 2; |
| 143 | hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL, |
| 144 | symlen); |
| 145 | } |
| 146 | |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 147 | if (h->mem_info->daddr.map) { |
| 148 | symlen = dso__name_len(h->mem_info->daddr.map->dso); |
| 149 | hists__new_col_len(hists, HISTC_MEM_DADDR_DSO, |
| 150 | symlen); |
| 151 | } else { |
| 152 | symlen = unresolved_col_width + 4 + 2; |
| 153 | hists__set_unres_dso_col_len(hists, HISTC_MEM_DADDR_DSO); |
| 154 | } |
| 155 | } else { |
| 156 | symlen = unresolved_col_width + 4 + 2; |
| 157 | hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL, symlen); |
Jiri Olsa | b34b3bf | 2015-10-05 20:06:08 +0200 | [diff] [blame] | 158 | hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL, symlen); |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 159 | hists__set_unres_dso_col_len(hists, HISTC_MEM_DADDR_DSO); |
| 160 | } |
| 161 | |
Arnaldo Carvalho de Melo | a4978ec | 2015-09-09 12:14:00 -0300 | [diff] [blame] | 162 | hists__new_col_len(hists, HISTC_CPU, 3); |
Kan Liang | 2e7ea3a | 2015-09-04 10:45:43 -0400 | [diff] [blame] | 163 | hists__new_col_len(hists, HISTC_SOCKET, 6); |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 164 | hists__new_col_len(hists, HISTC_MEM_LOCKED, 6); |
| 165 | hists__new_col_len(hists, HISTC_MEM_TLB, 22); |
| 166 | hists__new_col_len(hists, HISTC_MEM_SNOOP, 12); |
| 167 | hists__new_col_len(hists, HISTC_MEM_LVL, 21 + 3); |
| 168 | hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12); |
| 169 | hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12); |
Andi Kleen | 475eeab | 2013-09-20 07:40:43 -0700 | [diff] [blame] | 170 | |
Arnaldo Carvalho de Melo | e8e6d37 | 2015-08-10 16:53:54 -0300 | [diff] [blame] | 171 | if (h->srcline) |
| 172 | hists__new_col_len(hists, HISTC_SRCLINE, strlen(h->srcline)); |
| 173 | |
Andi Kleen | 31191a8 | 2015-08-07 15:54:24 -0700 | [diff] [blame] | 174 | if (h->srcfile) |
| 175 | hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile)); |
| 176 | |
Andi Kleen | 475eeab | 2013-09-20 07:40:43 -0700 | [diff] [blame] | 177 | if (h->transaction) |
| 178 | hists__new_col_len(hists, HISTC_TRANSACTION, |
| 179 | hist_entry__transaction_len()); |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 180 | } |
| 181 | |
Namhyung Kim | 7ccf4f9 | 2012-08-20 13:52:05 +0900 | [diff] [blame] | 182 | void hists__output_recalc_col_len(struct hists *hists, int max_rows) |
| 183 | { |
| 184 | struct rb_node *next = rb_first(&hists->entries); |
| 185 | struct hist_entry *n; |
| 186 | int row = 0; |
| 187 | |
| 188 | hists__reset_col_len(hists); |
| 189 | |
| 190 | while (next && row++ < max_rows) { |
| 191 | n = rb_entry(next, struct hist_entry, rb_node); |
| 192 | if (!n->filtered) |
| 193 | hists__calc_col_len(hists, n); |
| 194 | next = rb_next(&n->rb_node); |
| 195 | } |
| 196 | } |
| 197 | |
Namhyung Kim | f39056f | 2014-01-14 14:25:37 +0900 | [diff] [blame] | 198 | static void he_stat__add_cpumode_period(struct he_stat *he_stat, |
| 199 | unsigned int cpumode, u64 period) |
Zhang, Yanmin | a1645ce | 2010-04-19 13:32:50 +0800 | [diff] [blame] | 200 | { |
Arnaldo Carvalho de Melo | 28e2a10 | 2010-05-09 13:02:23 -0300 | [diff] [blame] | 201 | switch (cpumode) { |
Zhang, Yanmin | a1645ce | 2010-04-19 13:32:50 +0800 | [diff] [blame] | 202 | case PERF_RECORD_MISC_KERNEL: |
Namhyung Kim | f39056f | 2014-01-14 14:25:37 +0900 | [diff] [blame] | 203 | he_stat->period_sys += period; |
Zhang, Yanmin | a1645ce | 2010-04-19 13:32:50 +0800 | [diff] [blame] | 204 | break; |
| 205 | case PERF_RECORD_MISC_USER: |
Namhyung Kim | f39056f | 2014-01-14 14:25:37 +0900 | [diff] [blame] | 206 | he_stat->period_us += period; |
Zhang, Yanmin | a1645ce | 2010-04-19 13:32:50 +0800 | [diff] [blame] | 207 | break; |
| 208 | case PERF_RECORD_MISC_GUEST_KERNEL: |
Namhyung Kim | f39056f | 2014-01-14 14:25:37 +0900 | [diff] [blame] | 209 | he_stat->period_guest_sys += period; |
Zhang, Yanmin | a1645ce | 2010-04-19 13:32:50 +0800 | [diff] [blame] | 210 | break; |
| 211 | case PERF_RECORD_MISC_GUEST_USER: |
Namhyung Kim | f39056f | 2014-01-14 14:25:37 +0900 | [diff] [blame] | 212 | he_stat->period_guest_us += period; |
Zhang, Yanmin | a1645ce | 2010-04-19 13:32:50 +0800 | [diff] [blame] | 213 | break; |
| 214 | default: |
| 215 | break; |
| 216 | } |
| 217 | } |
| 218 | |
Andi Kleen | 0548429 | 2013-01-24 16:10:29 +0100 | [diff] [blame] | 219 | static void he_stat__add_period(struct he_stat *he_stat, u64 period, |
| 220 | u64 weight) |
Namhyung Kim | 139c081 | 2012-10-04 21:49:43 +0900 | [diff] [blame] | 221 | { |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 222 | |
Namhyung Kim | 139c081 | 2012-10-04 21:49:43 +0900 | [diff] [blame] | 223 | he_stat->period += period; |
Andi Kleen | 0548429 | 2013-01-24 16:10:29 +0100 | [diff] [blame] | 224 | he_stat->weight += weight; |
Namhyung Kim | 139c081 | 2012-10-04 21:49:43 +0900 | [diff] [blame] | 225 | he_stat->nr_events += 1; |
| 226 | } |
| 227 | |
| 228 | static void he_stat__add_stat(struct he_stat *dest, struct he_stat *src) |
| 229 | { |
| 230 | dest->period += src->period; |
| 231 | dest->period_sys += src->period_sys; |
| 232 | dest->period_us += src->period_us; |
| 233 | dest->period_guest_sys += src->period_guest_sys; |
| 234 | dest->period_guest_us += src->period_guest_us; |
| 235 | dest->nr_events += src->nr_events; |
Andi Kleen | 0548429 | 2013-01-24 16:10:29 +0100 | [diff] [blame] | 236 | dest->weight += src->weight; |
Namhyung Kim | 139c081 | 2012-10-04 21:49:43 +0900 | [diff] [blame] | 237 | } |
| 238 | |
Namhyung Kim | f39056f | 2014-01-14 14:25:37 +0900 | [diff] [blame] | 239 | static void he_stat__decay(struct he_stat *he_stat) |
Arnaldo Carvalho de Melo | ab81f3f | 2011-10-05 19:16:15 -0300 | [diff] [blame] | 240 | { |
Namhyung Kim | f39056f | 2014-01-14 14:25:37 +0900 | [diff] [blame] | 241 | he_stat->period = (he_stat->period * 7) / 8; |
| 242 | he_stat->nr_events = (he_stat->nr_events * 7) / 8; |
Andi Kleen | 0548429 | 2013-01-24 16:10:29 +0100 | [diff] [blame] | 243 | /* XXX need decay for weight too? */ |
Arnaldo Carvalho de Melo | ab81f3f | 2011-10-05 19:16:15 -0300 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | static bool hists__decay_entry(struct hists *hists, struct hist_entry *he) |
| 247 | { |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 248 | u64 prev_period = he->stat.period; |
Namhyung Kim | 3186b68 | 2014-04-22 13:44:23 +0900 | [diff] [blame] | 249 | u64 diff; |
Arnaldo Carvalho de Melo | c64550c | 2011-10-20 06:45:44 -0200 | [diff] [blame] | 250 | |
| 251 | if (prev_period == 0) |
Arnaldo Carvalho de Melo | df71d95 | 2011-10-13 08:01:33 -0300 | [diff] [blame] | 252 | return true; |
Arnaldo Carvalho de Melo | c64550c | 2011-10-20 06:45:44 -0200 | [diff] [blame] | 253 | |
Namhyung Kim | f39056f | 2014-01-14 14:25:37 +0900 | [diff] [blame] | 254 | he_stat__decay(&he->stat); |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 255 | if (symbol_conf.cumulate_callchain) |
| 256 | he_stat__decay(he->stat_acc); |
Namhyung Kim | 42b276a | 2016-01-05 12:06:00 +0900 | [diff] [blame] | 257 | decay_callchain(he->callchain); |
Arnaldo Carvalho de Melo | c64550c | 2011-10-20 06:45:44 -0200 | [diff] [blame] | 258 | |
Namhyung Kim | 3186b68 | 2014-04-22 13:44:23 +0900 | [diff] [blame] | 259 | diff = prev_period - he->stat.period; |
| 260 | |
| 261 | hists->stats.total_period -= diff; |
Arnaldo Carvalho de Melo | c64550c | 2011-10-20 06:45:44 -0200 | [diff] [blame] | 262 | if (!he->filtered) |
Namhyung Kim | 3186b68 | 2014-04-22 13:44:23 +0900 | [diff] [blame] | 263 | hists->stats.total_non_filtered_period -= diff; |
Arnaldo Carvalho de Melo | c64550c | 2011-10-20 06:45:44 -0200 | [diff] [blame] | 264 | |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 265 | return he->stat.period == 0; |
Arnaldo Carvalho de Melo | ab81f3f | 2011-10-05 19:16:15 -0300 | [diff] [blame] | 266 | } |
| 267 | |
Arnaldo Carvalho de Melo | 956b65e | 2014-12-19 12:41:28 -0300 | [diff] [blame] | 268 | static void hists__delete_entry(struct hists *hists, struct hist_entry *he) |
| 269 | { |
| 270 | rb_erase(&he->rb_node, &hists->entries); |
| 271 | |
| 272 | if (sort__need_collapse) |
| 273 | rb_erase(&he->rb_node_in, &hists->entries_collapsed); |
Namhyung Kim | 61fa0e9 | 2015-12-10 16:53:20 +0900 | [diff] [blame] | 274 | else |
| 275 | rb_erase(&he->rb_node_in, hists->entries_in); |
Arnaldo Carvalho de Melo | 956b65e | 2014-12-19 12:41:28 -0300 | [diff] [blame] | 276 | |
| 277 | --hists->nr_entries; |
| 278 | if (!he->filtered) |
| 279 | --hists->nr_non_filtered_entries; |
| 280 | |
| 281 | hist_entry__delete(he); |
| 282 | } |
| 283 | |
Namhyung Kim | 3a5714f | 2013-05-14 11:09:01 +0900 | [diff] [blame] | 284 | void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel) |
Arnaldo Carvalho de Melo | ab81f3f | 2011-10-05 19:16:15 -0300 | [diff] [blame] | 285 | { |
| 286 | struct rb_node *next = rb_first(&hists->entries); |
| 287 | struct hist_entry *n; |
| 288 | |
| 289 | while (next) { |
| 290 | n = rb_entry(next, struct hist_entry, rb_node); |
| 291 | next = rb_next(&n->rb_node); |
Arnaldo Carvalho de Melo | b079d4e | 2011-10-17 09:05:04 -0200 | [diff] [blame] | 292 | if (((zap_user && n->level == '.') || |
| 293 | (zap_kernel && n->level != '.') || |
Arnaldo Carvalho de Melo | 4c47f4f | 2015-03-17 17:18:58 -0300 | [diff] [blame] | 294 | hists__decay_entry(hists, n))) { |
Arnaldo Carvalho de Melo | 956b65e | 2014-12-19 12:41:28 -0300 | [diff] [blame] | 295 | hists__delete_entry(hists, n); |
Arnaldo Carvalho de Melo | ab81f3f | 2011-10-05 19:16:15 -0300 | [diff] [blame] | 296 | } |
| 297 | } |
| 298 | } |
| 299 | |
Namhyung Kim | 701937b | 2014-08-12 17:16:05 +0900 | [diff] [blame] | 300 | void hists__delete_entries(struct hists *hists) |
| 301 | { |
| 302 | struct rb_node *next = rb_first(&hists->entries); |
| 303 | struct hist_entry *n; |
| 304 | |
| 305 | while (next) { |
| 306 | n = rb_entry(next, struct hist_entry, rb_node); |
| 307 | next = rb_next(&n->rb_node); |
| 308 | |
Arnaldo Carvalho de Melo | 956b65e | 2014-12-19 12:41:28 -0300 | [diff] [blame] | 309 | hists__delete_entry(hists, n); |
Namhyung Kim | 701937b | 2014-08-12 17:16:05 +0900 | [diff] [blame] | 310 | } |
| 311 | } |
| 312 | |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 313 | /* |
Arnaldo Carvalho de Melo | c82ee82 | 2010-05-14 14:19:35 -0300 | [diff] [blame] | 314 | * histogram, sorted on item, collects periods |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 315 | */ |
| 316 | |
Namhyung Kim | a0b51af | 2012-09-11 13:34:27 +0900 | [diff] [blame] | 317 | static struct hist_entry *hist_entry__new(struct hist_entry *template, |
| 318 | bool sample_self) |
Arnaldo Carvalho de Melo | 28e2a10 | 2010-05-09 13:02:23 -0300 | [diff] [blame] | 319 | { |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 320 | size_t callchain_size = 0; |
| 321 | struct hist_entry *he; |
| 322 | |
Namhyung Kim | 82aa019 | 2014-12-22 13:44:14 +0900 | [diff] [blame] | 323 | if (symbol_conf.use_callchain) |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 324 | callchain_size = sizeof(struct callchain_root); |
| 325 | |
| 326 | he = zalloc(sizeof(*he) + callchain_size); |
Arnaldo Carvalho de Melo | 28e2a10 | 2010-05-09 13:02:23 -0300 | [diff] [blame] | 327 | |
Arnaldo Carvalho de Melo | 12c1427 | 2012-01-04 12:27:03 -0200 | [diff] [blame] | 328 | if (he != NULL) { |
| 329 | *he = *template; |
Namhyung Kim | c4b3535 | 2012-10-04 21:49:42 +0900 | [diff] [blame] | 330 | |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 331 | if (symbol_conf.cumulate_callchain) { |
| 332 | he->stat_acc = malloc(sizeof(he->stat)); |
| 333 | if (he->stat_acc == NULL) { |
| 334 | free(he); |
| 335 | return NULL; |
| 336 | } |
| 337 | memcpy(he->stat_acc, &he->stat, sizeof(he->stat)); |
Namhyung Kim | a0b51af | 2012-09-11 13:34:27 +0900 | [diff] [blame] | 338 | if (!sample_self) |
| 339 | memset(&he->stat, 0, sizeof(he->stat)); |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 340 | } |
| 341 | |
Arnaldo Carvalho de Melo | 5c24b67 | 2015-06-15 23:29:51 -0300 | [diff] [blame] | 342 | map__get(he->ms.map); |
Stephane Eranian | 3cf0cb1 | 2013-01-14 15:02:45 +0100 | [diff] [blame] | 343 | |
| 344 | if (he->branch_info) { |
Namhyung Kim | 26353a6 | 2013-04-01 20:35:17 +0900 | [diff] [blame] | 345 | /* |
| 346 | * This branch info is (a part of) allocated from |
Arnaldo Carvalho de Melo | 644f2df | 2014-01-22 13:15:36 -0300 | [diff] [blame] | 347 | * sample__resolve_bstack() and will be freed after |
Namhyung Kim | 26353a6 | 2013-04-01 20:35:17 +0900 | [diff] [blame] | 348 | * adding new entries. So we need to save a copy. |
| 349 | */ |
| 350 | he->branch_info = malloc(sizeof(*he->branch_info)); |
| 351 | if (he->branch_info == NULL) { |
Arnaldo Carvalho de Melo | 5c24b67 | 2015-06-15 23:29:51 -0300 | [diff] [blame] | 352 | map__zput(he->ms.map); |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 353 | free(he->stat_acc); |
Namhyung Kim | 26353a6 | 2013-04-01 20:35:17 +0900 | [diff] [blame] | 354 | free(he); |
| 355 | return NULL; |
| 356 | } |
| 357 | |
| 358 | memcpy(he->branch_info, template->branch_info, |
| 359 | sizeof(*he->branch_info)); |
| 360 | |
Arnaldo Carvalho de Melo | 5c24b67 | 2015-06-15 23:29:51 -0300 | [diff] [blame] | 361 | map__get(he->branch_info->from.map); |
| 362 | map__get(he->branch_info->to.map); |
Stephane Eranian | 3cf0cb1 | 2013-01-14 15:02:45 +0100 | [diff] [blame] | 363 | } |
| 364 | |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 365 | if (he->mem_info) { |
Arnaldo Carvalho de Melo | 5c24b67 | 2015-06-15 23:29:51 -0300 | [diff] [blame] | 366 | map__get(he->mem_info->iaddr.map); |
| 367 | map__get(he->mem_info->daddr.map); |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 368 | } |
| 369 | |
Arnaldo Carvalho de Melo | 28e2a10 | 2010-05-09 13:02:23 -0300 | [diff] [blame] | 370 | if (symbol_conf.use_callchain) |
Arnaldo Carvalho de Melo | 12c1427 | 2012-01-04 12:27:03 -0200 | [diff] [blame] | 371 | callchain_init(he->callchain); |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 372 | |
Namhyung Kim | 7239283 | 2015-12-24 11:16:17 +0900 | [diff] [blame] | 373 | if (he->raw_data) { |
| 374 | he->raw_data = memdup(he->raw_data, he->raw_size); |
| 375 | |
| 376 | if (he->raw_data == NULL) { |
| 377 | map__put(he->ms.map); |
| 378 | if (he->branch_info) { |
| 379 | map__put(he->branch_info->from.map); |
| 380 | map__put(he->branch_info->to.map); |
| 381 | free(he->branch_info); |
| 382 | } |
| 383 | if (he->mem_info) { |
| 384 | map__put(he->mem_info->iaddr.map); |
| 385 | map__put(he->mem_info->daddr.map); |
| 386 | } |
| 387 | free(he->stat_acc); |
| 388 | free(he); |
| 389 | return NULL; |
| 390 | } |
| 391 | } |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 392 | INIT_LIST_HEAD(&he->pairs.node); |
Arnaldo Carvalho de Melo | f3b623b | 2015-03-02 22:21:35 -0300 | [diff] [blame] | 393 | thread__get(he->thread); |
Arnaldo Carvalho de Melo | 28e2a10 | 2010-05-09 13:02:23 -0300 | [diff] [blame] | 394 | } |
| 395 | |
Arnaldo Carvalho de Melo | 12c1427 | 2012-01-04 12:27:03 -0200 | [diff] [blame] | 396 | return he; |
Arnaldo Carvalho de Melo | 28e2a10 | 2010-05-09 13:02:23 -0300 | [diff] [blame] | 397 | } |
| 398 | |
Arnaldo Carvalho de Melo | 7a007ca | 2010-07-21 09:19:41 -0300 | [diff] [blame] | 399 | static u8 symbol__parent_filter(const struct symbol *parent) |
| 400 | { |
| 401 | if (symbol_conf.exclude_other && parent == NULL) |
| 402 | return 1 << HIST_FILTER__PARENT; |
| 403 | return 0; |
| 404 | } |
| 405 | |
Arnaldo Carvalho de Melo | e7e0efc | 2015-05-19 11:31:22 -0300 | [diff] [blame] | 406 | static struct hist_entry *hists__findnew_entry(struct hists *hists, |
| 407 | struct hist_entry *entry, |
| 408 | struct addr_location *al, |
| 409 | bool sample_self) |
Arnaldo Carvalho de Melo | 9735abf | 2009-10-03 10:42:45 -0300 | [diff] [blame] | 410 | { |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 411 | struct rb_node **p; |
Arnaldo Carvalho de Melo | 9735abf | 2009-10-03 10:42:45 -0300 | [diff] [blame] | 412 | struct rb_node *parent = NULL; |
| 413 | struct hist_entry *he; |
Andi Kleen | 354cc40 | 2013-10-01 07:22:15 -0700 | [diff] [blame] | 414 | int64_t cmp; |
Namhyung Kim | f1cbf78 | 2013-12-18 14:21:11 +0900 | [diff] [blame] | 415 | u64 period = entry->stat.period; |
| 416 | u64 weight = entry->stat.weight; |
Arnaldo Carvalho de Melo | 9735abf | 2009-10-03 10:42:45 -0300 | [diff] [blame] | 417 | |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 418 | p = &hists->entries_in->rb_node; |
| 419 | |
Arnaldo Carvalho de Melo | 9735abf | 2009-10-03 10:42:45 -0300 | [diff] [blame] | 420 | while (*p != NULL) { |
| 421 | parent = *p; |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 422 | he = rb_entry(parent, struct hist_entry, rb_node_in); |
Arnaldo Carvalho de Melo | 9735abf | 2009-10-03 10:42:45 -0300 | [diff] [blame] | 423 | |
Namhyung Kim | 9afcf93 | 2012-12-10 17:29:54 +0900 | [diff] [blame] | 424 | /* |
| 425 | * Make sure that it receives arguments in a same order as |
| 426 | * hist_entry__collapse() so that we can use an appropriate |
| 427 | * function when searching an entry regardless which sort |
| 428 | * keys were used. |
| 429 | */ |
| 430 | cmp = hist_entry__cmp(he, entry); |
Arnaldo Carvalho de Melo | 9735abf | 2009-10-03 10:42:45 -0300 | [diff] [blame] | 431 | |
| 432 | if (!cmp) { |
Namhyung Kim | a0b51af | 2012-09-11 13:34:27 +0900 | [diff] [blame] | 433 | if (sample_self) |
| 434 | he_stat__add_period(&he->stat, period, weight); |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 435 | if (symbol_conf.cumulate_callchain) |
| 436 | he_stat__add_period(he->stat_acc, period, weight); |
David Miller | 63fa471 | 2012-03-27 03:14:18 -0400 | [diff] [blame] | 437 | |
Namhyung Kim | ceb2acb | 2013-04-01 20:35:18 +0900 | [diff] [blame] | 438 | /* |
Arnaldo Carvalho de Melo | e80faac | 2014-01-22 13:05:06 -0300 | [diff] [blame] | 439 | * This mem info was allocated from sample__resolve_mem |
Namhyung Kim | ceb2acb | 2013-04-01 20:35:18 +0900 | [diff] [blame] | 440 | * and will not be used anymore. |
| 441 | */ |
Arnaldo Carvalho de Melo | 74cf249 | 2013-12-27 16:55:14 -0300 | [diff] [blame] | 442 | zfree(&entry->mem_info); |
Namhyung Kim | ceb2acb | 2013-04-01 20:35:18 +0900 | [diff] [blame] | 443 | |
David Miller | 63fa471 | 2012-03-27 03:14:18 -0400 | [diff] [blame] | 444 | /* If the map of an existing hist_entry has |
| 445 | * become out-of-date due to an exec() or |
| 446 | * similar, update it. Otherwise we will |
| 447 | * mis-adjust symbol addresses when computing |
| 448 | * the history counter to increment. |
| 449 | */ |
| 450 | if (he->ms.map != entry->ms.map) { |
Arnaldo Carvalho de Melo | 5c24b67 | 2015-06-15 23:29:51 -0300 | [diff] [blame] | 451 | map__put(he->ms.map); |
| 452 | he->ms.map = map__get(entry->ms.map); |
David Miller | 63fa471 | 2012-03-27 03:14:18 -0400 | [diff] [blame] | 453 | } |
Arnaldo Carvalho de Melo | 28e2a10 | 2010-05-09 13:02:23 -0300 | [diff] [blame] | 454 | goto out; |
Arnaldo Carvalho de Melo | 9735abf | 2009-10-03 10:42:45 -0300 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | if (cmp < 0) |
| 458 | p = &(*p)->rb_left; |
| 459 | else |
| 460 | p = &(*p)->rb_right; |
| 461 | } |
| 462 | |
Namhyung Kim | a0b51af | 2012-09-11 13:34:27 +0900 | [diff] [blame] | 463 | he = hist_entry__new(entry, sample_self); |
Arnaldo Carvalho de Melo | 9735abf | 2009-10-03 10:42:45 -0300 | [diff] [blame] | 464 | if (!he) |
Namhyung Kim | 27a0dcb | 2013-05-14 11:09:02 +0900 | [diff] [blame] | 465 | return NULL; |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 466 | |
Namhyung Kim | 590cd34 | 2014-12-22 13:44:09 +0900 | [diff] [blame] | 467 | hists->nr_entries++; |
| 468 | |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 469 | rb_link_node(&he->rb_node_in, parent, p); |
| 470 | rb_insert_color(&he->rb_node_in, hists->entries_in); |
Arnaldo Carvalho de Melo | 28e2a10 | 2010-05-09 13:02:23 -0300 | [diff] [blame] | 471 | out: |
Namhyung Kim | a0b51af | 2012-09-11 13:34:27 +0900 | [diff] [blame] | 472 | if (sample_self) |
| 473 | he_stat__add_cpumode_period(&he->stat, al->cpumode, period); |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 474 | if (symbol_conf.cumulate_callchain) |
| 475 | he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period); |
Arnaldo Carvalho de Melo | 9735abf | 2009-10-03 10:42:45 -0300 | [diff] [blame] | 476 | return he; |
| 477 | } |
| 478 | |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 479 | struct hist_entry *__hists__add_entry(struct hists *hists, |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 480 | struct addr_location *al, |
Namhyung Kim | 41a4e6e | 2013-10-31 15:56:03 +0900 | [diff] [blame] | 481 | struct symbol *sym_parent, |
| 482 | struct branch_info *bi, |
| 483 | struct mem_info *mi, |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 484 | struct perf_sample *sample, |
Namhyung Kim | a0b51af | 2012-09-11 13:34:27 +0900 | [diff] [blame] | 485 | bool sample_self) |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 486 | { |
| 487 | struct hist_entry entry = { |
| 488 | .thread = al->thread, |
Namhyung Kim | 4dfced3 | 2013-09-13 16:28:57 +0900 | [diff] [blame] | 489 | .comm = thread__comm(al->thread), |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 490 | .ms = { |
| 491 | .map = al->map, |
| 492 | .sym = al->sym, |
| 493 | }, |
Kan Liang | 0c4c4de | 2015-09-04 10:45:42 -0400 | [diff] [blame] | 494 | .socket = al->socket, |
Don Zickus | 7365be5 | 2014-05-27 12:28:05 -0400 | [diff] [blame] | 495 | .cpu = al->cpu, |
| 496 | .cpumode = al->cpumode, |
| 497 | .ip = al->addr, |
| 498 | .level = al->level, |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 499 | .stat = { |
Namhyung Kim | c4b3535 | 2012-10-04 21:49:42 +0900 | [diff] [blame] | 500 | .nr_events = 1, |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 501 | .period = sample->period, |
| 502 | .weight = sample->weight, |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 503 | }, |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 504 | .parent = sym_parent, |
Namhyung Kim | 2c86c7c | 2014-03-17 18:18:54 -0300 | [diff] [blame] | 505 | .filtered = symbol__parent_filter(sym_parent) | al->filtered, |
Arnaldo Carvalho de Melo | c824c43 | 2013-10-22 19:01:31 -0300 | [diff] [blame] | 506 | .hists = hists, |
Namhyung Kim | 41a4e6e | 2013-10-31 15:56:03 +0900 | [diff] [blame] | 507 | .branch_info = bi, |
| 508 | .mem_info = mi, |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 509 | .transaction = sample->transaction, |
Namhyung Kim | 7239283 | 2015-12-24 11:16:17 +0900 | [diff] [blame] | 510 | .raw_data = sample->raw_data, |
| 511 | .raw_size = sample->raw_size, |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 512 | }; |
| 513 | |
Arnaldo Carvalho de Melo | e7e0efc | 2015-05-19 11:31:22 -0300 | [diff] [blame] | 514 | return hists__findnew_entry(hists, &entry, al, sample_self); |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 515 | } |
| 516 | |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 517 | static int |
| 518 | iter_next_nop_entry(struct hist_entry_iter *iter __maybe_unused, |
| 519 | struct addr_location *al __maybe_unused) |
| 520 | { |
| 521 | return 0; |
| 522 | } |
| 523 | |
| 524 | static int |
| 525 | iter_add_next_nop_entry(struct hist_entry_iter *iter __maybe_unused, |
| 526 | struct addr_location *al __maybe_unused) |
| 527 | { |
| 528 | return 0; |
| 529 | } |
| 530 | |
| 531 | static int |
| 532 | iter_prepare_mem_entry(struct hist_entry_iter *iter, struct addr_location *al) |
| 533 | { |
| 534 | struct perf_sample *sample = iter->sample; |
| 535 | struct mem_info *mi; |
| 536 | |
| 537 | mi = sample__resolve_mem(sample, al); |
| 538 | if (mi == NULL) |
| 539 | return -ENOMEM; |
| 540 | |
| 541 | iter->priv = mi; |
| 542 | return 0; |
| 543 | } |
| 544 | |
| 545 | static int |
| 546 | iter_add_single_mem_entry(struct hist_entry_iter *iter, struct addr_location *al) |
| 547 | { |
| 548 | u64 cost; |
| 549 | struct mem_info *mi = iter->priv; |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 550 | struct hists *hists = evsel__hists(iter->evsel); |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 551 | struct perf_sample *sample = iter->sample; |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 552 | struct hist_entry *he; |
| 553 | |
| 554 | if (mi == NULL) |
| 555 | return -EINVAL; |
| 556 | |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 557 | cost = sample->weight; |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 558 | if (!cost) |
| 559 | cost = 1; |
| 560 | |
| 561 | /* |
| 562 | * must pass period=weight in order to get the correct |
| 563 | * sorting from hists__collapse_resort() which is solely |
| 564 | * based on periods. We want sorting be done on nr_events * weight |
| 565 | * and this is indirectly achieved by passing period=weight here |
| 566 | * and the he_stat__add_period() function. |
| 567 | */ |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 568 | sample->period = cost; |
| 569 | |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 570 | he = __hists__add_entry(hists, al, iter->parent, NULL, mi, |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 571 | sample, true); |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 572 | if (!he) |
| 573 | return -ENOMEM; |
| 574 | |
| 575 | iter->he = he; |
| 576 | return 0; |
| 577 | } |
| 578 | |
| 579 | static int |
Namhyung Kim | 9d3c02d | 2014-01-07 17:02:25 +0900 | [diff] [blame] | 580 | iter_finish_mem_entry(struct hist_entry_iter *iter, |
| 581 | struct addr_location *al __maybe_unused) |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 582 | { |
| 583 | struct perf_evsel *evsel = iter->evsel; |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 584 | struct hists *hists = evsel__hists(evsel); |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 585 | struct hist_entry *he = iter->he; |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 586 | int err = -EINVAL; |
| 587 | |
| 588 | if (he == NULL) |
| 589 | goto out; |
| 590 | |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 591 | hists__inc_nr_samples(hists, he->filtered); |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 592 | |
| 593 | err = hist_entry__append_callchain(he, iter->sample); |
| 594 | |
| 595 | out: |
| 596 | /* |
Arnaldo Carvalho de Melo | e7e0efc | 2015-05-19 11:31:22 -0300 | [diff] [blame] | 597 | * We don't need to free iter->priv (mem_info) here since the mem info |
| 598 | * was either already freed in hists__findnew_entry() or passed to a |
| 599 | * new hist entry by hist_entry__new(). |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 600 | */ |
| 601 | iter->priv = NULL; |
| 602 | |
| 603 | iter->he = NULL; |
| 604 | return err; |
| 605 | } |
| 606 | |
| 607 | static int |
| 608 | iter_prepare_branch_entry(struct hist_entry_iter *iter, struct addr_location *al) |
| 609 | { |
| 610 | struct branch_info *bi; |
| 611 | struct perf_sample *sample = iter->sample; |
| 612 | |
| 613 | bi = sample__resolve_bstack(sample, al); |
| 614 | if (!bi) |
| 615 | return -ENOMEM; |
| 616 | |
| 617 | iter->curr = 0; |
| 618 | iter->total = sample->branch_stack->nr; |
| 619 | |
| 620 | iter->priv = bi; |
| 621 | return 0; |
| 622 | } |
| 623 | |
| 624 | static int |
| 625 | iter_add_single_branch_entry(struct hist_entry_iter *iter __maybe_unused, |
| 626 | struct addr_location *al __maybe_unused) |
| 627 | { |
Namhyung Kim | 9d3c02d | 2014-01-07 17:02:25 +0900 | [diff] [blame] | 628 | /* to avoid calling callback function */ |
| 629 | iter->he = NULL; |
| 630 | |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 631 | return 0; |
| 632 | } |
| 633 | |
| 634 | static int |
| 635 | iter_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al) |
| 636 | { |
| 637 | struct branch_info *bi = iter->priv; |
| 638 | int i = iter->curr; |
| 639 | |
| 640 | if (bi == NULL) |
| 641 | return 0; |
| 642 | |
| 643 | if (iter->curr >= iter->total) |
| 644 | return 0; |
| 645 | |
| 646 | al->map = bi[i].to.map; |
| 647 | al->sym = bi[i].to.sym; |
| 648 | al->addr = bi[i].to.addr; |
| 649 | return 1; |
| 650 | } |
| 651 | |
| 652 | static int |
| 653 | iter_add_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al) |
| 654 | { |
Namhyung Kim | 9d3c02d | 2014-01-07 17:02:25 +0900 | [diff] [blame] | 655 | struct branch_info *bi; |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 656 | struct perf_evsel *evsel = iter->evsel; |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 657 | struct hists *hists = evsel__hists(evsel); |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 658 | struct perf_sample *sample = iter->sample; |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 659 | struct hist_entry *he = NULL; |
| 660 | int i = iter->curr; |
| 661 | int err = 0; |
| 662 | |
| 663 | bi = iter->priv; |
| 664 | |
| 665 | if (iter->hide_unresolved && !(bi[i].from.sym && bi[i].to.sym)) |
| 666 | goto out; |
| 667 | |
| 668 | /* |
| 669 | * The report shows the percentage of total branches captured |
| 670 | * and not events sampled. Thus we use a pseudo period of 1. |
| 671 | */ |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 672 | sample->period = 1; |
| 673 | sample->weight = bi->flags.cycles ? bi->flags.cycles : 1; |
| 674 | |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 675 | he = __hists__add_entry(hists, al, iter->parent, &bi[i], NULL, |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 676 | sample, true); |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 677 | if (he == NULL) |
| 678 | return -ENOMEM; |
| 679 | |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 680 | hists__inc_nr_samples(hists, he->filtered); |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 681 | |
| 682 | out: |
| 683 | iter->he = he; |
| 684 | iter->curr++; |
| 685 | return err; |
| 686 | } |
| 687 | |
| 688 | static int |
| 689 | iter_finish_branch_entry(struct hist_entry_iter *iter, |
| 690 | struct addr_location *al __maybe_unused) |
| 691 | { |
| 692 | zfree(&iter->priv); |
| 693 | iter->he = NULL; |
| 694 | |
| 695 | return iter->curr >= iter->total ? 0 : -1; |
| 696 | } |
| 697 | |
| 698 | static int |
| 699 | iter_prepare_normal_entry(struct hist_entry_iter *iter __maybe_unused, |
| 700 | struct addr_location *al __maybe_unused) |
| 701 | { |
| 702 | return 0; |
| 703 | } |
| 704 | |
| 705 | static int |
| 706 | iter_add_single_normal_entry(struct hist_entry_iter *iter, struct addr_location *al) |
| 707 | { |
| 708 | struct perf_evsel *evsel = iter->evsel; |
| 709 | struct perf_sample *sample = iter->sample; |
| 710 | struct hist_entry *he; |
| 711 | |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 712 | he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL, |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 713 | sample, true); |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 714 | if (he == NULL) |
| 715 | return -ENOMEM; |
| 716 | |
| 717 | iter->he = he; |
| 718 | return 0; |
| 719 | } |
| 720 | |
| 721 | static int |
Namhyung Kim | 9d3c02d | 2014-01-07 17:02:25 +0900 | [diff] [blame] | 722 | iter_finish_normal_entry(struct hist_entry_iter *iter, |
| 723 | struct addr_location *al __maybe_unused) |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 724 | { |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 725 | struct hist_entry *he = iter->he; |
| 726 | struct perf_evsel *evsel = iter->evsel; |
| 727 | struct perf_sample *sample = iter->sample; |
| 728 | |
| 729 | if (he == NULL) |
| 730 | return 0; |
| 731 | |
| 732 | iter->he = NULL; |
| 733 | |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 734 | hists__inc_nr_samples(evsel__hists(evsel), he->filtered); |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 735 | |
| 736 | return hist_entry__append_callchain(he, sample); |
| 737 | } |
| 738 | |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 739 | static int |
Adrian Hunter | 96b40f3 | 2015-09-25 16:15:47 +0300 | [diff] [blame] | 740 | iter_prepare_cumulative_entry(struct hist_entry_iter *iter, |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 741 | struct addr_location *al __maybe_unused) |
| 742 | { |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 743 | struct hist_entry **he_cache; |
| 744 | |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 745 | callchain_cursor_commit(&callchain_cursor); |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 746 | |
| 747 | /* |
| 748 | * This is for detecting cycles or recursions so that they're |
| 749 | * cumulated only one time to prevent entries more than 100% |
| 750 | * overhead. |
| 751 | */ |
Adrian Hunter | 96b40f3 | 2015-09-25 16:15:47 +0300 | [diff] [blame] | 752 | he_cache = malloc(sizeof(*he_cache) * (iter->max_stack + 1)); |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 753 | if (he_cache == NULL) |
| 754 | return -ENOMEM; |
| 755 | |
| 756 | iter->priv = he_cache; |
| 757 | iter->curr = 0; |
| 758 | |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 759 | return 0; |
| 760 | } |
| 761 | |
| 762 | static int |
| 763 | iter_add_single_cumulative_entry(struct hist_entry_iter *iter, |
| 764 | struct addr_location *al) |
| 765 | { |
| 766 | struct perf_evsel *evsel = iter->evsel; |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 767 | struct hists *hists = evsel__hists(evsel); |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 768 | struct perf_sample *sample = iter->sample; |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 769 | struct hist_entry **he_cache = iter->priv; |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 770 | struct hist_entry *he; |
| 771 | int err = 0; |
| 772 | |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 773 | he = __hists__add_entry(hists, al, iter->parent, NULL, NULL, |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 774 | sample, true); |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 775 | if (he == NULL) |
| 776 | return -ENOMEM; |
| 777 | |
| 778 | iter->he = he; |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 779 | he_cache[iter->curr++] = he; |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 780 | |
Namhyung Kim | 82aa019 | 2014-12-22 13:44:14 +0900 | [diff] [blame] | 781 | hist_entry__append_callchain(he, sample); |
Namhyung Kim | be7f855 | 2013-12-26 17:44:10 +0900 | [diff] [blame] | 782 | |
| 783 | /* |
| 784 | * We need to re-initialize the cursor since callchain_append() |
| 785 | * advanced the cursor to the end. |
| 786 | */ |
| 787 | callchain_cursor_commit(&callchain_cursor); |
| 788 | |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 789 | hists__inc_nr_samples(hists, he->filtered); |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 790 | |
| 791 | return err; |
| 792 | } |
| 793 | |
| 794 | static int |
| 795 | iter_next_cumulative_entry(struct hist_entry_iter *iter, |
| 796 | struct addr_location *al) |
| 797 | { |
| 798 | struct callchain_cursor_node *node; |
| 799 | |
| 800 | node = callchain_cursor_current(&callchain_cursor); |
| 801 | if (node == NULL) |
| 802 | return 0; |
| 803 | |
Namhyung Kim | c7405d8 | 2013-10-31 13:58:30 +0900 | [diff] [blame] | 804 | return fill_callchain_info(al, node, iter->hide_unresolved); |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 805 | } |
| 806 | |
| 807 | static int |
| 808 | iter_add_next_cumulative_entry(struct hist_entry_iter *iter, |
| 809 | struct addr_location *al) |
| 810 | { |
| 811 | struct perf_evsel *evsel = iter->evsel; |
| 812 | struct perf_sample *sample = iter->sample; |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 813 | struct hist_entry **he_cache = iter->priv; |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 814 | struct hist_entry *he; |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 815 | struct hist_entry he_tmp = { |
Arnaldo Carvalho de Melo | 5cef897 | 2015-08-10 15:45:55 -0300 | [diff] [blame] | 816 | .hists = evsel__hists(evsel), |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 817 | .cpu = al->cpu, |
| 818 | .thread = al->thread, |
| 819 | .comm = thread__comm(al->thread), |
| 820 | .ip = al->addr, |
| 821 | .ms = { |
| 822 | .map = al->map, |
| 823 | .sym = al->sym, |
| 824 | }, |
| 825 | .parent = iter->parent, |
Namhyung Kim | 7239283 | 2015-12-24 11:16:17 +0900 | [diff] [blame] | 826 | .raw_data = sample->raw_data, |
| 827 | .raw_size = sample->raw_size, |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 828 | }; |
| 829 | int i; |
Namhyung Kim | be7f855 | 2013-12-26 17:44:10 +0900 | [diff] [blame] | 830 | struct callchain_cursor cursor; |
| 831 | |
| 832 | callchain_cursor_snapshot(&cursor, &callchain_cursor); |
| 833 | |
| 834 | callchain_cursor_advance(&callchain_cursor); |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 835 | |
| 836 | /* |
| 837 | * Check if there's duplicate entries in the callchain. |
| 838 | * It's possible that it has cycles or recursive calls. |
| 839 | */ |
| 840 | for (i = 0; i < iter->curr; i++) { |
Namhyung Kim | 9d3c02d | 2014-01-07 17:02:25 +0900 | [diff] [blame] | 841 | if (hist_entry__cmp(he_cache[i], &he_tmp) == 0) { |
| 842 | /* to avoid calling callback function */ |
| 843 | iter->he = NULL; |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 844 | return 0; |
Namhyung Kim | 9d3c02d | 2014-01-07 17:02:25 +0900 | [diff] [blame] | 845 | } |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 846 | } |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 847 | |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 848 | he = __hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL, |
Namhyung Kim | fd36f3d | 2015-12-23 02:06:58 +0900 | [diff] [blame] | 849 | sample, false); |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 850 | if (he == NULL) |
| 851 | return -ENOMEM; |
| 852 | |
| 853 | iter->he = he; |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 854 | he_cache[iter->curr++] = he; |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 855 | |
Namhyung Kim | 82aa019 | 2014-12-22 13:44:14 +0900 | [diff] [blame] | 856 | if (symbol_conf.use_callchain) |
| 857 | callchain_append(he->callchain, &cursor, sample->period); |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 858 | return 0; |
| 859 | } |
| 860 | |
| 861 | static int |
| 862 | iter_finish_cumulative_entry(struct hist_entry_iter *iter, |
| 863 | struct addr_location *al __maybe_unused) |
| 864 | { |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 865 | zfree(&iter->priv); |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 866 | iter->he = NULL; |
Namhyung Kim | b4d3c8b | 2013-10-31 10:05:29 +0900 | [diff] [blame] | 867 | |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 868 | return 0; |
| 869 | } |
| 870 | |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 871 | const struct hist_iter_ops hist_iter_mem = { |
| 872 | .prepare_entry = iter_prepare_mem_entry, |
| 873 | .add_single_entry = iter_add_single_mem_entry, |
| 874 | .next_entry = iter_next_nop_entry, |
| 875 | .add_next_entry = iter_add_next_nop_entry, |
| 876 | .finish_entry = iter_finish_mem_entry, |
| 877 | }; |
| 878 | |
| 879 | const struct hist_iter_ops hist_iter_branch = { |
| 880 | .prepare_entry = iter_prepare_branch_entry, |
| 881 | .add_single_entry = iter_add_single_branch_entry, |
| 882 | .next_entry = iter_next_branch_entry, |
| 883 | .add_next_entry = iter_add_next_branch_entry, |
| 884 | .finish_entry = iter_finish_branch_entry, |
| 885 | }; |
| 886 | |
| 887 | const struct hist_iter_ops hist_iter_normal = { |
| 888 | .prepare_entry = iter_prepare_normal_entry, |
| 889 | .add_single_entry = iter_add_single_normal_entry, |
| 890 | .next_entry = iter_next_nop_entry, |
| 891 | .add_next_entry = iter_add_next_nop_entry, |
| 892 | .finish_entry = iter_finish_normal_entry, |
| 893 | }; |
| 894 | |
Namhyung Kim | 7a13aa2 | 2012-09-11 14:13:04 +0900 | [diff] [blame] | 895 | const struct hist_iter_ops hist_iter_cumulative = { |
| 896 | .prepare_entry = iter_prepare_cumulative_entry, |
| 897 | .add_single_entry = iter_add_single_cumulative_entry, |
| 898 | .next_entry = iter_next_cumulative_entry, |
| 899 | .add_next_entry = iter_add_next_cumulative_entry, |
| 900 | .finish_entry = iter_finish_cumulative_entry, |
| 901 | }; |
| 902 | |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 903 | int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al, |
Namhyung Kim | 9d3c02d | 2014-01-07 17:02:25 +0900 | [diff] [blame] | 904 | int max_stack_depth, void *arg) |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 905 | { |
| 906 | int err, err2; |
| 907 | |
Namhyung Kim | 063bd93 | 2015-05-19 17:04:10 +0900 | [diff] [blame] | 908 | err = sample__resolve_callchain(iter->sample, &iter->parent, |
| 909 | iter->evsel, al, max_stack_depth); |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 910 | if (err) |
| 911 | return err; |
| 912 | |
Adrian Hunter | 96b40f3 | 2015-09-25 16:15:47 +0300 | [diff] [blame] | 913 | iter->max_stack = max_stack_depth; |
| 914 | |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 915 | err = iter->ops->prepare_entry(iter, al); |
| 916 | if (err) |
| 917 | goto out; |
| 918 | |
| 919 | err = iter->ops->add_single_entry(iter, al); |
| 920 | if (err) |
| 921 | goto out; |
| 922 | |
Namhyung Kim | 9d3c02d | 2014-01-07 17:02:25 +0900 | [diff] [blame] | 923 | if (iter->he && iter->add_entry_cb) { |
| 924 | err = iter->add_entry_cb(iter, al, true, arg); |
| 925 | if (err) |
| 926 | goto out; |
| 927 | } |
| 928 | |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 929 | while (iter->ops->next_entry(iter, al)) { |
| 930 | err = iter->ops->add_next_entry(iter, al); |
| 931 | if (err) |
| 932 | break; |
Namhyung Kim | 9d3c02d | 2014-01-07 17:02:25 +0900 | [diff] [blame] | 933 | |
| 934 | if (iter->he && iter->add_entry_cb) { |
| 935 | err = iter->add_entry_cb(iter, al, false, arg); |
| 936 | if (err) |
| 937 | goto out; |
| 938 | } |
Namhyung Kim | 69bcb01 | 2013-10-30 09:40:34 +0900 | [diff] [blame] | 939 | } |
| 940 | |
| 941 | out: |
| 942 | err2 = iter->ops->finish_entry(iter, al); |
| 943 | if (!err) |
| 944 | err = err2; |
| 945 | |
| 946 | return err; |
| 947 | } |
| 948 | |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 949 | int64_t |
| 950 | hist_entry__cmp(struct hist_entry *left, struct hist_entry *right) |
| 951 | { |
Namhyung Kim | 093f0ef3 | 2014-03-03 12:07:47 +0900 | [diff] [blame] | 952 | struct perf_hpp_fmt *fmt; |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 953 | int64_t cmp = 0; |
| 954 | |
Namhyung Kim | 093f0ef3 | 2014-03-03 12:07:47 +0900 | [diff] [blame] | 955 | perf_hpp__for_each_sort_list(fmt) { |
Namhyung Kim | 87bbdf7 | 2015-01-08 09:45:46 +0900 | [diff] [blame] | 956 | cmp = fmt->cmp(fmt, left, right); |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 957 | if (cmp) |
| 958 | break; |
| 959 | } |
| 960 | |
| 961 | return cmp; |
| 962 | } |
| 963 | |
| 964 | int64_t |
| 965 | hist_entry__collapse(struct hist_entry *left, struct hist_entry *right) |
| 966 | { |
Namhyung Kim | 093f0ef3 | 2014-03-03 12:07:47 +0900 | [diff] [blame] | 967 | struct perf_hpp_fmt *fmt; |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 968 | int64_t cmp = 0; |
| 969 | |
Namhyung Kim | 093f0ef3 | 2014-03-03 12:07:47 +0900 | [diff] [blame] | 970 | perf_hpp__for_each_sort_list(fmt) { |
Namhyung Kim | 87bbdf7 | 2015-01-08 09:45:46 +0900 | [diff] [blame] | 971 | cmp = fmt->collapse(fmt, left, right); |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 972 | if (cmp) |
| 973 | break; |
| 974 | } |
| 975 | |
| 976 | return cmp; |
| 977 | } |
| 978 | |
Arnaldo Carvalho de Melo | 6733d1b | 2014-12-19 12:31:40 -0300 | [diff] [blame] | 979 | void hist_entry__delete(struct hist_entry *he) |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 980 | { |
Arnaldo Carvalho de Melo | f3b623b | 2015-03-02 22:21:35 -0300 | [diff] [blame] | 981 | thread__zput(he->thread); |
Arnaldo Carvalho de Melo | 5c24b67 | 2015-06-15 23:29:51 -0300 | [diff] [blame] | 982 | map__zput(he->ms.map); |
| 983 | |
| 984 | if (he->branch_info) { |
| 985 | map__zput(he->branch_info->from.map); |
| 986 | map__zput(he->branch_info->to.map); |
| 987 | zfree(&he->branch_info); |
| 988 | } |
| 989 | |
| 990 | if (he->mem_info) { |
| 991 | map__zput(he->mem_info->iaddr.map); |
| 992 | map__zput(he->mem_info->daddr.map); |
| 993 | zfree(&he->mem_info); |
| 994 | } |
| 995 | |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 996 | zfree(&he->stat_acc); |
Namhyung Kim | f048d54 | 2013-09-11 14:09:28 +0900 | [diff] [blame] | 997 | free_srcline(he->srcline); |
Andi Kleen | 31191a8 | 2015-08-07 15:54:24 -0700 | [diff] [blame] | 998 | if (he->srcfile && he->srcfile[0]) |
| 999 | free(he->srcfile); |
Namhyung Kim | d114960 | 2014-12-30 14:38:13 +0900 | [diff] [blame] | 1000 | free_callchain(he->callchain); |
Namhyung Kim | 60517d2 | 2015-12-23 02:07:03 +0900 | [diff] [blame] | 1001 | free(he->trace_output); |
Namhyung Kim | 7239283 | 2015-12-24 11:16:17 +0900 | [diff] [blame] | 1002 | free(he->raw_data); |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1003 | free(he); |
| 1004 | } |
| 1005 | |
| 1006 | /* |
| 1007 | * collapse the histogram |
| 1008 | */ |
| 1009 | |
Namhyung Kim | fc284be | 2016-01-07 10:14:10 +0100 | [diff] [blame^] | 1010 | bool hists__collapse_insert_entry(struct hists *hists __maybe_unused, |
| 1011 | struct rb_root *root, struct hist_entry *he) |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1012 | { |
Arnaldo Carvalho de Melo | b9bf089 | 2009-12-14 11:37:11 -0200 | [diff] [blame] | 1013 | struct rb_node **p = &root->rb_node; |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1014 | struct rb_node *parent = NULL; |
| 1015 | struct hist_entry *iter; |
| 1016 | int64_t cmp; |
| 1017 | |
| 1018 | while (*p != NULL) { |
| 1019 | parent = *p; |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1020 | iter = rb_entry(parent, struct hist_entry, rb_node_in); |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1021 | |
| 1022 | cmp = hist_entry__collapse(iter, he); |
| 1023 | |
| 1024 | if (!cmp) { |
Namhyung Kim | 139c081 | 2012-10-04 21:49:43 +0900 | [diff] [blame] | 1025 | he_stat__add_stat(&iter->stat, &he->stat); |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 1026 | if (symbol_conf.cumulate_callchain) |
| 1027 | he_stat__add_stat(iter->stat_acc, he->stat_acc); |
Namhyung Kim | 9ec6097 | 2012-09-26 16:47:28 +0900 | [diff] [blame] | 1028 | |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 1029 | if (symbol_conf.use_callchain) { |
Namhyung Kim | 4726064 | 2012-05-31 14:43:26 +0900 | [diff] [blame] | 1030 | callchain_cursor_reset(&callchain_cursor); |
| 1031 | callchain_merge(&callchain_cursor, |
| 1032 | iter->callchain, |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 1033 | he->callchain); |
| 1034 | } |
Arnaldo Carvalho de Melo | 6733d1b | 2014-12-19 12:31:40 -0300 | [diff] [blame] | 1035 | hist_entry__delete(he); |
Arnaldo Carvalho de Melo | fefb0b9 | 2010-05-10 13:57:51 -0300 | [diff] [blame] | 1036 | return false; |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1037 | } |
| 1038 | |
| 1039 | if (cmp < 0) |
| 1040 | p = &(*p)->rb_left; |
| 1041 | else |
| 1042 | p = &(*p)->rb_right; |
| 1043 | } |
Namhyung Kim | 740b97f | 2014-12-22 13:44:10 +0900 | [diff] [blame] | 1044 | hists->nr_entries++; |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1045 | |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1046 | rb_link_node(&he->rb_node_in, parent, p); |
| 1047 | rb_insert_color(&he->rb_node_in, root); |
Arnaldo Carvalho de Melo | fefb0b9 | 2010-05-10 13:57:51 -0300 | [diff] [blame] | 1048 | return true; |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1049 | } |
| 1050 | |
Namhyung Kim | fc284be | 2016-01-07 10:14:10 +0100 | [diff] [blame^] | 1051 | struct rb_root *hists__get_rotate_entries_in(struct hists *hists) |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1052 | { |
| 1053 | struct rb_root *root; |
| 1054 | |
| 1055 | pthread_mutex_lock(&hists->lock); |
| 1056 | |
| 1057 | root = hists->entries_in; |
| 1058 | if (++hists->entries_in > &hists->entries_in_array[1]) |
| 1059 | hists->entries_in = &hists->entries_in_array[0]; |
| 1060 | |
| 1061 | pthread_mutex_unlock(&hists->lock); |
| 1062 | |
| 1063 | return root; |
| 1064 | } |
| 1065 | |
Arnaldo Carvalho de Melo | 90cf1fb | 2011-10-19 13:09:10 -0200 | [diff] [blame] | 1066 | static void hists__apply_filters(struct hists *hists, struct hist_entry *he) |
| 1067 | { |
| 1068 | hists__filter_entry_by_dso(hists, he); |
| 1069 | hists__filter_entry_by_thread(hists, he); |
Namhyung Kim | e94d53e | 2012-03-16 17:50:51 +0900 | [diff] [blame] | 1070 | hists__filter_entry_by_symbol(hists, he); |
Kan Liang | 21394d9 | 2015-09-04 10:45:44 -0400 | [diff] [blame] | 1071 | hists__filter_entry_by_socket(hists, he); |
Arnaldo Carvalho de Melo | 90cf1fb | 2011-10-19 13:09:10 -0200 | [diff] [blame] | 1072 | } |
| 1073 | |
Namhyung Kim | c1fb565 | 2013-10-11 14:15:38 +0900 | [diff] [blame] | 1074 | void hists__collapse_resort(struct hists *hists, struct ui_progress *prog) |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1075 | { |
| 1076 | struct rb_root *root; |
| 1077 | struct rb_node *next; |
| 1078 | struct hist_entry *n; |
| 1079 | |
Namhyung Kim | 3a5714f | 2013-05-14 11:09:01 +0900 | [diff] [blame] | 1080 | if (!sort__need_collapse) |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1081 | return; |
| 1082 | |
Namhyung Kim | 740b97f | 2014-12-22 13:44:10 +0900 | [diff] [blame] | 1083 | hists->nr_entries = 0; |
| 1084 | |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1085 | root = hists__get_rotate_entries_in(hists); |
Namhyung Kim | 740b97f | 2014-12-22 13:44:10 +0900 | [diff] [blame] | 1086 | |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1087 | next = rb_first(root); |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1088 | |
| 1089 | while (next) { |
Arnaldo Carvalho de Melo | 33e940a | 2013-09-17 16:34:28 -0300 | [diff] [blame] | 1090 | if (session_done()) |
| 1091 | break; |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1092 | n = rb_entry(next, struct hist_entry, rb_node_in); |
| 1093 | next = rb_next(&n->rb_node_in); |
| 1094 | |
| 1095 | rb_erase(&n->rb_node_in, root); |
Arnaldo Carvalho de Melo | 90cf1fb | 2011-10-19 13:09:10 -0200 | [diff] [blame] | 1096 | if (hists__collapse_insert_entry(hists, &hists->entries_collapsed, n)) { |
| 1097 | /* |
| 1098 | * If it wasn't combined with one of the entries already |
| 1099 | * collapsed, we need to apply the filters that may have |
| 1100 | * been set by, say, the hist_browser. |
| 1101 | */ |
| 1102 | hists__apply_filters(hists, n); |
Arnaldo Carvalho de Melo | 90cf1fb | 2011-10-19 13:09:10 -0200 | [diff] [blame] | 1103 | } |
Namhyung Kim | c1fb565 | 2013-10-11 14:15:38 +0900 | [diff] [blame] | 1104 | if (prog) |
| 1105 | ui_progress__update(prog, 1); |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1106 | } |
| 1107 | } |
| 1108 | |
Namhyung Kim | 043ca389 | 2014-03-03 14:18:00 +0900 | [diff] [blame] | 1109 | static int hist_entry__sort(struct hist_entry *a, struct hist_entry *b) |
Namhyung Kim | 29d720e | 2013-01-22 18:09:33 +0900 | [diff] [blame] | 1110 | { |
Namhyung Kim | 043ca389 | 2014-03-03 14:18:00 +0900 | [diff] [blame] | 1111 | struct perf_hpp_fmt *fmt; |
| 1112 | int64_t cmp = 0; |
Namhyung Kim | 29d720e | 2013-01-22 18:09:33 +0900 | [diff] [blame] | 1113 | |
Namhyung Kim | 26d8b33 | 2014-03-03 16:16:20 +0900 | [diff] [blame] | 1114 | perf_hpp__for_each_sort_list(fmt) { |
Namhyung Kim | 361459f | 2015-12-23 02:07:08 +0900 | [diff] [blame] | 1115 | if (perf_hpp__should_skip(fmt, a->hists)) |
Namhyung Kim | e67d49a | 2014-03-18 13:00:59 +0900 | [diff] [blame] | 1116 | continue; |
| 1117 | |
Namhyung Kim | 87bbdf7 | 2015-01-08 09:45:46 +0900 | [diff] [blame] | 1118 | cmp = fmt->sort(fmt, a, b); |
Namhyung Kim | 043ca389 | 2014-03-03 14:18:00 +0900 | [diff] [blame] | 1119 | if (cmp) |
Namhyung Kim | 29d720e | 2013-01-22 18:09:33 +0900 | [diff] [blame] | 1120 | break; |
| 1121 | } |
| 1122 | |
Namhyung Kim | 043ca389 | 2014-03-03 14:18:00 +0900 | [diff] [blame] | 1123 | return cmp; |
Namhyung Kim | 29d720e | 2013-01-22 18:09:33 +0900 | [diff] [blame] | 1124 | } |
| 1125 | |
Namhyung Kim | 9283ba9 | 2014-04-24 16:37:26 +0900 | [diff] [blame] | 1126 | static void hists__reset_filter_stats(struct hists *hists) |
| 1127 | { |
| 1128 | hists->nr_non_filtered_entries = 0; |
| 1129 | hists->stats.total_non_filtered_period = 0; |
| 1130 | } |
| 1131 | |
| 1132 | void hists__reset_stats(struct hists *hists) |
| 1133 | { |
| 1134 | hists->nr_entries = 0; |
| 1135 | hists->stats.total_period = 0; |
| 1136 | |
| 1137 | hists__reset_filter_stats(hists); |
| 1138 | } |
| 1139 | |
| 1140 | static void hists__inc_filter_stats(struct hists *hists, struct hist_entry *h) |
| 1141 | { |
| 1142 | hists->nr_non_filtered_entries++; |
| 1143 | hists->stats.total_non_filtered_period += h->stat.period; |
| 1144 | } |
| 1145 | |
| 1146 | void hists__inc_stats(struct hists *hists, struct hist_entry *h) |
| 1147 | { |
| 1148 | if (!h->filtered) |
| 1149 | hists__inc_filter_stats(hists, h); |
| 1150 | |
| 1151 | hists->nr_entries++; |
| 1152 | hists->stats.total_period += h->stat.period; |
| 1153 | } |
| 1154 | |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 1155 | static void __hists__insert_output_entry(struct rb_root *entries, |
| 1156 | struct hist_entry *he, |
Kan Liang | f9db0d0 | 2015-08-11 06:30:48 -0400 | [diff] [blame] | 1157 | u64 min_callchain_hits, |
| 1158 | bool use_callchain) |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1159 | { |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 1160 | struct rb_node **p = &entries->rb_node; |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1161 | struct rb_node *parent = NULL; |
| 1162 | struct hist_entry *iter; |
| 1163 | |
Kan Liang | f9db0d0 | 2015-08-11 06:30:48 -0400 | [diff] [blame] | 1164 | if (use_callchain) |
Arnaldo Carvalho de Melo | b9fb930 | 2010-04-02 09:50:42 -0300 | [diff] [blame] | 1165 | callchain_param.sort(&he->sorted_chain, he->callchain, |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1166 | min_callchain_hits, &callchain_param); |
| 1167 | |
| 1168 | while (*p != NULL) { |
| 1169 | parent = *p; |
| 1170 | iter = rb_entry(parent, struct hist_entry, rb_node); |
| 1171 | |
Namhyung Kim | 043ca389 | 2014-03-03 14:18:00 +0900 | [diff] [blame] | 1172 | if (hist_entry__sort(he, iter) > 0) |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1173 | p = &(*p)->rb_left; |
| 1174 | else |
| 1175 | p = &(*p)->rb_right; |
| 1176 | } |
| 1177 | |
| 1178 | rb_link_node(&he->rb_node, parent, p); |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 1179 | rb_insert_color(&he->rb_node, entries); |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1180 | } |
| 1181 | |
Namhyung Kim | 740b97f | 2014-12-22 13:44:10 +0900 | [diff] [blame] | 1182 | void hists__output_resort(struct hists *hists, struct ui_progress *prog) |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1183 | { |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1184 | struct rb_root *root; |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1185 | struct rb_node *next; |
| 1186 | struct hist_entry *n; |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1187 | u64 min_callchain_hits; |
Kan Liang | f9db0d0 | 2015-08-11 06:30:48 -0400 | [diff] [blame] | 1188 | struct perf_evsel *evsel = hists_to_evsel(hists); |
Kan Liang | 9e207dd | 2015-08-11 06:30:49 -0400 | [diff] [blame] | 1189 | bool use_callchain; |
| 1190 | |
Namhyung Kim | 208e760 | 2015-09-30 13:34:00 +0900 | [diff] [blame] | 1191 | if (evsel && symbol_conf.use_callchain && !symbol_conf.show_ref_callgraph) |
Kan Liang | 9e207dd | 2015-08-11 06:30:49 -0400 | [diff] [blame] | 1192 | use_callchain = evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN; |
| 1193 | else |
| 1194 | use_callchain = symbol_conf.use_callchain; |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1195 | |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 1196 | min_callchain_hits = hists->stats.total_period * (callchain_param.min_percent / 100); |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1197 | |
Namhyung Kim | 3a5714f | 2013-05-14 11:09:01 +0900 | [diff] [blame] | 1198 | if (sort__need_collapse) |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1199 | root = &hists->entries_collapsed; |
| 1200 | else |
| 1201 | root = hists->entries_in; |
| 1202 | |
| 1203 | next = rb_first(root); |
| 1204 | hists->entries = RB_ROOT; |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1205 | |
Namhyung Kim | 9283ba9 | 2014-04-24 16:37:26 +0900 | [diff] [blame] | 1206 | hists__reset_stats(hists); |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 1207 | hists__reset_col_len(hists); |
Arnaldo Carvalho de Melo | fefb0b9 | 2010-05-10 13:57:51 -0300 | [diff] [blame] | 1208 | |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1209 | while (next) { |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1210 | n = rb_entry(next, struct hist_entry, rb_node_in); |
| 1211 | next = rb_next(&n->rb_node_in); |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1212 | |
Kan Liang | f9db0d0 | 2015-08-11 06:30:48 -0400 | [diff] [blame] | 1213 | __hists__insert_output_entry(&hists->entries, n, min_callchain_hits, use_callchain); |
Namhyung Kim | 6263835 | 2014-04-24 16:21:46 +0900 | [diff] [blame] | 1214 | hists__inc_stats(hists, n); |
Namhyung Kim | ae993ef | 2014-04-24 16:25:19 +0900 | [diff] [blame] | 1215 | |
| 1216 | if (!n->filtered) |
| 1217 | hists__calc_col_len(hists, n); |
Namhyung Kim | 740b97f | 2014-12-22 13:44:10 +0900 | [diff] [blame] | 1218 | |
| 1219 | if (prog) |
| 1220 | ui_progress__update(prog, 1); |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 1221 | } |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 1222 | } |
Arnaldo Carvalho de Melo | b9bf089 | 2009-12-14 11:37:11 -0200 | [diff] [blame] | 1223 | |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 1224 | static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *h, |
Arnaldo Carvalho de Melo | cc5edb0 | 2010-07-16 12:35:07 -0300 | [diff] [blame] | 1225 | enum hist_filter filter) |
| 1226 | { |
| 1227 | h->filtered &= ~(1 << filter); |
| 1228 | if (h->filtered) |
| 1229 | return; |
| 1230 | |
Namhyung Kim | 87e90f4 | 2014-04-24 16:44:16 +0900 | [diff] [blame] | 1231 | /* force fold unfiltered entry for simplicity */ |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 1232 | h->unfolded = false; |
Arnaldo Carvalho de Melo | 0f0cbf7 | 2010-07-26 17:13:40 -0300 | [diff] [blame] | 1233 | h->row_offset = 0; |
He Kuang | a8cd1f4 | 2015-03-11 20:36:03 +0800 | [diff] [blame] | 1234 | h->nr_rows = 0; |
Namhyung Kim | 9283ba9 | 2014-04-24 16:37:26 +0900 | [diff] [blame] | 1235 | |
Namhyung Kim | 1ab1fa5 | 2013-12-26 15:11:52 +0900 | [diff] [blame] | 1236 | hists->stats.nr_non_filtered_samples += h->stat.nr_events; |
Arnaldo Carvalho de Melo | cc5edb0 | 2010-07-16 12:35:07 -0300 | [diff] [blame] | 1237 | |
Namhyung Kim | 9283ba9 | 2014-04-24 16:37:26 +0900 | [diff] [blame] | 1238 | hists__inc_filter_stats(hists, h); |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 1239 | hists__calc_col_len(hists, h); |
Arnaldo Carvalho de Melo | cc5edb0 | 2010-07-16 12:35:07 -0300 | [diff] [blame] | 1240 | } |
| 1241 | |
Arnaldo Carvalho de Melo | 90cf1fb | 2011-10-19 13:09:10 -0200 | [diff] [blame] | 1242 | |
| 1243 | static bool hists__filter_entry_by_dso(struct hists *hists, |
| 1244 | struct hist_entry *he) |
| 1245 | { |
| 1246 | if (hists->dso_filter != NULL && |
| 1247 | (he->ms.map == NULL || he->ms.map->dso != hists->dso_filter)) { |
| 1248 | he->filtered |= (1 << HIST_FILTER__DSO); |
| 1249 | return true; |
| 1250 | } |
| 1251 | |
| 1252 | return false; |
| 1253 | } |
| 1254 | |
Arnaldo Carvalho de Melo | d7b76f0 | 2011-10-18 19:07:34 -0200 | [diff] [blame] | 1255 | void hists__filter_by_dso(struct hists *hists) |
Arnaldo Carvalho de Melo | b09e019 | 2010-05-11 11:10:15 -0300 | [diff] [blame] | 1256 | { |
| 1257 | struct rb_node *nd; |
| 1258 | |
Namhyung Kim | 1ab1fa5 | 2013-12-26 15:11:52 +0900 | [diff] [blame] | 1259 | hists->stats.nr_non_filtered_samples = 0; |
Namhyung Kim | 9283ba9 | 2014-04-24 16:37:26 +0900 | [diff] [blame] | 1260 | |
| 1261 | hists__reset_filter_stats(hists); |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 1262 | hists__reset_col_len(hists); |
Arnaldo Carvalho de Melo | b09e019 | 2010-05-11 11:10:15 -0300 | [diff] [blame] | 1263 | |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 1264 | for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) { |
Arnaldo Carvalho de Melo | b09e019 | 2010-05-11 11:10:15 -0300 | [diff] [blame] | 1265 | struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); |
| 1266 | |
| 1267 | if (symbol_conf.exclude_other && !h->parent) |
| 1268 | continue; |
| 1269 | |
Arnaldo Carvalho de Melo | 90cf1fb | 2011-10-19 13:09:10 -0200 | [diff] [blame] | 1270 | if (hists__filter_entry_by_dso(hists, h)) |
Arnaldo Carvalho de Melo | b09e019 | 2010-05-11 11:10:15 -0300 | [diff] [blame] | 1271 | continue; |
Arnaldo Carvalho de Melo | b09e019 | 2010-05-11 11:10:15 -0300 | [diff] [blame] | 1272 | |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 1273 | hists__remove_entry_filter(hists, h, HIST_FILTER__DSO); |
Arnaldo Carvalho de Melo | b09e019 | 2010-05-11 11:10:15 -0300 | [diff] [blame] | 1274 | } |
| 1275 | } |
| 1276 | |
Arnaldo Carvalho de Melo | 90cf1fb | 2011-10-19 13:09:10 -0200 | [diff] [blame] | 1277 | static bool hists__filter_entry_by_thread(struct hists *hists, |
| 1278 | struct hist_entry *he) |
| 1279 | { |
| 1280 | if (hists->thread_filter != NULL && |
| 1281 | he->thread != hists->thread_filter) { |
| 1282 | he->filtered |= (1 << HIST_FILTER__THREAD); |
| 1283 | return true; |
| 1284 | } |
| 1285 | |
| 1286 | return false; |
| 1287 | } |
| 1288 | |
Arnaldo Carvalho de Melo | d7b76f0 | 2011-10-18 19:07:34 -0200 | [diff] [blame] | 1289 | void hists__filter_by_thread(struct hists *hists) |
Arnaldo Carvalho de Melo | b09e019 | 2010-05-11 11:10:15 -0300 | [diff] [blame] | 1290 | { |
| 1291 | struct rb_node *nd; |
| 1292 | |
Namhyung Kim | 1ab1fa5 | 2013-12-26 15:11:52 +0900 | [diff] [blame] | 1293 | hists->stats.nr_non_filtered_samples = 0; |
Namhyung Kim | 9283ba9 | 2014-04-24 16:37:26 +0900 | [diff] [blame] | 1294 | |
| 1295 | hists__reset_filter_stats(hists); |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 1296 | hists__reset_col_len(hists); |
Arnaldo Carvalho de Melo | b09e019 | 2010-05-11 11:10:15 -0300 | [diff] [blame] | 1297 | |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 1298 | for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) { |
Arnaldo Carvalho de Melo | b09e019 | 2010-05-11 11:10:15 -0300 | [diff] [blame] | 1299 | struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); |
| 1300 | |
Arnaldo Carvalho de Melo | 90cf1fb | 2011-10-19 13:09:10 -0200 | [diff] [blame] | 1301 | if (hists__filter_entry_by_thread(hists, h)) |
Arnaldo Carvalho de Melo | b09e019 | 2010-05-11 11:10:15 -0300 | [diff] [blame] | 1302 | continue; |
Arnaldo Carvalho de Melo | cc5edb0 | 2010-07-16 12:35:07 -0300 | [diff] [blame] | 1303 | |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 1304 | hists__remove_entry_filter(hists, h, HIST_FILTER__THREAD); |
Arnaldo Carvalho de Melo | b09e019 | 2010-05-11 11:10:15 -0300 | [diff] [blame] | 1305 | } |
| 1306 | } |
Arnaldo Carvalho de Melo | ef7b93a | 2010-05-11 23:18:06 -0300 | [diff] [blame] | 1307 | |
Namhyung Kim | e94d53e | 2012-03-16 17:50:51 +0900 | [diff] [blame] | 1308 | static bool hists__filter_entry_by_symbol(struct hists *hists, |
| 1309 | struct hist_entry *he) |
| 1310 | { |
| 1311 | if (hists->symbol_filter_str != NULL && |
| 1312 | (!he->ms.sym || strstr(he->ms.sym->name, |
| 1313 | hists->symbol_filter_str) == NULL)) { |
| 1314 | he->filtered |= (1 << HIST_FILTER__SYMBOL); |
| 1315 | return true; |
| 1316 | } |
| 1317 | |
| 1318 | return false; |
| 1319 | } |
| 1320 | |
| 1321 | void hists__filter_by_symbol(struct hists *hists) |
| 1322 | { |
| 1323 | struct rb_node *nd; |
| 1324 | |
Namhyung Kim | 1ab1fa5 | 2013-12-26 15:11:52 +0900 | [diff] [blame] | 1325 | hists->stats.nr_non_filtered_samples = 0; |
Namhyung Kim | 9283ba9 | 2014-04-24 16:37:26 +0900 | [diff] [blame] | 1326 | |
| 1327 | hists__reset_filter_stats(hists); |
Namhyung Kim | e94d53e | 2012-03-16 17:50:51 +0900 | [diff] [blame] | 1328 | hists__reset_col_len(hists); |
| 1329 | |
| 1330 | for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) { |
| 1331 | struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); |
| 1332 | |
| 1333 | if (hists__filter_entry_by_symbol(hists, h)) |
| 1334 | continue; |
| 1335 | |
| 1336 | hists__remove_entry_filter(hists, h, HIST_FILTER__SYMBOL); |
| 1337 | } |
| 1338 | } |
| 1339 | |
Kan Liang | 21394d9 | 2015-09-04 10:45:44 -0400 | [diff] [blame] | 1340 | static bool hists__filter_entry_by_socket(struct hists *hists, |
| 1341 | struct hist_entry *he) |
| 1342 | { |
| 1343 | if ((hists->socket_filter > -1) && |
| 1344 | (he->socket != hists->socket_filter)) { |
| 1345 | he->filtered |= (1 << HIST_FILTER__SOCKET); |
| 1346 | return true; |
| 1347 | } |
| 1348 | |
| 1349 | return false; |
| 1350 | } |
| 1351 | |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 1352 | void hists__filter_by_socket(struct hists *hists) |
| 1353 | { |
| 1354 | struct rb_node *nd; |
| 1355 | |
| 1356 | hists->stats.nr_non_filtered_samples = 0; |
| 1357 | |
| 1358 | hists__reset_filter_stats(hists); |
| 1359 | hists__reset_col_len(hists); |
| 1360 | |
| 1361 | for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) { |
| 1362 | struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); |
| 1363 | |
| 1364 | if (hists__filter_entry_by_socket(hists, h)) |
| 1365 | continue; |
| 1366 | |
| 1367 | hists__remove_entry_filter(hists, h, HIST_FILTER__SOCKET); |
| 1368 | } |
| 1369 | } |
| 1370 | |
Arnaldo Carvalho de Melo | 28a6b6a | 2012-12-18 16:24:46 -0300 | [diff] [blame] | 1371 | void events_stats__inc(struct events_stats *stats, u32 type) |
| 1372 | { |
| 1373 | ++stats->nr_events[0]; |
| 1374 | ++stats->nr_events[type]; |
| 1375 | } |
| 1376 | |
Arnaldo Carvalho de Melo | 42b28ac | 2011-09-26 12:33:28 -0300 | [diff] [blame] | 1377 | void hists__inc_nr_events(struct hists *hists, u32 type) |
Arnaldo Carvalho de Melo | c8446b9 | 2010-05-14 10:36:42 -0300 | [diff] [blame] | 1378 | { |
Arnaldo Carvalho de Melo | 28a6b6a | 2012-12-18 16:24:46 -0300 | [diff] [blame] | 1379 | events_stats__inc(&hists->stats, type); |
Arnaldo Carvalho de Melo | c8446b9 | 2010-05-14 10:36:42 -0300 | [diff] [blame] | 1380 | } |
Arnaldo Carvalho de Melo | 95529be | 2012-11-08 17:54:33 -0300 | [diff] [blame] | 1381 | |
Namhyung Kim | 1844dbc | 2014-05-28 14:12:18 +0900 | [diff] [blame] | 1382 | void hists__inc_nr_samples(struct hists *hists, bool filtered) |
| 1383 | { |
| 1384 | events_stats__inc(&hists->stats, PERF_RECORD_SAMPLE); |
| 1385 | if (!filtered) |
| 1386 | hists->stats.nr_non_filtered_samples++; |
| 1387 | } |
| 1388 | |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1389 | static struct hist_entry *hists__add_dummy_entry(struct hists *hists, |
| 1390 | struct hist_entry *pair) |
| 1391 | { |
Namhyung Kim | ce74f60 | 2012-12-10 17:29:55 +0900 | [diff] [blame] | 1392 | struct rb_root *root; |
| 1393 | struct rb_node **p; |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1394 | struct rb_node *parent = NULL; |
| 1395 | struct hist_entry *he; |
Andi Kleen | 354cc40 | 2013-10-01 07:22:15 -0700 | [diff] [blame] | 1396 | int64_t cmp; |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1397 | |
Namhyung Kim | ce74f60 | 2012-12-10 17:29:55 +0900 | [diff] [blame] | 1398 | if (sort__need_collapse) |
| 1399 | root = &hists->entries_collapsed; |
| 1400 | else |
| 1401 | root = hists->entries_in; |
| 1402 | |
| 1403 | p = &root->rb_node; |
| 1404 | |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1405 | while (*p != NULL) { |
| 1406 | parent = *p; |
Namhyung Kim | ce74f60 | 2012-12-10 17:29:55 +0900 | [diff] [blame] | 1407 | he = rb_entry(parent, struct hist_entry, rb_node_in); |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1408 | |
Namhyung Kim | ce74f60 | 2012-12-10 17:29:55 +0900 | [diff] [blame] | 1409 | cmp = hist_entry__collapse(he, pair); |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1410 | |
| 1411 | if (!cmp) |
| 1412 | goto out; |
| 1413 | |
| 1414 | if (cmp < 0) |
| 1415 | p = &(*p)->rb_left; |
| 1416 | else |
| 1417 | p = &(*p)->rb_right; |
| 1418 | } |
| 1419 | |
Namhyung Kim | a0b51af | 2012-09-11 13:34:27 +0900 | [diff] [blame] | 1420 | he = hist_entry__new(pair, true); |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1421 | if (he) { |
Arnaldo Carvalho de Melo | 30193d7 | 2012-11-12 13:20:03 -0300 | [diff] [blame] | 1422 | memset(&he->stat, 0, sizeof(he->stat)); |
| 1423 | he->hists = hists; |
Namhyung Kim | ce74f60 | 2012-12-10 17:29:55 +0900 | [diff] [blame] | 1424 | rb_link_node(&he->rb_node_in, parent, p); |
| 1425 | rb_insert_color(&he->rb_node_in, root); |
Namhyung Kim | 6263835 | 2014-04-24 16:21:46 +0900 | [diff] [blame] | 1426 | hists__inc_stats(hists, he); |
Jiri Olsa | e0af43d | 2012-12-01 21:18:20 +0100 | [diff] [blame] | 1427 | he->dummy = true; |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1428 | } |
| 1429 | out: |
| 1430 | return he; |
| 1431 | } |
| 1432 | |
Arnaldo Carvalho de Melo | 95529be | 2012-11-08 17:54:33 -0300 | [diff] [blame] | 1433 | static struct hist_entry *hists__find_entry(struct hists *hists, |
| 1434 | struct hist_entry *he) |
| 1435 | { |
Namhyung Kim | ce74f60 | 2012-12-10 17:29:55 +0900 | [diff] [blame] | 1436 | struct rb_node *n; |
| 1437 | |
| 1438 | if (sort__need_collapse) |
| 1439 | n = hists->entries_collapsed.rb_node; |
| 1440 | else |
| 1441 | n = hists->entries_in->rb_node; |
Arnaldo Carvalho de Melo | 95529be | 2012-11-08 17:54:33 -0300 | [diff] [blame] | 1442 | |
| 1443 | while (n) { |
Namhyung Kim | ce74f60 | 2012-12-10 17:29:55 +0900 | [diff] [blame] | 1444 | struct hist_entry *iter = rb_entry(n, struct hist_entry, rb_node_in); |
| 1445 | int64_t cmp = hist_entry__collapse(iter, he); |
Arnaldo Carvalho de Melo | 95529be | 2012-11-08 17:54:33 -0300 | [diff] [blame] | 1446 | |
| 1447 | if (cmp < 0) |
| 1448 | n = n->rb_left; |
| 1449 | else if (cmp > 0) |
| 1450 | n = n->rb_right; |
| 1451 | else |
| 1452 | return iter; |
| 1453 | } |
| 1454 | |
| 1455 | return NULL; |
| 1456 | } |
| 1457 | |
| 1458 | /* |
| 1459 | * Look for pairs to link to the leader buckets (hist_entries): |
| 1460 | */ |
| 1461 | void hists__match(struct hists *leader, struct hists *other) |
| 1462 | { |
Namhyung Kim | ce74f60 | 2012-12-10 17:29:55 +0900 | [diff] [blame] | 1463 | struct rb_root *root; |
Arnaldo Carvalho de Melo | 95529be | 2012-11-08 17:54:33 -0300 | [diff] [blame] | 1464 | struct rb_node *nd; |
| 1465 | struct hist_entry *pos, *pair; |
| 1466 | |
Namhyung Kim | ce74f60 | 2012-12-10 17:29:55 +0900 | [diff] [blame] | 1467 | if (sort__need_collapse) |
| 1468 | root = &leader->entries_collapsed; |
| 1469 | else |
| 1470 | root = leader->entries_in; |
| 1471 | |
| 1472 | for (nd = rb_first(root); nd; nd = rb_next(nd)) { |
| 1473 | pos = rb_entry(nd, struct hist_entry, rb_node_in); |
Arnaldo Carvalho de Melo | 95529be | 2012-11-08 17:54:33 -0300 | [diff] [blame] | 1474 | pair = hists__find_entry(other, pos); |
| 1475 | |
| 1476 | if (pair) |
Namhyung Kim | 5fa9041 | 2012-11-29 15:38:34 +0900 | [diff] [blame] | 1477 | hist_entry__add_pair(pair, pos); |
Arnaldo Carvalho de Melo | 95529be | 2012-11-08 17:54:33 -0300 | [diff] [blame] | 1478 | } |
| 1479 | } |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1480 | |
| 1481 | /* |
| 1482 | * Look for entries in the other hists that are not present in the leader, if |
| 1483 | * we find them, just add a dummy entry on the leader hists, with period=0, |
| 1484 | * nr_events=0, to serve as the list header. |
| 1485 | */ |
| 1486 | int hists__link(struct hists *leader, struct hists *other) |
| 1487 | { |
Namhyung Kim | ce74f60 | 2012-12-10 17:29:55 +0900 | [diff] [blame] | 1488 | struct rb_root *root; |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1489 | struct rb_node *nd; |
| 1490 | struct hist_entry *pos, *pair; |
| 1491 | |
Namhyung Kim | ce74f60 | 2012-12-10 17:29:55 +0900 | [diff] [blame] | 1492 | if (sort__need_collapse) |
| 1493 | root = &other->entries_collapsed; |
| 1494 | else |
| 1495 | root = other->entries_in; |
| 1496 | |
| 1497 | for (nd = rb_first(root); nd; nd = rb_next(nd)) { |
| 1498 | pos = rb_entry(nd, struct hist_entry, rb_node_in); |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1499 | |
| 1500 | if (!hist_entry__has_pairs(pos)) { |
| 1501 | pair = hists__add_dummy_entry(leader, pos); |
| 1502 | if (pair == NULL) |
| 1503 | return -1; |
Namhyung Kim | 5fa9041 | 2012-11-29 15:38:34 +0900 | [diff] [blame] | 1504 | hist_entry__add_pair(pos, pair); |
Arnaldo Carvalho de Melo | 494d70a | 2012-11-08 18:03:09 -0300 | [diff] [blame] | 1505 | } |
| 1506 | } |
| 1507 | |
| 1508 | return 0; |
| 1509 | } |
Namhyung Kim | f214833 | 2014-01-14 11:52:48 +0900 | [diff] [blame] | 1510 | |
Andi Kleen | 57849998 | 2015-07-18 08:24:49 -0700 | [diff] [blame] | 1511 | void hist__account_cycles(struct branch_stack *bs, struct addr_location *al, |
| 1512 | struct perf_sample *sample, bool nonany_branch_mode) |
| 1513 | { |
| 1514 | struct branch_info *bi; |
| 1515 | |
| 1516 | /* If we have branch cycles always annotate them. */ |
| 1517 | if (bs && bs->nr && bs->entries[0].flags.cycles) { |
| 1518 | int i; |
| 1519 | |
| 1520 | bi = sample__resolve_bstack(sample, al); |
| 1521 | if (bi) { |
| 1522 | struct addr_map_symbol *prev = NULL; |
| 1523 | |
| 1524 | /* |
| 1525 | * Ignore errors, still want to process the |
| 1526 | * other entries. |
| 1527 | * |
| 1528 | * For non standard branch modes always |
| 1529 | * force no IPC (prev == NULL) |
| 1530 | * |
| 1531 | * Note that perf stores branches reversed from |
| 1532 | * program order! |
| 1533 | */ |
| 1534 | for (i = bs->nr - 1; i >= 0; i--) { |
| 1535 | addr_map_symbol__account_cycles(&bi[i].from, |
| 1536 | nonany_branch_mode ? NULL : prev, |
| 1537 | bi[i].flags.cycles); |
| 1538 | prev = &bi[i].to; |
| 1539 | } |
| 1540 | free(bi); |
| 1541 | } |
| 1542 | } |
| 1543 | } |
Arnaldo Carvalho de Melo | 2a1731f | 2014-10-10 15:49:21 -0300 | [diff] [blame] | 1544 | |
| 1545 | size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp) |
| 1546 | { |
| 1547 | struct perf_evsel *pos; |
| 1548 | size_t ret = 0; |
| 1549 | |
| 1550 | evlist__for_each(evlist, pos) { |
| 1551 | ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos)); |
| 1552 | ret += events_stats__fprintf(&evsel__hists(pos)->stats, fp); |
| 1553 | } |
| 1554 | |
| 1555 | return ret; |
| 1556 | } |
| 1557 | |
| 1558 | |
Namhyung Kim | f214833 | 2014-01-14 11:52:48 +0900 | [diff] [blame] | 1559 | u64 hists__total_period(struct hists *hists) |
| 1560 | { |
| 1561 | return symbol_conf.filter_relative ? hists->stats.total_non_filtered_period : |
| 1562 | hists->stats.total_period; |
| 1563 | } |
Namhyung Kim | 33db456 | 2014-02-07 12:06:07 +0900 | [diff] [blame] | 1564 | |
| 1565 | int parse_filter_percentage(const struct option *opt __maybe_unused, |
| 1566 | const char *arg, int unset __maybe_unused) |
| 1567 | { |
| 1568 | if (!strcmp(arg, "relative")) |
| 1569 | symbol_conf.filter_relative = true; |
| 1570 | else if (!strcmp(arg, "absolute")) |
| 1571 | symbol_conf.filter_relative = false; |
| 1572 | else |
| 1573 | return -1; |
| 1574 | |
| 1575 | return 0; |
| 1576 | } |
Namhyung Kim | 0b93da1 | 2014-01-14 12:02:15 +0900 | [diff] [blame] | 1577 | |
| 1578 | int perf_hist_config(const char *var, const char *value) |
| 1579 | { |
| 1580 | if (!strcmp(var, "hist.percentage")) |
| 1581 | return parse_filter_percentage(NULL, value, 0); |
| 1582 | |
| 1583 | return 0; |
| 1584 | } |
Arnaldo Carvalho de Melo | a635fc5 | 2014-10-09 16:16:00 -0300 | [diff] [blame] | 1585 | |
Namhyung Kim | fc284be | 2016-01-07 10:14:10 +0100 | [diff] [blame^] | 1586 | int __hists__init(struct hists *hists) |
Arnaldo Carvalho de Melo | a635fc5 | 2014-10-09 16:16:00 -0300 | [diff] [blame] | 1587 | { |
Arnaldo Carvalho de Melo | a635fc5 | 2014-10-09 16:16:00 -0300 | [diff] [blame] | 1588 | memset(hists, 0, sizeof(*hists)); |
| 1589 | hists->entries_in_array[0] = hists->entries_in_array[1] = RB_ROOT; |
| 1590 | hists->entries_in = &hists->entries_in_array[0]; |
| 1591 | hists->entries_collapsed = RB_ROOT; |
| 1592 | hists->entries = RB_ROOT; |
| 1593 | pthread_mutex_init(&hists->lock, NULL); |
Kan Liang | 21394d9 | 2015-09-04 10:45:44 -0400 | [diff] [blame] | 1594 | hists->socket_filter = -1; |
Arnaldo Carvalho de Melo | a635fc5 | 2014-10-09 16:16:00 -0300 | [diff] [blame] | 1595 | return 0; |
| 1596 | } |
| 1597 | |
Namhyung Kim | 61fa0e9 | 2015-12-10 16:53:20 +0900 | [diff] [blame] | 1598 | static void hists__delete_remaining_entries(struct rb_root *root) |
| 1599 | { |
| 1600 | struct rb_node *node; |
| 1601 | struct hist_entry *he; |
| 1602 | |
| 1603 | while (!RB_EMPTY_ROOT(root)) { |
| 1604 | node = rb_first(root); |
| 1605 | rb_erase(node, root); |
| 1606 | |
| 1607 | he = rb_entry(node, struct hist_entry, rb_node_in); |
| 1608 | hist_entry__delete(he); |
| 1609 | } |
| 1610 | } |
| 1611 | |
| 1612 | static void hists__delete_all_entries(struct hists *hists) |
| 1613 | { |
| 1614 | hists__delete_entries(hists); |
| 1615 | hists__delete_remaining_entries(&hists->entries_in_array[0]); |
| 1616 | hists__delete_remaining_entries(&hists->entries_in_array[1]); |
| 1617 | hists__delete_remaining_entries(&hists->entries_collapsed); |
| 1618 | } |
| 1619 | |
Masami Hiramatsu | 17577de | 2015-12-09 11:11:29 +0900 | [diff] [blame] | 1620 | static void hists_evsel__exit(struct perf_evsel *evsel) |
| 1621 | { |
| 1622 | struct hists *hists = evsel__hists(evsel); |
| 1623 | |
Namhyung Kim | 61fa0e9 | 2015-12-10 16:53:20 +0900 | [diff] [blame] | 1624 | hists__delete_all_entries(hists); |
Masami Hiramatsu | 17577de | 2015-12-09 11:11:29 +0900 | [diff] [blame] | 1625 | } |
| 1626 | |
Namhyung Kim | fc284be | 2016-01-07 10:14:10 +0100 | [diff] [blame^] | 1627 | static int hists_evsel__init(struct perf_evsel *evsel) |
| 1628 | { |
| 1629 | struct hists *hists = evsel__hists(evsel); |
| 1630 | |
| 1631 | __hists__init(hists); |
| 1632 | return 0; |
| 1633 | } |
| 1634 | |
Arnaldo Carvalho de Melo | a635fc5 | 2014-10-09 16:16:00 -0300 | [diff] [blame] | 1635 | /* |
| 1636 | * XXX We probably need a hists_evsel__exit() to free the hist_entries |
| 1637 | * stored in the rbtree... |
| 1638 | */ |
| 1639 | |
| 1640 | int hists__init(void) |
| 1641 | { |
| 1642 | int err = perf_evsel__object_config(sizeof(struct hists_evsel), |
Masami Hiramatsu | 17577de | 2015-12-09 11:11:29 +0900 | [diff] [blame] | 1643 | hists_evsel__init, |
| 1644 | hists_evsel__exit); |
Arnaldo Carvalho de Melo | a635fc5 | 2014-10-09 16:16:00 -0300 | [diff] [blame] | 1645 | if (err) |
| 1646 | fputs("FATAL ERROR: Couldn't setup hists class\n", stderr); |
| 1647 | |
| 1648 | return err; |
| 1649 | } |