builtin-report.c 25 KB

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