blob: 283a69ff6a3dcf941506cbbd7f4a5ed9e7ec7dd0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Arnaldo Carvalho de Melob10ba7f2019-01-29 11:11:04 +01002#include "callchain.h"
Arnaldo Carvalho de Melob4209022019-08-29 15:56:40 -03003#include "debug.h"
Arnaldo Carvalho de Melo4a3cec82019-08-30 11:11:01 -03004#include "dso.h"
Frederic Weisbecker598357e2010-05-21 12:48:39 +02005#include "build-id.h"
John Kacur3d1d07e2009-09-28 15:32:55 +02006#include "hist.h"
Krister Johansen9c68ae92017-01-05 22:23:31 -08007#include "map.h"
Arnaldo Carvalho de Melod3300a32019-08-30 15:09:54 -03008#include "map_symbol.h"
9#include "branch.h"
10#include "mem-events.h"
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -020011#include "session.h"
Hari Bathinid890a982017-03-08 02:12:13 +053012#include "namespaces.h"
Namhyung Kimb629f3e2020-03-25 21:45:32 +090013#include "cgroup.h"
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -020014#include "sort.h"
Arnaldo Carvalho de Melo25c312d2018-04-02 14:24:28 -030015#include "units.h"
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -030016#include "evlist.h"
Namhyung Kim29d720e2013-01-22 18:09:33 +090017#include "evsel.h"
Namhyung Kim69bcb012013-10-30 09:40:34 +090018#include "annotate.h"
Arnaldo Carvalho de Melo632a5ca2017-04-17 16:30:49 -030019#include "srcline.h"
Arnaldo Carvalho de Melodaecf9e2019-01-28 00:03:34 +010020#include "symbol.h"
Arnaldo Carvalho de Meloe7ff8922017-04-19 21:34:35 -030021#include "thread.h"
Jin Yao60414412019-11-07 15:47:14 +080022#include "block-info.h"
Namhyung Kim740b97f2014-12-22 13:44:10 +090023#include "ui/progress.h"
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030024#include <errno.h>
Arnaldo Carvalho de Melo9b338272009-12-16 14:31:49 -020025#include <math.h>
Arnaldo Carvalho de Melo25c312d2018-04-02 14:24:28 -030026#include <inttypes.h>
Arnaldo Carvalho de Melo391e4202017-04-19 18:51:14 -030027#include <sys/param.h>
Arnaldo Carvalho de Melo5c9dbe62019-08-30 11:54:00 -030028#include <linux/rbtree.h>
Arnaldo Carvalho de Melo8520a982019-08-29 16:18:59 -030029#include <linux/string.h>
Andi Kleen37239082019-03-11 07:44:54 -070030#include <linux/time64.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030031#include <linux/zalloc.h>
John Kacur3d1d07e2009-09-28 15:32:55 +020032
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -020033static bool hists__filter_entry_by_dso(struct hists *hists,
34 struct hist_entry *he);
35static bool hists__filter_entry_by_thread(struct hists *hists,
36 struct hist_entry *he);
Namhyung Kime94d53e2012-03-16 17:50:51 +090037static bool hists__filter_entry_by_symbol(struct hists *hists,
38 struct hist_entry *he);
Kan Liang21394d92015-09-04 10:45:44 -040039static bool hists__filter_entry_by_socket(struct hists *hists,
40 struct hist_entry *he);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -020041
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030042u16 hists__col_len(struct hists *hists, enum hist_column col)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030043{
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030044 return hists->col_len[col];
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030045}
46
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030047void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030048{
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030049 hists->col_len[col] = len;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030050}
51
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030052bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030053{
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030054 if (len > hists__col_len(hists, col)) {
55 hists__set_col_len(hists, col, len);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030056 return true;
57 }
58 return false;
59}
60
Namhyung Kim7ccf4f92012-08-20 13:52:05 +090061void hists__reset_col_len(struct hists *hists)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030062{
63 enum hist_column col;
64
65 for (col = 0; col < HISTC_NR_COLS; ++col)
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -030066 hists__set_col_len(hists, col, 0);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030067}
68
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010069static void hists__set_unres_dso_col_len(struct hists *hists, int dso)
70{
71 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
72
73 if (hists__col_len(hists, dso) < unresolved_col_width &&
74 !symbol_conf.col_width_list_str && !symbol_conf.field_sep &&
75 !symbol_conf.dso_list)
76 hists__set_col_len(hists, dso, unresolved_col_width);
77}
78
Namhyung Kim7ccf4f92012-08-20 13:52:05 +090079void hists__calc_col_len(struct hists *hists, struct hist_entry *h)
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030080{
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010081 const unsigned int unresolved_col_width = BITS_PER_LONG / 4;
Stephane Eranian98a3b322013-01-24 16:10:35 +010082 int symlen;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030083 u16 len;
84
Jin Yao0bdf1812019-11-07 15:47:13 +080085 if (h->block_info)
86 return;
Namhyung Kimded19d52013-04-01 20:35:19 +090087 /*
88 * +4 accounts for '[x] ' priv level info
89 * +2 accounts for 0x prefix on raw addresses
90 * +3 accounts for ' y ' symtab origin info
91 */
92 if (h->ms.sym) {
93 symlen = h->ms.sym->namelen + 4;
Namhyung Kimbb963e12017-02-17 17:17:38 +090094 if (verbose > 0)
Namhyung Kimded19d52013-04-01 20:35:19 +090095 symlen += BITS_PER_LONG / 4 + 2 + 3;
96 hists__new_col_len(hists, HISTC_SYMBOL, symlen);
97 } else {
Stephane Eranian98a3b322013-01-24 16:10:35 +010098 symlen = unresolved_col_width + 4 + 2;
99 hists__new_col_len(hists, HISTC_SYMBOL, symlen);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100100 hists__set_unres_dso_col_len(hists, HISTC_DSO);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100101 }
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300102
103 len = thread__comm_len(h->thread);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -0300104 if (hists__new_col_len(hists, HISTC_COMM, len))
Jiri Olsa89c7cb22016-06-20 23:58:19 +0200105 hists__set_col_len(hists, HISTC_THREAD, len + 8);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300106
107 if (h->ms.map) {
108 len = dso__name_len(h->ms.map->dso);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -0300109 hists__new_col_len(hists, HISTC_DSO, len);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300110 }
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100111
Namhyung Kimcb993742012-12-27 18:11:42 +0900112 if (h->parent)
113 hists__new_col_len(hists, HISTC_PARENT, h->parent->namelen);
114
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100115 if (h->branch_info) {
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300116 if (h->branch_info->from.ms.sym) {
117 symlen = (int)h->branch_info->from.ms.sym->namelen + 4;
Namhyung Kimbb963e12017-02-17 17:17:38 +0900118 if (verbose > 0)
Namhyung Kimded19d52013-04-01 20:35:19 +0900119 symlen += BITS_PER_LONG / 4 + 2 + 3;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100120 hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);
121
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300122 symlen = dso__name_len(h->branch_info->from.ms.map->dso);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100123 hists__new_col_len(hists, HISTC_DSO_FROM, symlen);
124 } else {
125 symlen = unresolved_col_width + 4 + 2;
126 hists__new_col_len(hists, HISTC_SYMBOL_FROM, symlen);
127 hists__set_unres_dso_col_len(hists, HISTC_DSO_FROM);
128 }
129
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300130 if (h->branch_info->to.ms.sym) {
131 symlen = (int)h->branch_info->to.ms.sym->namelen + 4;
Namhyung Kimbb963e12017-02-17 17:17:38 +0900132 if (verbose > 0)
Namhyung Kimded19d52013-04-01 20:35:19 +0900133 symlen += BITS_PER_LONG / 4 + 2 + 3;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100134 hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);
135
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300136 symlen = dso__name_len(h->branch_info->to.ms.map->dso);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100137 hists__new_col_len(hists, HISTC_DSO_TO, symlen);
138 } else {
139 symlen = unresolved_col_width + 4 + 2;
140 hists__new_col_len(hists, HISTC_SYMBOL_TO, symlen);
141 hists__set_unres_dso_col_len(hists, HISTC_DSO_TO);
142 }
Andi Kleen508be0d2016-05-20 13:15:08 -0700143
144 if (h->branch_info->srcline_from)
145 hists__new_col_len(hists, HISTC_SRCLINE_FROM,
146 strlen(h->branch_info->srcline_from));
147 if (h->branch_info->srcline_to)
148 hists__new_col_len(hists, HISTC_SRCLINE_TO,
149 strlen(h->branch_info->srcline_to));
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100150 }
Stephane Eranian98a3b322013-01-24 16:10:35 +0100151
152 if (h->mem_info) {
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300153 if (h->mem_info->daddr.ms.sym) {
154 symlen = (int)h->mem_info->daddr.ms.sym->namelen + 4
Stephane Eranian98a3b322013-01-24 16:10:35 +0100155 + unresolved_col_width + 2;
156 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL,
157 symlen);
Don Zickus9b32ba72014-06-01 15:38:29 +0200158 hists__new_col_len(hists, HISTC_MEM_DCACHELINE,
159 symlen + 1);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100160 } else {
161 symlen = unresolved_col_width + 4 + 2;
162 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL,
163 symlen);
Jiri Olsa08059092016-01-20 12:56:33 +0100164 hists__new_col_len(hists, HISTC_MEM_DCACHELINE,
165 symlen);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100166 }
Jiri Olsab34b3bf2015-10-05 20:06:08 +0200167
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300168 if (h->mem_info->iaddr.ms.sym) {
169 symlen = (int)h->mem_info->iaddr.ms.sym->namelen + 4
Jiri Olsab34b3bf2015-10-05 20:06:08 +0200170 + unresolved_col_width + 2;
171 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL,
172 symlen);
173 } else {
174 symlen = unresolved_col_width + 4 + 2;
175 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL,
176 symlen);
177 }
178
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300179 if (h->mem_info->daddr.ms.map) {
180 symlen = dso__name_len(h->mem_info->daddr.ms.map->dso);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100181 hists__new_col_len(hists, HISTC_MEM_DADDR_DSO,
182 symlen);
183 } else {
184 symlen = unresolved_col_width + 4 + 2;
185 hists__set_unres_dso_col_len(hists, HISTC_MEM_DADDR_DSO);
186 }
Kan Liang8780fb22017-08-29 13:11:09 -0400187
188 hists__new_col_len(hists, HISTC_MEM_PHYS_DADDR,
189 unresolved_col_width + 4 + 2);
190
Stephane Eranian98a3b322013-01-24 16:10:35 +0100191 } else {
192 symlen = unresolved_col_width + 4 + 2;
193 hists__new_col_len(hists, HISTC_MEM_DADDR_SYMBOL, symlen);
Jiri Olsab34b3bf2015-10-05 20:06:08 +0200194 hists__new_col_len(hists, HISTC_MEM_IADDR_SYMBOL, symlen);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100195 hists__set_unres_dso_col_len(hists, HISTC_MEM_DADDR_DSO);
196 }
197
Namhyung Kimb629f3e2020-03-25 21:45:32 +0900198 hists__new_col_len(hists, HISTC_CGROUP, 6);
Hari Bathinid890a982017-03-08 02:12:13 +0530199 hists__new_col_len(hists, HISTC_CGROUP_ID, 20);
Arnaldo Carvalho de Meloa4978ec2015-09-09 12:14:00 -0300200 hists__new_col_len(hists, HISTC_CPU, 3);
Kan Liang2e7ea3a2015-09-04 10:45:43 -0400201 hists__new_col_len(hists, HISTC_SOCKET, 6);
Stephane Eranian98a3b322013-01-24 16:10:35 +0100202 hists__new_col_len(hists, HISTC_MEM_LOCKED, 6);
203 hists__new_col_len(hists, HISTC_MEM_TLB, 22);
204 hists__new_col_len(hists, HISTC_MEM_SNOOP, 12);
205 hists__new_col_len(hists, HISTC_MEM_LVL, 21 + 3);
206 hists__new_col_len(hists, HISTC_LOCAL_WEIGHT, 12);
207 hists__new_col_len(hists, HISTC_GLOBAL_WEIGHT, 12);
Andi Kleen3dab6ac2019-08-23 14:03:38 -0700208 if (symbol_conf.nanosecs)
209 hists__new_col_len(hists, HISTC_TIME, 16);
210 else
211 hists__new_col_len(hists, HISTC_TIME, 12);
Andi Kleen475eeab2013-09-20 07:40:43 -0700212
Jiri Olsaf666ac02016-09-19 15:10:10 +0200213 if (h->srcline) {
214 len = MAX(strlen(h->srcline), strlen(sort_srcline.se_header));
215 hists__new_col_len(hists, HISTC_SRCLINE, len);
216 }
Arnaldo Carvalho de Meloe8e6d372015-08-10 16:53:54 -0300217
Andi Kleen31191a82015-08-07 15:54:24 -0700218 if (h->srcfile)
219 hists__new_col_len(hists, HISTC_SRCFILE, strlen(h->srcfile));
220
Andi Kleen475eeab2013-09-20 07:40:43 -0700221 if (h->transaction)
222 hists__new_col_len(hists, HISTC_TRANSACTION,
223 hist_entry__transaction_len());
Namhyung Kim0c0af782016-02-21 23:22:38 +0900224
225 if (h->trace_output)
226 hists__new_col_len(hists, HISTC_TRACE, strlen(h->trace_output));
Namhyung Kimb629f3e2020-03-25 21:45:32 +0900227
228 if (h->cgroup) {
229 const char *cgrp_name = "unknown";
230 struct cgroup *cgrp = cgroup__find(h->ms.maps->machine->env,
231 h->cgroup);
232 if (cgrp != NULL)
233 cgrp_name = cgrp->name;
234
235 hists__new_col_len(hists, HISTC_CGROUP, strlen(cgrp_name));
236 }
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300237}
238
Namhyung Kim7ccf4f92012-08-20 13:52:05 +0900239void hists__output_recalc_col_len(struct hists *hists, int max_rows)
240{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800241 struct rb_node *next = rb_first_cached(&hists->entries);
Namhyung Kim7ccf4f92012-08-20 13:52:05 +0900242 struct hist_entry *n;
243 int row = 0;
244
245 hists__reset_col_len(hists);
246
247 while (next && row++ < max_rows) {
248 n = rb_entry(next, struct hist_entry, rb_node);
249 if (!n->filtered)
250 hists__calc_col_len(hists, n);
251 next = rb_next(&n->rb_node);
252 }
253}
254
Namhyung Kimf39056f2014-01-14 14:25:37 +0900255static void he_stat__add_cpumode_period(struct he_stat *he_stat,
256 unsigned int cpumode, u64 period)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800257{
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300258 switch (cpumode) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800259 case PERF_RECORD_MISC_KERNEL:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900260 he_stat->period_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800261 break;
262 case PERF_RECORD_MISC_USER:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900263 he_stat->period_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800264 break;
265 case PERF_RECORD_MISC_GUEST_KERNEL:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900266 he_stat->period_guest_sys += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800267 break;
268 case PERF_RECORD_MISC_GUEST_USER:
Namhyung Kimf39056f2014-01-14 14:25:37 +0900269 he_stat->period_guest_us += period;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800270 break;
271 default:
272 break;
273 }
274}
275
Andi Kleen37239082019-03-11 07:44:54 -0700276static long hist_time(unsigned long htime)
277{
278 unsigned long time_quantum = symbol_conf.time_quantum;
279 if (time_quantum)
280 return (htime / time_quantum) * time_quantum;
281 return htime;
282}
283
Andi Kleen05484292013-01-24 16:10:29 +0100284static void he_stat__add_period(struct he_stat *he_stat, u64 period,
285 u64 weight)
Namhyung Kim139c0812012-10-04 21:49:43 +0900286{
Stephane Eranian98a3b322013-01-24 16:10:35 +0100287
Namhyung Kim139c0812012-10-04 21:49:43 +0900288 he_stat->period += period;
Andi Kleen05484292013-01-24 16:10:29 +0100289 he_stat->weight += weight;
Namhyung Kim139c0812012-10-04 21:49:43 +0900290 he_stat->nr_events += 1;
291}
292
293static void he_stat__add_stat(struct he_stat *dest, struct he_stat *src)
294{
295 dest->period += src->period;
296 dest->period_sys += src->period_sys;
297 dest->period_us += src->period_us;
298 dest->period_guest_sys += src->period_guest_sys;
299 dest->period_guest_us += src->period_guest_us;
300 dest->nr_events += src->nr_events;
Andi Kleen05484292013-01-24 16:10:29 +0100301 dest->weight += src->weight;
Namhyung Kim139c0812012-10-04 21:49:43 +0900302}
303
Namhyung Kimf39056f2014-01-14 14:25:37 +0900304static void he_stat__decay(struct he_stat *he_stat)
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300305{
Namhyung Kimf39056f2014-01-14 14:25:37 +0900306 he_stat->period = (he_stat->period * 7) / 8;
307 he_stat->nr_events = (he_stat->nr_events * 7) / 8;
Andi Kleen05484292013-01-24 16:10:29 +0100308 /* XXX need decay for weight too? */
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300309}
310
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900311static void hists__delete_entry(struct hists *hists, struct hist_entry *he);
312
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300313static bool hists__decay_entry(struct hists *hists, struct hist_entry *he)
314{
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900315 u64 prev_period = he->stat.period;
Namhyung Kim3186b682014-04-22 13:44:23 +0900316 u64 diff;
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200317
318 if (prev_period == 0)
Arnaldo Carvalho de Melodf71d952011-10-13 08:01:33 -0300319 return true;
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200320
Namhyung Kimf39056f2014-01-14 14:25:37 +0900321 he_stat__decay(&he->stat);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900322 if (symbol_conf.cumulate_callchain)
323 he_stat__decay(he->stat_acc);
Namhyung Kim42b276a2016-01-05 12:06:00 +0900324 decay_callchain(he->callchain);
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200325
Namhyung Kim3186b682014-04-22 13:44:23 +0900326 diff = prev_period - he->stat.period;
327
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900328 if (!he->depth) {
329 hists->stats.total_period -= diff;
330 if (!he->filtered)
331 hists->stats.total_non_filtered_period -= diff;
332 }
333
334 if (!he->leaf) {
335 struct hist_entry *child;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800336 struct rb_node *node = rb_first_cached(&he->hroot_out);
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900337 while (node) {
338 child = rb_entry(node, struct hist_entry, rb_node);
339 node = rb_next(node);
340
341 if (hists__decay_entry(hists, child))
342 hists__delete_entry(hists, child);
343 }
344 }
Arnaldo Carvalho de Meloc64550c2011-10-20 06:45:44 -0200345
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900346 return he->stat.period == 0;
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300347}
348
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300349static void hists__delete_entry(struct hists *hists, struct hist_entry *he)
350{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800351 struct rb_root_cached *root_in;
352 struct rb_root_cached *root_out;
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300353
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900354 if (he->parent_he) {
355 root_in = &he->parent_he->hroot_in;
356 root_out = &he->parent_he->hroot_out;
357 } else {
Jiri Olsa52225032016-05-03 13:54:42 +0200358 if (hists__has(hists, need_collapse))
Namhyung Kim5d8200a2016-02-25 00:13:49 +0900359 root_in = &hists->entries_collapsed;
360 else
361 root_in = hists->entries_in;
362 root_out = &hists->entries;
363 }
364
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800365 rb_erase_cached(&he->rb_node_in, root_in);
366 rb_erase_cached(&he->rb_node, root_out);
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300367
368 --hists->nr_entries;
369 if (!he->filtered)
370 --hists->nr_non_filtered_entries;
371
372 hist_entry__delete(he);
373}
374
Namhyung Kim3a5714f2013-05-14 11:09:01 +0900375void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel)
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300376{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800377 struct rb_node *next = rb_first_cached(&hists->entries);
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300378 struct hist_entry *n;
379
380 while (next) {
381 n = rb_entry(next, struct hist_entry, rb_node);
382 next = rb_next(&n->rb_node);
Arnaldo Carvalho de Melob079d4e2011-10-17 09:05:04 -0200383 if (((zap_user && n->level == '.') ||
384 (zap_kernel && n->level != '.') ||
Arnaldo Carvalho de Melo4c47f4f2015-03-17 17:18:58 -0300385 hists__decay_entry(hists, n))) {
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300386 hists__delete_entry(hists, n);
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300387 }
388 }
389}
390
Namhyung Kim701937b2014-08-12 17:16:05 +0900391void hists__delete_entries(struct hists *hists)
392{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800393 struct rb_node *next = rb_first_cached(&hists->entries);
Namhyung Kim701937b2014-08-12 17:16:05 +0900394 struct hist_entry *n;
395
396 while (next) {
397 n = rb_entry(next, struct hist_entry, rb_node);
398 next = rb_next(&n->rb_node);
399
Arnaldo Carvalho de Melo956b65e2014-12-19 12:41:28 -0300400 hists__delete_entry(hists, n);
Namhyung Kim701937b2014-08-12 17:16:05 +0900401 }
402}
403
Jin Yaob10c78c2019-06-28 17:23:03 +0800404struct hist_entry *hists__get_entry(struct hists *hists, int idx)
405{
406 struct rb_node *next = rb_first_cached(&hists->entries);
407 struct hist_entry *n;
408 int i = 0;
409
410 while (next) {
411 n = rb_entry(next, struct hist_entry, rb_node);
412 if (i == idx)
413 return n;
414
415 next = rb_next(&n->rb_node);
416 i++;
417 }
418
419 return NULL;
420}
421
John Kacur3d1d07e2009-09-28 15:32:55 +0200422/*
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -0300423 * histogram, sorted on item, collects periods
John Kacur3d1d07e2009-09-28 15:32:55 +0200424 */
425
Jiri Olsa0a269a62016-07-05 08:56:03 +0200426static int hist_entry__init(struct hist_entry *he,
427 struct hist_entry *template,
Arnaldo Carvalho de Melo41477ac2018-06-07 14:19:54 -0300428 bool sample_self,
429 size_t callchain_size)
Jiri Olsa0a269a62016-07-05 08:56:03 +0200430{
431 *he = *template;
Arnaldo Carvalho de Melo41477ac2018-06-07 14:19:54 -0300432 he->callchain_size = callchain_size;
Jiri Olsa0a269a62016-07-05 08:56:03 +0200433
434 if (symbol_conf.cumulate_callchain) {
435 he->stat_acc = malloc(sizeof(he->stat));
436 if (he->stat_acc == NULL)
437 return -ENOMEM;
438 memcpy(he->stat_acc, &he->stat, sizeof(he->stat));
439 if (!sample_self)
440 memset(&he->stat, 0, sizeof(he->stat));
441 }
442
443 map__get(he->ms.map);
444
445 if (he->branch_info) {
446 /*
447 * This branch info is (a part of) allocated from
448 * sample__resolve_bstack() and will be freed after
449 * adding new entries. So we need to save a copy.
450 */
451 he->branch_info = malloc(sizeof(*he->branch_info));
Jiri Olsac5758912019-03-05 16:25:30 +0100452 if (he->branch_info == NULL)
453 goto err;
Jiri Olsa0a269a62016-07-05 08:56:03 +0200454
455 memcpy(he->branch_info, template->branch_info,
456 sizeof(*he->branch_info));
457
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300458 map__get(he->branch_info->from.ms.map);
459 map__get(he->branch_info->to.ms.map);
Jiri Olsa0a269a62016-07-05 08:56:03 +0200460 }
461
462 if (he->mem_info) {
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300463 map__get(he->mem_info->iaddr.ms.map);
464 map__get(he->mem_info->daddr.ms.map);
Jiri Olsa0a269a62016-07-05 08:56:03 +0200465 }
466
Arnaldo Carvalho de Melofabd37b2018-05-29 13:59:24 -0300467 if (hist_entry__has_callchains(he) && symbol_conf.use_callchain)
Jiri Olsa0a269a62016-07-05 08:56:03 +0200468 callchain_init(he->callchain);
469
470 if (he->raw_data) {
471 he->raw_data = memdup(he->raw_data, he->raw_size);
Jiri Olsac5758912019-03-05 16:25:30 +0100472 if (he->raw_data == NULL)
473 goto err_infos;
Jiri Olsa0a269a62016-07-05 08:56:03 +0200474 }
Jiri Olsa26349582019-03-05 16:25:31 +0100475
476 if (he->srcline) {
477 he->srcline = strdup(he->srcline);
478 if (he->srcline == NULL)
479 goto err_rawdata;
480 }
481
Andi Kleen4968ac82019-03-11 07:44:58 -0700482 if (symbol_conf.res_sample) {
483 he->res_samples = calloc(sizeof(struct res_sample),
484 symbol_conf.res_sample);
485 if (!he->res_samples)
486 goto err_srcline;
487 }
488
Jiri Olsa0a269a62016-07-05 08:56:03 +0200489 INIT_LIST_HEAD(&he->pairs.node);
490 thread__get(he->thread);
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800491 he->hroot_in = RB_ROOT_CACHED;
492 he->hroot_out = RB_ROOT_CACHED;
Jiri Olsa0a269a62016-07-05 08:56:03 +0200493
494 if (!symbol_conf.report_hierarchy)
495 he->leaf = true;
496
497 return 0;
Jiri Olsac5758912019-03-05 16:25:30 +0100498
Andi Kleen4968ac82019-03-11 07:44:58 -0700499err_srcline:
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -0300500 zfree(&he->srcline);
Andi Kleen4968ac82019-03-11 07:44:58 -0700501
Jiri Olsa26349582019-03-05 16:25:31 +0100502err_rawdata:
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -0300503 zfree(&he->raw_data);
Jiri Olsa26349582019-03-05 16:25:31 +0100504
Jiri Olsac5758912019-03-05 16:25:30 +0100505err_infos:
506 if (he->branch_info) {
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300507 map__put(he->branch_info->from.ms.map);
508 map__put(he->branch_info->to.ms.map);
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -0300509 zfree(&he->branch_info);
Jiri Olsac5758912019-03-05 16:25:30 +0100510 }
511 if (he->mem_info) {
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300512 map__put(he->mem_info->iaddr.ms.map);
513 map__put(he->mem_info->daddr.ms.map);
Jiri Olsac5758912019-03-05 16:25:30 +0100514 }
515err:
516 map__zput(he->ms.map);
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -0300517 zfree(&he->stat_acc);
Jiri Olsac5758912019-03-05 16:25:30 +0100518 return -ENOMEM;
Jiri Olsa0a269a62016-07-05 08:56:03 +0200519}
520
Jiri Olsaf542e762016-07-05 08:56:04 +0200521static void *hist_entry__zalloc(size_t size)
522{
523 return zalloc(size + sizeof(struct hist_entry));
524}
525
526static void hist_entry__free(void *ptr)
527{
528 free(ptr);
529}
530
531static struct hist_entry_ops default_ops = {
532 .new = hist_entry__zalloc,
533 .free = hist_entry__free,
534};
535
Namhyung Kima0b51af2012-09-11 13:34:27 +0900536static struct hist_entry *hist_entry__new(struct hist_entry *template,
537 bool sample_self)
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300538{
Jiri Olsaf542e762016-07-05 08:56:04 +0200539 struct hist_entry_ops *ops = template->ops;
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900540 size_t callchain_size = 0;
541 struct hist_entry *he;
Jiri Olsa0a269a62016-07-05 08:56:03 +0200542 int err = 0;
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900543
Jiri Olsaf542e762016-07-05 08:56:04 +0200544 if (!ops)
545 ops = template->ops = &default_ops;
546
Namhyung Kim82aa0192014-12-22 13:44:14 +0900547 if (symbol_conf.use_callchain)
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900548 callchain_size = sizeof(struct callchain_root);
549
Jiri Olsaf542e762016-07-05 08:56:04 +0200550 he = ops->new(callchain_size);
Jiri Olsa0a269a62016-07-05 08:56:03 +0200551 if (he) {
Arnaldo Carvalho de Melo41477ac2018-06-07 14:19:54 -0300552 err = hist_entry__init(he, template, sample_self, callchain_size);
Jiri Olsaf542e762016-07-05 08:56:04 +0200553 if (err) {
554 ops->free(he);
555 he = NULL;
556 }
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300557 }
558
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200559 return he;
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300560}
561
Arnaldo Carvalho de Melo7a007ca2010-07-21 09:19:41 -0300562static u8 symbol__parent_filter(const struct symbol *parent)
563{
564 if (symbol_conf.exclude_other && parent == NULL)
565 return 1 << HIST_FILTER__PARENT;
566 return 0;
567}
568
Namhyung Kim467ef102016-02-16 23:08:19 +0900569static void hist_entry__add_callchain_period(struct hist_entry *he, u64 period)
570{
Arnaldo Carvalho de Melofabd37b2018-05-29 13:59:24 -0300571 if (!hist_entry__has_callchains(he) || !symbol_conf.use_callchain)
Namhyung Kim467ef102016-02-16 23:08:19 +0900572 return;
573
574 he->hists->callchain_period += period;
575 if (!he->filtered)
576 he->hists->callchain_non_filtered_period += period;
577}
578
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300579static struct hist_entry *hists__findnew_entry(struct hists *hists,
580 struct hist_entry *entry,
581 struct addr_location *al,
582 bool sample_self)
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300583{
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300584 struct rb_node **p;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300585 struct rb_node *parent = NULL;
586 struct hist_entry *he;
Andi Kleen354cc402013-10-01 07:22:15 -0700587 int64_t cmp;
Namhyung Kimf1cbf782013-12-18 14:21:11 +0900588 u64 period = entry->stat.period;
589 u64 weight = entry->stat.weight;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800590 bool leftmost = true;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300591
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800592 p = &hists->entries_in->rb_root.rb_node;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300593
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300594 while (*p != NULL) {
595 parent = *p;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300596 he = rb_entry(parent, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300597
Namhyung Kim9afcf932012-12-10 17:29:54 +0900598 /*
599 * Make sure that it receives arguments in a same order as
600 * hist_entry__collapse() so that we can use an appropriate
601 * function when searching an entry regardless which sort
602 * keys were used.
603 */
604 cmp = hist_entry__cmp(he, entry);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300605
606 if (!cmp) {
Namhyung Kim0f584742016-01-28 00:40:49 +0900607 if (sample_self) {
Namhyung Kima0b51af2012-09-11 13:34:27 +0900608 he_stat__add_period(&he->stat, period, weight);
Namhyung Kim467ef102016-02-16 23:08:19 +0900609 hist_entry__add_callchain_period(he, period);
Namhyung Kim0f584742016-01-28 00:40:49 +0900610 }
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900611 if (symbol_conf.cumulate_callchain)
612 he_stat__add_period(he->stat_acc, period, weight);
David Miller63fa4712012-03-27 03:14:18 -0400613
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900614 /*
Arnaldo Carvalho de Meloe80faac2014-01-22 13:05:06 -0300615 * This mem info was allocated from sample__resolve_mem
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900616 * and will not be used anymore.
617 */
Jiri Olsa9f874982018-03-07 16:50:06 +0100618 mem_info__zput(entry->mem_info);
Namhyung Kimceb2acb2013-04-01 20:35:18 +0900619
Jin Yaofe962452019-06-28 17:22:59 +0800620 block_info__zput(entry->block_info);
621
David Miller63fa4712012-03-27 03:14:18 -0400622 /* If the map of an existing hist_entry has
623 * become out-of-date due to an exec() or
624 * similar, update it. Otherwise we will
625 * mis-adjust symbol addresses when computing
626 * the history counter to increment.
627 */
628 if (he->ms.map != entry->ms.map) {
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -0300629 map__put(he->ms.map);
630 he->ms.map = map__get(entry->ms.map);
David Miller63fa4712012-03-27 03:14:18 -0400631 }
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300632 goto out;
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300633 }
634
635 if (cmp < 0)
636 p = &(*p)->rb_left;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800637 else {
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300638 p = &(*p)->rb_right;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800639 leftmost = false;
640 }
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300641 }
642
Namhyung Kima0b51af2012-09-11 13:34:27 +0900643 he = hist_entry__new(entry, sample_self);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300644 if (!he)
Namhyung Kim27a0dcb2013-05-14 11:09:02 +0900645 return NULL;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300646
Namhyung Kim0f584742016-01-28 00:40:49 +0900647 if (sample_self)
Namhyung Kim467ef102016-02-16 23:08:19 +0900648 hist_entry__add_callchain_period(he, period);
649 hists->nr_entries++;
Namhyung Kim590cd342014-12-22 13:44:09 +0900650
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -0300651 rb_link_node(&he->rb_node_in, parent, p);
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -0800652 rb_insert_color_cached(&he->rb_node_in, hists->entries_in, leftmost);
Arnaldo Carvalho de Melo28e2a102010-05-09 13:02:23 -0300653out:
Namhyung Kima0b51af2012-09-11 13:34:27 +0900654 if (sample_self)
655 he_stat__add_cpumode_period(&he->stat, al->cpumode, period);
Namhyung Kimf8be1c82012-09-11 13:15:07 +0900656 if (symbol_conf.cumulate_callchain)
657 he_stat__add_cpumode_period(he->stat_acc, al->cpumode, period);
Arnaldo Carvalho de Melo9735abf2009-10-03 10:42:45 -0300658 return he;
659}
660
Andi Kleen4968ac82019-03-11 07:44:58 -0700661static unsigned random_max(unsigned high)
662{
663 unsigned thresh = -high % high;
664 for (;;) {
665 unsigned r = random();
666 if (r >= thresh)
667 return r % high;
668 }
669}
670
671static void hists__res_sample(struct hist_entry *he, struct perf_sample *sample)
672{
673 struct res_sample *r;
674 int j;
675
676 if (he->num_res < symbol_conf.res_sample) {
677 j = he->num_res++;
678 } else {
679 j = random_max(symbol_conf.res_sample);
680 }
681 r = &he->res_samples[j];
682 r->time = sample->time;
683 r->cpu = sample->cpu;
684 r->tid = sample->tid;
685}
686
Jiri Olsaa5051972016-07-05 08:56:05 +0200687static struct hist_entry*
688__hists__add_entry(struct hists *hists,
689 struct addr_location *al,
690 struct symbol *sym_parent,
691 struct branch_info *bi,
692 struct mem_info *mi,
Jin Yaofe962452019-06-28 17:22:59 +0800693 struct block_info *block_info,
Jiri Olsaa5051972016-07-05 08:56:05 +0200694 struct perf_sample *sample,
695 bool sample_self,
696 struct hist_entry_ops *ops)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100697{
Hari Bathinid890a982017-03-08 02:12:13 +0530698 struct namespaces *ns = thread__namespaces(al->thread);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100699 struct hist_entry entry = {
700 .thread = al->thread,
Namhyung Kim4dfced32013-09-13 16:28:57 +0900701 .comm = thread__comm(al->thread),
Hari Bathinid890a982017-03-08 02:12:13 +0530702 .cgroup_id = {
703 .dev = ns ? ns->link_info[CGROUP_NS_INDEX].dev : 0,
704 .ino = ns ? ns->link_info[CGROUP_NS_INDEX].ino : 0,
705 },
Namhyung Kimb629f3e2020-03-25 21:45:32 +0900706 .cgroup = sample->cgroup,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100707 .ms = {
Arnaldo Carvalho de Melof2eaea02019-11-25 22:15:35 -0300708 .maps = al->maps,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100709 .map = al->map,
710 .sym = al->sym,
711 },
Jiri Olsa26349582019-03-05 16:25:31 +0100712 .srcline = (char *) al->srcline,
Kan Liang0c4c4deb2015-09-04 10:45:42 -0400713 .socket = al->socket,
Don Zickus7365be52014-05-27 12:28:05 -0400714 .cpu = al->cpu,
715 .cpumode = al->cpumode,
716 .ip = al->addr,
717 .level = al->level,
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900718 .stat = {
Namhyung Kimc4b35352012-10-04 21:49:42 +0900719 .nr_events = 1,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900720 .period = sample->period,
721 .weight = sample->weight,
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900722 },
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100723 .parent = sym_parent,
Namhyung Kim2c86c7c2014-03-17 18:18:54 -0300724 .filtered = symbol__parent_filter(sym_parent) | al->filtered,
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300725 .hists = hists,
Namhyung Kim41a4e6e2013-10-31 15:56:03 +0900726 .branch_info = bi,
727 .mem_info = mi,
Jin Yaofe962452019-06-28 17:22:59 +0800728 .block_info = block_info,
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900729 .transaction = sample->transaction,
Namhyung Kim72392832015-12-24 11:16:17 +0900730 .raw_data = sample->raw_data,
731 .raw_size = sample->raw_size,
Jiri Olsaa5051972016-07-05 08:56:05 +0200732 .ops = ops,
Andi Kleen37239082019-03-11 07:44:54 -0700733 .time = hist_time(sample->time),
Arnaldo Carvalho de Meloc9d36622018-06-07 14:42:27 -0300734 }, *he = hists__findnew_entry(hists, &entry, al, sample_self);
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100735
Arnaldo Carvalho de Meloc9d36622018-06-07 14:42:27 -0300736 if (!hists->has_callchains && he && he->callchain_size != 0)
737 hists->has_callchains = true;
Andi Kleen4968ac82019-03-11 07:44:58 -0700738 if (he && symbol_conf.res_sample)
739 hists__res_sample(he, sample);
Arnaldo Carvalho de Meloc9d36622018-06-07 14:42:27 -0300740 return he;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100741}
742
Jiri Olsaa5051972016-07-05 08:56:05 +0200743struct hist_entry *hists__add_entry(struct hists *hists,
744 struct addr_location *al,
745 struct symbol *sym_parent,
746 struct branch_info *bi,
747 struct mem_info *mi,
748 struct perf_sample *sample,
749 bool sample_self)
750{
Jin Yaofe962452019-06-28 17:22:59 +0800751 return __hists__add_entry(hists, al, sym_parent, bi, mi, NULL,
Jiri Olsaa5051972016-07-05 08:56:05 +0200752 sample, sample_self, NULL);
753}
754
755struct hist_entry *hists__add_entry_ops(struct hists *hists,
756 struct hist_entry_ops *ops,
757 struct addr_location *al,
758 struct symbol *sym_parent,
759 struct branch_info *bi,
760 struct mem_info *mi,
761 struct perf_sample *sample,
762 bool sample_self)
763{
Jin Yaofe962452019-06-28 17:22:59 +0800764 return __hists__add_entry(hists, al, sym_parent, bi, mi, NULL,
Jiri Olsaa5051972016-07-05 08:56:05 +0200765 sample, sample_self, ops);
766}
767
Jin Yaofe962452019-06-28 17:22:59 +0800768struct hist_entry *hists__add_entry_block(struct hists *hists,
769 struct addr_location *al,
770 struct block_info *block_info)
771{
772 struct hist_entry entry = {
773 .block_info = block_info,
774 .hists = hists,
Jin Yaob65a7d32019-11-07 15:47:16 +0800775 .ms = {
Arnaldo Carvalho de Melof2eaea02019-11-25 22:15:35 -0300776 .maps = al->maps,
Jin Yaob65a7d32019-11-07 15:47:16 +0800777 .map = al->map,
778 .sym = al->sym,
779 },
Jin Yaofe962452019-06-28 17:22:59 +0800780 }, *he = hists__findnew_entry(hists, &entry, al, false);
781
782 return he;
783}
784
Namhyung Kim69bcb012013-10-30 09:40:34 +0900785static int
786iter_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
787 struct addr_location *al __maybe_unused)
788{
789 return 0;
790}
791
792static int
793iter_add_next_nop_entry(struct hist_entry_iter *iter __maybe_unused,
794 struct addr_location *al __maybe_unused)
795{
796 return 0;
797}
798
799static int
800iter_prepare_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
801{
802 struct perf_sample *sample = iter->sample;
803 struct mem_info *mi;
804
805 mi = sample__resolve_mem(sample, al);
806 if (mi == NULL)
807 return -ENOMEM;
808
809 iter->priv = mi;
810 return 0;
811}
812
813static int
814iter_add_single_mem_entry(struct hist_entry_iter *iter, struct addr_location *al)
815{
816 u64 cost;
817 struct mem_info *mi = iter->priv;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300818 struct hists *hists = evsel__hists(iter->evsel);
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900819 struct perf_sample *sample = iter->sample;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900820 struct hist_entry *he;
821
822 if (mi == NULL)
823 return -EINVAL;
824
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900825 cost = sample->weight;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900826 if (!cost)
827 cost = 1;
828
829 /*
830 * must pass period=weight in order to get the correct
831 * sorting from hists__collapse_resort() which is solely
832 * based on periods. We want sorting be done on nr_events * weight
833 * and this is indirectly achieved by passing period=weight here
834 * and the he_stat__add_period() function.
835 */
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900836 sample->period = cost;
837
Jiri Olsa0102ef32016-06-14 20:19:21 +0200838 he = hists__add_entry(hists, al, iter->parent, NULL, mi,
839 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900840 if (!he)
841 return -ENOMEM;
842
843 iter->he = he;
844 return 0;
845}
846
847static int
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900848iter_finish_mem_entry(struct hist_entry_iter *iter,
849 struct addr_location *al __maybe_unused)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900850{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200851 struct evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300852 struct hists *hists = evsel__hists(evsel);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900853 struct hist_entry *he = iter->he;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900854 int err = -EINVAL;
855
856 if (he == NULL)
857 goto out;
858
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300859 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900860
861 err = hist_entry__append_callchain(he, iter->sample);
862
863out:
864 /*
Arnaldo Carvalho de Meloe7e0efc2015-05-19 11:31:22 -0300865 * We don't need to free iter->priv (mem_info) here since the mem info
866 * was either already freed in hists__findnew_entry() or passed to a
867 * new hist entry by hist_entry__new().
Namhyung Kim69bcb012013-10-30 09:40:34 +0900868 */
869 iter->priv = NULL;
870
871 iter->he = NULL;
872 return err;
873}
874
875static int
876iter_prepare_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
877{
878 struct branch_info *bi;
879 struct perf_sample *sample = iter->sample;
880
881 bi = sample__resolve_bstack(sample, al);
882 if (!bi)
883 return -ENOMEM;
884
885 iter->curr = 0;
886 iter->total = sample->branch_stack->nr;
887
888 iter->priv = bi;
889 return 0;
890}
891
892static int
Jin Yao2d78b182017-07-18 20:13:14 +0800893iter_add_single_branch_entry(struct hist_entry_iter *iter __maybe_unused,
Namhyung Kim69bcb012013-10-30 09:40:34 +0900894 struct addr_location *al __maybe_unused)
895{
896 return 0;
897}
898
899static int
900iter_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
901{
902 struct branch_info *bi = iter->priv;
903 int i = iter->curr;
904
905 if (bi == NULL)
906 return 0;
907
908 if (iter->curr >= iter->total)
909 return 0;
910
Arnaldo Carvalho de Melof2eaea02019-11-25 22:15:35 -0300911 al->maps = bi[i].to.ms.maps;
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300912 al->map = bi[i].to.ms.map;
913 al->sym = bi[i].to.ms.sym;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900914 al->addr = bi[i].to.addr;
915 return 1;
916}
917
918static int
919iter_add_next_branch_entry(struct hist_entry_iter *iter, struct addr_location *al)
920{
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900921 struct branch_info *bi;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200922 struct evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300923 struct hists *hists = evsel__hists(evsel);
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900924 struct perf_sample *sample = iter->sample;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900925 struct hist_entry *he = NULL;
926 int i = iter->curr;
927 int err = 0;
928
929 bi = iter->priv;
930
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -0300931 if (iter->hide_unresolved && !(bi[i].from.ms.sym && bi[i].to.ms.sym))
Namhyung Kim69bcb012013-10-30 09:40:34 +0900932 goto out;
933
934 /*
935 * The report shows the percentage of total branches captured
936 * and not events sampled. Thus we use a pseudo period of 1.
937 */
Namhyung Kimfd36f3d2015-12-23 02:06:58 +0900938 sample->period = 1;
939 sample->weight = bi->flags.cycles ? bi->flags.cycles : 1;
940
Jiri Olsa0102ef32016-06-14 20:19:21 +0200941 he = hists__add_entry(hists, al, iter->parent, &bi[i], NULL,
942 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900943 if (he == NULL)
944 return -ENOMEM;
945
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300946 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900947
948out:
949 iter->he = he;
950 iter->curr++;
951 return err;
952}
953
954static int
955iter_finish_branch_entry(struct hist_entry_iter *iter,
956 struct addr_location *al __maybe_unused)
957{
958 zfree(&iter->priv);
959 iter->he = NULL;
960
961 return iter->curr >= iter->total ? 0 : -1;
962}
963
964static int
965iter_prepare_normal_entry(struct hist_entry_iter *iter __maybe_unused,
966 struct addr_location *al __maybe_unused)
967{
968 return 0;
969}
970
971static int
972iter_add_single_normal_entry(struct hist_entry_iter *iter, struct addr_location *al)
973{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200974 struct evsel *evsel = iter->evsel;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900975 struct perf_sample *sample = iter->sample;
976 struct hist_entry *he;
977
Jiri Olsa0102ef32016-06-14 20:19:21 +0200978 he = hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
979 sample, true);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900980 if (he == NULL)
981 return -ENOMEM;
982
983 iter->he = he;
984 return 0;
985}
986
987static int
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900988iter_finish_normal_entry(struct hist_entry_iter *iter,
989 struct addr_location *al __maybe_unused)
Namhyung Kim69bcb012013-10-30 09:40:34 +0900990{
Namhyung Kim69bcb012013-10-30 09:40:34 +0900991 struct hist_entry *he = iter->he;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200992 struct evsel *evsel = iter->evsel;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900993 struct perf_sample *sample = iter->sample;
994
995 if (he == NULL)
996 return 0;
997
998 iter->he = NULL;
999
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -03001000 hists__inc_nr_samples(evsel__hists(evsel), he->filtered);
Namhyung Kim69bcb012013-10-30 09:40:34 +09001001
1002 return hist_entry__append_callchain(he, sample);
1003}
1004
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001005static int
Adrian Hunter96b40f32015-09-25 16:15:47 +03001006iter_prepare_cumulative_entry(struct hist_entry_iter *iter,
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001007 struct addr_location *al __maybe_unused)
1008{
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001009 struct hist_entry **he_cache;
1010
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001011 callchain_cursor_commit(&callchain_cursor);
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001012
1013 /*
1014 * This is for detecting cycles or recursions so that they're
1015 * cumulated only one time to prevent entries more than 100%
1016 * overhead.
1017 */
Jiri Olsae3ebaa42018-02-16 13:36:19 +01001018 he_cache = malloc(sizeof(*he_cache) * (callchain_cursor.nr + 1));
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001019 if (he_cache == NULL)
1020 return -ENOMEM;
1021
1022 iter->priv = he_cache;
1023 iter->curr = 0;
1024
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001025 return 0;
1026}
1027
1028static int
1029iter_add_single_cumulative_entry(struct hist_entry_iter *iter,
1030 struct addr_location *al)
1031{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001032 struct evsel *evsel = iter->evsel;
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -03001033 struct hists *hists = evsel__hists(evsel);
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001034 struct perf_sample *sample = iter->sample;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001035 struct hist_entry **he_cache = iter->priv;
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001036 struct hist_entry *he;
1037 int err = 0;
1038
Jiri Olsa0102ef32016-06-14 20:19:21 +02001039 he = hists__add_entry(hists, al, iter->parent, NULL, NULL,
1040 sample, true);
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001041 if (he == NULL)
1042 return -ENOMEM;
1043
1044 iter->he = he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001045 he_cache[iter->curr++] = he;
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001046
Namhyung Kim82aa0192014-12-22 13:44:14 +09001047 hist_entry__append_callchain(he, sample);
Namhyung Kimbe7f8552013-12-26 17:44:10 +09001048
1049 /*
1050 * We need to re-initialize the cursor since callchain_append()
1051 * advanced the cursor to the end.
1052 */
1053 callchain_cursor_commit(&callchain_cursor);
1054
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -03001055 hists__inc_nr_samples(hists, he->filtered);
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001056
1057 return err;
1058}
1059
1060static int
1061iter_next_cumulative_entry(struct hist_entry_iter *iter,
1062 struct addr_location *al)
1063{
1064 struct callchain_cursor_node *node;
1065
1066 node = callchain_cursor_current(&callchain_cursor);
1067 if (node == NULL)
1068 return 0;
1069
Namhyung Kimc7405d82013-10-31 13:58:30 +09001070 return fill_callchain_info(al, node, iter->hide_unresolved);
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001071}
1072
1073static int
1074iter_add_next_cumulative_entry(struct hist_entry_iter *iter,
1075 struct addr_location *al)
1076{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001077 struct evsel *evsel = iter->evsel;
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001078 struct perf_sample *sample = iter->sample;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001079 struct hist_entry **he_cache = iter->priv;
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001080 struct hist_entry *he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001081 struct hist_entry he_tmp = {
Arnaldo Carvalho de Melo5cef8972015-08-10 15:45:55 -03001082 .hists = evsel__hists(evsel),
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001083 .cpu = al->cpu,
1084 .thread = al->thread,
1085 .comm = thread__comm(al->thread),
1086 .ip = al->addr,
1087 .ms = {
Arnaldo Carvalho de Melof2eaea02019-11-25 22:15:35 -03001088 .maps = al->maps,
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001089 .map = al->map,
1090 .sym = al->sym,
1091 },
Jiri Olsa26349582019-03-05 16:25:31 +01001092 .srcline = (char *) al->srcline,
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001093 .parent = iter->parent,
Namhyung Kim72392832015-12-24 11:16:17 +09001094 .raw_data = sample->raw_data,
1095 .raw_size = sample->raw_size,
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001096 };
1097 int i;
Namhyung Kimbe7f8552013-12-26 17:44:10 +09001098 struct callchain_cursor cursor;
1099
1100 callchain_cursor_snapshot(&cursor, &callchain_cursor);
1101
1102 callchain_cursor_advance(&callchain_cursor);
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001103
1104 /*
1105 * Check if there's duplicate entries in the callchain.
1106 * It's possible that it has cycles or recursive calls.
1107 */
1108 for (i = 0; i < iter->curr; i++) {
Namhyung Kim9d3c02d2014-01-07 17:02:25 +09001109 if (hist_entry__cmp(he_cache[i], &he_tmp) == 0) {
1110 /* to avoid calling callback function */
1111 iter->he = NULL;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001112 return 0;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +09001113 }
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001114 }
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001115
Jiri Olsa0102ef32016-06-14 20:19:21 +02001116 he = hists__add_entry(evsel__hists(evsel), al, iter->parent, NULL, NULL,
1117 sample, false);
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001118 if (he == NULL)
1119 return -ENOMEM;
1120
1121 iter->he = he;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001122 he_cache[iter->curr++] = he;
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001123
Arnaldo Carvalho de Melofabd37b2018-05-29 13:59:24 -03001124 if (hist_entry__has_callchains(he) && symbol_conf.use_callchain)
Namhyung Kim82aa0192014-12-22 13:44:14 +09001125 callchain_append(he->callchain, &cursor, sample->period);
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001126 return 0;
1127}
1128
1129static int
1130iter_finish_cumulative_entry(struct hist_entry_iter *iter,
1131 struct addr_location *al __maybe_unused)
1132{
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001133 zfree(&iter->priv);
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001134 iter->he = NULL;
Namhyung Kimb4d3c8b2013-10-31 10:05:29 +09001135
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001136 return 0;
1137}
1138
Namhyung Kim69bcb012013-10-30 09:40:34 +09001139const struct hist_iter_ops hist_iter_mem = {
1140 .prepare_entry = iter_prepare_mem_entry,
1141 .add_single_entry = iter_add_single_mem_entry,
1142 .next_entry = iter_next_nop_entry,
1143 .add_next_entry = iter_add_next_nop_entry,
1144 .finish_entry = iter_finish_mem_entry,
1145};
1146
1147const struct hist_iter_ops hist_iter_branch = {
1148 .prepare_entry = iter_prepare_branch_entry,
1149 .add_single_entry = iter_add_single_branch_entry,
1150 .next_entry = iter_next_branch_entry,
1151 .add_next_entry = iter_add_next_branch_entry,
1152 .finish_entry = iter_finish_branch_entry,
1153};
1154
1155const struct hist_iter_ops hist_iter_normal = {
1156 .prepare_entry = iter_prepare_normal_entry,
1157 .add_single_entry = iter_add_single_normal_entry,
1158 .next_entry = iter_next_nop_entry,
1159 .add_next_entry = iter_add_next_nop_entry,
1160 .finish_entry = iter_finish_normal_entry,
1161};
1162
Namhyung Kim7a13aa22012-09-11 14:13:04 +09001163const struct hist_iter_ops hist_iter_cumulative = {
1164 .prepare_entry = iter_prepare_cumulative_entry,
1165 .add_single_entry = iter_add_single_cumulative_entry,
1166 .next_entry = iter_next_cumulative_entry,
1167 .add_next_entry = iter_add_next_cumulative_entry,
1168 .finish_entry = iter_finish_cumulative_entry,
1169};
1170
Namhyung Kim69bcb012013-10-30 09:40:34 +09001171int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
Namhyung Kim9d3c02d2014-01-07 17:02:25 +09001172 int max_stack_depth, void *arg)
Namhyung Kim69bcb012013-10-30 09:40:34 +09001173{
1174 int err, err2;
Krister Johansen9c68ae92017-01-05 22:23:31 -08001175 struct map *alm = NULL;
1176
Arnaldo Carvalho de Melo362379a2018-05-24 11:20:39 -03001177 if (al)
Krister Johansen9c68ae92017-01-05 22:23:31 -08001178 alm = map__get(al->map);
Namhyung Kim69bcb012013-10-30 09:40:34 +09001179
Arnaldo Carvalho de Melo91d7b2d2016-04-14 14:48:07 -03001180 err = sample__resolve_callchain(iter->sample, &callchain_cursor, &iter->parent,
Namhyung Kim063bd932015-05-19 17:04:10 +09001181 iter->evsel, al, max_stack_depth);
Changbin Ducb6186a2019-03-16 16:05:49 +08001182 if (err) {
1183 map__put(alm);
Namhyung Kim69bcb012013-10-30 09:40:34 +09001184 return err;
Changbin Ducb6186a2019-03-16 16:05:49 +08001185 }
Namhyung Kim69bcb012013-10-30 09:40:34 +09001186
Namhyung Kim69bcb012013-10-30 09:40:34 +09001187 err = iter->ops->prepare_entry(iter, al);
1188 if (err)
1189 goto out;
1190
1191 err = iter->ops->add_single_entry(iter, al);
1192 if (err)
1193 goto out;
1194
Namhyung Kim9d3c02d2014-01-07 17:02:25 +09001195 if (iter->he && iter->add_entry_cb) {
1196 err = iter->add_entry_cb(iter, al, true, arg);
1197 if (err)
1198 goto out;
1199 }
1200
Namhyung Kim69bcb012013-10-30 09:40:34 +09001201 while (iter->ops->next_entry(iter, al)) {
1202 err = iter->ops->add_next_entry(iter, al);
1203 if (err)
1204 break;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +09001205
1206 if (iter->he && iter->add_entry_cb) {
1207 err = iter->add_entry_cb(iter, al, false, arg);
1208 if (err)
1209 goto out;
1210 }
Namhyung Kim69bcb012013-10-30 09:40:34 +09001211 }
1212
1213out:
1214 err2 = iter->ops->finish_entry(iter, al);
1215 if (!err)
1216 err = err2;
1217
Krister Johansen9c68ae92017-01-05 22:23:31 -08001218 map__put(alm);
1219
Namhyung Kim69bcb012013-10-30 09:40:34 +09001220 return err;
1221}
1222
John Kacur3d1d07e2009-09-28 15:32:55 +02001223int64_t
1224hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
1225{
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001226 struct hists *hists = left->hists;
Namhyung Kim093f0ef32014-03-03 12:07:47 +09001227 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +02001228 int64_t cmp = 0;
1229
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001230 hists__for_each_sort_list(hists, fmt) {
Namhyung Kim84b6ee82016-02-27 03:52:43 +09001231 if (perf_hpp__is_dynamic_entry(fmt) &&
1232 !perf_hpp__defined_dynamic_entry(fmt, hists))
1233 continue;
1234
Namhyung Kim87bbdf72015-01-08 09:45:46 +09001235 cmp = fmt->cmp(fmt, left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +02001236 if (cmp)
1237 break;
1238 }
1239
1240 return cmp;
1241}
1242
1243int64_t
1244hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
1245{
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001246 struct hists *hists = left->hists;
Namhyung Kim093f0ef32014-03-03 12:07:47 +09001247 struct perf_hpp_fmt *fmt;
John Kacur3d1d07e2009-09-28 15:32:55 +02001248 int64_t cmp = 0;
1249
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001250 hists__for_each_sort_list(hists, fmt) {
Namhyung Kim84b6ee82016-02-27 03:52:43 +09001251 if (perf_hpp__is_dynamic_entry(fmt) &&
1252 !perf_hpp__defined_dynamic_entry(fmt, hists))
1253 continue;
1254
Namhyung Kim87bbdf72015-01-08 09:45:46 +09001255 cmp = fmt->collapse(fmt, left, right);
John Kacur3d1d07e2009-09-28 15:32:55 +02001256 if (cmp)
1257 break;
1258 }
1259
1260 return cmp;
1261}
1262
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -03001263void hist_entry__delete(struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +02001264{
Jiri Olsaf542e762016-07-05 08:56:04 +02001265 struct hist_entry_ops *ops = he->ops;
1266
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001267 thread__zput(he->thread);
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -03001268 map__zput(he->ms.map);
1269
1270 if (he->branch_info) {
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -03001271 map__zput(he->branch_info->from.ms.map);
1272 map__zput(he->branch_info->to.ms.map);
Andi Kleen508be0d2016-05-20 13:15:08 -07001273 free_srcline(he->branch_info->srcline_from);
1274 free_srcline(he->branch_info->srcline_to);
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -03001275 zfree(&he->branch_info);
1276 }
1277
1278 if (he->mem_info) {
Arnaldo Carvalho de Melod46a4cd2019-11-04 15:57:38 -03001279 map__zput(he->mem_info->iaddr.ms.map);
1280 map__zput(he->mem_info->daddr.ms.map);
Jiri Olsa9f874982018-03-07 16:50:06 +01001281 mem_info__zput(he->mem_info);
Arnaldo Carvalho de Melo5c24b672015-06-15 23:29:51 -03001282 }
1283
Jin Yao99150a12019-06-28 17:23:01 +08001284 if (he->block_info)
1285 block_info__zput(he->block_info);
1286
Andi Kleen4968ac82019-03-11 07:44:58 -07001287 zfree(&he->res_samples);
Namhyung Kimf8be1c82012-09-11 13:15:07 +09001288 zfree(&he->stat_acc);
Namhyung Kimf048d542013-09-11 14:09:28 +09001289 free_srcline(he->srcline);
Andi Kleen31191a82015-08-07 15:54:24 -07001290 if (he->srcfile && he->srcfile[0])
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001291 zfree(&he->srcfile);
Namhyung Kimd1149602014-12-30 14:38:13 +09001292 free_callchain(he->callchain);
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001293 zfree(&he->trace_output);
1294 zfree(&he->raw_data);
Jiri Olsaf542e762016-07-05 08:56:04 +02001295 ops->free(he);
John Kacur3d1d07e2009-09-28 15:32:55 +02001296}
1297
1298/*
Arnaldo Carvalho de Melo89fee702016-02-11 17:14:13 -03001299 * If this is not the last column, then we need to pad it according to the
Ingo Molnaradba1632018-12-03 11:22:00 +01001300 * pre-calculated max length for this column, otherwise don't bother adding
Arnaldo Carvalho de Melo89fee702016-02-11 17:14:13 -03001301 * spaces because that would break viewing this with, for instance, 'less',
1302 * that would show tons of trailing spaces when a long C++ demangled method
1303 * names is sampled.
1304*/
1305int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
1306 struct perf_hpp_fmt *fmt, int printed)
1307{
1308 if (!list_is_last(&fmt->list, &he->hists->hpp_list->fields)) {
Jiri Olsada1b0402016-06-14 20:19:20 +02001309 const int width = fmt->width(fmt, hpp, he->hists);
Arnaldo Carvalho de Melo89fee702016-02-11 17:14:13 -03001310 if (printed < width) {
1311 advance_hpp(hpp, printed);
1312 printed = scnprintf(hpp->buf, hpp->size, "%-*s", width - printed, " ");
1313 }
1314 }
1315
1316 return printed;
1317}
1318
1319/*
John Kacur3d1d07e2009-09-28 15:32:55 +02001320 * collapse the histogram
1321 */
1322
Namhyung Kimaef810e2016-02-25 00:13:34 +09001323static void hists__apply_filters(struct hists *hists, struct hist_entry *he);
Namhyung Kimaec13a72016-03-09 22:46:58 +09001324static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *he,
1325 enum hist_filter type);
1326
1327typedef bool (*fmt_chk_fn)(struct perf_hpp_fmt *fmt);
1328
1329static bool check_thread_entry(struct perf_hpp_fmt *fmt)
1330{
1331 return perf_hpp__is_thread_entry(fmt) || perf_hpp__is_comm_entry(fmt);
1332}
1333
1334static void hist_entry__check_and_remove_filter(struct hist_entry *he,
1335 enum hist_filter type,
1336 fmt_chk_fn check)
1337{
1338 struct perf_hpp_fmt *fmt;
1339 bool type_match = false;
1340 struct hist_entry *parent = he->parent_he;
1341
1342 switch (type) {
1343 case HIST_FILTER__THREAD:
1344 if (symbol_conf.comm_list == NULL &&
1345 symbol_conf.pid_list == NULL &&
1346 symbol_conf.tid_list == NULL)
1347 return;
1348 break;
1349 case HIST_FILTER__DSO:
1350 if (symbol_conf.dso_list == NULL)
1351 return;
1352 break;
1353 case HIST_FILTER__SYMBOL:
1354 if (symbol_conf.sym_list == NULL)
1355 return;
1356 break;
1357 case HIST_FILTER__PARENT:
1358 case HIST_FILTER__GUEST:
1359 case HIST_FILTER__HOST:
1360 case HIST_FILTER__SOCKET:
Jiri Olsa9857b712016-08-17 14:55:23 +02001361 case HIST_FILTER__C2C:
Namhyung Kimaec13a72016-03-09 22:46:58 +09001362 default:
1363 return;
1364 }
1365
1366 /* if it's filtered by own fmt, it has to have filter bits */
1367 perf_hpp_list__for_each_format(he->hpp_list, fmt) {
1368 if (check(fmt)) {
1369 type_match = true;
1370 break;
1371 }
1372 }
1373
1374 if (type_match) {
1375 /*
1376 * If the filter is for current level entry, propagate
1377 * filter marker to parents. The marker bit was
1378 * already set by default so it only needs to clear
1379 * non-filtered entries.
1380 */
1381 if (!(he->filtered & (1 << type))) {
1382 while (parent) {
1383 parent->filtered &= ~(1 << type);
1384 parent = parent->parent_he;
1385 }
1386 }
1387 } else {
1388 /*
1389 * If current entry doesn't have matching formats, set
1390 * filter marker for upper level entries. it will be
1391 * cleared if its lower level entries is not filtered.
1392 *
1393 * For lower-level entries, it inherits parent's
1394 * filter bit so that lower level entries of a
1395 * non-filtered entry won't set the filter marker.
1396 */
1397 if (parent == NULL)
1398 he->filtered |= (1 << type);
1399 else
1400 he->filtered |= (parent->filtered & (1 << type));
1401 }
1402}
1403
1404static void hist_entry__apply_hierarchy_filters(struct hist_entry *he)
1405{
1406 hist_entry__check_and_remove_filter(he, HIST_FILTER__THREAD,
1407 check_thread_entry);
1408
1409 hist_entry__check_and_remove_filter(he, HIST_FILTER__DSO,
1410 perf_hpp__is_dso_entry);
1411
1412 hist_entry__check_and_remove_filter(he, HIST_FILTER__SYMBOL,
1413 perf_hpp__is_sym_entry);
1414
1415 hists__apply_filters(he->hists, he);
1416}
Namhyung Kimaef810e2016-02-25 00:13:34 +09001417
1418static struct hist_entry *hierarchy_insert_entry(struct hists *hists,
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001419 struct rb_root_cached *root,
Namhyung Kimaef810e2016-02-25 00:13:34 +09001420 struct hist_entry *he,
Namhyung Kimaec13a72016-03-09 22:46:58 +09001421 struct hist_entry *parent_he,
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001422 struct perf_hpp_list *hpp_list)
Namhyung Kimaef810e2016-02-25 00:13:34 +09001423{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001424 struct rb_node **p = &root->rb_root.rb_node;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001425 struct rb_node *parent = NULL;
1426 struct hist_entry *iter, *new;
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001427 struct perf_hpp_fmt *fmt;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001428 int64_t cmp;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001429 bool leftmost = true;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001430
1431 while (*p != NULL) {
1432 parent = *p;
1433 iter = rb_entry(parent, struct hist_entry, rb_node_in);
1434
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001435 cmp = 0;
1436 perf_hpp_list__for_each_sort_list(hpp_list, fmt) {
1437 cmp = fmt->collapse(fmt, iter, he);
1438 if (cmp)
1439 break;
1440 }
1441
Namhyung Kimaef810e2016-02-25 00:13:34 +09001442 if (!cmp) {
1443 he_stat__add_stat(&iter->stat, &he->stat);
1444 return iter;
1445 }
1446
1447 if (cmp < 0)
1448 p = &parent->rb_left;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001449 else {
Namhyung Kimaef810e2016-02-25 00:13:34 +09001450 p = &parent->rb_right;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001451 leftmost = false;
1452 }
Namhyung Kimaef810e2016-02-25 00:13:34 +09001453 }
1454
1455 new = hist_entry__new(he, true);
1456 if (new == NULL)
1457 return NULL;
1458
Namhyung Kimaef810e2016-02-25 00:13:34 +09001459 hists->nr_entries++;
1460
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001461 /* save related format list for output */
1462 new->hpp_list = hpp_list;
Namhyung Kimaec13a72016-03-09 22:46:58 +09001463 new->parent_he = parent_he;
1464
1465 hist_entry__apply_hierarchy_filters(new);
Namhyung Kimaef810e2016-02-25 00:13:34 +09001466
1467 /* some fields are now passed to 'new' */
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001468 perf_hpp_list__for_each_sort_list(hpp_list, fmt) {
1469 if (perf_hpp__is_trace_entry(fmt) || perf_hpp__is_dynamic_entry(fmt))
1470 he->trace_output = NULL;
1471 else
1472 new->trace_output = NULL;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001473
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001474 if (perf_hpp__is_srcline_entry(fmt))
1475 he->srcline = NULL;
1476 else
1477 new->srcline = NULL;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001478
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001479 if (perf_hpp__is_srcfile_entry(fmt))
1480 he->srcfile = NULL;
1481 else
1482 new->srcfile = NULL;
1483 }
Namhyung Kimaef810e2016-02-25 00:13:34 +09001484
1485 rb_link_node(&new->rb_node_in, parent, p);
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001486 rb_insert_color_cached(&new->rb_node_in, root, leftmost);
Namhyung Kimaef810e2016-02-25 00:13:34 +09001487 return new;
1488}
1489
1490static int hists__hierarchy_insert_entry(struct hists *hists,
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001491 struct rb_root_cached *root,
Namhyung Kimaef810e2016-02-25 00:13:34 +09001492 struct hist_entry *he)
1493{
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001494 struct perf_hpp_list_node *node;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001495 struct hist_entry *new_he = NULL;
1496 struct hist_entry *parent = NULL;
1497 int depth = 0;
1498 int ret = 0;
1499
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001500 list_for_each_entry(node, &hists->hpp_formats, list) {
1501 /* skip period (overhead) and elided columns */
1502 if (node->level == 0 || node->skip)
Namhyung Kimaef810e2016-02-25 00:13:34 +09001503 continue;
1504
1505 /* insert copy of 'he' for each fmt into the hierarchy */
Namhyung Kimaec13a72016-03-09 22:46:58 +09001506 new_he = hierarchy_insert_entry(hists, root, he, parent, &node->hpp);
Namhyung Kimaef810e2016-02-25 00:13:34 +09001507 if (new_he == NULL) {
1508 ret = -1;
1509 break;
1510 }
1511
1512 root = &new_he->hroot_in;
Namhyung Kimaef810e2016-02-25 00:13:34 +09001513 new_he->depth = depth++;
1514 parent = new_he;
1515 }
1516
1517 if (new_he) {
1518 new_he->leaf = true;
1519
Arnaldo Carvalho de Melofabd37b2018-05-29 13:59:24 -03001520 if (hist_entry__has_callchains(new_he) &&
1521 symbol_conf.use_callchain) {
Namhyung Kimaef810e2016-02-25 00:13:34 +09001522 callchain_cursor_reset(&callchain_cursor);
1523 if (callchain_merge(&callchain_cursor,
1524 new_he->callchain,
1525 he->callchain) < 0)
1526 ret = -1;
1527 }
1528 }
1529
1530 /* 'he' is no longer used */
1531 hist_entry__delete(he);
1532
1533 /* return 0 (or -1) since it already applied filters */
1534 return ret;
1535}
1536
Jiri Olsa592dac62016-03-24 13:52:17 +01001537static int hists__collapse_insert_entry(struct hists *hists,
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001538 struct rb_root_cached *root,
Jiri Olsa592dac62016-03-24 13:52:17 +01001539 struct hist_entry *he)
John Kacur3d1d07e2009-09-28 15:32:55 +02001540{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001541 struct rb_node **p = &root->rb_root.rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +02001542 struct rb_node *parent = NULL;
1543 struct hist_entry *iter;
1544 int64_t cmp;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001545 bool leftmost = true;
John Kacur3d1d07e2009-09-28 15:32:55 +02001546
Namhyung Kimaef810e2016-02-25 00:13:34 +09001547 if (symbol_conf.report_hierarchy)
1548 return hists__hierarchy_insert_entry(hists, root, he);
1549
John Kacur3d1d07e2009-09-28 15:32:55 +02001550 while (*p != NULL) {
1551 parent = *p;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001552 iter = rb_entry(parent, struct hist_entry, rb_node_in);
John Kacur3d1d07e2009-09-28 15:32:55 +02001553
1554 cmp = hist_entry__collapse(iter, he);
1555
1556 if (!cmp) {
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001557 int ret = 0;
1558
Namhyung Kim139c0812012-10-04 21:49:43 +09001559 he_stat__add_stat(&iter->stat, &he->stat);
Namhyung Kimf8be1c82012-09-11 13:15:07 +09001560 if (symbol_conf.cumulate_callchain)
1561 he_stat__add_stat(iter->stat_acc, he->stat_acc);
Namhyung Kim9ec60972012-09-26 16:47:28 +09001562
Arnaldo Carvalho de Melofabd37b2018-05-29 13:59:24 -03001563 if (hist_entry__has_callchains(he) && symbol_conf.use_callchain) {
Namhyung Kim47260642012-05-31 14:43:26 +09001564 callchain_cursor_reset(&callchain_cursor);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001565 if (callchain_merge(&callchain_cursor,
1566 iter->callchain,
1567 he->callchain) < 0)
1568 ret = -1;
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +01001569 }
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -03001570 hist_entry__delete(he);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001571 return ret;
John Kacur3d1d07e2009-09-28 15:32:55 +02001572 }
1573
1574 if (cmp < 0)
1575 p = &(*p)->rb_left;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001576 else {
John Kacur3d1d07e2009-09-28 15:32:55 +02001577 p = &(*p)->rb_right;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001578 leftmost = false;
1579 }
John Kacur3d1d07e2009-09-28 15:32:55 +02001580 }
Namhyung Kim740b97f2014-12-22 13:44:10 +09001581 hists->nr_entries++;
John Kacur3d1d07e2009-09-28 15:32:55 +02001582
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001583 rb_link_node(&he->rb_node_in, parent, p);
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001584 rb_insert_color_cached(&he->rb_node_in, root, leftmost);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001585 return 1;
John Kacur3d1d07e2009-09-28 15:32:55 +02001586}
1587
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001588struct rb_root_cached *hists__get_rotate_entries_in(struct hists *hists)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001589{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001590 struct rb_root_cached *root;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001591
1592 pthread_mutex_lock(&hists->lock);
1593
1594 root = hists->entries_in;
1595 if (++hists->entries_in > &hists->entries_in_array[1])
1596 hists->entries_in = &hists->entries_in_array[0];
1597
1598 pthread_mutex_unlock(&hists->lock);
1599
1600 return root;
1601}
1602
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001603static void hists__apply_filters(struct hists *hists, struct hist_entry *he)
1604{
1605 hists__filter_entry_by_dso(hists, he);
1606 hists__filter_entry_by_thread(hists, he);
Namhyung Kime94d53e2012-03-16 17:50:51 +09001607 hists__filter_entry_by_symbol(hists, he);
Kan Liang21394d92015-09-04 10:45:44 -04001608 hists__filter_entry_by_socket(hists, he);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001609}
1610
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001611int hists__collapse_resort(struct hists *hists, struct ui_progress *prog)
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001612{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001613 struct rb_root_cached *root;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001614 struct rb_node *next;
1615 struct hist_entry *n;
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001616 int ret;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001617
Jiri Olsa52225032016-05-03 13:54:42 +02001618 if (!hists__has(hists, need_collapse))
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001619 return 0;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001620
Namhyung Kim740b97f2014-12-22 13:44:10 +09001621 hists->nr_entries = 0;
1622
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001623 root = hists__get_rotate_entries_in(hists);
Namhyung Kim740b97f2014-12-22 13:44:10 +09001624
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001625 next = rb_first_cached(root);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001626
1627 while (next) {
Arnaldo Carvalho de Melo33e940a2013-09-17 16:34:28 -03001628 if (session_done())
1629 break;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001630 n = rb_entry(next, struct hist_entry, rb_node_in);
1631 next = rb_next(&n->rb_node_in);
1632
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001633 rb_erase_cached(&n->rb_node_in, root);
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001634 ret = hists__collapse_insert_entry(hists, &hists->entries_collapsed, n);
1635 if (ret < 0)
1636 return -1;
1637
1638 if (ret) {
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001639 /*
1640 * If it wasn't combined with one of the entries already
1641 * collapsed, we need to apply the filters that may have
1642 * been set by, say, the hist_browser.
1643 */
1644 hists__apply_filters(hists, n);
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02001645 }
Namhyung Kimc1fb5652013-10-11 14:15:38 +09001646 if (prog)
1647 ui_progress__update(prog, 1);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001648 }
Namhyung Kimbba58cd2016-02-16 23:08:25 +09001649 return 0;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001650}
1651
Jiri Olsa722ddfd2019-11-05 00:27:11 +01001652static int64_t hist_entry__sort(struct hist_entry *a, struct hist_entry *b)
Namhyung Kim29d720e2013-01-22 18:09:33 +09001653{
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001654 struct hists *hists = a->hists;
Namhyung Kim043ca3892014-03-03 14:18:00 +09001655 struct perf_hpp_fmt *fmt;
1656 int64_t cmp = 0;
Namhyung Kim29d720e2013-01-22 18:09:33 +09001657
Jiri Olsaaa6f50a2016-01-18 10:24:24 +01001658 hists__for_each_sort_list(hists, fmt) {
Namhyung Kim361459f2015-12-23 02:07:08 +09001659 if (perf_hpp__should_skip(fmt, a->hists))
Namhyung Kime67d49a2014-03-18 13:00:59 +09001660 continue;
1661
Namhyung Kim87bbdf72015-01-08 09:45:46 +09001662 cmp = fmt->sort(fmt, a, b);
Namhyung Kim043ca3892014-03-03 14:18:00 +09001663 if (cmp)
Namhyung Kim29d720e2013-01-22 18:09:33 +09001664 break;
1665 }
1666
Namhyung Kim043ca3892014-03-03 14:18:00 +09001667 return cmp;
Namhyung Kim29d720e2013-01-22 18:09:33 +09001668}
1669
Namhyung Kim9283ba92014-04-24 16:37:26 +09001670static void hists__reset_filter_stats(struct hists *hists)
1671{
1672 hists->nr_non_filtered_entries = 0;
1673 hists->stats.total_non_filtered_period = 0;
1674}
1675
1676void hists__reset_stats(struct hists *hists)
1677{
1678 hists->nr_entries = 0;
1679 hists->stats.total_period = 0;
1680
1681 hists__reset_filter_stats(hists);
1682}
1683
1684static void hists__inc_filter_stats(struct hists *hists, struct hist_entry *h)
1685{
1686 hists->nr_non_filtered_entries++;
1687 hists->stats.total_non_filtered_period += h->stat.period;
1688}
1689
1690void hists__inc_stats(struct hists *hists, struct hist_entry *h)
1691{
1692 if (!h->filtered)
1693 hists__inc_filter_stats(hists, h);
1694
1695 hists->nr_entries++;
1696 hists->stats.total_period += h->stat.period;
1697}
1698
Namhyung Kimf7fb5382016-03-09 22:47:02 +09001699static void hierarchy_recalc_total_periods(struct hists *hists)
1700{
1701 struct rb_node *node;
1702 struct hist_entry *he;
1703
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001704 node = rb_first_cached(&hists->entries);
Namhyung Kimf7fb5382016-03-09 22:47:02 +09001705
1706 hists->stats.total_period = 0;
1707 hists->stats.total_non_filtered_period = 0;
1708
1709 /*
1710 * recalculate total period using top-level entries only
1711 * since lower level entries only see non-filtered entries
1712 * but upper level entries have sum of both entries.
1713 */
1714 while (node) {
1715 he = rb_entry(node, struct hist_entry, rb_node);
1716 node = rb_next(node);
1717
1718 hists->stats.total_period += he->stat.period;
1719 if (!he->filtered)
1720 hists->stats.total_non_filtered_period += he->stat.period;
1721 }
1722}
1723
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001724static void hierarchy_insert_output_entry(struct rb_root_cached *root,
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001725 struct hist_entry *he)
1726{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001727 struct rb_node **p = &root->rb_root.rb_node;
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001728 struct rb_node *parent = NULL;
1729 struct hist_entry *iter;
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001730 struct perf_hpp_fmt *fmt;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001731 bool leftmost = true;
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001732
1733 while (*p != NULL) {
1734 parent = *p;
1735 iter = rb_entry(parent, struct hist_entry, rb_node);
1736
1737 if (hist_entry__sort(he, iter) > 0)
1738 p = &parent->rb_left;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001739 else {
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001740 p = &parent->rb_right;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001741 leftmost = false;
1742 }
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001743 }
1744
1745 rb_link_node(&he->rb_node, parent, p);
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001746 rb_insert_color_cached(&he->rb_node, root, leftmost);
Namhyung Kimabab5e72016-02-27 03:52:47 +09001747
1748 /* update column width of dynamic entry */
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -03001749 perf_hpp_list__for_each_sort_list(he->hpp_list, fmt) {
1750 if (perf_hpp__is_dynamic_entry(fmt))
1751 fmt->sort(fmt, he, NULL);
1752 }
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001753}
1754
1755static void hists__hierarchy_output_resort(struct hists *hists,
1756 struct ui_progress *prog,
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001757 struct rb_root_cached *root_in,
1758 struct rb_root_cached *root_out,
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001759 u64 min_callchain_hits,
1760 bool use_callchain)
1761{
1762 struct rb_node *node;
1763 struct hist_entry *he;
1764
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001765 *root_out = RB_ROOT_CACHED;
1766 node = rb_first_cached(root_in);
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001767
1768 while (node) {
1769 he = rb_entry(node, struct hist_entry, rb_node_in);
1770 node = rb_next(node);
1771
1772 hierarchy_insert_output_entry(root_out, he);
1773
1774 if (prog)
1775 ui_progress__update(prog, 1);
1776
Namhyung Kimc72ab442016-11-08 22:08:33 +09001777 hists->nr_entries++;
1778 if (!he->filtered) {
1779 hists->nr_non_filtered_entries++;
1780 hists__calc_col_len(hists, he);
1781 }
1782
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001783 if (!he->leaf) {
1784 hists__hierarchy_output_resort(hists, prog,
1785 &he->hroot_in,
1786 &he->hroot_out,
1787 min_callchain_hits,
1788 use_callchain);
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001789 continue;
1790 }
1791
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001792 if (!use_callchain)
1793 continue;
1794
1795 if (callchain_param.mode == CHAIN_GRAPH_REL) {
1796 u64 total = he->stat.period;
1797
1798 if (symbol_conf.cumulate_callchain)
1799 total = he->stat_acc->period;
1800
1801 min_callchain_hits = total * (callchain_param.min_percent / 100);
1802 }
1803
1804 callchain_param.sort(&he->sorted_chain, he->callchain,
1805 min_callchain_hits, &callchain_param);
1806 }
1807}
1808
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001809static void __hists__insert_output_entry(struct rb_root_cached *entries,
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -03001810 struct hist_entry *he,
Kan Liangf9db0d02015-08-11 06:30:48 -04001811 u64 min_callchain_hits,
1812 bool use_callchain)
John Kacur3d1d07e2009-09-28 15:32:55 +02001813{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001814 struct rb_node **p = &entries->rb_root.rb_node;
John Kacur3d1d07e2009-09-28 15:32:55 +02001815 struct rb_node *parent = NULL;
1816 struct hist_entry *iter;
Namhyung Kimabab5e72016-02-27 03:52:47 +09001817 struct perf_hpp_fmt *fmt;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001818 bool leftmost = true;
John Kacur3d1d07e2009-09-28 15:32:55 +02001819
Namhyung Kim744070e2016-01-28 00:40:48 +09001820 if (use_callchain) {
1821 if (callchain_param.mode == CHAIN_GRAPH_REL) {
1822 u64 total = he->stat.period;
1823
1824 if (symbol_conf.cumulate_callchain)
1825 total = he->stat_acc->period;
1826
1827 min_callchain_hits = total * (callchain_param.min_percent / 100);
1828 }
Arnaldo Carvalho de Melob9fb9302010-04-02 09:50:42 -03001829 callchain_param.sort(&he->sorted_chain, he->callchain,
John Kacur3d1d07e2009-09-28 15:32:55 +02001830 min_callchain_hits, &callchain_param);
Namhyung Kim744070e2016-01-28 00:40:48 +09001831 }
John Kacur3d1d07e2009-09-28 15:32:55 +02001832
1833 while (*p != NULL) {
1834 parent = *p;
1835 iter = rb_entry(parent, struct hist_entry, rb_node);
1836
Namhyung Kim043ca3892014-03-03 14:18:00 +09001837 if (hist_entry__sort(he, iter) > 0)
John Kacur3d1d07e2009-09-28 15:32:55 +02001838 p = &(*p)->rb_left;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001839 else {
John Kacur3d1d07e2009-09-28 15:32:55 +02001840 p = &(*p)->rb_right;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001841 leftmost = false;
1842 }
John Kacur3d1d07e2009-09-28 15:32:55 +02001843 }
1844
1845 rb_link_node(&he->rb_node, parent, p);
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001846 rb_insert_color_cached(&he->rb_node, entries, leftmost);
Namhyung Kimabab5e72016-02-27 03:52:47 +09001847
1848 perf_hpp_list__for_each_sort_list(&perf_hpp_list, fmt) {
1849 if (perf_hpp__is_dynamic_entry(fmt) &&
1850 perf_hpp__defined_dynamic_entry(fmt, he->hists))
1851 fmt->sort(fmt, he, NULL); /* update column width */
1852 }
John Kacur3d1d07e2009-09-28 15:32:55 +02001853}
1854
Jiri Olsa01441af2016-01-18 10:23:59 +01001855static void output_resort(struct hists *hists, struct ui_progress *prog,
Jiri Olsae4c38fd2019-02-04 15:18:06 +01001856 bool use_callchain, hists__resort_cb_t cb,
1857 void *cb_arg)
John Kacur3d1d07e2009-09-28 15:32:55 +02001858{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001859 struct rb_root_cached *root;
John Kacur3d1d07e2009-09-28 15:32:55 +02001860 struct rb_node *next;
1861 struct hist_entry *n;
Namhyung Kim467ef102016-02-16 23:08:19 +09001862 u64 callchain_total;
John Kacur3d1d07e2009-09-28 15:32:55 +02001863 u64 min_callchain_hits;
1864
Namhyung Kim467ef102016-02-16 23:08:19 +09001865 callchain_total = hists->callchain_period;
1866 if (symbol_conf.filter_relative)
1867 callchain_total = hists->callchain_non_filtered_period;
1868
1869 min_callchain_hits = callchain_total * (callchain_param.min_percent / 100);
John Kacur3d1d07e2009-09-28 15:32:55 +02001870
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001871 hists__reset_stats(hists);
1872 hists__reset_col_len(hists);
1873
1874 if (symbol_conf.report_hierarchy) {
Namhyung Kimf7fb5382016-03-09 22:47:02 +09001875 hists__hierarchy_output_resort(hists, prog,
1876 &hists->entries_collapsed,
1877 &hists->entries,
1878 min_callchain_hits,
1879 use_callchain);
1880 hierarchy_recalc_total_periods(hists);
1881 return;
Namhyung Kim1a3906a2016-02-25 00:13:35 +09001882 }
1883
Jiri Olsa52225032016-05-03 13:54:42 +02001884 if (hists__has(hists, need_collapse))
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001885 root = &hists->entries_collapsed;
1886 else
1887 root = hists->entries_in;
1888
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001889 next = rb_first_cached(root);
1890 hists->entries = RB_ROOT_CACHED;
John Kacur3d1d07e2009-09-28 15:32:55 +02001891
1892 while (next) {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001893 n = rb_entry(next, struct hist_entry, rb_node_in);
1894 next = rb_next(&n->rb_node_in);
John Kacur3d1d07e2009-09-28 15:32:55 +02001895
Jiri Olsae4c38fd2019-02-04 15:18:06 +01001896 if (cb && cb(n, cb_arg))
Jiri Olsa52c5cc32016-08-01 20:02:34 +02001897 continue;
1898
Kan Liangf9db0d02015-08-11 06:30:48 -04001899 __hists__insert_output_entry(&hists->entries, n, min_callchain_hits, use_callchain);
Namhyung Kim62638352014-04-24 16:21:46 +09001900 hists__inc_stats(hists, n);
Namhyung Kimae993ef2014-04-24 16:25:19 +09001901
1902 if (!n->filtered)
1903 hists__calc_col_len(hists, n);
Namhyung Kim740b97f2014-12-22 13:44:10 +09001904
1905 if (prog)
1906 ui_progress__update(prog, 1);
John Kacur3d1d07e2009-09-28 15:32:55 +02001907 }
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03001908}
Arnaldo Carvalho de Melob9bf0892009-12-14 11:37:11 -02001909
Jiri Olsa32dcd022019-07-21 13:23:51 +02001910void perf_evsel__output_resort_cb(struct evsel *evsel, struct ui_progress *prog,
Jiri Olsa57496182019-02-04 15:18:07 +01001911 hists__resort_cb_t cb, void *cb_arg)
Jiri Olsa01441af2016-01-18 10:23:59 +01001912{
Jiri Olsa01441af2016-01-18 10:23:59 +01001913 bool use_callchain;
1914
1915 if (evsel && symbol_conf.use_callchain && !symbol_conf.show_ref_callgraph)
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -03001916 use_callchain = evsel__has_callchain(evsel);
Jiri Olsa01441af2016-01-18 10:23:59 +01001917 else
1918 use_callchain = symbol_conf.use_callchain;
1919
Jin Yaob49a8212017-05-08 18:43:02 +08001920 use_callchain |= symbol_conf.show_branchflag_count;
1921
Jiri Olsa57496182019-02-04 15:18:07 +01001922 output_resort(evsel__hists(evsel), prog, use_callchain, cb, cb_arg);
1923}
1924
Jiri Olsa32dcd022019-07-21 13:23:51 +02001925void perf_evsel__output_resort(struct evsel *evsel, struct ui_progress *prog)
Jiri Olsa57496182019-02-04 15:18:07 +01001926{
1927 return perf_evsel__output_resort_cb(evsel, prog, NULL, NULL);
Jiri Olsa452ce032016-01-18 10:24:00 +01001928}
1929
1930void hists__output_resort(struct hists *hists, struct ui_progress *prog)
1931{
Jiri Olsae4c38fd2019-02-04 15:18:06 +01001932 output_resort(hists, prog, symbol_conf.use_callchain, NULL, NULL);
Jiri Olsa52c5cc32016-08-01 20:02:34 +02001933}
1934
1935void hists__output_resort_cb(struct hists *hists, struct ui_progress *prog,
1936 hists__resort_cb_t cb)
1937{
Jiri Olsae4c38fd2019-02-04 15:18:06 +01001938 output_resort(hists, prog, symbol_conf.use_callchain, cb, NULL);
Jiri Olsa01441af2016-01-18 10:23:59 +01001939}
1940
Namhyung Kim8c018722016-02-25 00:13:36 +09001941static bool can_goto_child(struct hist_entry *he, enum hierarchy_move_dir hmd)
1942{
1943 if (he->leaf || hmd == HMD_FORCE_SIBLING)
1944 return false;
1945
1946 if (he->unfolded || hmd == HMD_FORCE_CHILD)
1947 return true;
1948
1949 return false;
1950}
1951
1952struct rb_node *rb_hierarchy_last(struct rb_node *node)
1953{
1954 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1955
1956 while (can_goto_child(he, HMD_NORMAL)) {
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001957 node = rb_last(&he->hroot_out.rb_root);
Namhyung Kim8c018722016-02-25 00:13:36 +09001958 he = rb_entry(node, struct hist_entry, rb_node);
1959 }
1960 return node;
1961}
1962
1963struct rb_node *__rb_hierarchy_next(struct rb_node *node, enum hierarchy_move_dir hmd)
1964{
1965 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1966
1967 if (can_goto_child(he, hmd))
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08001968 node = rb_first_cached(&he->hroot_out);
Namhyung Kim8c018722016-02-25 00:13:36 +09001969 else
1970 node = rb_next(node);
1971
1972 while (node == NULL) {
1973 he = he->parent_he;
1974 if (he == NULL)
1975 break;
1976
1977 node = rb_next(&he->rb_node);
1978 }
1979 return node;
1980}
1981
1982struct rb_node *rb_hierarchy_prev(struct rb_node *node)
1983{
1984 struct hist_entry *he = rb_entry(node, struct hist_entry, rb_node);
1985
1986 node = rb_prev(node);
1987 if (node)
1988 return rb_hierarchy_last(node);
1989
1990 he = he->parent_he;
1991 if (he == NULL)
1992 return NULL;
1993
1994 return &he->rb_node;
1995}
1996
Namhyung Kima7b58952016-02-26 21:13:16 +09001997bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit)
1998{
1999 struct rb_node *node;
2000 struct hist_entry *child;
2001 float percent;
2002
2003 if (he->leaf)
2004 return false;
2005
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002006 node = rb_first_cached(&he->hroot_out);
Namhyung Kima7b58952016-02-26 21:13:16 +09002007 child = rb_entry(node, struct hist_entry, rb_node);
2008
2009 while (node && child->filtered) {
2010 node = rb_next(node);
2011 child = rb_entry(node, struct hist_entry, rb_node);
2012 }
2013
2014 if (node)
2015 percent = hist_entry__get_percent_limit(child);
2016 else
2017 percent = 0;
2018
2019 return node && percent >= limit;
2020}
2021
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03002022static void hists__remove_entry_filter(struct hists *hists, struct hist_entry *h,
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03002023 enum hist_filter filter)
2024{
2025 h->filtered &= ~(1 << filter);
Namhyung Kim155e9af2016-02-25 00:13:38 +09002026
2027 if (symbol_conf.report_hierarchy) {
2028 struct hist_entry *parent = h->parent_he;
2029
2030 while (parent) {
2031 he_stat__add_stat(&parent->stat, &h->stat);
2032
2033 parent->filtered &= ~(1 << filter);
2034
2035 if (parent->filtered)
2036 goto next;
2037
2038 /* force fold unfiltered entry for simplicity */
2039 parent->unfolded = false;
Namhyung Kim79dded82016-02-26 21:13:19 +09002040 parent->has_no_entry = false;
Namhyung Kim155e9af2016-02-25 00:13:38 +09002041 parent->row_offset = 0;
2042 parent->nr_rows = 0;
2043next:
2044 parent = parent->parent_he;
2045 }
2046 }
2047
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03002048 if (h->filtered)
2049 return;
2050
Namhyung Kim87e90f42014-04-24 16:44:16 +09002051 /* force fold unfiltered entry for simplicity */
Namhyung Kim3698dab2015-05-05 23:55:46 +09002052 h->unfolded = false;
Namhyung Kim79dded82016-02-26 21:13:19 +09002053 h->has_no_entry = false;
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -03002054 h->row_offset = 0;
He Kuanga8cd1f42015-03-11 20:36:03 +08002055 h->nr_rows = 0;
Namhyung Kim9283ba92014-04-24 16:37:26 +09002056
Namhyung Kim1ab1fa52013-12-26 15:11:52 +09002057 hists->stats.nr_non_filtered_samples += h->stat.nr_events;
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03002058
Namhyung Kim9283ba92014-04-24 16:37:26 +09002059 hists__inc_filter_stats(hists, h);
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03002060 hists__calc_col_len(hists, h);
Arnaldo Carvalho de Melocc5edb02010-07-16 12:35:07 -03002061}
2062
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02002063
2064static bool hists__filter_entry_by_dso(struct hists *hists,
2065 struct hist_entry *he)
2066{
2067 if (hists->dso_filter != NULL &&
2068 (he->ms.map == NULL || he->ms.map->dso != hists->dso_filter)) {
2069 he->filtered |= (1 << HIST_FILTER__DSO);
2070 return true;
2071 }
2072
2073 return false;
2074}
2075
Arnaldo Carvalho de Melo90cf1fb2011-10-19 13:09:10 -02002076static bool hists__filter_entry_by_thread(struct hists *hists,
2077 struct hist_entry *he)
2078{
2079 if (hists->thread_filter != NULL &&
2080 he->thread != hists->thread_filter) {
2081 he->filtered |= (1 << HIST_FILTER__THREAD);
2082 return true;
2083 }
2084
2085 return false;
2086}
2087
Namhyung Kime94d53e2012-03-16 17:50:51 +09002088static bool hists__filter_entry_by_symbol(struct hists *hists,
2089 struct hist_entry *he)
2090{
2091 if (hists->symbol_filter_str != NULL &&
2092 (!he->ms.sym || strstr(he->ms.sym->name,
2093 hists->symbol_filter_str) == NULL)) {
2094 he->filtered |= (1 << HIST_FILTER__SYMBOL);
2095 return true;
2096 }
2097
2098 return false;
2099}
2100
Kan Liang21394d92015-09-04 10:45:44 -04002101static bool hists__filter_entry_by_socket(struct hists *hists,
2102 struct hist_entry *he)
2103{
2104 if ((hists->socket_filter > -1) &&
2105 (he->socket != hists->socket_filter)) {
2106 he->filtered |= (1 << HIST_FILTER__SOCKET);
2107 return true;
2108 }
2109
2110 return false;
2111}
2112
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002113typedef bool (*filter_fn_t)(struct hists *hists, struct hist_entry *he);
2114
2115static void hists__filter_by_type(struct hists *hists, int type, filter_fn_t filter)
Kan Liang84734b02015-09-04 10:45:45 -04002116{
2117 struct rb_node *nd;
2118
2119 hists->stats.nr_non_filtered_samples = 0;
2120
2121 hists__reset_filter_stats(hists);
2122 hists__reset_col_len(hists);
2123
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002124 for (nd = rb_first_cached(&hists->entries); nd; nd = rb_next(nd)) {
Kan Liang84734b02015-09-04 10:45:45 -04002125 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
2126
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002127 if (filter(hists, h))
Kan Liang84734b02015-09-04 10:45:45 -04002128 continue;
2129
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002130 hists__remove_entry_filter(hists, h, type);
Kan Liang84734b02015-09-04 10:45:45 -04002131 }
2132}
2133
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002134static void resort_filtered_entry(struct rb_root_cached *root,
2135 struct hist_entry *he)
Namhyung Kim70642852016-02-25 00:13:39 +09002136{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002137 struct rb_node **p = &root->rb_root.rb_node;
Namhyung Kim70642852016-02-25 00:13:39 +09002138 struct rb_node *parent = NULL;
2139 struct hist_entry *iter;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002140 struct rb_root_cached new_root = RB_ROOT_CACHED;
Namhyung Kim70642852016-02-25 00:13:39 +09002141 struct rb_node *nd;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002142 bool leftmost = true;
Namhyung Kim70642852016-02-25 00:13:39 +09002143
2144 while (*p != NULL) {
2145 parent = *p;
2146 iter = rb_entry(parent, struct hist_entry, rb_node);
2147
2148 if (hist_entry__sort(he, iter) > 0)
2149 p = &(*p)->rb_left;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002150 else {
Namhyung Kim70642852016-02-25 00:13:39 +09002151 p = &(*p)->rb_right;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002152 leftmost = false;
2153 }
Namhyung Kim70642852016-02-25 00:13:39 +09002154 }
2155
2156 rb_link_node(&he->rb_node, parent, p);
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002157 rb_insert_color_cached(&he->rb_node, root, leftmost);
Namhyung Kim70642852016-02-25 00:13:39 +09002158
2159 if (he->leaf || he->filtered)
2160 return;
2161
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002162 nd = rb_first_cached(&he->hroot_out);
Namhyung Kim70642852016-02-25 00:13:39 +09002163 while (nd) {
2164 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
2165
2166 nd = rb_next(nd);
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002167 rb_erase_cached(&h->rb_node, &he->hroot_out);
Namhyung Kim70642852016-02-25 00:13:39 +09002168
2169 resort_filtered_entry(&new_root, h);
2170 }
2171
2172 he->hroot_out = new_root;
2173}
2174
Namhyung Kim155e9af2016-02-25 00:13:38 +09002175static void hists__filter_hierarchy(struct hists *hists, int type, const void *arg)
2176{
2177 struct rb_node *nd;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002178 struct rb_root_cached new_root = RB_ROOT_CACHED;
Namhyung Kim155e9af2016-02-25 00:13:38 +09002179
2180 hists->stats.nr_non_filtered_samples = 0;
2181
2182 hists__reset_filter_stats(hists);
2183 hists__reset_col_len(hists);
2184
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002185 nd = rb_first_cached(&hists->entries);
Namhyung Kim155e9af2016-02-25 00:13:38 +09002186 while (nd) {
2187 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
2188 int ret;
2189
2190 ret = hist_entry__filter(h, type, arg);
2191
2192 /*
2193 * case 1. non-matching type
2194 * zero out the period, set filter marker and move to child
2195 */
2196 if (ret < 0) {
2197 memset(&h->stat, 0, sizeof(h->stat));
2198 h->filtered |= (1 << type);
2199
2200 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_CHILD);
2201 }
2202 /*
2203 * case 2. matched type (filter out)
2204 * set filter marker and move to next
2205 */
2206 else if (ret == 1) {
2207 h->filtered |= (1 << type);
2208
2209 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_SIBLING);
2210 }
2211 /*
2212 * case 3. ok (not filtered)
2213 * add period to hists and parents, erase the filter marker
2214 * and move to next sibling
2215 */
2216 else {
2217 hists__remove_entry_filter(hists, h, type);
2218
2219 nd = __rb_hierarchy_next(&h->rb_node, HMD_FORCE_SIBLING);
2220 }
2221 }
Namhyung Kim70642852016-02-25 00:13:39 +09002222
Namhyung Kimf7fb5382016-03-09 22:47:02 +09002223 hierarchy_recalc_total_periods(hists);
2224
Namhyung Kim70642852016-02-25 00:13:39 +09002225 /*
2226 * resort output after applying a new filter since filter in a lower
2227 * hierarchy can change periods in a upper hierarchy.
2228 */
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002229 nd = rb_first_cached(&hists->entries);
Namhyung Kim70642852016-02-25 00:13:39 +09002230 while (nd) {
2231 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
2232
2233 nd = rb_next(nd);
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002234 rb_erase_cached(&h->rb_node, &hists->entries);
Namhyung Kim70642852016-02-25 00:13:39 +09002235
2236 resort_filtered_entry(&new_root, h);
2237 }
2238
2239 hists->entries = new_root;
Namhyung Kim155e9af2016-02-25 00:13:38 +09002240}
2241
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002242void hists__filter_by_thread(struct hists *hists)
2243{
Namhyung Kim155e9af2016-02-25 00:13:38 +09002244 if (symbol_conf.report_hierarchy)
2245 hists__filter_hierarchy(hists, HIST_FILTER__THREAD,
2246 hists->thread_filter);
2247 else
2248 hists__filter_by_type(hists, HIST_FILTER__THREAD,
2249 hists__filter_entry_by_thread);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002250}
2251
2252void hists__filter_by_dso(struct hists *hists)
2253{
Namhyung Kim155e9af2016-02-25 00:13:38 +09002254 if (symbol_conf.report_hierarchy)
2255 hists__filter_hierarchy(hists, HIST_FILTER__DSO,
2256 hists->dso_filter);
2257 else
2258 hists__filter_by_type(hists, HIST_FILTER__DSO,
2259 hists__filter_entry_by_dso);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002260}
2261
2262void hists__filter_by_symbol(struct hists *hists)
2263{
Namhyung Kim155e9af2016-02-25 00:13:38 +09002264 if (symbol_conf.report_hierarchy)
2265 hists__filter_hierarchy(hists, HIST_FILTER__SYMBOL,
2266 hists->symbol_filter_str);
2267 else
2268 hists__filter_by_type(hists, HIST_FILTER__SYMBOL,
2269 hists__filter_entry_by_symbol);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002270}
2271
2272void hists__filter_by_socket(struct hists *hists)
2273{
Namhyung Kim155e9af2016-02-25 00:13:38 +09002274 if (symbol_conf.report_hierarchy)
2275 hists__filter_hierarchy(hists, HIST_FILTER__SOCKET,
2276 &hists->socket_filter);
2277 else
2278 hists__filter_by_type(hists, HIST_FILTER__SOCKET,
2279 hists__filter_entry_by_socket);
Namhyung Kim1f7c2542016-01-20 10:15:21 +09002280}
2281
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03002282void events_stats__inc(struct events_stats *stats, u32 type)
2283{
2284 ++stats->nr_events[0];
2285 ++stats->nr_events[type];
2286}
2287
Arnaldo Carvalho de Melo42b28ac2011-09-26 12:33:28 -03002288void hists__inc_nr_events(struct hists *hists, u32 type)
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -03002289{
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -03002290 events_stats__inc(&hists->stats, type);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -03002291}
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002292
Namhyung Kim1844dbc2014-05-28 14:12:18 +09002293void hists__inc_nr_samples(struct hists *hists, bool filtered)
2294{
2295 events_stats__inc(&hists->stats, PERF_RECORD_SAMPLE);
2296 if (!filtered)
2297 hists->stats.nr_non_filtered_samples++;
2298}
2299
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002300static struct hist_entry *hists__add_dummy_entry(struct hists *hists,
2301 struct hist_entry *pair)
2302{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002303 struct rb_root_cached *root;
Namhyung Kimce74f602012-12-10 17:29:55 +09002304 struct rb_node **p;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002305 struct rb_node *parent = NULL;
2306 struct hist_entry *he;
Andi Kleen354cc402013-10-01 07:22:15 -07002307 int64_t cmp;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002308 bool leftmost = true;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002309
Jiri Olsa52225032016-05-03 13:54:42 +02002310 if (hists__has(hists, need_collapse))
Namhyung Kimce74f602012-12-10 17:29:55 +09002311 root = &hists->entries_collapsed;
2312 else
2313 root = hists->entries_in;
2314
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002315 p = &root->rb_root.rb_node;
Namhyung Kimce74f602012-12-10 17:29:55 +09002316
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002317 while (*p != NULL) {
2318 parent = *p;
Namhyung Kimce74f602012-12-10 17:29:55 +09002319 he = rb_entry(parent, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002320
Namhyung Kimce74f602012-12-10 17:29:55 +09002321 cmp = hist_entry__collapse(he, pair);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002322
2323 if (!cmp)
2324 goto out;
2325
2326 if (cmp < 0)
2327 p = &(*p)->rb_left;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002328 else {
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002329 p = &(*p)->rb_right;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002330 leftmost = false;
2331 }
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002332 }
2333
Namhyung Kima0b51af2012-09-11 13:34:27 +09002334 he = hist_entry__new(pair, true);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002335 if (he) {
Arnaldo Carvalho de Melo30193d72012-11-12 13:20:03 -03002336 memset(&he->stat, 0, sizeof(he->stat));
2337 he->hists = hists;
Kan Liang09623d72016-04-24 23:28:09 -07002338 if (symbol_conf.cumulate_callchain)
2339 memset(he->stat_acc, 0, sizeof(he->stat));
Namhyung Kimce74f602012-12-10 17:29:55 +09002340 rb_link_node(&he->rb_node_in, parent, p);
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002341 rb_insert_color_cached(&he->rb_node_in, root, leftmost);
Namhyung Kim62638352014-04-24 16:21:46 +09002342 hists__inc_stats(hists, he);
Jiri Olsae0af43d2012-12-01 21:18:20 +01002343 he->dummy = true;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002344 }
2345out:
2346 return he;
2347}
2348
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002349static struct hist_entry *add_dummy_hierarchy_entry(struct hists *hists,
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002350 struct rb_root_cached *root,
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002351 struct hist_entry *pair)
2352{
2353 struct rb_node **p;
2354 struct rb_node *parent = NULL;
2355 struct hist_entry *he;
2356 struct perf_hpp_fmt *fmt;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002357 bool leftmost = true;
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002358
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002359 p = &root->rb_root.rb_node;
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002360 while (*p != NULL) {
2361 int64_t cmp = 0;
2362
2363 parent = *p;
2364 he = rb_entry(parent, struct hist_entry, rb_node_in);
2365
2366 perf_hpp_list__for_each_sort_list(he->hpp_list, fmt) {
2367 cmp = fmt->collapse(fmt, he, pair);
2368 if (cmp)
2369 break;
2370 }
2371 if (!cmp)
2372 goto out;
2373
2374 if (cmp < 0)
2375 p = &parent->rb_left;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002376 else {
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002377 p = &parent->rb_right;
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002378 leftmost = false;
2379 }
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002380 }
2381
2382 he = hist_entry__new(pair, true);
2383 if (he) {
2384 rb_link_node(&he->rb_node_in, parent, p);
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002385 rb_insert_color_cached(&he->rb_node_in, root, leftmost);
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002386
2387 he->dummy = true;
2388 he->hists = hists;
2389 memset(&he->stat, 0, sizeof(he->stat));
2390 hists__inc_stats(hists, he);
2391 }
2392out:
2393 return he;
2394}
2395
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002396static struct hist_entry *hists__find_entry(struct hists *hists,
2397 struct hist_entry *he)
2398{
Namhyung Kimce74f602012-12-10 17:29:55 +09002399 struct rb_node *n;
2400
Jiri Olsa52225032016-05-03 13:54:42 +02002401 if (hists__has(hists, need_collapse))
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002402 n = hists->entries_collapsed.rb_root.rb_node;
Namhyung Kimce74f602012-12-10 17:29:55 +09002403 else
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002404 n = hists->entries_in->rb_root.rb_node;
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002405
2406 while (n) {
Namhyung Kimce74f602012-12-10 17:29:55 +09002407 struct hist_entry *iter = rb_entry(n, struct hist_entry, rb_node_in);
2408 int64_t cmp = hist_entry__collapse(iter, he);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002409
2410 if (cmp < 0)
2411 n = n->rb_left;
2412 else if (cmp > 0)
2413 n = n->rb_right;
2414 else
2415 return iter;
2416 }
2417
2418 return NULL;
2419}
2420
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002421static struct hist_entry *hists__find_hierarchy_entry(struct rb_root_cached *root,
Namhyung Kim09034de2016-09-13 16:45:46 +09002422 struct hist_entry *he)
2423{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002424 struct rb_node *n = root->rb_root.rb_node;
Namhyung Kim09034de2016-09-13 16:45:46 +09002425
2426 while (n) {
2427 struct hist_entry *iter;
2428 struct perf_hpp_fmt *fmt;
2429 int64_t cmp = 0;
2430
2431 iter = rb_entry(n, struct hist_entry, rb_node_in);
2432 perf_hpp_list__for_each_sort_list(he->hpp_list, fmt) {
2433 cmp = fmt->collapse(fmt, iter, he);
2434 if (cmp)
2435 break;
2436 }
2437
2438 if (cmp < 0)
2439 n = n->rb_left;
2440 else if (cmp > 0)
2441 n = n->rb_right;
2442 else
2443 return iter;
2444 }
2445
2446 return NULL;
2447}
2448
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002449static void hists__match_hierarchy(struct rb_root_cached *leader_root,
2450 struct rb_root_cached *other_root)
Namhyung Kim09034de2016-09-13 16:45:46 +09002451{
2452 struct rb_node *nd;
2453 struct hist_entry *pos, *pair;
2454
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002455 for (nd = rb_first_cached(leader_root); nd; nd = rb_next(nd)) {
Namhyung Kim09034de2016-09-13 16:45:46 +09002456 pos = rb_entry(nd, struct hist_entry, rb_node_in);
2457 pair = hists__find_hierarchy_entry(other_root, pos);
2458
2459 if (pair) {
2460 hist_entry__add_pair(pair, pos);
2461 hists__match_hierarchy(&pos->hroot_in, &pair->hroot_in);
2462 }
2463 }
2464}
2465
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002466/*
2467 * Look for pairs to link to the leader buckets (hist_entries):
2468 */
2469void hists__match(struct hists *leader, struct hists *other)
2470{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002471 struct rb_root_cached *root;
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002472 struct rb_node *nd;
Namhyung Kimbe5863b2019-08-28 08:15:55 +09002473 struct hist_entry *pos, *pair;
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002474
Namhyung Kim09034de2016-09-13 16:45:46 +09002475 if (symbol_conf.report_hierarchy) {
2476 /* hierarchy report always collapses entries */
2477 return hists__match_hierarchy(&leader->entries_collapsed,
2478 &other->entries_collapsed);
2479 }
2480
Jiri Olsa52225032016-05-03 13:54:42 +02002481 if (hists__has(leader, need_collapse))
Namhyung Kimce74f602012-12-10 17:29:55 +09002482 root = &leader->entries_collapsed;
2483 else
2484 root = leader->entries_in;
2485
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002486 for (nd = rb_first_cached(root); nd; nd = rb_next(nd)) {
Namhyung Kimce74f602012-12-10 17:29:55 +09002487 pos = rb_entry(nd, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002488 pair = hists__find_entry(other, pos);
2489
Namhyung Kimbe5863b2019-08-28 08:15:55 +09002490 if (pair)
Namhyung Kim5fa90412012-11-29 15:38:34 +09002491 hist_entry__add_pair(pair, pos);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -03002492 }
2493}
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002494
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002495static int hists__link_hierarchy(struct hists *leader_hists,
2496 struct hist_entry *parent,
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002497 struct rb_root_cached *leader_root,
2498 struct rb_root_cached *other_root)
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002499{
2500 struct rb_node *nd;
2501 struct hist_entry *pos, *leader;
2502
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002503 for (nd = rb_first_cached(other_root); nd; nd = rb_next(nd)) {
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002504 pos = rb_entry(nd, struct hist_entry, rb_node_in);
2505
2506 if (hist_entry__has_pairs(pos)) {
2507 bool found = false;
2508
2509 list_for_each_entry(leader, &pos->pairs.head, pairs.node) {
2510 if (leader->hists == leader_hists) {
2511 found = true;
2512 break;
2513 }
2514 }
2515 if (!found)
2516 return -1;
2517 } else {
2518 leader = add_dummy_hierarchy_entry(leader_hists,
2519 leader_root, pos);
2520 if (leader == NULL)
2521 return -1;
2522
2523 /* do not point parent in the pos */
2524 leader->parent_he = parent;
2525
2526 hist_entry__add_pair(pos, leader);
2527 }
2528
2529 if (!pos->leaf) {
2530 if (hists__link_hierarchy(leader_hists, leader,
2531 &leader->hroot_in,
2532 &pos->hroot_in) < 0)
2533 return -1;
2534 }
2535 }
2536 return 0;
2537}
2538
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002539/*
2540 * Look for entries in the other hists that are not present in the leader, if
2541 * we find them, just add a dummy entry on the leader hists, with period=0,
2542 * nr_events=0, to serve as the list header.
2543 */
2544int hists__link(struct hists *leader, struct hists *other)
2545{
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002546 struct rb_root_cached *root;
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002547 struct rb_node *nd;
2548 struct hist_entry *pos, *pair;
2549
Namhyung Kim9d97b8f2016-09-13 16:45:47 +09002550 if (symbol_conf.report_hierarchy) {
2551 /* hierarchy report always collapses entries */
2552 return hists__link_hierarchy(leader, NULL,
2553 &leader->entries_collapsed,
2554 &other->entries_collapsed);
2555 }
2556
Jiri Olsa52225032016-05-03 13:54:42 +02002557 if (hists__has(other, need_collapse))
Namhyung Kimce74f602012-12-10 17:29:55 +09002558 root = &other->entries_collapsed;
2559 else
2560 root = other->entries_in;
2561
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002562 for (nd = rb_first_cached(root); nd; nd = rb_next(nd)) {
Namhyung Kimce74f602012-12-10 17:29:55 +09002563 pos = rb_entry(nd, struct hist_entry, rb_node_in);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002564
2565 if (!hist_entry__has_pairs(pos)) {
2566 pair = hists__add_dummy_entry(leader, pos);
2567 if (pair == NULL)
2568 return -1;
Namhyung Kim5fa90412012-11-29 15:38:34 +09002569 hist_entry__add_pair(pos, pair);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -03002570 }
2571 }
2572
2573 return 0;
2574}
Namhyung Kimf2148332014-01-14 11:52:48 +09002575
Namhyung Kimbe5863b2019-08-28 08:15:55 +09002576int hists__unlink(struct hists *hists)
2577{
2578 struct rb_root_cached *root;
2579 struct rb_node *nd;
2580 struct hist_entry *pos;
2581
2582 if (hists__has(hists, need_collapse))
2583 root = &hists->entries_collapsed;
2584 else
2585 root = hists->entries_in;
2586
2587 for (nd = rb_first_cached(root); nd; nd = rb_next(nd)) {
2588 pos = rb_entry(nd, struct hist_entry, rb_node_in);
2589 list_del_init(&pos->pairs.node);
2590 }
2591
2592 return 0;
2593}
2594
Andi Kleen578499982015-07-18 08:24:49 -07002595void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
Jin Yao7841f402019-11-07 15:47:15 +08002596 struct perf_sample *sample, bool nonany_branch_mode,
2597 u64 *total_cycles)
Andi Kleen578499982015-07-18 08:24:49 -07002598{
2599 struct branch_info *bi;
Kan Liang42bbabe2020-02-28 08:30:00 -08002600 struct branch_entry *entries = perf_sample__branch_entries(sample);
Andi Kleen578499982015-07-18 08:24:49 -07002601
2602 /* If we have branch cycles always annotate them. */
Kan Liang42bbabe2020-02-28 08:30:00 -08002603 if (bs && bs->nr && entries[0].flags.cycles) {
Andi Kleen578499982015-07-18 08:24:49 -07002604 int i;
2605
2606 bi = sample__resolve_bstack(sample, al);
2607 if (bi) {
2608 struct addr_map_symbol *prev = NULL;
2609
2610 /*
2611 * Ignore errors, still want to process the
2612 * other entries.
2613 *
2614 * For non standard branch modes always
2615 * force no IPC (prev == NULL)
2616 *
2617 * Note that perf stores branches reversed from
2618 * program order!
2619 */
2620 for (i = bs->nr - 1; i >= 0; i--) {
2621 addr_map_symbol__account_cycles(&bi[i].from,
2622 nonany_branch_mode ? NULL : prev,
2623 bi[i].flags.cycles);
2624 prev = &bi[i].to;
Jin Yao7841f402019-11-07 15:47:15 +08002625
2626 if (total_cycles)
2627 *total_cycles += bi[i].flags.cycles;
Andi Kleen578499982015-07-18 08:24:49 -07002628 }
2629 free(bi);
2630 }
2631 }
2632}
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -03002633
Jiri Olsa63503db2019-07-21 13:23:52 +02002634size_t perf_evlist__fprintf_nr_events(struct evlist *evlist, FILE *fp)
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -03002635{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002636 struct evsel *pos;
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -03002637 size_t ret = 0;
2638
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002639 evlist__for_each_entry(evlist, pos) {
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -03002640 ret += fprintf(fp, "%s stats:\n", perf_evsel__name(pos));
2641 ret += events_stats__fprintf(&evsel__hists(pos)->stats, fp);
2642 }
2643
2644 return ret;
2645}
2646
2647
Namhyung Kimf2148332014-01-14 11:52:48 +09002648u64 hists__total_period(struct hists *hists)
2649{
2650 return symbol_conf.filter_relative ? hists->stats.total_non_filtered_period :
2651 hists->stats.total_period;
2652}
Namhyung Kim33db4562014-02-07 12:06:07 +09002653
Arnaldo Carvalho de Melo25c312d2018-04-02 14:24:28 -03002654int __hists__scnprintf_title(struct hists *hists, char *bf, size_t size, bool show_freq)
2655{
2656 char unit;
2657 int printed;
2658 const struct dso *dso = hists->dso_filter;
Namhyung Kim7cb10a082019-05-27 15:11:49 +09002659 struct thread *thread = hists->thread_filter;
Arnaldo Carvalho de Melo25c312d2018-04-02 14:24:28 -03002660 int socket_id = hists->socket_filter;
2661 unsigned long nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
2662 u64 nr_events = hists->stats.total_period;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002663 struct evsel *evsel = hists_to_evsel(hists);
Arnaldo Carvalho de Melo25c312d2018-04-02 14:24:28 -03002664 const char *ev_name = perf_evsel__name(evsel);
2665 char buf[512], sample_freq_str[64] = "";
2666 size_t buflen = sizeof(buf);
2667 char ref[30] = " show reference callgraph, ";
2668 bool enable_ref = false;
2669
2670 if (symbol_conf.filter_relative) {
2671 nr_samples = hists->stats.nr_non_filtered_samples;
2672 nr_events = hists->stats.total_non_filtered_period;
2673 }
2674
2675 if (perf_evsel__is_group_event(evsel)) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02002676 struct evsel *pos;
Arnaldo Carvalho de Melo25c312d2018-04-02 14:24:28 -03002677
2678 perf_evsel__group_desc(evsel, buf, buflen);
2679 ev_name = buf;
2680
2681 for_each_group_member(pos, evsel) {
2682 struct hists *pos_hists = evsel__hists(pos);
2683
2684 if (symbol_conf.filter_relative) {
2685 nr_samples += pos_hists->stats.nr_non_filtered_samples;
2686 nr_events += pos_hists->stats.total_non_filtered_period;
2687 } else {
2688 nr_samples += pos_hists->stats.nr_events[PERF_RECORD_SAMPLE];
2689 nr_events += pos_hists->stats.total_period;
2690 }
2691 }
2692 }
2693
2694 if (symbol_conf.show_ref_callgraph &&
2695 strstr(ev_name, "call-graph=no"))
2696 enable_ref = true;
2697
2698 if (show_freq)
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002699 scnprintf(sample_freq_str, sizeof(sample_freq_str), " %d Hz,", evsel->core.attr.sample_freq);
Arnaldo Carvalho de Melo25c312d2018-04-02 14:24:28 -03002700
2701 nr_samples = convert_unit(nr_samples, &unit);
2702 printed = scnprintf(bf, size,
2703 "Samples: %lu%c of event%s '%s',%s%sEvent count (approx.): %" PRIu64,
Jiri Olsa5643b1a2019-07-21 13:24:46 +02002704 nr_samples, unit, evsel->core.nr_members > 1 ? "s" : "",
Arnaldo Carvalho de Melo25c312d2018-04-02 14:24:28 -03002705 ev_name, sample_freq_str, enable_ref ? ref : " ", nr_events);
2706
2707
2708 if (hists->uid_filter_str)
2709 printed += snprintf(bf + printed, size - printed,
2710 ", UID: %s", hists->uid_filter_str);
2711 if (thread) {
2712 if (hists__has(hists, thread)) {
2713 printed += scnprintf(bf + printed, size - printed,
2714 ", Thread: %s(%d)",
2715 (thread->comm_set ? thread__comm_str(thread) : ""),
2716 thread->tid);
2717 } else {
2718 printed += scnprintf(bf + printed, size - printed,
2719 ", Thread: %s",
2720 (thread->comm_set ? thread__comm_str(thread) : ""));
2721 }
2722 }
2723 if (dso)
2724 printed += scnprintf(bf + printed, size - printed,
2725 ", DSO: %s", dso->short_name);
2726 if (socket_id > -1)
2727 printed += scnprintf(bf + printed, size - printed,
2728 ", Processor Socket: %d", socket_id);
2729
2730 return printed;
2731}
2732
Namhyung Kim33db4562014-02-07 12:06:07 +09002733int parse_filter_percentage(const struct option *opt __maybe_unused,
2734 const char *arg, int unset __maybe_unused)
2735{
2736 if (!strcmp(arg, "relative"))
2737 symbol_conf.filter_relative = true;
2738 else if (!strcmp(arg, "absolute"))
2739 symbol_conf.filter_relative = false;
Arnaldo Carvalho de Meloecc4c562017-01-24 13:44:10 -03002740 else {
Colin Ian Kinga596a872017-03-30 10:54:40 +01002741 pr_debug("Invalid percentage: %s\n", arg);
Namhyung Kim33db4562014-02-07 12:06:07 +09002742 return -1;
Arnaldo Carvalho de Meloecc4c562017-01-24 13:44:10 -03002743 }
Namhyung Kim33db4562014-02-07 12:06:07 +09002744
2745 return 0;
2746}
Namhyung Kim0b93da12014-01-14 12:02:15 +09002747
2748int perf_hist_config(const char *var, const char *value)
2749{
2750 if (!strcmp(var, "hist.percentage"))
2751 return parse_filter_percentage(NULL, value, 0);
2752
2753 return 0;
2754}
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002755
Jiri Olsa5b658552016-01-18 10:24:22 +01002756int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list)
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002757{
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002758 memset(hists, 0, sizeof(*hists));
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002759 hists->entries_in_array[0] = hists->entries_in_array[1] = RB_ROOT_CACHED;
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002760 hists->entries_in = &hists->entries_in_array[0];
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002761 hists->entries_collapsed = RB_ROOT_CACHED;
2762 hists->entries = RB_ROOT_CACHED;
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002763 pthread_mutex_init(&hists->lock, NULL);
Kan Liang21394d92015-09-04 10:45:44 -04002764 hists->socket_filter = -1;
Jiri Olsa5b658552016-01-18 10:24:22 +01002765 hists->hpp_list = hpp_list;
Namhyung Kimc3bc0c42016-03-07 16:44:45 -03002766 INIT_LIST_HEAD(&hists->hpp_formats);
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002767 return 0;
2768}
2769
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002770static void hists__delete_remaining_entries(struct rb_root_cached *root)
Namhyung Kim61fa0e92015-12-10 16:53:20 +09002771{
2772 struct rb_node *node;
2773 struct hist_entry *he;
2774
Davidlohr Bueso2eb3d682018-12-06 11:18:18 -08002775 while (!RB_EMPTY_ROOT(&root->rb_root)) {
2776 node = rb_first_cached(root);
2777 rb_erase_cached(node, root);
Namhyung Kim61fa0e92015-12-10 16:53:20 +09002778
2779 he = rb_entry(node, struct hist_entry, rb_node_in);
2780 hist_entry__delete(he);
2781 }
2782}
2783
2784static void hists__delete_all_entries(struct hists *hists)
2785{
2786 hists__delete_entries(hists);
2787 hists__delete_remaining_entries(&hists->entries_in_array[0]);
2788 hists__delete_remaining_entries(&hists->entries_in_array[1]);
2789 hists__delete_remaining_entries(&hists->entries_collapsed);
2790}
2791
Jiri Olsa32dcd022019-07-21 13:23:51 +02002792static void hists_evsel__exit(struct evsel *evsel)
Masami Hiramatsu17577de2015-12-09 11:11:29 +09002793{
2794 struct hists *hists = evsel__hists(evsel);
Namhyung Kimc3bc0c42016-03-07 16:44:45 -03002795 struct perf_hpp_fmt *fmt, *pos;
2796 struct perf_hpp_list_node *node, *tmp;
Masami Hiramatsu17577de2015-12-09 11:11:29 +09002797
Namhyung Kim61fa0e92015-12-10 16:53:20 +09002798 hists__delete_all_entries(hists);
Namhyung Kimc3bc0c42016-03-07 16:44:45 -03002799
2800 list_for_each_entry_safe(node, tmp, &hists->hpp_formats, list) {
2801 perf_hpp_list__for_each_format_safe(&node->hpp, fmt, pos) {
Arnaldo Carvalho de Meloe56fbc92019-07-04 12:13:46 -03002802 list_del_init(&fmt->list);
Namhyung Kimc3bc0c42016-03-07 16:44:45 -03002803 free(fmt);
2804 }
Arnaldo Carvalho de Meloe56fbc92019-07-04 12:13:46 -03002805 list_del_init(&node->list);
Namhyung Kimc3bc0c42016-03-07 16:44:45 -03002806 free(node);
2807 }
Masami Hiramatsu17577de2015-12-09 11:11:29 +09002808}
2809
Jiri Olsa32dcd022019-07-21 13:23:51 +02002810static int hists_evsel__init(struct evsel *evsel)
Namhyung Kimfc284be2016-01-07 10:14:10 +01002811{
2812 struct hists *hists = evsel__hists(evsel);
2813
Jiri Olsa5b658552016-01-18 10:24:22 +01002814 __hists__init(hists, &perf_hpp_list);
Namhyung Kimfc284be2016-01-07 10:14:10 +01002815 return 0;
2816}
2817
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002818/*
2819 * XXX We probably need a hists_evsel__exit() to free the hist_entries
2820 * stored in the rbtree...
2821 */
2822
2823int hists__init(void)
2824{
2825 int err = perf_evsel__object_config(sizeof(struct hists_evsel),
Masami Hiramatsu17577de2015-12-09 11:11:29 +09002826 hists_evsel__init,
2827 hists_evsel__exit);
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03002828 if (err)
2829 fputs("FATAL ERROR: Couldn't setup hists class\n", stderr);
2830
2831 return err;
2832}
Jiri Olsa94b3dc32016-01-18 10:24:13 +01002833
2834void perf_hpp_list__init(struct perf_hpp_list *list)
2835{
2836 INIT_LIST_HEAD(&list->fields);
2837 INIT_LIST_HEAD(&list->sorts);
2838}