builtin-report.c 27 KB

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