Lines Matching full:report
1 For a higher level overview, try: perf report --sort comm,dso
4 Boolean options have negative forms, e.g.: perf report --no-children
9 Search options using a keyword: perf report -h <keyword>
10 Use parent filter to see specific call path: perf report -p <regex>
14 To see callchains in a more compact form: perf report -g folded
16 Limit to show entries above 5% only: perf report --percent-limit 5
17 Profiling branch (mis)predictions with: perf record -b / perf report
19 Treat branches as callchains: perf report --branch-history
22 If you have debuginfo enabled, try: perf report -s sym,srcline
23 For memory address profiling, try: perf mem record / perf mem report
24 For tracepoint events, try: perf report -s trace_fields
31 For hierarchical output, try: perf report --hierarchy
32 Order by the overhead of source file name and line number: perf report -s srcline
37 To report cacheline events from previous recording: perf c2c report
38 To browse sample contexts use perf report --sample 10 and select in context menu
39 To separate samples by time use perf report --sort time,overhead,sym
41 Add -I to perf record to sample register values, which will be visible in perf report sample contex…
43 To show context switches in perf report sample context add --switch-events to perf record.