Lines Matching refs: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
10 Search options using a keyword: perf report -h <keyword>
11 Use parent filter to see specific call path: perf report -p <regex>
15 To see callchains in a more compact form: perf report -g folded
16 To see call chains by final symbol taking CPU time (bottom up) use perf report -G
18 Limit to show entries above 5% only: perf report --percent-limit 5
19 Profiling branch (mis)predictions with: perf record -b / perf report
20 To show assembler sample context control flow use perf record -b / perf report --samples 10 and the…
21 To adjust path to source files to local file system use perf report --prefix=... --prefix-strip=...
22 Treat branches as callchains: perf record -b ... ; perf report --branch-history
23 Show estimate cycles per function and IPC in annotate use perf record -b ... ; perf report --total-…
26 If you have debuginfo enabled, try: perf report -s sym,srcline
27 For memory address profiling, try: perf mem record / perf mem report
28 For tracepoint events, try: perf report -s trace_fields
32 To show inline functions in call traces add --inline to perf report
36 To show information about system the samples were collected on use perf report --header
37 …one event use perf record -e cpu/cpu-cycles,callgraph=1/,branches ; perf report --show-ref-call-gr…
43 …ch-lbr to handle more than 32 deep entries: perf record --call-graph lbr ; perf report --stitch-lbr
44 For hierarchical output, try: perf report --hierarchy
45 Order by the overhead of source file name and line number: perf report -s srcline
54 To analyze cache line scalability issues use perf c2c record ... ; perf c2c report
55 To browse sample contexts use perf report --sample 10 and select in context menu
56 To separate samples by time use perf report --sort time,overhead,sym
57 To filter subset of samples with report or script add --time X-Y or --cpu A,B,C or --socket-filter …
59 Add -I to perf record to sample register values, which will be visible in perf report sample contex…
61 To show context switches in perf report sample context add --switch-events to perf record.
62 To show time in nanoseconds in record/report add --ns