builtin-report.c 23 KB

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