builtin-report.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842
  1. /*
  2. * builtin-report.c
  3. *
  4. * Builtin report command: Analyze the perf.data input file,
  5. * look up and read DSOs and symbol information and display
  6. * a histogram of results, along various sorting keys.
  7. */
  8. #include "builtin.h"
  9. #include "util/util.h"
  10. #include "util/cache.h"
  11. #include "util/annotate.h"
  12. #include "util/color.h"
  13. #include <linux/list.h>
  14. #include <linux/rbtree.h>
  15. #include "util/symbol.h"
  16. #include "util/callchain.h"
  17. #include "util/strlist.h"
  18. #include "util/values.h"
  19. #include "perf.h"
  20. #include "util/debug.h"
  21. #include "util/evlist.h"
  22. #include "util/evsel.h"
  23. #include "util/header.h"
  24. #include "util/session.h"
  25. #include "util/tool.h"
  26. #include "util/parse-options.h"
  27. #include "util/parse-events.h"
  28. #include "util/thread.h"
  29. #include "util/sort.h"
  30. #include "util/hist.h"
  31. #include "util/data.h"
  32. #include "arch/common.h"
  33. #include <dlfcn.h>
  34. #include <linux/bitmap.h>
  35. struct report {
  36. struct perf_tool tool;
  37. struct perf_session *session;
  38. bool force, use_tui, use_gtk, use_stdio;
  39. bool hide_unresolved;
  40. bool dont_use_callchains;
  41. bool show_full_info;
  42. bool show_threads;
  43. bool inverted_callchain;
  44. bool mem_mode;
  45. bool header;
  46. bool header_only;
  47. int max_stack;
  48. struct perf_read_values show_threads_values;
  49. const char *pretty_printing_style;
  50. const char *cpu_list;
  51. const char *symbol_filter_str;
  52. float min_percent;
  53. u64 nr_entries;
  54. u64 queue_size;
  55. DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
  56. };
  57. static int report__config(const char *var, const char *value, void *cb)
  58. {
  59. struct report *rep = cb;
  60. if (!strcmp(var, "report.group")) {
  61. symbol_conf.event_group = perf_config_bool(var, value);
  62. return 0;
  63. }
  64. if (!strcmp(var, "report.percent-limit")) {
  65. rep->min_percent = strtof(value, NULL);
  66. return 0;
  67. }
  68. if (!strcmp(var, "report.children")) {
  69. symbol_conf.cumulate_callchain = perf_config_bool(var, value);
  70. return 0;
  71. }
  72. if (!strcmp(var, "report.queue-size")) {
  73. rep->queue_size = perf_config_u64(var, value);
  74. return 0;
  75. }
  76. return perf_default_config(var, value, cb);
  77. }
  78. static void report__inc_stats(struct report *rep, struct hist_entry *he)
  79. {
  80. /*
  81. * The @he is either of a newly created one or an existing one
  82. * merging current sample. We only want to count a new one so
  83. * checking ->nr_events being 1.
  84. */
  85. if (he->stat.nr_events == 1)
  86. rep->nr_entries++;
  87. }
  88. static int hist_iter__report_callback(struct hist_entry_iter *iter,
  89. struct addr_location *al, bool single,
  90. void *arg)
  91. {
  92. int err = 0;
  93. struct report *rep = arg;
  94. struct hist_entry *he = iter->he;
  95. struct perf_evsel *evsel = iter->evsel;
  96. struct mem_info *mi;
  97. struct branch_info *bi;
  98. report__inc_stats(rep, he);
  99. if (!ui__has_annotation())
  100. return 0;
  101. if (sort__mode == SORT_MODE__BRANCH) {
  102. bi = he->branch_info;
  103. err = addr_map_symbol__inc_samples(&bi->from, evsel->idx);
  104. if (err)
  105. goto out;
  106. err = addr_map_symbol__inc_samples(&bi->to, evsel->idx);
  107. } else if (rep->mem_mode) {
  108. mi = he->mem_info;
  109. err = addr_map_symbol__inc_samples(&mi->daddr, evsel->idx);
  110. if (err)
  111. goto out;
  112. err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
  113. } else if (symbol_conf.cumulate_callchain) {
  114. if (single)
  115. err = hist_entry__inc_addr_samples(he, evsel->idx,
  116. al->addr);
  117. } else {
  118. err = hist_entry__inc_addr_samples(he, evsel->idx, al->addr);
  119. }
  120. out:
  121. return err;
  122. }
  123. static int process_sample_event(struct perf_tool *tool,
  124. union perf_event *event,
  125. struct perf_sample *sample,
  126. struct perf_evsel *evsel,
  127. struct machine *machine)
  128. {
  129. struct report *rep = container_of(tool, struct report, tool);
  130. struct addr_location al;
  131. struct hist_entry_iter iter = {
  132. .hide_unresolved = rep->hide_unresolved,
  133. .add_entry_cb = hist_iter__report_callback,
  134. };
  135. int ret;
  136. if (perf_event__preprocess_sample(event, machine, &al, sample) < 0) {
  137. pr_debug("problem processing %d event, skipping it.\n",
  138. event->header.type);
  139. return -1;
  140. }
  141. if (rep->hide_unresolved && al.sym == NULL)
  142. return 0;
  143. if (rep->cpu_list && !test_bit(sample->cpu, rep->cpu_bitmap))
  144. return 0;
  145. if (sort__mode == SORT_MODE__BRANCH)
  146. iter.ops = &hist_iter_branch;
  147. else if (rep->mem_mode)
  148. iter.ops = &hist_iter_mem;
  149. else if (symbol_conf.cumulate_callchain)
  150. iter.ops = &hist_iter_cumulative;
  151. else
  152. iter.ops = &hist_iter_normal;
  153. if (al.map != NULL)
  154. al.map->dso->hit = 1;
  155. ret = hist_entry_iter__add(&iter, &al, evsel, sample, rep->max_stack,
  156. rep);
  157. if (ret < 0)
  158. pr_debug("problem adding hist entry, skipping event\n");
  159. return ret;
  160. }
  161. static int process_read_event(struct perf_tool *tool,
  162. union perf_event *event,
  163. struct perf_sample *sample __maybe_unused,
  164. struct perf_evsel *evsel,
  165. struct machine *machine __maybe_unused)
  166. {
  167. struct report *rep = container_of(tool, struct report, tool);
  168. if (rep->show_threads) {
  169. const char *name = evsel ? perf_evsel__name(evsel) : "unknown";
  170. perf_read_values_add_value(&rep->show_threads_values,
  171. event->read.pid, event->read.tid,
  172. event->read.id,
  173. name,
  174. event->read.value);
  175. }
  176. dump_printf(": %d %d %s %" PRIu64 "\n", event->read.pid, event->read.tid,
  177. evsel ? perf_evsel__name(evsel) : "FAIL",
  178. event->read.value);
  179. return 0;
  180. }
  181. /* For pipe mode, sample_type is not currently set */
  182. static int report__setup_sample_type(struct report *rep)
  183. {
  184. struct perf_session *session = rep->session;
  185. u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
  186. bool is_pipe = perf_data_file__is_pipe(session->file);
  187. if (!is_pipe && !(sample_type & PERF_SAMPLE_CALLCHAIN)) {
  188. if (sort__has_parent) {
  189. ui__error("Selected --sort parent, but no "
  190. "callchain data. Did you call "
  191. "'perf record' without -g?\n");
  192. return -EINVAL;
  193. }
  194. if (symbol_conf.use_callchain) {
  195. ui__error("Selected -g but no callchain data. Did "
  196. "you call 'perf record' without -g?\n");
  197. return -1;
  198. }
  199. } else if (!rep->dont_use_callchains &&
  200. callchain_param.mode != CHAIN_NONE &&
  201. !symbol_conf.use_callchain) {
  202. symbol_conf.use_callchain = true;
  203. if (callchain_register_param(&callchain_param) < 0) {
  204. ui__error("Can't register callchain params.\n");
  205. return -EINVAL;
  206. }
  207. }
  208. if (symbol_conf.cumulate_callchain) {
  209. /* Silently ignore if callchain is missing */
  210. if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) {
  211. symbol_conf.cumulate_callchain = false;
  212. perf_hpp__cancel_cumulate();
  213. }
  214. }
  215. if (sort__mode == SORT_MODE__BRANCH) {
  216. if (!is_pipe &&
  217. !(sample_type & PERF_SAMPLE_BRANCH_STACK)) {
  218. ui__error("Selected -b but no branch data. "
  219. "Did you call perf record without -b?\n");
  220. return -1;
  221. }
  222. }
  223. if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
  224. if ((sample_type & PERF_SAMPLE_REGS_USER) &&
  225. (sample_type & PERF_SAMPLE_STACK_USER))
  226. callchain_param.record_mode = CALLCHAIN_DWARF;
  227. else
  228. callchain_param.record_mode = CALLCHAIN_FP;
  229. }
  230. return 0;
  231. }
  232. static void sig_handler(int sig __maybe_unused)
  233. {
  234. session_done = 1;
  235. }
  236. static size_t hists__fprintf_nr_sample_events(struct hists *hists, struct report *rep,
  237. const char *evname, FILE *fp)
  238. {
  239. size_t ret;
  240. char unit;
  241. unsigned long nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
  242. u64 nr_events = hists->stats.total_period;
  243. struct perf_evsel *evsel = hists_to_evsel(hists);
  244. char buf[512];
  245. size_t size = sizeof(buf);
  246. if (symbol_conf.filter_relative) {
  247. nr_samples = hists->stats.nr_non_filtered_samples;
  248. nr_events = hists->stats.total_non_filtered_period;
  249. }
  250. if (perf_evsel__is_group_event(evsel)) {
  251. struct perf_evsel *pos;
  252. perf_evsel__group_desc(evsel, buf, size);
  253. evname = buf;
  254. for_each_group_member(pos, evsel) {
  255. const struct hists *pos_hists = evsel__hists(pos);
  256. if (symbol_conf.filter_relative) {
  257. nr_samples += pos_hists->stats.nr_non_filtered_samples;
  258. nr_events += pos_hists->stats.total_non_filtered_period;
  259. } else {
  260. nr_samples += pos_hists->stats.nr_events[PERF_RECORD_SAMPLE];
  261. nr_events += pos_hists->stats.total_period;
  262. }
  263. }
  264. }
  265. nr_samples = convert_unit(nr_samples, &unit);
  266. ret = fprintf(fp, "# Samples: %lu%c", nr_samples, unit);
  267. if (evname != NULL)
  268. ret += fprintf(fp, " of event '%s'", evname);
  269. if (rep->mem_mode) {
  270. ret += fprintf(fp, "\n# Total weight : %" PRIu64, nr_events);
  271. ret += fprintf(fp, "\n# Sort order : %s", sort_order);
  272. } else
  273. ret += fprintf(fp, "\n# Event count (approx.): %" PRIu64, nr_events);
  274. return ret + fprintf(fp, "\n#\n");
  275. }
  276. static int perf_evlist__tty_browse_hists(struct perf_evlist *evlist,
  277. struct report *rep,
  278. const char *help)
  279. {
  280. struct perf_evsel *pos;
  281. evlist__for_each(evlist, pos) {
  282. struct hists *hists = evsel__hists(pos);
  283. const char *evname = perf_evsel__name(pos);
  284. if (symbol_conf.event_group &&
  285. !perf_evsel__is_group_leader(pos))
  286. continue;
  287. hists__fprintf_nr_sample_events(hists, rep, evname, stdout);
  288. hists__fprintf(hists, true, 0, 0, rep->min_percent, stdout);
  289. fprintf(stdout, "\n\n");
  290. }
  291. if (sort_order == default_sort_order &&
  292. parent_pattern == default_parent_pattern) {
  293. fprintf(stdout, "#\n# (%s)\n#\n", help);
  294. if (rep->show_threads) {
  295. bool style = !strcmp(rep->pretty_printing_style, "raw");
  296. perf_read_values_display(stdout, &rep->show_threads_values,
  297. style);
  298. perf_read_values_destroy(&rep->show_threads_values);
  299. }
  300. }
  301. return 0;
  302. }
  303. static void report__warn_kptr_restrict(const struct report *rep)
  304. {
  305. struct map *kernel_map = rep->session->machines.host.vmlinux_maps[MAP__FUNCTION];
  306. struct kmap *kernel_kmap = map__kmap(kernel_map);
  307. if (kernel_map == NULL ||
  308. (kernel_map->dso->hit &&
  309. (kernel_kmap->ref_reloc_sym == NULL ||
  310. kernel_kmap->ref_reloc_sym->addr == 0))) {
  311. const char *desc =
  312. "As no suitable kallsyms nor vmlinux was found, kernel samples\n"
  313. "can't be resolved.";
  314. if (kernel_map) {
  315. const struct dso *kdso = kernel_map->dso;
  316. if (!RB_EMPTY_ROOT(&kdso->symbols[MAP__FUNCTION])) {
  317. desc = "If some relocation was applied (e.g. "
  318. "kexec) symbols may be misresolved.";
  319. }
  320. }
  321. ui__warning(
  322. "Kernel address maps (/proc/{kallsyms,modules}) were restricted.\n\n"
  323. "Check /proc/sys/kernel/kptr_restrict before running 'perf record'.\n\n%s\n\n"
  324. "Samples in kernel modules can't be resolved as well.\n\n",
  325. desc);
  326. }
  327. }
  328. static int report__gtk_browse_hists(struct report *rep, const char *help)
  329. {
  330. int (*hist_browser)(struct perf_evlist *evlist, const char *help,
  331. struct hist_browser_timer *timer, float min_pcnt);
  332. hist_browser = dlsym(perf_gtk_handle, "perf_evlist__gtk_browse_hists");
  333. if (hist_browser == NULL) {
  334. ui__error("GTK browser not found!\n");
  335. return -1;
  336. }
  337. return hist_browser(rep->session->evlist, help, NULL, rep->min_percent);
  338. }
  339. static int report__browse_hists(struct report *rep)
  340. {
  341. int ret;
  342. struct perf_session *session = rep->session;
  343. struct perf_evlist *evlist = session->evlist;
  344. const char *help = "For a higher level overview, try: perf report --sort comm,dso";
  345. switch (use_browser) {
  346. case 1:
  347. ret = perf_evlist__tui_browse_hists(evlist, help, NULL,
  348. rep->min_percent,
  349. &session->header.env);
  350. /*
  351. * Usually "ret" is the last pressed key, and we only
  352. * care if the key notifies us to switch data file.
  353. */
  354. if (ret != K_SWITCH_INPUT_DATA)
  355. ret = 0;
  356. break;
  357. case 2:
  358. ret = report__gtk_browse_hists(rep, help);
  359. break;
  360. default:
  361. ret = perf_evlist__tty_browse_hists(evlist, rep, help);
  362. break;
  363. }
  364. return ret;
  365. }
  366. static void report__collapse_hists(struct report *rep)
  367. {
  368. struct ui_progress prog;
  369. struct perf_evsel *pos;
  370. ui_progress__init(&prog, rep->nr_entries, "Merging related events...");
  371. evlist__for_each(rep->session->evlist, pos) {
  372. struct hists *hists = evsel__hists(pos);
  373. if (pos->idx == 0)
  374. hists->symbol_filter_str = rep->symbol_filter_str;
  375. hists__collapse_resort(hists, &prog);
  376. /* Non-group events are considered as leader */
  377. if (symbol_conf.event_group &&
  378. !perf_evsel__is_group_leader(pos)) {
  379. struct hists *leader_hists = evsel__hists(pos->leader);
  380. hists__match(leader_hists, hists);
  381. hists__link(leader_hists, hists);
  382. }
  383. }
  384. ui_progress__finish();
  385. }
  386. static int __cmd_report(struct report *rep)
  387. {
  388. int ret;
  389. struct perf_session *session = rep->session;
  390. struct perf_evsel *pos;
  391. struct perf_data_file *file = session->file;
  392. signal(SIGINT, sig_handler);
  393. if (rep->cpu_list) {
  394. ret = perf_session__cpu_bitmap(session, rep->cpu_list,
  395. rep->cpu_bitmap);
  396. if (ret)
  397. return ret;
  398. }
  399. if (rep->show_threads)
  400. perf_read_values_init(&rep->show_threads_values);
  401. ret = report__setup_sample_type(rep);
  402. if (ret)
  403. return ret;
  404. ret = perf_session__process_events(session, &rep->tool);
  405. if (ret)
  406. return ret;
  407. report__warn_kptr_restrict(rep);
  408. if (use_browser == 0) {
  409. if (verbose > 3)
  410. perf_session__fprintf(session, stdout);
  411. if (verbose > 2)
  412. perf_session__fprintf_dsos(session, stdout);
  413. if (dump_trace) {
  414. perf_session__fprintf_nr_events(session, stdout);
  415. perf_evlist__fprintf_nr_events(session->evlist, stdout);
  416. return 0;
  417. }
  418. }
  419. report__collapse_hists(rep);
  420. if (session_done())
  421. return 0;
  422. if (rep->nr_entries == 0) {
  423. ui__error("The %s file has no samples!\n", file->path);
  424. return 0;
  425. }
  426. evlist__for_each(session->evlist, pos)
  427. hists__output_resort(evsel__hists(pos));
  428. return report__browse_hists(rep);
  429. }
  430. static int
  431. report_parse_callchain_opt(const struct option *opt, const char *arg, int unset)
  432. {
  433. struct report *rep = (struct report *)opt->value;
  434. /*
  435. * --no-call-graph
  436. */
  437. if (unset) {
  438. rep->dont_use_callchains = true;
  439. return 0;
  440. }
  441. return parse_callchain_report_opt(arg);
  442. }
  443. int
  444. report_parse_ignore_callees_opt(const struct option *opt __maybe_unused,
  445. const char *arg, int unset __maybe_unused)
  446. {
  447. if (arg) {
  448. int err = regcomp(&ignore_callees_regex, arg, REG_EXTENDED);
  449. if (err) {
  450. char buf[BUFSIZ];
  451. regerror(err, &ignore_callees_regex, buf, sizeof(buf));
  452. pr_err("Invalid --ignore-callees regex: %s\n%s", arg, buf);
  453. return -1;
  454. }
  455. have_ignore_callees = 1;
  456. }
  457. return 0;
  458. }
  459. static int
  460. parse_branch_mode(const struct option *opt __maybe_unused,
  461. const char *str __maybe_unused, int unset)
  462. {
  463. int *branch_mode = opt->value;
  464. *branch_mode = !unset;
  465. return 0;
  466. }
  467. static int
  468. parse_percent_limit(const struct option *opt, const char *str,
  469. int unset __maybe_unused)
  470. {
  471. struct report *rep = opt->value;
  472. rep->min_percent = strtof(str, NULL);
  473. return 0;
  474. }
  475. int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused)
  476. {
  477. struct perf_session *session;
  478. struct stat st;
  479. bool has_br_stack = false;
  480. int branch_mode = -1;
  481. char callchain_default_opt[] = "fractal,0.5,callee";
  482. const char * const report_usage[] = {
  483. "perf report [<options>]",
  484. NULL
  485. };
  486. struct report report = {
  487. .tool = {
  488. .sample = process_sample_event,
  489. .mmap = perf_event__process_mmap,
  490. .mmap2 = perf_event__process_mmap2,
  491. .comm = perf_event__process_comm,
  492. .exit = perf_event__process_exit,
  493. .fork = perf_event__process_fork,
  494. .lost = perf_event__process_lost,
  495. .read = process_read_event,
  496. .attr = perf_event__process_attr,
  497. .tracing_data = perf_event__process_tracing_data,
  498. .build_id = perf_event__process_build_id,
  499. .ordered_events = true,
  500. .ordering_requires_timestamps = true,
  501. },
  502. .max_stack = PERF_MAX_STACK_DEPTH,
  503. .pretty_printing_style = "normal",
  504. };
  505. const struct option options[] = {
  506. OPT_STRING('i', "input", &input_name, "file",
  507. "input file name"),
  508. OPT_INCR('v', "verbose", &verbose,
  509. "be more verbose (show symbol address, etc)"),
  510. OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
  511. "dump raw trace in ASCII"),
  512. OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
  513. "file", "vmlinux pathname"),
  514. OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
  515. "file", "kallsyms pathname"),
  516. OPT_BOOLEAN('f', "force", &report.force, "don't complain, do it"),
  517. OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules,
  518. "load module symbols - WARNING: use only with -k and LIVE kernel"),
  519. OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples,
  520. "Show a column with the number of samples"),
  521. OPT_BOOLEAN('T', "threads", &report.show_threads,
  522. "Show per-thread event counters"),
  523. OPT_STRING(0, "pretty", &report.pretty_printing_style, "key",
  524. "pretty printing style key: normal raw"),
  525. OPT_BOOLEAN(0, "tui", &report.use_tui, "Use the TUI interface"),
  526. OPT_BOOLEAN(0, "gtk", &report.use_gtk, "Use the GTK2 interface"),
  527. OPT_BOOLEAN(0, "stdio", &report.use_stdio,
  528. "Use the stdio interface"),
  529. OPT_BOOLEAN(0, "header", &report.header, "Show data header."),
  530. OPT_BOOLEAN(0, "header-only", &report.header_only,
  531. "Show only data header."),
  532. OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
  533. "sort by key(s): pid, comm, dso, symbol, parent, cpu, srcline, ..."
  534. " Please refer the man page for the complete list."),
  535. OPT_STRING('F', "fields", &field_order, "key[,keys...]",
  536. "output field(s): overhead, period, sample plus all of sort keys"),
  537. OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization,
  538. "Show sample percentage for different cpu modes"),
  539. OPT_STRING('p', "parent", &parent_pattern, "regex",
  540. "regex filter to identify parent, see: '--sort parent'"),
  541. OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other,
  542. "Only display entries with parent-match"),
  543. OPT_CALLBACK_DEFAULT('g', "call-graph", &report, "output_type,min_percent[,print_limit],call_order",
  544. "Display callchains using output_type (graph, flat, fractal, or none) , min percent threshold, optional print limit, callchain order, key (function or address). "
  545. "Default: fractal,0.5,callee,function", &report_parse_callchain_opt, callchain_default_opt),
  546. OPT_BOOLEAN(0, "children", &symbol_conf.cumulate_callchain,
  547. "Accumulate callchains of children and show total overhead as well"),
  548. OPT_INTEGER(0, "max-stack", &report.max_stack,
  549. "Set the maximum stack depth when parsing the callchain, "
  550. "anything beyond the specified depth will be ignored. "
  551. "Default: " __stringify(PERF_MAX_STACK_DEPTH)),
  552. OPT_BOOLEAN('G', "inverted", &report.inverted_callchain,
  553. "alias for inverted call graph"),
  554. OPT_CALLBACK(0, "ignore-callees", NULL, "regex",
  555. "ignore callees of these functions in call graphs",
  556. report_parse_ignore_callees_opt),
  557. OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]",
  558. "only consider symbols in these dsos"),
  559. OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
  560. "only consider symbols in these comms"),
  561. OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
  562. "only consider these symbols"),
  563. OPT_STRING(0, "symbol-filter", &report.symbol_filter_str, "filter",
  564. "only show symbols that (partially) match with this filter"),
  565. OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str,
  566. "width[,width...]",
  567. "don't try to adjust column width, use these fixed values"),
  568. OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator",
  569. "separator for columns, no spaces will be added between "
  570. "columns '.' is reserved."),
  571. OPT_BOOLEAN('U', "hide-unresolved", &report.hide_unresolved,
  572. "Only display entries resolved to a symbol"),
  573. OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
  574. "Look for files with symbols relative to this directory"),
  575. OPT_STRING('C', "cpu", &report.cpu_list, "cpu",
  576. "list of cpus to profile"),
  577. OPT_BOOLEAN('I', "show-info", &report.show_full_info,
  578. "Display extended information about perf.data file"),
  579. OPT_BOOLEAN(0, "source", &symbol_conf.annotate_src,
  580. "Interleave source code with assembly code (default)"),
  581. OPT_BOOLEAN(0, "asm-raw", &symbol_conf.annotate_asm_raw,
  582. "Display raw encoding of assembly instructions (default)"),
  583. OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
  584. "Specify disassembler style (e.g. -M intel for intel syntax)"),
  585. OPT_BOOLEAN(0, "show-total-period", &symbol_conf.show_total_period,
  586. "Show a column with the sum of periods"),
  587. OPT_BOOLEAN(0, "group", &symbol_conf.event_group,
  588. "Show event group information together"),
  589. OPT_CALLBACK_NOOPT('b', "branch-stack", &branch_mode, "",
  590. "use branch records for histogram filling", parse_branch_mode),
  591. OPT_STRING(0, "objdump", &objdump_path, "path",
  592. "objdump binary to use for disassembly and annotations"),
  593. OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
  594. "Disable symbol demangling"),
  595. OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
  596. "Enable kernel symbol demangling"),
  597. OPT_BOOLEAN(0, "mem-mode", &report.mem_mode, "mem access profile"),
  598. OPT_CALLBACK(0, "percent-limit", &report, "percent",
  599. "Don't show entries under that percent", parse_percent_limit),
  600. OPT_CALLBACK(0, "percentage", NULL, "relative|absolute",
  601. "how to display percentage of filtered entries", parse_filter_percentage),
  602. OPT_END()
  603. };
  604. struct perf_data_file file = {
  605. .mode = PERF_DATA_MODE_READ,
  606. };
  607. int ret = hists__init();
  608. if (ret < 0)
  609. return ret;
  610. perf_config(report__config, &report);
  611. argc = parse_options(argc, argv, options, report_usage, 0);
  612. if (report.use_stdio)
  613. use_browser = 0;
  614. else if (report.use_tui)
  615. use_browser = 1;
  616. else if (report.use_gtk)
  617. use_browser = 2;
  618. if (report.inverted_callchain)
  619. callchain_param.order = ORDER_CALLER;
  620. if (!input_name || !strlen(input_name)) {
  621. if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode))
  622. input_name = "-";
  623. else
  624. input_name = "perf.data";
  625. }
  626. file.path = input_name;
  627. file.force = report.force;
  628. repeat:
  629. session = perf_session__new(&file, false, &report.tool);
  630. if (session == NULL)
  631. return -1;
  632. if (report.queue_size) {
  633. ordered_events__set_alloc_size(&session->ordered_events,
  634. report.queue_size);
  635. }
  636. report.session = session;
  637. has_br_stack = perf_header__has_feat(&session->header,
  638. HEADER_BRANCH_STACK);
  639. if ((branch_mode == -1 && has_br_stack) || branch_mode == 1) {
  640. sort__mode = SORT_MODE__BRANCH;
  641. symbol_conf.cumulate_callchain = false;
  642. }
  643. if (report.mem_mode) {
  644. if (sort__mode == SORT_MODE__BRANCH) {
  645. pr_err("branch and mem mode incompatible\n");
  646. goto error;
  647. }
  648. sort__mode = SORT_MODE__MEMORY;
  649. symbol_conf.cumulate_callchain = false;
  650. }
  651. if (setup_sorting() < 0) {
  652. if (sort_order)
  653. parse_options_usage(report_usage, options, "s", 1);
  654. if (field_order)
  655. parse_options_usage(sort_order ? NULL : report_usage,
  656. options, "F", 1);
  657. goto error;
  658. }
  659. /* Force tty output for header output. */
  660. if (report.header || report.header_only)
  661. use_browser = 0;
  662. if (strcmp(input_name, "-") != 0)
  663. setup_browser(true);
  664. else
  665. use_browser = 0;
  666. if (report.header || report.header_only) {
  667. perf_session__fprintf_info(session, stdout,
  668. report.show_full_info);
  669. if (report.header_only)
  670. return 0;
  671. } else if (use_browser == 0) {
  672. fputs("# To display the perf.data header info, please use --header/--header-only options.\n#\n",
  673. stdout);
  674. }
  675. /*
  676. * Only in the TUI browser we are doing integrated annotation,
  677. * so don't allocate extra space that won't be used in the stdio
  678. * implementation.
  679. */
  680. if (ui__has_annotation()) {
  681. symbol_conf.priv_size = sizeof(struct annotation);
  682. machines__set_symbol_filter(&session->machines,
  683. symbol__annotate_init);
  684. /*
  685. * For searching by name on the "Browse map details".
  686. * providing it only in verbose mode not to bloat too
  687. * much struct symbol.
  688. */
  689. if (verbose) {
  690. /*
  691. * XXX: Need to provide a less kludgy way to ask for
  692. * more space per symbol, the u32 is for the index on
  693. * the ui browser.
  694. * See symbol__browser_index.
  695. */
  696. symbol_conf.priv_size += sizeof(u32);
  697. symbol_conf.sort_by_name = true;
  698. }
  699. }
  700. if (symbol__init(&session->header.env) < 0)
  701. goto error;
  702. if (argc) {
  703. /*
  704. * Special case: if there's an argument left then assume that
  705. * it's a symbol filter:
  706. */
  707. if (argc > 1)
  708. usage_with_options(report_usage, options);
  709. report.symbol_filter_str = argv[0];
  710. }
  711. sort__setup_elide(stdout);
  712. ret = __cmd_report(&report);
  713. if (ret == K_SWITCH_INPUT_DATA) {
  714. perf_session__delete(session);
  715. goto repeat;
  716. } else
  717. ret = 0;
  718. error:
  719. perf_session__delete(session);
  720. return ret;
  721. }