root/tools/perf/builtin-report.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. report__config
  2. hist_iter__report_callback
  3. hist_iter__branch_callback
  4. setup_forced_leader
  5. process_feature_event
  6. process_sample_event
  7. process_read_event
  8. report__setup_sample_type
  9. sig_handler
  10. hists__fprintf_nr_sample_events
  11. perf_evlist__tty_browse_hists
  12. report__warn_kptr_restrict
  13. report__gtk_browse_hists
  14. report__browse_hists
  15. report__collapse_hists
  16. hists__resort_cb
  17. report__output_resort
  18. stats_setup
  19. stats_print
  20. tasks_setup
  21. tasks_list
  22. maps__fprintf_task
  23. map_groups__fprintf_task
  24. task__print_level
  25. tasks_print
  26. __cmd_report
  27. report_parse_callchain_opt
  28. parse_time_quantum
  29. report_parse_ignore_callees_opt
  30. parse_branch_mode
  31. parse_percent_limit
  32. cmd_report

   1 // SPDX-License-Identifier: GPL-2.0
   2 /*
   3  * builtin-report.c
   4  *
   5  * Builtin report command: Analyze the perf.data input file,
   6  * look up and read DSOs and symbol information and display
   7  * a histogram of results, along various sorting keys.
   8  */
   9 #include "builtin.h"
  10 
  11 #include "util/config.h"
  12 
  13 #include "util/annotate.h"
  14 #include "util/color.h"
  15 #include "util/dso.h"
  16 #include <linux/list.h>
  17 #include <linux/rbtree.h>
  18 #include <linux/err.h>
  19 #include <linux/zalloc.h>
  20 #include "util/map.h"
  21 #include "util/symbol.h"
  22 #include "util/map_symbol.h"
  23 #include "util/mem-events.h"
  24 #include "util/branch.h"
  25 #include "util/callchain.h"
  26 #include "util/values.h"
  27 
  28 #include "perf.h"
  29 #include "util/debug.h"
  30 #include "util/evlist.h"
  31 #include "util/evsel.h"
  32 #include "util/evswitch.h"
  33 #include "util/header.h"
  34 #include "util/session.h"
  35 #include "util/srcline.h"
  36 #include "util/tool.h"
  37 
  38 #include <subcmd/parse-options.h>
  39 #include <subcmd/exec-cmd.h>
  40 #include "util/parse-events.h"
  41 
  42 #include "util/thread.h"
  43 #include "util/sort.h"
  44 #include "util/hist.h"
  45 #include "util/data.h"
  46 #include "arch/common.h"
  47 #include "util/time-utils.h"
  48 #include "util/auxtrace.h"
  49 #include "util/units.h"
  50 #include "util/branch.h"
  51 #include "util/util.h" // perf_tip()
  52 #include "ui/ui.h"
  53 #include "ui/progress.h"
  54 
  55 #include <dlfcn.h>
  56 #include <errno.h>
  57 #include <inttypes.h>
  58 #include <regex.h>
  59 #include <linux/ctype.h>
  60 #include <signal.h>
  61 #include <linux/bitmap.h>
  62 #include <linux/string.h>
  63 #include <linux/stringify.h>
  64 #include <linux/time64.h>
  65 #include <sys/types.h>
  66 #include <sys/stat.h>
  67 #include <unistd.h>
  68 #include <linux/mman.h>
  69 
  70 struct report {
  71         struct perf_tool        tool;
  72         struct perf_session     *session;
  73         struct evswitch         evswitch;
  74         bool                    use_tui, use_gtk, use_stdio;
  75         bool                    show_full_info;
  76         bool                    show_threads;
  77         bool                    inverted_callchain;
  78         bool                    mem_mode;
  79         bool                    stats_mode;
  80         bool                    tasks_mode;
  81         bool                    mmaps_mode;
  82         bool                    header;
  83         bool                    header_only;
  84         bool                    nonany_branch_mode;
  85         bool                    group_set;
  86         int                     max_stack;
  87         struct perf_read_values show_threads_values;
  88         struct annotation_options annotation_opts;
  89         const char              *pretty_printing_style;
  90         const char              *cpu_list;
  91         const char              *symbol_filter_str;
  92         const char              *time_str;
  93         struct perf_time_interval *ptime_range;
  94         int                     range_size;
  95         int                     range_num;
  96         float                   min_percent;
  97         u64                     nr_entries;
  98         u64                     queue_size;
  99         int                     socket_filter;
 100         DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
 101         struct branch_type_stat brtype_stat;
 102         bool                    symbol_ipc;
 103 };
 104 
 105 static int report__config(const char *var, const char *value, void *cb)
 106 {
 107         struct report *rep = cb;
 108 
 109         if (!strcmp(var, "report.group")) {
 110                 symbol_conf.event_group = perf_config_bool(var, value);
 111                 return 0;
 112         }
 113         if (!strcmp(var, "report.percent-limit")) {
 114                 double pcnt = strtof(value, NULL);
 115 
 116                 rep->min_percent = pcnt;
 117                 callchain_param.min_percent = pcnt;
 118                 return 0;
 119         }
 120         if (!strcmp(var, "report.children")) {
 121                 symbol_conf.cumulate_callchain = perf_config_bool(var, value);
 122                 return 0;
 123         }
 124         if (!strcmp(var, "report.queue-size"))
 125                 return perf_config_u64(&rep->queue_size, var, value);
 126 
 127         if (!strcmp(var, "report.sort_order")) {
 128                 default_sort_order = strdup(value);
 129                 return 0;
 130         }
 131 
 132         return 0;
 133 }
 134 
 135 static int hist_iter__report_callback(struct hist_entry_iter *iter,
 136                                       struct addr_location *al, bool single,
 137                                       void *arg)
 138 {
 139         int err = 0;
 140         struct report *rep = arg;
 141         struct hist_entry *he = iter->he;
 142         struct evsel *evsel = iter->evsel;
 143         struct perf_sample *sample = iter->sample;
 144         struct mem_info *mi;
 145         struct branch_info *bi;
 146 
 147         if (!ui__has_annotation() && !rep->symbol_ipc)
 148                 return 0;
 149 
 150         if (sort__mode == SORT_MODE__BRANCH) {
 151                 bi = he->branch_info;
 152                 err = addr_map_symbol__inc_samples(&bi->from, sample, evsel);
 153                 if (err)
 154                         goto out;
 155 
 156                 err = addr_map_symbol__inc_samples(&bi->to, sample, evsel);
 157 
 158         } else if (rep->mem_mode) {
 159                 mi = he->mem_info;
 160                 err = addr_map_symbol__inc_samples(&mi->daddr, sample, evsel);
 161                 if (err)
 162                         goto out;
 163 
 164                 err = hist_entry__inc_addr_samples(he, sample, evsel, al->addr);
 165 
 166         } else if (symbol_conf.cumulate_callchain) {
 167                 if (single)
 168                         err = hist_entry__inc_addr_samples(he, sample, evsel, al->addr);
 169         } else {
 170                 err = hist_entry__inc_addr_samples(he, sample, evsel, al->addr);
 171         }
 172 
 173 out:
 174         return err;
 175 }
 176 
 177 static int hist_iter__branch_callback(struct hist_entry_iter *iter,
 178                                       struct addr_location *al __maybe_unused,
 179                                       bool single __maybe_unused,
 180                                       void *arg)
 181 {
 182         struct hist_entry *he = iter->he;
 183         struct report *rep = arg;
 184         struct branch_info *bi = he->branch_info;
 185         struct perf_sample *sample = iter->sample;
 186         struct evsel *evsel = iter->evsel;
 187         int err;
 188 
 189         branch_type_count(&rep->brtype_stat, &bi->flags,
 190                           bi->from.addr, bi->to.addr);
 191 
 192         if (!ui__has_annotation() && !rep->symbol_ipc)
 193                 return 0;
 194 
 195         err = addr_map_symbol__inc_samples(&bi->from, sample, evsel);
 196         if (err)
 197                 goto out;
 198 
 199         err = addr_map_symbol__inc_samples(&bi->to, sample, evsel);
 200 
 201 out:
 202         return err;
 203 }
 204 
 205 static void setup_forced_leader(struct report *report,
 206                                 struct evlist *evlist)
 207 {
 208         if (report->group_set)
 209                 perf_evlist__force_leader(evlist);
 210 }
 211 
 212 static int process_feature_event(struct perf_session *session,
 213                                  union perf_event *event)
 214 {
 215         struct report *rep = container_of(session->tool, struct report, tool);
 216 
 217         if (event->feat.feat_id < HEADER_LAST_FEATURE)
 218                 return perf_event__process_feature(session, event);
 219 
 220         if (event->feat.feat_id != HEADER_LAST_FEATURE) {
 221                 pr_err("failed: wrong feature ID: %" PRI_lu64 "\n",
 222                        event->feat.feat_id);
 223                 return -1;
 224         }
 225 
 226         /*
 227          * (feat_id = HEADER_LAST_FEATURE) is the end marker which
 228          * means all features are received, now we can force the
 229          * group if needed.
 230          */
 231         setup_forced_leader(rep, session->evlist);
 232         return 0;
 233 }
 234 
 235 static int process_sample_event(struct perf_tool *tool,
 236                                 union perf_event *event,
 237                                 struct perf_sample *sample,
 238                                 struct evsel *evsel,
 239                                 struct machine *machine)
 240 {
 241         struct report *rep = container_of(tool, struct report, tool);
 242         struct addr_location al;
 243         struct hist_entry_iter iter = {
 244                 .evsel                  = evsel,
 245                 .sample                 = sample,
 246                 .hide_unresolved        = symbol_conf.hide_unresolved,
 247                 .add_entry_cb           = hist_iter__report_callback,
 248         };
 249         int ret = 0;
 250 
 251         if (perf_time__ranges_skip_sample(rep->ptime_range, rep->range_num,
 252                                           sample->time)) {
 253                 return 0;
 254         }
 255 
 256         if (evswitch__discard(&rep->evswitch, evsel))
 257                 return 0;
 258 
 259         if (machine__resolve(machine, &al, sample) < 0) {
 260                 pr_debug("problem processing %d event, skipping it.\n",
 261                          event->header.type);
 262                 return -1;
 263         }
 264 
 265         if (symbol_conf.hide_unresolved && al.sym == NULL)
 266                 goto out_put;
 267 
 268         if (rep->cpu_list && !test_bit(sample->cpu, rep->cpu_bitmap))
 269                 goto out_put;
 270 
 271         if (sort__mode == SORT_MODE__BRANCH) {
 272                 /*
 273                  * A non-synthesized event might not have a branch stack if
 274                  * branch stacks have been synthesized (using itrace options).
 275                  */
 276                 if (!sample->branch_stack)
 277                         goto out_put;
 278 
 279                 iter.add_entry_cb = hist_iter__branch_callback;
 280                 iter.ops = &hist_iter_branch;
 281         } else if (rep->mem_mode) {
 282                 iter.ops = &hist_iter_mem;
 283         } else if (symbol_conf.cumulate_callchain) {
 284                 iter.ops = &hist_iter_cumulative;
 285         } else {
 286                 iter.ops = &hist_iter_normal;
 287         }
 288 
 289         if (al.map != NULL)
 290                 al.map->dso->hit = 1;
 291 
 292         if (ui__has_annotation() || rep->symbol_ipc) {
 293                 hist__account_cycles(sample->branch_stack, &al, sample,
 294                                      rep->nonany_branch_mode);
 295         }
 296 
 297         ret = hist_entry_iter__add(&iter, &al, rep->max_stack, rep);
 298         if (ret < 0)
 299                 pr_debug("problem adding hist entry, skipping event\n");
 300 out_put:
 301         addr_location__put(&al);
 302         return ret;
 303 }
 304 
 305 static int process_read_event(struct perf_tool *tool,
 306                               union perf_event *event,
 307                               struct perf_sample *sample __maybe_unused,
 308                               struct evsel *evsel,
 309                               struct machine *machine __maybe_unused)
 310 {
 311         struct report *rep = container_of(tool, struct report, tool);
 312 
 313         if (rep->show_threads) {
 314                 const char *name = perf_evsel__name(evsel);
 315                 int err = perf_read_values_add_value(&rep->show_threads_values,
 316                                            event->read.pid, event->read.tid,
 317                                            evsel->idx,
 318                                            name,
 319                                            event->read.value);
 320 
 321                 if (err)
 322                         return err;
 323         }
 324 
 325         return 0;
 326 }
 327 
 328 /* For pipe mode, sample_type is not currently set */
 329 static int report__setup_sample_type(struct report *rep)
 330 {
 331         struct perf_session *session = rep->session;
 332         u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
 333         bool is_pipe = perf_data__is_pipe(session->data);
 334 
 335         if (session->itrace_synth_opts->callchain ||
 336             (!is_pipe &&
 337              perf_header__has_feat(&session->header, HEADER_AUXTRACE) &&
 338              !session->itrace_synth_opts->set))
 339                 sample_type |= PERF_SAMPLE_CALLCHAIN;
 340 
 341         if (session->itrace_synth_opts->last_branch)
 342                 sample_type |= PERF_SAMPLE_BRANCH_STACK;
 343 
 344         if (!is_pipe && !(sample_type & PERF_SAMPLE_CALLCHAIN)) {
 345                 if (perf_hpp_list.parent) {
 346                         ui__error("Selected --sort parent, but no "
 347                                     "callchain data. Did you call "
 348                                     "'perf record' without -g?\n");
 349                         return -EINVAL;
 350                 }
 351                 if (symbol_conf.use_callchain &&
 352                         !symbol_conf.show_branchflag_count) {
 353                         ui__error("Selected -g or --branch-history.\n"
 354                                   "But no callchain or branch data.\n"
 355                                   "Did you call 'perf record' without -g or -b?\n");
 356                         return -1;
 357                 }
 358         } else if (!callchain_param.enabled &&
 359                    callchain_param.mode != CHAIN_NONE &&
 360                    !symbol_conf.use_callchain) {
 361                         symbol_conf.use_callchain = true;
 362                         if (callchain_register_param(&callchain_param) < 0) {
 363                                 ui__error("Can't register callchain params.\n");
 364                                 return -EINVAL;
 365                         }
 366         }
 367 
 368         if (symbol_conf.cumulate_callchain) {
 369                 /* Silently ignore if callchain is missing */
 370                 if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) {
 371                         symbol_conf.cumulate_callchain = false;
 372                         perf_hpp__cancel_cumulate();
 373                 }
 374         }
 375 
 376         if (sort__mode == SORT_MODE__BRANCH) {
 377                 if (!is_pipe &&
 378                     !(sample_type & PERF_SAMPLE_BRANCH_STACK)) {
 379                         ui__error("Selected -b but no branch data. "
 380                                   "Did you call perf record without -b?\n");
 381                         return -1;
 382                 }
 383         }
 384 
 385         if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
 386                 if ((sample_type & PERF_SAMPLE_REGS_USER) &&
 387                     (sample_type & PERF_SAMPLE_STACK_USER)) {
 388                         callchain_param.record_mode = CALLCHAIN_DWARF;
 389                         dwarf_callchain_users = true;
 390                 } else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
 391                         callchain_param.record_mode = CALLCHAIN_LBR;
 392                 else
 393                         callchain_param.record_mode = CALLCHAIN_FP;
 394         }
 395 
 396         /* ??? handle more cases than just ANY? */
 397         if (!(perf_evlist__combined_branch_type(session->evlist) &
 398                                 PERF_SAMPLE_BRANCH_ANY))
 399                 rep->nonany_branch_mode = true;
 400 
 401 #if !defined(HAVE_LIBUNWIND_SUPPORT) && !defined(HAVE_DWARF_SUPPORT)
 402         if (dwarf_callchain_users) {
 403                 ui__warning("Please install libunwind or libdw "
 404                             "development packages during the perf build.\n");
 405         }
 406 #endif
 407 
 408         return 0;
 409 }
 410 
 411 static void sig_handler(int sig __maybe_unused)
 412 {
 413         session_done = 1;
 414 }
 415 
 416 static size_t hists__fprintf_nr_sample_events(struct hists *hists, struct report *rep,
 417                                               const char *evname, FILE *fp)
 418 {
 419         size_t ret;
 420         char unit;
 421         unsigned long nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
 422         u64 nr_events = hists->stats.total_period;
 423         struct evsel *evsel = hists_to_evsel(hists);
 424         char buf[512];
 425         size_t size = sizeof(buf);
 426         int socked_id = hists->socket_filter;
 427 
 428         if (quiet)
 429                 return 0;
 430 
 431         if (symbol_conf.filter_relative) {
 432                 nr_samples = hists->stats.nr_non_filtered_samples;
 433                 nr_events = hists->stats.total_non_filtered_period;
 434         }
 435 
 436         if (perf_evsel__is_group_event(evsel)) {
 437                 struct evsel *pos;
 438 
 439                 perf_evsel__group_desc(evsel, buf, size);
 440                 evname = buf;
 441 
 442                 for_each_group_member(pos, evsel) {
 443                         const struct hists *pos_hists = evsel__hists(pos);
 444 
 445                         if (symbol_conf.filter_relative) {
 446                                 nr_samples += pos_hists->stats.nr_non_filtered_samples;
 447                                 nr_events += pos_hists->stats.total_non_filtered_period;
 448                         } else {
 449                                 nr_samples += pos_hists->stats.nr_events[PERF_RECORD_SAMPLE];
 450                                 nr_events += pos_hists->stats.total_period;
 451                         }
 452                 }
 453         }
 454 
 455         nr_samples = convert_unit(nr_samples, &unit);
 456         ret = fprintf(fp, "# Samples: %lu%c", nr_samples, unit);
 457         if (evname != NULL) {
 458                 ret += fprintf(fp, " of event%s '%s'",
 459                                evsel->core.nr_members > 1 ? "s" : "", evname);
 460         }
 461 
 462         if (rep->time_str)
 463                 ret += fprintf(fp, " (time slices: %s)", rep->time_str);
 464 
 465         if (symbol_conf.show_ref_callgraph &&
 466             strstr(evname, "call-graph=no")) {
 467                 ret += fprintf(fp, ", show reference callgraph");
 468         }
 469 
 470         if (rep->mem_mode) {
 471                 ret += fprintf(fp, "\n# Total weight : %" PRIu64, nr_events);
 472                 ret += fprintf(fp, "\n# Sort order   : %s", sort_order ? : default_mem_sort_order);
 473         } else
 474                 ret += fprintf(fp, "\n# Event count (approx.): %" PRIu64, nr_events);
 475 
 476         if (socked_id > -1)
 477                 ret += fprintf(fp, "\n# Processor Socket: %d", socked_id);
 478 
 479         return ret + fprintf(fp, "\n#\n");
 480 }
 481 
 482 static int perf_evlist__tty_browse_hists(struct evlist *evlist,
 483                                          struct report *rep,
 484                                          const char *help)
 485 {
 486         struct evsel *pos;
 487 
 488         if (!quiet) {
 489                 fprintf(stdout, "#\n# Total Lost Samples: %" PRIu64 "\n#\n",
 490                         evlist->stats.total_lost_samples);
 491         }
 492 
 493         evlist__for_each_entry(evlist, pos) {
 494                 struct hists *hists = evsel__hists(pos);
 495                 const char *evname = perf_evsel__name(pos);
 496 
 497                 if (symbol_conf.event_group &&
 498                     !perf_evsel__is_group_leader(pos))
 499                         continue;
 500 
 501                 hists__fprintf_nr_sample_events(hists, rep, evname, stdout);
 502                 hists__fprintf(hists, !quiet, 0, 0, rep->min_percent, stdout,
 503                                !(symbol_conf.use_callchain ||
 504                                  symbol_conf.show_branchflag_count));
 505                 fprintf(stdout, "\n\n");
 506         }
 507 
 508         if (!quiet)
 509                 fprintf(stdout, "#\n# (%s)\n#\n", help);
 510 
 511         if (rep->show_threads) {
 512                 bool style = !strcmp(rep->pretty_printing_style, "raw");
 513                 perf_read_values_display(stdout, &rep->show_threads_values,
 514                                          style);
 515                 perf_read_values_destroy(&rep->show_threads_values);
 516         }
 517 
 518         if (sort__mode == SORT_MODE__BRANCH)
 519                 branch_type_stat_display(stdout, &rep->brtype_stat);
 520 
 521         return 0;
 522 }
 523 
 524 static void report__warn_kptr_restrict(const struct report *rep)
 525 {
 526         struct map *kernel_map = machine__kernel_map(&rep->session->machines.host);
 527         struct kmap *kernel_kmap = kernel_map ? map__kmap(kernel_map) : NULL;
 528 
 529         if (perf_evlist__exclude_kernel(rep->session->evlist))
 530                 return;
 531 
 532         if (kernel_map == NULL ||
 533             (kernel_map->dso->hit &&
 534              (kernel_kmap->ref_reloc_sym == NULL ||
 535               kernel_kmap->ref_reloc_sym->addr == 0))) {
 536                 const char *desc =
 537                     "As no suitable kallsyms nor vmlinux was found, kernel samples\n"
 538                     "can't be resolved.";
 539 
 540                 if (kernel_map && map__has_symbols(kernel_map)) {
 541                         desc = "If some relocation was applied (e.g. "
 542                                "kexec) symbols may be misresolved.";
 543                 }
 544 
 545                 ui__warning(
 546 "Kernel address maps (/proc/{kallsyms,modules}) were restricted.\n\n"
 547 "Check /proc/sys/kernel/kptr_restrict before running 'perf record'.\n\n%s\n\n"
 548 "Samples in kernel modules can't be resolved as well.\n\n",
 549                 desc);
 550         }
 551 }
 552 
 553 static int report__gtk_browse_hists(struct report *rep, const char *help)
 554 {
 555         int (*hist_browser)(struct evlist *evlist, const char *help,
 556                             struct hist_browser_timer *timer, float min_pcnt);
 557 
 558         hist_browser = dlsym(perf_gtk_handle, "perf_evlist__gtk_browse_hists");
 559 
 560         if (hist_browser == NULL) {
 561                 ui__error("GTK browser not found!\n");
 562                 return -1;
 563         }
 564 
 565         return hist_browser(rep->session->evlist, help, NULL, rep->min_percent);
 566 }
 567 
 568 static int report__browse_hists(struct report *rep)
 569 {
 570         int ret;
 571         struct perf_session *session = rep->session;
 572         struct evlist *evlist = session->evlist;
 573         const char *help = perf_tip(system_path(TIPDIR));
 574 
 575         if (help == NULL) {
 576                 /* fallback for people who don't install perf ;-) */
 577                 help = perf_tip(DOCDIR);
 578                 if (help == NULL)
 579                         help = "Cannot load tips.txt file, please install perf!";
 580         }
 581 
 582         switch (use_browser) {
 583         case 1:
 584                 ret = perf_evlist__tui_browse_hists(evlist, help, NULL,
 585                                                     rep->min_percent,
 586                                                     &session->header.env,
 587                                                     true, &rep->annotation_opts);
 588                 /*
 589                  * Usually "ret" is the last pressed key, and we only
 590                  * care if the key notifies us to switch data file.
 591                  */
 592                 if (ret != K_SWITCH_INPUT_DATA)
 593                         ret = 0;
 594                 break;
 595         case 2:
 596                 ret = report__gtk_browse_hists(rep, help);
 597                 break;
 598         default:
 599                 ret = perf_evlist__tty_browse_hists(evlist, rep, help);
 600                 break;
 601         }
 602 
 603         return ret;
 604 }
 605 
 606 static int report__collapse_hists(struct report *rep)
 607 {
 608         struct ui_progress prog;
 609         struct evsel *pos;
 610         int ret = 0;
 611 
 612         ui_progress__init(&prog, rep->nr_entries, "Merging related events...");
 613 
 614         evlist__for_each_entry(rep->session->evlist, pos) {
 615                 struct hists *hists = evsel__hists(pos);
 616 
 617                 if (pos->idx == 0)
 618                         hists->symbol_filter_str = rep->symbol_filter_str;
 619 
 620                 hists->socket_filter = rep->socket_filter;
 621 
 622                 ret = hists__collapse_resort(hists, &prog);
 623                 if (ret < 0)
 624                         break;
 625 
 626                 /* Non-group events are considered as leader */
 627                 if (symbol_conf.event_group &&
 628                     !perf_evsel__is_group_leader(pos)) {
 629                         struct hists *leader_hists = evsel__hists(pos->leader);
 630 
 631                         hists__match(leader_hists, hists);
 632                         hists__link(leader_hists, hists);
 633                 }
 634         }
 635 
 636         ui_progress__finish();
 637         return ret;
 638 }
 639 
 640 static int hists__resort_cb(struct hist_entry *he, void *arg)
 641 {
 642         struct report *rep = arg;
 643         struct symbol *sym = he->ms.sym;
 644 
 645         if (rep->symbol_ipc && sym && !sym->annotate2) {
 646                 struct evsel *evsel = hists_to_evsel(he->hists);
 647 
 648                 symbol__annotate2(sym, he->ms.map, evsel,
 649                                   &annotation__default_options, NULL);
 650         }
 651 
 652         return 0;
 653 }
 654 
 655 static void report__output_resort(struct report *rep)
 656 {
 657         struct ui_progress prog;
 658         struct evsel *pos;
 659 
 660         ui_progress__init(&prog, rep->nr_entries, "Sorting events for output...");
 661 
 662         evlist__for_each_entry(rep->session->evlist, pos) {
 663                 perf_evsel__output_resort_cb(pos, &prog,
 664                                              hists__resort_cb, rep);
 665         }
 666 
 667         ui_progress__finish();
 668 }
 669 
 670 static void stats_setup(struct report *rep)
 671 {
 672         memset(&rep->tool, 0, sizeof(rep->tool));
 673         rep->tool.no_warn = true;
 674 }
 675 
 676 static int stats_print(struct report *rep)
 677 {
 678         struct perf_session *session = rep->session;
 679 
 680         perf_session__fprintf_nr_events(session, stdout);
 681         return 0;
 682 }
 683 
 684 static void tasks_setup(struct report *rep)
 685 {
 686         memset(&rep->tool, 0, sizeof(rep->tool));
 687         rep->tool.ordered_events = true;
 688         if (rep->mmaps_mode) {
 689                 rep->tool.mmap = perf_event__process_mmap;
 690                 rep->tool.mmap2 = perf_event__process_mmap2;
 691         }
 692         rep->tool.comm = perf_event__process_comm;
 693         rep->tool.exit = perf_event__process_exit;
 694         rep->tool.fork = perf_event__process_fork;
 695         rep->tool.no_warn = true;
 696 }
 697 
 698 struct task {
 699         struct thread           *thread;
 700         struct list_head         list;
 701         struct list_head         children;
 702 };
 703 
 704 static struct task *tasks_list(struct task *task, struct machine *machine)
 705 {
 706         struct thread *parent_thread, *thread = task->thread;
 707         struct task   *parent_task;
 708 
 709         /* Already listed. */
 710         if (!list_empty(&task->list))
 711                 return NULL;
 712 
 713         /* Last one in the chain. */
 714         if (thread->ppid == -1)
 715                 return task;
 716 
 717         parent_thread = machine__find_thread(machine, -1, thread->ppid);
 718         if (!parent_thread)
 719                 return ERR_PTR(-ENOENT);
 720 
 721         parent_task = thread__priv(parent_thread);
 722         list_add_tail(&task->list, &parent_task->children);
 723         return tasks_list(parent_task, machine);
 724 }
 725 
 726 static size_t maps__fprintf_task(struct maps *maps, int indent, FILE *fp)
 727 {
 728         size_t printed = 0;
 729         struct rb_node *nd;
 730 
 731         for (nd = rb_first(&maps->entries); nd; nd = rb_next(nd)) {
 732                 struct map *map = rb_entry(nd, struct map, rb_node);
 733 
 734                 printed += fprintf(fp, "%*s  %" PRIx64 "-%" PRIx64 " %c%c%c%c %08" PRIx64 " %" PRIu64 " %s\n",
 735                                    indent, "", map->start, map->end,
 736                                    map->prot & PROT_READ ? 'r' : '-',
 737                                    map->prot & PROT_WRITE ? 'w' : '-',
 738                                    map->prot & PROT_EXEC ? 'x' : '-',
 739                                    map->flags & MAP_SHARED ? 's' : 'p',
 740                                    map->pgoff,
 741                                    map->ino, map->dso->name);
 742         }
 743 
 744         return printed;
 745 }
 746 
 747 static int map_groups__fprintf_task(struct map_groups *mg, int indent, FILE *fp)
 748 {
 749         return maps__fprintf_task(&mg->maps, indent, fp);
 750 }
 751 
 752 static void task__print_level(struct task *task, FILE *fp, int level)
 753 {
 754         struct thread *thread = task->thread;
 755         struct task *child;
 756         int comm_indent = fprintf(fp, "  %8d %8d %8d |%*s",
 757                                   thread->pid_, thread->tid, thread->ppid,
 758                                   level, "");
 759 
 760         fprintf(fp, "%s\n", thread__comm_str(thread));
 761 
 762         map_groups__fprintf_task(thread->mg, comm_indent, fp);
 763 
 764         if (!list_empty(&task->children)) {
 765                 list_for_each_entry(child, &task->children, list)
 766                         task__print_level(child, fp, level + 1);
 767         }
 768 }
 769 
 770 static int tasks_print(struct report *rep, FILE *fp)
 771 {
 772         struct perf_session *session = rep->session;
 773         struct machine      *machine = &session->machines.host;
 774         struct task *tasks, *task;
 775         unsigned int nr = 0, itask = 0, i;
 776         struct rb_node *nd;
 777         LIST_HEAD(list);
 778 
 779         /*
 780          * No locking needed while accessing machine->threads,
 781          * because --tasks is single threaded command.
 782          */
 783 
 784         /* Count all the threads. */
 785         for (i = 0; i < THREADS__TABLE_SIZE; i++)
 786                 nr += machine->threads[i].nr;
 787 
 788         tasks = malloc(sizeof(*tasks) * nr);
 789         if (!tasks)
 790                 return -ENOMEM;
 791 
 792         for (i = 0; i < THREADS__TABLE_SIZE; i++) {
 793                 struct threads *threads = &machine->threads[i];
 794 
 795                 for (nd = rb_first_cached(&threads->entries); nd;
 796                      nd = rb_next(nd)) {
 797                         task = tasks + itask++;
 798 
 799                         task->thread = rb_entry(nd, struct thread, rb_node);
 800                         INIT_LIST_HEAD(&task->children);
 801                         INIT_LIST_HEAD(&task->list);
 802                         thread__set_priv(task->thread, task);
 803                 }
 804         }
 805 
 806         /*
 807          * Iterate every task down to the unprocessed parent
 808          * and link all in task children list. Task with no
 809          * parent is added into 'list'.
 810          */
 811         for (itask = 0; itask < nr; itask++) {
 812                 task = tasks + itask;
 813 
 814                 if (!list_empty(&task->list))
 815                         continue;
 816 
 817                 task = tasks_list(task, machine);
 818                 if (IS_ERR(task)) {
 819                         pr_err("Error: failed to process tasks\n");
 820                         free(tasks);
 821                         return PTR_ERR(task);
 822                 }
 823 
 824                 if (task)
 825                         list_add_tail(&task->list, &list);
 826         }
 827 
 828         fprintf(fp, "# %8s %8s %8s  %s\n", "pid", "tid", "ppid", "comm");
 829 
 830         list_for_each_entry(task, &list, list)
 831                 task__print_level(task, fp, 0);
 832 
 833         free(tasks);
 834         return 0;
 835 }
 836 
 837 static int __cmd_report(struct report *rep)
 838 {
 839         int ret;
 840         struct perf_session *session = rep->session;
 841         struct evsel *pos;
 842         struct perf_data *data = session->data;
 843 
 844         signal(SIGINT, sig_handler);
 845 
 846         if (rep->cpu_list) {
 847                 ret = perf_session__cpu_bitmap(session, rep->cpu_list,
 848                                                rep->cpu_bitmap);
 849                 if (ret) {
 850                         ui__error("failed to set cpu bitmap\n");
 851                         return ret;
 852                 }
 853                 session->itrace_synth_opts->cpu_bitmap = rep->cpu_bitmap;
 854         }
 855 
 856         if (rep->show_threads) {
 857                 ret = perf_read_values_init(&rep->show_threads_values);
 858                 if (ret)
 859                         return ret;
 860         }
 861 
 862         ret = report__setup_sample_type(rep);
 863         if (ret) {
 864                 /* report__setup_sample_type() already showed error message */
 865                 return ret;
 866         }
 867 
 868         if (rep->stats_mode)
 869                 stats_setup(rep);
 870 
 871         if (rep->tasks_mode)
 872                 tasks_setup(rep);
 873 
 874         ret = perf_session__process_events(session);
 875         if (ret) {
 876                 ui__error("failed to process sample\n");
 877                 return ret;
 878         }
 879 
 880         if (rep->stats_mode)
 881                 return stats_print(rep);
 882 
 883         if (rep->tasks_mode)
 884                 return tasks_print(rep, stdout);
 885 
 886         report__warn_kptr_restrict(rep);
 887 
 888         evlist__for_each_entry(session->evlist, pos)
 889                 rep->nr_entries += evsel__hists(pos)->nr_entries;
 890 
 891         if (use_browser == 0) {
 892                 if (verbose > 3)
 893                         perf_session__fprintf(session, stdout);
 894 
 895                 if (verbose > 2)
 896                         perf_session__fprintf_dsos(session, stdout);
 897 
 898                 if (dump_trace) {
 899                         perf_session__fprintf_nr_events(session, stdout);
 900                         perf_evlist__fprintf_nr_events(session->evlist, stdout);
 901                         return 0;
 902                 }
 903         }
 904 
 905         ret = report__collapse_hists(rep);
 906         if (ret) {
 907                 ui__error("failed to process hist entry\n");
 908                 return ret;
 909         }
 910 
 911         if (session_done())
 912                 return 0;
 913 
 914         /*
 915          * recalculate number of entries after collapsing since it
 916          * might be changed during the collapse phase.
 917          */
 918         rep->nr_entries = 0;
 919         evlist__for_each_entry(session->evlist, pos)
 920                 rep->nr_entries += evsel__hists(pos)->nr_entries;
 921 
 922         if (rep->nr_entries == 0) {
 923                 ui__error("The %s data has no samples!\n", data->path);
 924                 return 0;
 925         }
 926 
 927         report__output_resort(rep);
 928 
 929         return report__browse_hists(rep);
 930 }
 931 
 932 static int
 933 report_parse_callchain_opt(const struct option *opt, const char *arg, int unset)
 934 {
 935         struct callchain_param *callchain = opt->value;
 936 
 937         callchain->enabled = !unset;
 938         /*
 939          * --no-call-graph
 940          */
 941         if (unset) {
 942                 symbol_conf.use_callchain = false;
 943                 callchain->mode = CHAIN_NONE;
 944                 return 0;
 945         }
 946 
 947         return parse_callchain_report_opt(arg);
 948 }
 949 
 950 static int
 951 parse_time_quantum(const struct option *opt, const char *arg,
 952                    int unset __maybe_unused)
 953 {
 954         unsigned long *time_q = opt->value;
 955         char *end;
 956 
 957         *time_q = strtoul(arg, &end, 0);
 958         if (end == arg)
 959                 goto parse_err;
 960         if (*time_q == 0) {
 961                 pr_err("time quantum cannot be 0");
 962                 return -1;
 963         }
 964         end = skip_spaces(end);
 965         if (*end == 0)
 966                 return 0;
 967         if (!strcmp(end, "s")) {
 968                 *time_q *= NSEC_PER_SEC;
 969                 return 0;
 970         }
 971         if (!strcmp(end, "ms")) {
 972                 *time_q *= NSEC_PER_MSEC;
 973                 return 0;
 974         }
 975         if (!strcmp(end, "us")) {
 976                 *time_q *= NSEC_PER_USEC;
 977                 return 0;
 978         }
 979         if (!strcmp(end, "ns"))
 980                 return 0;
 981 parse_err:
 982         pr_err("Cannot parse time quantum `%s'\n", arg);
 983         return -1;
 984 }
 985 
 986 int
 987 report_parse_ignore_callees_opt(const struct option *opt __maybe_unused,
 988                                 const char *arg, int unset __maybe_unused)
 989 {
 990         if (arg) {
 991                 int err = regcomp(&ignore_callees_regex, arg, REG_EXTENDED);
 992                 if (err) {
 993                         char buf[BUFSIZ];
 994                         regerror(err, &ignore_callees_regex, buf, sizeof(buf));
 995                         pr_err("Invalid --ignore-callees regex: %s\n%s", arg, buf);
 996                         return -1;
 997                 }
 998                 have_ignore_callees = 1;
 999         }
1000 
1001         return 0;
1002 }
1003 
1004 static int
1005 parse_branch_mode(const struct option *opt,
1006                   const char *str __maybe_unused, int unset)
1007 {
1008         int *branch_mode = opt->value;
1009 
1010         *branch_mode = !unset;
1011         return 0;
1012 }
1013 
1014 static int
1015 parse_percent_limit(const struct option *opt, const char *str,
1016                     int unset __maybe_unused)
1017 {
1018         struct report *rep = opt->value;
1019         double pcnt = strtof(str, NULL);
1020 
1021         rep->min_percent = pcnt;
1022         callchain_param.min_percent = pcnt;
1023         return 0;
1024 }
1025 
1026 int cmd_report(int argc, const char **argv)
1027 {
1028         struct perf_session *session;
1029         struct itrace_synth_opts itrace_synth_opts = { .set = 0, };
1030         struct stat st;
1031         bool has_br_stack = false;
1032         int branch_mode = -1;
1033         int last_key = 0;
1034         bool branch_call_mode = false;
1035 #define CALLCHAIN_DEFAULT_OPT  "graph,0.5,caller,function,percent"
1036         static const char report_callchain_help[] = "Display call graph (stack chain/backtrace):\n\n"
1037                                                     CALLCHAIN_REPORT_HELP
1038                                                     "\n\t\t\t\tDefault: " CALLCHAIN_DEFAULT_OPT;
1039         char callchain_default_opt[] = CALLCHAIN_DEFAULT_OPT;
1040         const char * const report_usage[] = {
1041                 "perf report [<options>]",
1042                 NULL
1043         };
1044         struct report report = {
1045                 .tool = {
1046                         .sample          = process_sample_event,
1047                         .mmap            = perf_event__process_mmap,
1048                         .mmap2           = perf_event__process_mmap2,
1049                         .comm            = perf_event__process_comm,
1050                         .namespaces      = perf_event__process_namespaces,
1051                         .exit            = perf_event__process_exit,
1052                         .fork            = perf_event__process_fork,
1053                         .lost            = perf_event__process_lost,
1054                         .read            = process_read_event,
1055                         .attr            = perf_event__process_attr,
1056                         .tracing_data    = perf_event__process_tracing_data,
1057                         .build_id        = perf_event__process_build_id,
1058                         .id_index        = perf_event__process_id_index,
1059                         .auxtrace_info   = perf_event__process_auxtrace_info,
1060                         .auxtrace        = perf_event__process_auxtrace,
1061                         .event_update    = perf_event__process_event_update,
1062                         .feature         = process_feature_event,
1063                         .ordered_events  = true,
1064                         .ordering_requires_timestamps = true,
1065                 },
1066                 .max_stack               = PERF_MAX_STACK_DEPTH,
1067                 .pretty_printing_style   = "normal",
1068                 .socket_filter           = -1,
1069                 .annotation_opts         = annotation__default_options,
1070         };
1071         const struct option options[] = {
1072         OPT_STRING('i', "input", &input_name, "file",
1073                     "input file name"),
1074         OPT_INCR('v', "verbose", &verbose,
1075                     "be more verbose (show symbol address, etc)"),
1076         OPT_BOOLEAN('q', "quiet", &quiet, "Do not show any message"),
1077         OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1078                     "dump raw trace in ASCII"),
1079         OPT_BOOLEAN(0, "stats", &report.stats_mode, "Display event stats"),
1080         OPT_BOOLEAN(0, "tasks", &report.tasks_mode, "Display recorded tasks"),
1081         OPT_BOOLEAN(0, "mmaps", &report.mmaps_mode, "Display recorded tasks memory maps"),
1082         OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
1083                    "file", "vmlinux pathname"),
1084         OPT_BOOLEAN(0, "ignore-vmlinux", &symbol_conf.ignore_vmlinux,
1085                     "don't load vmlinux even if found"),
1086         OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
1087                    "file", "kallsyms pathname"),
1088         OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
1089         OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
1090                     "load module symbols - WARNING: use only with -k and LIVE kernel"),
1091         OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
1092                     "Show a column with the number of samples"),
1093         OPT_BOOLEAN('T', "threads", &report.show_threads,
1094                     "Show per-thread event counters"),
1095         OPT_STRING(0, "pretty", &report.pretty_printing_style, "key",
1096                    "pretty printing style key: normal raw"),
1097         OPT_BOOLEAN(0, "tui", &report.use_tui, "Use the TUI interface"),
1098         OPT_BOOLEAN(0, "gtk", &report.use_gtk, "Use the GTK2 interface"),
1099         OPT_BOOLEAN(0, "stdio", &report.use_stdio,
1100                     "Use the stdio interface"),
1101         OPT_BOOLEAN(0, "header", &report.header, "Show data header."),
1102         OPT_BOOLEAN(0, "header-only", &report.header_only,
1103                     "Show only data header."),
1104         OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
1105                    sort_help("sort by key(s):")),
1106         OPT_STRING('F', "fields", &field_order, "key[,keys...]",
1107                    sort_help("output field(s): overhead period sample ")),
1108         OPT_BOOLEAN(0, "show-cpu-utilization", &symbol_conf.show_cpu_utilization,
1109                     "Show sample percentage for different cpu modes"),
1110         OPT_BOOLEAN_FLAG(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
1111                     "Show sample percentage for different cpu modes", PARSE_OPT_HIDDEN),
1112         OPT_STRING('p', "parent", &parent_pattern, "regex",
1113                    "regex filter to identify parent, see: '--sort parent'"),
1114         OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
1115                     "Only display entries with parent-match"),
1116         OPT_CALLBACK_DEFAULT('g', "call-graph", &callchain_param,
1117                              "print_type,threshold[,print_limit],order,sort_key[,branch],value",
1118                              report_callchain_help, &report_parse_callchain_opt,
1119                              callchain_default_opt),
1120         OPT_BOOLEAN(0, "children", &symbol_conf.cumulate_callchain,
1121                     "Accumulate callchains of children and show total overhead as well"),
1122         OPT_INTEGER(0, "max-stack", &report.max_stack,
1123                     "Set the maximum stack depth when parsing the callchain, "
1124                     "anything beyond the specified depth will be ignored. "
1125                     "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
1126         OPT_BOOLEAN('G', "inverted", &report.inverted_callchain,
1127                     "alias for inverted call graph"),
1128         OPT_CALLBACK(0, "ignore-callees", NULL, "regex",
1129                    "ignore callees of these functions in call graphs",
1130                    report_parse_ignore_callees_opt),
1131         OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
1132                    "only consider symbols in these dsos"),
1133         OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
1134                    "only consider symbols in these comms"),
1135         OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
1136                    "only consider symbols in these pids"),
1137         OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
1138                    "only consider symbols in these tids"),
1139         OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
1140                    "only consider these symbols"),
1141         OPT_STRING(0, "symbol-filter", &report.symbol_filter_str, "filter",
1142                    "only show symbols that (partially) match with this filter"),
1143         OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
1144                    "width[,width...]",
1145                    "don't try to adjust column width, use these fixed values"),
1146         OPT_STRING_NOEMPTY('t', "field-separator", &symbol_conf.field_sep, "separator",
1147                    "separator for columns, no spaces will be added between "
1148                    "columns '.' is reserved."),
1149         OPT_BOOLEAN('U', "hide-unresolved", &symbol_conf.hide_unresolved,
1150                     "Only display entries resolved to a symbol"),
1151         OPT_CALLBACK(0, "symfs", NULL, "directory",
1152                      "Look for files with symbols relative to this directory",
1153                      symbol__config_symfs),
1154         OPT_STRING('C', "cpu", &report.cpu_list, "cpu",
1155                    "list of cpus to profile"),
1156         OPT_BOOLEAN('I', "show-info", &report.show_full_info,
1157                     "Display extended information about perf.data file"),
1158         OPT_BOOLEAN(0, "source", &report.annotation_opts.annotate_src,
1159                     "Interleave source code with assembly code (default)"),
1160         OPT_BOOLEAN(0, "asm-raw", &report.annotation_opts.show_asm_raw,
1161                     "Display raw encoding of assembly instructions (default)"),
1162         OPT_STRING('M', "disassembler-style", &report.annotation_opts.disassembler_style, "disassembler style",
1163                    "Specify disassembler style (e.g. -M intel for intel syntax)"),
1164         OPT_BOOLEAN(0, "show-total-period", &symbol_conf.show_total_period,
1165                     "Show a column with the sum of periods"),
1166         OPT_BOOLEAN_SET(0, "group", &symbol_conf.event_group, &report.group_set,
1167                     "Show event group information together"),
1168         OPT_CALLBACK_NOOPT('b', "branch-stack", &branch_mode, "",
1169                     "use branch records for per branch histogram filling",
1170                     parse_branch_mode),
1171         OPT_BOOLEAN(0, "branch-history", &branch_call_mode,
1172                     "add last branch records to call history"),
1173         OPT_STRING(0, "objdump", &report.annotation_opts.objdump_path, "path",
1174                    "objdump binary to use for disassembly and annotations"),
1175         OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
1176                     "Disable symbol demangling"),
1177         OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
1178                     "Enable kernel symbol demangling"),
1179         OPT_BOOLEAN(0, "mem-mode", &report.mem_mode, "mem access profile"),
1180         OPT_INTEGER(0, "samples", &symbol_conf.res_sample,
1181                     "Number of samples to save per histogram entry for individual browsing"),
1182         OPT_CALLBACK(0, "percent-limit", &report, "percent",
1183                      "Don't show entries under that percent", parse_percent_limit),
1184         OPT_CALLBACK(0, "percentage", NULL, "relative|absolute",
1185                      "how to display percentage of filtered entries", parse_filter_percentage),
1186         OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
1187                             "Instruction Tracing options\n" ITRACE_HELP,
1188                             itrace_parse_synth_opts),
1189         OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
1190                         "Show full source file name path for source lines"),
1191         OPT_BOOLEAN(0, "show-ref-call-graph", &symbol_conf.show_ref_callgraph,
1192                     "Show callgraph from reference event"),
1193         OPT_INTEGER(0, "socket-filter", &report.socket_filter,
1194                     "only show processor socket that match with this filter"),
1195         OPT_BOOLEAN(0, "raw-trace", &symbol_conf.raw_trace,
1196                     "Show raw trace event output (do not use print fmt or plugins)"),
1197         OPT_BOOLEAN(0, "hierarchy", &symbol_conf.report_hierarchy,
1198                     "Show entries in a hierarchy"),
1199         OPT_CALLBACK_DEFAULT(0, "stdio-color", NULL, "mode",
1200                              "'always' (default), 'never' or 'auto' only applicable to --stdio mode",
1201                              stdio__config_color, "always"),
1202         OPT_STRING(0, "time", &report.time_str, "str",
1203                    "Time span of interest (start,stop)"),
1204         OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
1205                     "Show inline function"),
1206         OPT_CALLBACK(0, "percent-type", &report.annotation_opts, "local-period",
1207                      "Set percent type local/global-period/hits",
1208                      annotate_parse_percent_type),
1209         OPT_BOOLEAN(0, "ns", &symbol_conf.nanosecs, "Show times in nanosecs"),
1210         OPT_CALLBACK(0, "time-quantum", &symbol_conf.time_quantum, "time (ms|us|ns|s)",
1211                      "Set time quantum for time sort key (default 100ms)",
1212                      parse_time_quantum),
1213         OPTS_EVSWITCH(&report.evswitch),
1214         OPT_END()
1215         };
1216         struct perf_data data = {
1217                 .mode  = PERF_DATA_MODE_READ,
1218         };
1219         int ret = hists__init();
1220         char sort_tmp[128];
1221 
1222         if (ret < 0)
1223                 return ret;
1224 
1225         ret = perf_config(report__config, &report);
1226         if (ret)
1227                 return ret;
1228 
1229         argc = parse_options(argc, argv, options, report_usage, 0);
1230         if (argc) {
1231                 /*
1232                  * Special case: if there's an argument left then assume that
1233                  * it's a symbol filter:
1234                  */
1235                 if (argc > 1)
1236                         usage_with_options(report_usage, options);
1237 
1238                 report.symbol_filter_str = argv[0];
1239         }
1240 
1241         if (report.mmaps_mode)
1242                 report.tasks_mode = true;
1243 
1244         if (quiet)
1245                 perf_quiet_option();
1246 
1247         if (symbol_conf.vmlinux_name &&
1248             access(symbol_conf.vmlinux_name, R_OK)) {
1249                 pr_err("Invalid file: %s\n", symbol_conf.vmlinux_name);
1250                 return -EINVAL;
1251         }
1252         if (symbol_conf.kallsyms_name &&
1253             access(symbol_conf.kallsyms_name, R_OK)) {
1254                 pr_err("Invalid file: %s\n", symbol_conf.kallsyms_name);
1255                 return -EINVAL;
1256         }
1257 
1258         if (report.inverted_callchain)
1259                 callchain_param.order = ORDER_CALLER;
1260         if (symbol_conf.cumulate_callchain && !callchain_param.order_set)
1261                 callchain_param.order = ORDER_CALLER;
1262 
1263         if (itrace_synth_opts.callchain &&
1264             (int)itrace_synth_opts.callchain_sz > report.max_stack)
1265                 report.max_stack = itrace_synth_opts.callchain_sz;
1266 
1267         if (!input_name || !strlen(input_name)) {
1268                 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
1269                         input_name = "-";
1270                 else
1271                         input_name = "perf.data";
1272         }
1273 
1274         data.path  = input_name;
1275         data.force = symbol_conf.force;
1276 
1277 repeat:
1278         session = perf_session__new(&data, false, &report.tool);
1279         if (IS_ERR(session))
1280                 return PTR_ERR(session);
1281 
1282         ret = evswitch__init(&report.evswitch, session->evlist, stderr);
1283         if (ret)
1284                 return ret;
1285 
1286         if (zstd_init(&(session->zstd_data), 0) < 0)
1287                 pr_warning("Decompression initialization failed. Reported data may be incomplete.\n");
1288 
1289         if (report.queue_size) {
1290                 ordered_events__set_alloc_size(&session->ordered_events,
1291                                                report.queue_size);
1292         }
1293 
1294         session->itrace_synth_opts = &itrace_synth_opts;
1295 
1296         report.session = session;
1297 
1298         has_br_stack = perf_header__has_feat(&session->header,
1299                                              HEADER_BRANCH_STACK);
1300         if (perf_evlist__combined_sample_type(session->evlist) & PERF_SAMPLE_STACK_USER)
1301                 has_br_stack = false;
1302 
1303         setup_forced_leader(&report, session->evlist);
1304 
1305         if (itrace_synth_opts.last_branch)
1306                 has_br_stack = true;
1307 
1308         if (has_br_stack && branch_call_mode)
1309                 symbol_conf.show_branchflag_count = true;
1310 
1311         memset(&report.brtype_stat, 0, sizeof(struct branch_type_stat));
1312 
1313         /*
1314          * Branch mode is a tristate:
1315          * -1 means default, so decide based on the file having branch data.
1316          * 0/1 means the user chose a mode.
1317          */
1318         if (((branch_mode == -1 && has_br_stack) || branch_mode == 1) &&
1319             !branch_call_mode) {
1320                 sort__mode = SORT_MODE__BRANCH;
1321                 symbol_conf.cumulate_callchain = false;
1322         }
1323         if (branch_call_mode) {
1324                 callchain_param.key = CCKEY_ADDRESS;
1325                 callchain_param.branch_callstack = 1;
1326                 symbol_conf.use_callchain = true;
1327                 callchain_register_param(&callchain_param);
1328                 if (sort_order == NULL)
1329                         sort_order = "srcline,symbol,dso";
1330         }
1331 
1332         if (report.mem_mode) {
1333                 if (sort__mode == SORT_MODE__BRANCH) {
1334                         pr_err("branch and mem mode incompatible\n");
1335                         goto error;
1336                 }
1337                 sort__mode = SORT_MODE__MEMORY;
1338                 symbol_conf.cumulate_callchain = false;
1339         }
1340 
1341         if (symbol_conf.report_hierarchy) {
1342                 /* disable incompatible options */
1343                 symbol_conf.cumulate_callchain = false;
1344 
1345                 if (field_order) {
1346                         pr_err("Error: --hierarchy and --fields options cannot be used together\n");
1347                         parse_options_usage(report_usage, options, "F", 1);
1348                         parse_options_usage(NULL, options, "hierarchy", 0);
1349                         goto error;
1350                 }
1351 
1352                 perf_hpp_list.need_collapse = true;
1353         }
1354 
1355         if (report.use_stdio)
1356                 use_browser = 0;
1357         else if (report.use_tui)
1358                 use_browser = 1;
1359         else if (report.use_gtk)
1360                 use_browser = 2;
1361 
1362         /* Force tty output for header output and per-thread stat. */
1363         if (report.header || report.header_only || report.show_threads)
1364                 use_browser = 0;
1365         if (report.header || report.header_only)
1366                 report.tool.show_feat_hdr = SHOW_FEAT_HEADER;
1367         if (report.show_full_info)
1368                 report.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
1369         if (report.stats_mode || report.tasks_mode)
1370                 use_browser = 0;
1371         if (report.stats_mode && report.tasks_mode) {
1372                 pr_err("Error: --tasks and --mmaps can't be used together with --stats\n");
1373                 goto error;
1374         }
1375 
1376         if (strcmp(input_name, "-") != 0)
1377                 setup_browser(true);
1378         else
1379                 use_browser = 0;
1380 
1381         if (sort_order && strstr(sort_order, "ipc")) {
1382                 parse_options_usage(report_usage, options, "s", 1);
1383                 goto error;
1384         }
1385 
1386         if (sort_order && strstr(sort_order, "symbol")) {
1387                 if (sort__mode == SORT_MODE__BRANCH) {
1388                         snprintf(sort_tmp, sizeof(sort_tmp), "%s,%s",
1389                                  sort_order, "ipc_lbr");
1390                         report.symbol_ipc = true;
1391                 } else {
1392                         snprintf(sort_tmp, sizeof(sort_tmp), "%s,%s",
1393                                  sort_order, "ipc_null");
1394                 }
1395 
1396                 sort_order = sort_tmp;
1397         }
1398 
1399         if ((last_key != K_SWITCH_INPUT_DATA) &&
1400             (setup_sorting(session->evlist) < 0)) {
1401                 if (sort_order)
1402                         parse_options_usage(report_usage, options, "s", 1);
1403                 if (field_order)
1404                         parse_options_usage(sort_order ? NULL : report_usage,
1405                                             options, "F", 1);
1406                 goto error;
1407         }
1408 
1409         if ((report.header || report.header_only) && !quiet) {
1410                 perf_session__fprintf_info(session, stdout,
1411                                            report.show_full_info);
1412                 if (report.header_only) {
1413                         ret = 0;
1414                         goto error;
1415                 }
1416         } else if (use_browser == 0 && !quiet &&
1417                    !report.stats_mode && !report.tasks_mode) {
1418                 fputs("# To display the perf.data header info, please use --header/--header-only options.\n#\n",
1419                       stdout);
1420         }
1421 
1422         /*
1423          * Only in the TUI browser we are doing integrated annotation,
1424          * so don't allocate extra space that won't be used in the stdio
1425          * implementation.
1426          */
1427         if (ui__has_annotation() || report.symbol_ipc) {
1428                 ret = symbol__annotation_init();
1429                 if (ret < 0)
1430                         goto error;
1431                 /*
1432                  * For searching by name on the "Browse map details".
1433                  * providing it only in verbose mode not to bloat too
1434                  * much struct symbol.
1435                  */
1436                 if (verbose > 0) {
1437                         /*
1438                          * XXX: Need to provide a less kludgy way to ask for
1439                          * more space per symbol, the u32 is for the index on
1440                          * the ui browser.
1441                          * See symbol__browser_index.
1442                          */
1443                         symbol_conf.priv_size += sizeof(u32);
1444                         symbol_conf.sort_by_name = true;
1445                 }
1446                 annotation_config__init();
1447         }
1448 
1449         if (symbol__init(&session->header.env) < 0)
1450                 goto error;
1451 
1452         if (report.time_str) {
1453                 ret = perf_time__parse_for_ranges(report.time_str, session,
1454                                                   &report.ptime_range,
1455                                                   &report.range_size,
1456                                                   &report.range_num);
1457                 if (ret < 0)
1458                         goto error;
1459 
1460                 itrace_synth_opts__set_time_range(&itrace_synth_opts,
1461                                                   report.ptime_range,
1462                                                   report.range_num);
1463         }
1464 
1465         if (session->tevent.pevent &&
1466             tep_set_function_resolver(session->tevent.pevent,
1467                                       machine__resolve_kernel_addr,
1468                                       &session->machines.host) < 0) {
1469                 pr_err("%s: failed to set libtraceevent function resolver\n",
1470                        __func__);
1471                 return -1;
1472         }
1473 
1474         sort__setup_elide(stdout);
1475 
1476         ret = __cmd_report(&report);
1477         if (ret == K_SWITCH_INPUT_DATA) {
1478                 perf_session__delete(session);
1479                 last_key = K_SWITCH_INPUT_DATA;
1480                 goto repeat;
1481         } else
1482                 ret = 0;
1483 
1484 error:
1485         if (report.ptime_range) {
1486                 itrace_synth_opts__clear_time_range(&itrace_synth_opts);
1487                 zfree(&report.ptime_range);
1488         }
1489         zstd_fini(&(session->zstd_data));
1490         perf_session__delete(session);
1491         return ret;
1492 }

/* [<][>][^][v][top][bottom][index][help] */