blob: 83336610faa981f74b5b9c1ca5c47dce342b986e [file] [log] [blame]
John Kacurdd68ada2009-09-24 18:02:49 +02001#include "sort.h"
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -03002#include "hist.h"
John Kacurdd68ada2009-09-24 18:02:49 +02003
4regex_t parent_regex;
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -03005const char default_parent_pattern[] = "^sys_|^do_page_fault";
6const char *parent_pattern = default_parent_pattern;
7const char default_sort_order[] = "comm,dso,symbol";
8const char *sort_order = default_sort_order;
Frederic Weisbeckeraf0a6fa2009-10-22 23:23:22 +02009int sort__need_collapse = 0;
10int sort__has_parent = 0;
Namhyung Kim1af556402012-09-14 17:35:27 +090011int sort__has_sym = 0;
Stephane Eranian993ac882012-03-08 23:47:47 +010012int sort__branch_mode = -1; /* -1 = means not set */
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +020013
14enum sort_type sort__first_dimension;
John Kacurdd68ada2009-09-24 18:02:49 +020015
John Kacurdd68ada2009-09-24 18:02:49 +020016LIST_HEAD(hist_entry__sort_list);
17
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -030018static int repsep_snprintf(char *bf, size_t size, const char *fmt, ...)
John Kacurdd68ada2009-09-24 18:02:49 +020019{
20 int n;
21 va_list ap;
22
23 va_start(ap, fmt);
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -030024 n = vsnprintf(bf, size, fmt, ap);
Jiri Olsa0ca0c132012-09-06 17:46:56 +020025 if (symbol_conf.field_sep && n > 0) {
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -030026 char *sep = bf;
John Kacurdd68ada2009-09-24 18:02:49 +020027
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -030028 while (1) {
Jiri Olsa0ca0c132012-09-06 17:46:56 +020029 sep = strchr(sep, *symbol_conf.field_sep);
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -030030 if (sep == NULL)
31 break;
32 *sep = '.';
John Kacurdd68ada2009-09-24 18:02:49 +020033 }
John Kacurdd68ada2009-09-24 18:02:49 +020034 }
35 va_end(ap);
Anton Blanchardb8327962012-03-07 11:42:49 +110036
37 if (n >= (int)size)
38 return size - 1;
John Kacurdd68ada2009-09-24 18:02:49 +020039 return n;
40}
41
Frederic Weisbecker872a8782011-06-29 03:14:52 +020042static int64_t cmp_null(void *l, void *r)
43{
44 if (!l && !r)
45 return 0;
46 else if (!l)
47 return -1;
48 else
49 return 1;
50}
51
52/* --sort pid */
53
54static int64_t
55sort__thread_cmp(struct hist_entry *left, struct hist_entry *right)
56{
57 return right->thread->pid - left->thread->pid;
58}
59
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -030060static int hist_entry__thread_snprintf(struct hist_entry *self, char *bf,
61 size_t size, unsigned int width)
John Kacurdd68ada2009-09-24 18:02:49 +020062{
Namhyung Kimfb29a332012-12-27 18:11:40 +090063 return repsep_snprintf(bf, size, "%*s:%5d", width - 6,
John Kacurdd68ada2009-09-24 18:02:49 +020064 self->thread->comm ?: "", self->thread->pid);
65}
66
Frederic Weisbecker872a8782011-06-29 03:14:52 +020067struct sort_entry sort_thread = {
68 .se_header = "Command: Pid",
69 .se_cmp = sort__thread_cmp,
70 .se_snprintf = hist_entry__thread_snprintf,
71 .se_width_idx = HISTC_THREAD,
72};
73
74/* --sort comm */
75
76static int64_t
77sort__comm_cmp(struct hist_entry *left, struct hist_entry *right)
78{
79 return right->thread->pid - left->thread->pid;
80}
81
82static int64_t
83sort__comm_collapse(struct hist_entry *left, struct hist_entry *right)
84{
85 char *comm_l = left->thread->comm;
86 char *comm_r = right->thread->comm;
87
88 if (!comm_l || !comm_r)
89 return cmp_null(comm_l, comm_r);
90
91 return strcmp(comm_l, comm_r);
92}
93
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -030094static int hist_entry__comm_snprintf(struct hist_entry *self, char *bf,
95 size_t size, unsigned int width)
John Kacurdd68ada2009-09-24 18:02:49 +020096{
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -030097 return repsep_snprintf(bf, size, "%*s", width, self->thread->comm);
John Kacurdd68ada2009-09-24 18:02:49 +020098}
99
Namhyung Kim14d1ac72012-12-27 18:11:38 +0900100struct sort_entry sort_comm = {
101 .se_header = "Command",
102 .se_cmp = sort__comm_cmp,
103 .se_collapse = sort__comm_collapse,
104 .se_snprintf = hist_entry__comm_snprintf,
105 .se_width_idx = HISTC_COMM,
106};
107
108/* --sort dso */
109
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100110static int64_t _sort__dso_cmp(struct map *map_l, struct map *map_r)
John Kacurdd68ada2009-09-24 18:02:49 +0200111{
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100112 struct dso *dso_l = map_l ? map_l->dso : NULL;
113 struct dso *dso_r = map_r ? map_r->dso : NULL;
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300114 const char *dso_name_l, *dso_name_r;
John Kacurdd68ada2009-09-24 18:02:49 +0200115
116 if (!dso_l || !dso_r)
117 return cmp_null(dso_l, dso_r);
118
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300119 if (verbose) {
120 dso_name_l = dso_l->long_name;
121 dso_name_r = dso_r->long_name;
122 } else {
123 dso_name_l = dso_l->short_name;
124 dso_name_r = dso_r->short_name;
125 }
126
127 return strcmp(dso_name_l, dso_name_r);
John Kacurdd68ada2009-09-24 18:02:49 +0200128}
129
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100130static int64_t
131sort__dso_cmp(struct hist_entry *left, struct hist_entry *right)
John Kacurdd68ada2009-09-24 18:02:49 +0200132{
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100133 return _sort__dso_cmp(left->ms.map, right->ms.map);
134}
135
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100136static int _hist_entry__dso_snprintf(struct map *map, char *bf,
137 size_t size, unsigned int width)
138{
139 if (map && map->dso) {
140 const char *dso_name = !verbose ? map->dso->short_name :
141 map->dso->long_name;
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300142 return repsep_snprintf(bf, size, "%-*s", width, dso_name);
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300143 }
John Kacurdd68ada2009-09-24 18:02:49 +0200144
Ian Munsie1437a302010-12-06 13:37:04 +1100145 return repsep_snprintf(bf, size, "%-*s", width, "[unknown]");
John Kacurdd68ada2009-09-24 18:02:49 +0200146}
147
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100148static int hist_entry__dso_snprintf(struct hist_entry *self, char *bf,
149 size_t size, unsigned int width)
150{
151 return _hist_entry__dso_snprintf(self->ms.map, bf, size, width);
152}
153
Namhyung Kim14d1ac72012-12-27 18:11:38 +0900154struct sort_entry sort_dso = {
155 .se_header = "Shared Object",
156 .se_cmp = sort__dso_cmp,
157 .se_snprintf = hist_entry__dso_snprintf,
158 .se_width_idx = HISTC_DSO,
159};
160
161/* --sort symbol */
162
163static int64_t _sort__sym_cmp(struct symbol *sym_l, struct symbol *sym_r,
164 u64 ip_l, u64 ip_r)
165{
166 if (!sym_l || !sym_r)
167 return cmp_null(sym_l, sym_r);
168
169 if (sym_l == sym_r)
170 return 0;
171
172 ip_l = sym_l->start;
173 ip_r = sym_r->start;
174
175 return (int64_t)(ip_r - ip_l);
176}
177
178static int64_t
179sort__sym_cmp(struct hist_entry *left, struct hist_entry *right)
180{
181 u64 ip_l, ip_r;
182
183 if (!left->ms.sym && !right->ms.sym)
184 return right->level - left->level;
185
186 if (!left->ms.sym || !right->ms.sym)
187 return cmp_null(left->ms.sym, right->ms.sym);
188
189 if (left->ms.sym == right->ms.sym)
190 return 0;
191
192 ip_l = left->ms.sym->start;
193 ip_r = right->ms.sym->start;
194
195 return _sort__sym_cmp(left->ms.sym, right->ms.sym, ip_l, ip_r);
196}
197
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100198static int _hist_entry__sym_snprintf(struct map *map, struct symbol *sym,
199 u64 ip, char level, char *bf, size_t size,
Namhyung Kim43355522012-12-27 18:11:39 +0900200 unsigned int width)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100201{
202 size_t ret = 0;
203
204 if (verbose) {
205 char o = map ? dso__symtab_origin(map->dso) : '!';
206 ret += repsep_snprintf(bf, size, "%-#*llx %c ",
207 BITS_PER_LONG / 4, ip, o);
208 }
209
210 ret += repsep_snprintf(bf + ret, size - ret, "[%c] ", level);
211 if (sym)
212 ret += repsep_snprintf(bf + ret, size - ret, "%-*s",
213 width - ret,
214 sym->name);
215 else {
216 size_t len = BITS_PER_LONG / 4;
217 ret += repsep_snprintf(bf + ret, size - ret, "%-#.*llx",
218 len, ip);
219 ret += repsep_snprintf(bf + ret, size - ret, "%-*s",
220 width - ret, "");
221 }
222
223 return ret;
224}
225
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100226static int hist_entry__sym_snprintf(struct hist_entry *self, char *bf,
Namhyung Kim43355522012-12-27 18:11:39 +0900227 size_t size, unsigned int width)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100228{
229 return _hist_entry__sym_snprintf(self->ms.map, self->ms.sym, self->ip,
230 self->level, bf, size, width);
231}
John Kacurdd68ada2009-09-24 18:02:49 +0200232
Frederic Weisbecker872a8782011-06-29 03:14:52 +0200233struct sort_entry sort_sym = {
234 .se_header = "Symbol",
235 .se_cmp = sort__sym_cmp,
236 .se_snprintf = hist_entry__sym_snprintf,
237 .se_width_idx = HISTC_SYMBOL,
238};
John Kacurdd68ada2009-09-24 18:02:49 +0200239
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -0300240/* --sort srcline */
241
242static int64_t
243sort__srcline_cmp(struct hist_entry *left, struct hist_entry *right)
244{
245 return (int64_t)(right->ip - left->ip);
246}
247
248static int hist_entry__srcline_snprintf(struct hist_entry *self, char *bf,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300249 size_t size,
250 unsigned int width __maybe_unused)
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -0300251{
Thomas Jarosch8eb44dd2013-01-25 11:02:13 +0100252 FILE *fp = NULL;
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -0300253 char cmd[PATH_MAX + 2], *path = self->srcline, *nl;
254 size_t line_len;
255
256 if (path != NULL)
257 goto out_path;
258
Namhyung Kimffe10c62012-10-15 12:39:42 +0900259 if (!self->ms.map)
260 goto out_ip;
261
Namhyung Kim88481b62012-10-15 12:39:43 +0900262 if (!strncmp(self->ms.map->dso->long_name, "/tmp/perf-", 10))
263 goto out_ip;
264
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -0300265 snprintf(cmd, sizeof(cmd), "addr2line -e %s %016" PRIx64,
266 self->ms.map->dso->long_name, self->ip);
267 fp = popen(cmd, "r");
268 if (!fp)
269 goto out_ip;
270
271 if (getline(&path, &line_len, fp) < 0 || !line_len)
272 goto out_ip;
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -0300273 self->srcline = strdup(path);
274 if (self->srcline == NULL)
275 goto out_ip;
276
277 nl = strchr(self->srcline, '\n');
278 if (nl != NULL)
279 *nl = '\0';
280 path = self->srcline;
281out_path:
Thomas Jarosch8eb44dd2013-01-25 11:02:13 +0100282 if (fp)
283 pclose(fp);
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -0300284 return repsep_snprintf(bf, size, "%s", path);
285out_ip:
Thomas Jarosch8eb44dd2013-01-25 11:02:13 +0100286 if (fp)
287 pclose(fp);
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -0300288 return repsep_snprintf(bf, size, "%-#*llx", BITS_PER_LONG / 4, self->ip);
289}
290
291struct sort_entry sort_srcline = {
292 .se_header = "Source:Line",
293 .se_cmp = sort__srcline_cmp,
294 .se_snprintf = hist_entry__srcline_snprintf,
295 .se_width_idx = HISTC_SRCLINE,
296};
297
John Kacurdd68ada2009-09-24 18:02:49 +0200298/* --sort parent */
299
Frederic Weisbecker872a8782011-06-29 03:14:52 +0200300static int64_t
John Kacurdd68ada2009-09-24 18:02:49 +0200301sort__parent_cmp(struct hist_entry *left, struct hist_entry *right)
302{
303 struct symbol *sym_l = left->parent;
304 struct symbol *sym_r = right->parent;
305
306 if (!sym_l || !sym_r)
307 return cmp_null(sym_l, sym_r);
308
309 return strcmp(sym_l->name, sym_r->name);
310}
311
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300312static int hist_entry__parent_snprintf(struct hist_entry *self, char *bf,
313 size_t size, unsigned int width)
John Kacurdd68ada2009-09-24 18:02:49 +0200314{
Arnaldo Carvalho de Meloa4e3b952010-03-31 11:33:40 -0300315 return repsep_snprintf(bf, size, "%-*s", width,
John Kacurdd68ada2009-09-24 18:02:49 +0200316 self->parent ? self->parent->name : "[other]");
317}
318
Frederic Weisbecker872a8782011-06-29 03:14:52 +0200319struct sort_entry sort_parent = {
320 .se_header = "Parent symbol",
321 .se_cmp = sort__parent_cmp,
322 .se_snprintf = hist_entry__parent_snprintf,
323 .se_width_idx = HISTC_PARENT,
324};
325
Arun Sharmaf60f3592010-06-04 11:27:10 -0300326/* --sort cpu */
327
Frederic Weisbecker872a8782011-06-29 03:14:52 +0200328static int64_t
Arun Sharmaf60f3592010-06-04 11:27:10 -0300329sort__cpu_cmp(struct hist_entry *left, struct hist_entry *right)
330{
331 return right->cpu - left->cpu;
332}
333
334static int hist_entry__cpu_snprintf(struct hist_entry *self, char *bf,
335 size_t size, unsigned int width)
336{
Namhyung Kimdccf1802012-12-27 18:11:41 +0900337 return repsep_snprintf(bf, size, "%*d", width, self->cpu);
Arun Sharmaf60f3592010-06-04 11:27:10 -0300338}
339
Frederic Weisbecker872a8782011-06-29 03:14:52 +0200340struct sort_entry sort_cpu = {
341 .se_header = "CPU",
342 .se_cmp = sort__cpu_cmp,
343 .se_snprintf = hist_entry__cpu_snprintf,
344 .se_width_idx = HISTC_CPU,
345};
346
Namhyung Kim14d1ac72012-12-27 18:11:38 +0900347/* sort keys for branch stacks */
348
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100349static int64_t
350sort__dso_from_cmp(struct hist_entry *left, struct hist_entry *right)
351{
352 return _sort__dso_cmp(left->branch_info->from.map,
353 right->branch_info->from.map);
354}
355
356static int hist_entry__dso_from_snprintf(struct hist_entry *self, char *bf,
357 size_t size, unsigned int width)
358{
359 return _hist_entry__dso_snprintf(self->branch_info->from.map,
360 bf, size, width);
361}
362
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100363static int64_t
364sort__dso_to_cmp(struct hist_entry *left, struct hist_entry *right)
365{
366 return _sort__dso_cmp(left->branch_info->to.map,
367 right->branch_info->to.map);
368}
369
370static int hist_entry__dso_to_snprintf(struct hist_entry *self, char *bf,
371 size_t size, unsigned int width)
372{
373 return _hist_entry__dso_snprintf(self->branch_info->to.map,
374 bf, size, width);
375}
376
377static int64_t
378sort__sym_from_cmp(struct hist_entry *left, struct hist_entry *right)
379{
380 struct addr_map_symbol *from_l = &left->branch_info->from;
381 struct addr_map_symbol *from_r = &right->branch_info->from;
382
383 if (!from_l->sym && !from_r->sym)
384 return right->level - left->level;
385
386 return _sort__sym_cmp(from_l->sym, from_r->sym, from_l->addr,
387 from_r->addr);
388}
389
390static int64_t
391sort__sym_to_cmp(struct hist_entry *left, struct hist_entry *right)
392{
393 struct addr_map_symbol *to_l = &left->branch_info->to;
394 struct addr_map_symbol *to_r = &right->branch_info->to;
395
396 if (!to_l->sym && !to_r->sym)
397 return right->level - left->level;
398
399 return _sort__sym_cmp(to_l->sym, to_r->sym, to_l->addr, to_r->addr);
400}
401
402static int hist_entry__sym_from_snprintf(struct hist_entry *self, char *bf,
Namhyung Kim43355522012-12-27 18:11:39 +0900403 size_t size, unsigned int width)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100404{
405 struct addr_map_symbol *from = &self->branch_info->from;
406 return _hist_entry__sym_snprintf(from->map, from->sym, from->addr,
407 self->level, bf, size, width);
408
409}
410
411static int hist_entry__sym_to_snprintf(struct hist_entry *self, char *bf,
Namhyung Kim43355522012-12-27 18:11:39 +0900412 size_t size, unsigned int width)
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100413{
414 struct addr_map_symbol *to = &self->branch_info->to;
415 return _hist_entry__sym_snprintf(to->map, to->sym, to->addr,
416 self->level, bf, size, width);
417
418}
419
Namhyung Kim14d1ac72012-12-27 18:11:38 +0900420struct sort_entry sort_dso_from = {
421 .se_header = "Source Shared Object",
422 .se_cmp = sort__dso_from_cmp,
423 .se_snprintf = hist_entry__dso_from_snprintf,
424 .se_width_idx = HISTC_DSO_FROM,
425};
426
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100427struct sort_entry sort_dso_to = {
428 .se_header = "Target Shared Object",
429 .se_cmp = sort__dso_to_cmp,
430 .se_snprintf = hist_entry__dso_to_snprintf,
431 .se_width_idx = HISTC_DSO_TO,
432};
433
434struct sort_entry sort_sym_from = {
435 .se_header = "Source Symbol",
436 .se_cmp = sort__sym_from_cmp,
437 .se_snprintf = hist_entry__sym_from_snprintf,
438 .se_width_idx = HISTC_SYMBOL_FROM,
439};
440
441struct sort_entry sort_sym_to = {
442 .se_header = "Target Symbol",
443 .se_cmp = sort__sym_to_cmp,
444 .se_snprintf = hist_entry__sym_to_snprintf,
445 .se_width_idx = HISTC_SYMBOL_TO,
446};
447
448static int64_t
449sort__mispredict_cmp(struct hist_entry *left, struct hist_entry *right)
450{
451 const unsigned char mp = left->branch_info->flags.mispred !=
452 right->branch_info->flags.mispred;
453 const unsigned char p = left->branch_info->flags.predicted !=
454 right->branch_info->flags.predicted;
455
456 return mp || p;
457}
458
459static int hist_entry__mispredict_snprintf(struct hist_entry *self, char *bf,
460 size_t size, unsigned int width){
461 static const char *out = "N/A";
462
463 if (self->branch_info->flags.predicted)
464 out = "N";
465 else if (self->branch_info->flags.mispred)
466 out = "Y";
467
468 return repsep_snprintf(bf, size, "%-*s", width, out);
469}
470
471struct sort_entry sort_mispredict = {
472 .se_header = "Branch Mispredicted",
473 .se_cmp = sort__mispredict_cmp,
474 .se_snprintf = hist_entry__mispredict_snprintf,
475 .se_width_idx = HISTC_MISPREDICT,
476};
477
Frederic Weisbecker872a8782011-06-29 03:14:52 +0200478struct sort_dimension {
479 const char *name;
480 struct sort_entry *entry;
481 int taken;
482};
483
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100484#define DIM(d, n, func) [d] = { .name = n, .entry = &(func) }
485
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900486static struct sort_dimension common_sort_dimensions[] = {
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100487 DIM(SORT_PID, "pid", sort_thread),
488 DIM(SORT_COMM, "comm", sort_comm),
489 DIM(SORT_DSO, "dso", sort_dso),
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100490 DIM(SORT_SYM, "symbol", sort_sym),
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100491 DIM(SORT_PARENT, "parent", sort_parent),
492 DIM(SORT_CPU, "cpu", sort_cpu),
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -0300493 DIM(SORT_SRCLINE, "srcline", sort_srcline),
Frederic Weisbecker872a8782011-06-29 03:14:52 +0200494};
495
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900496#undef DIM
497
498#define DIM(d, n, func) [d - __SORT_BRANCH_STACK] = { .name = n, .entry = &(func) }
499
500static struct sort_dimension bstack_sort_dimensions[] = {
501 DIM(SORT_DSO_FROM, "dso_from", sort_dso_from),
502 DIM(SORT_DSO_TO, "dso_to", sort_dso_to),
503 DIM(SORT_SYM_FROM, "symbol_from", sort_sym_from),
504 DIM(SORT_SYM_TO, "symbol_to", sort_sym_to),
505 DIM(SORT_MISPREDICT, "mispredict", sort_mispredict),
506};
507
508#undef DIM
509
John Kacurdd68ada2009-09-24 18:02:49 +0200510int sort_dimension__add(const char *tok)
511{
512 unsigned int i;
513
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900514 for (i = 0; i < ARRAY_SIZE(common_sort_dimensions); i++) {
515 struct sort_dimension *sd = &common_sort_dimensions[i];
John Kacurdd68ada2009-09-24 18:02:49 +0200516
John Kacurdd68ada2009-09-24 18:02:49 +0200517 if (strncasecmp(tok, sd->name, strlen(tok)))
518 continue;
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900519
John Kacurdd68ada2009-09-24 18:02:49 +0200520 if (sd->entry == &sort_parent) {
521 int ret = regcomp(&parent_regex, parent_pattern, REG_EXTENDED);
522 if (ret) {
523 char err[BUFSIZ];
524
525 regerror(ret, &parent_regex, err, sizeof(err));
Arnaldo Carvalho de Melo2aefa4f2010-04-02 12:30:57 -0300526 pr_err("Invalid regex: %s\n%s", parent_pattern, err);
527 return -EINVAL;
John Kacurdd68ada2009-09-24 18:02:49 +0200528 }
529 sort__has_parent = 1;
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900530 } else if (sd->entry == &sort_sym) {
Namhyung Kim1af556402012-09-14 17:35:27 +0900531 sort__has_sym = 1;
John Kacurdd68ada2009-09-24 18:02:49 +0200532 }
533
Frederic Weisbeckerfd8ea212011-06-29 23:08:14 +0200534 if (sd->taken)
535 return 0;
536
537 if (sd->entry->se_collapse)
538 sort__need_collapse = 1;
539
Namhyung Kim6f38cf22012-12-27 18:11:45 +0900540 if (list_empty(&hist_entry__sort_list))
541 sort__first_dimension = i;
Frederic Weisbeckeraf0a6fa2009-10-22 23:23:22 +0200542
John Kacurdd68ada2009-09-24 18:02:49 +0200543 list_add_tail(&sd->entry->list, &hist_entry__sort_list);
544 sd->taken = 1;
545
546 return 0;
547 }
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900548
549 for (i = 0; i < ARRAY_SIZE(bstack_sort_dimensions); i++) {
550 struct sort_dimension *sd = &bstack_sort_dimensions[i];
551
552 if (strncasecmp(tok, sd->name, strlen(tok)))
553 continue;
554
555 if (sort__branch_mode != 1)
556 return -EINVAL;
557
558 if (sd->entry == &sort_sym_from || sd->entry == &sort_sym_to)
559 sort__has_sym = 1;
560
561 if (sd->taken)
562 return 0;
563
564 if (sd->entry->se_collapse)
565 sort__need_collapse = 1;
566
567 if (list_empty(&hist_entry__sort_list))
568 sort__first_dimension = i + __SORT_BRANCH_STACK;
569
570 list_add_tail(&sd->entry->list, &hist_entry__sort_list);
571 sd->taken = 1;
572
573 return 0;
574 }
575
John Kacurdd68ada2009-09-24 18:02:49 +0200576 return -ESRCH;
577}
Arnaldo Carvalho de Meloc8829c72009-12-14 20:09:29 -0200578
579void setup_sorting(const char * const usagestr[], const struct option *opts)
580{
581 char *tmp, *tok, *str = strdup(sort_order);
582
583 for (tok = strtok_r(str, ", ", &tmp);
584 tok; tok = strtok_r(NULL, ", ", &tmp)) {
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900585 int ret = sort_dimension__add(tok);
586 if (ret == -EINVAL) {
587 error("Invalid --sort key: `%s'", tok);
588 usage_with_options(usagestr, opts);
589 } else if (ret == -ESRCH) {
Arnaldo Carvalho de Meloc8829c72009-12-14 20:09:29 -0200590 error("Unknown --sort key: `%s'", tok);
591 usage_with_options(usagestr, opts);
592 }
593 }
594
595 free(str);
596}
Arnaldo Carvalho de Meloc351c282009-12-16 13:49:27 -0200597
598void sort_entry__setup_elide(struct sort_entry *self, struct strlist *list,
599 const char *list_name, FILE *fp)
600{
601 if (list && strlist__nr_entries(list) == 1) {
602 if (fp != NULL)
603 fprintf(fp, "# %s: %s\n", list_name,
604 strlist__entry(list, 0)->s);
605 self->elide = true;
606 }
607}