diff options
Diffstat (limited to 'tools/perf/Documentation/perf-report.txt')
-rw-r--r-- | tools/perf/Documentation/perf-report.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/tools/perf/Documentation/perf-report.txt b/tools/perf/Documentation/perf-report.txt index 66dab7410c1d..2b8097ee39d8 100644 --- a/tools/perf/Documentation/perf-report.txt +++ b/tools/perf/Documentation/perf-report.txt | |||
@@ -115,7 +115,7 @@ OPTIONS | |||
115 | --dump-raw-trace:: | 115 | --dump-raw-trace:: |
116 | Dump raw trace in ASCII. | 116 | Dump raw trace in ASCII. |
117 | 117 | ||
118 | -g [type,min[,limit],order]:: | 118 | -g [type,min[,limit],order[,key]]:: |
119 | --call-graph:: | 119 | --call-graph:: |
120 | Display call chains using type, min percent threshold, optional print | 120 | Display call chains using type, min percent threshold, optional print |
121 | limit and order. | 121 | limit and order. |
@@ -129,12 +129,21 @@ OPTIONS | |||
129 | - callee: callee based call graph. | 129 | - callee: callee based call graph. |
130 | - caller: inverted caller based call graph. | 130 | - caller: inverted caller based call graph. |
131 | 131 | ||
132 | Default: fractal,0.5,callee. | 132 | key can be: |
133 | - function: compare on functions | ||
134 | - address: compare on individual code addresses | ||
135 | |||
136 | Default: fractal,0.5,callee,function. | ||
133 | 137 | ||
134 | -G:: | 138 | -G:: |
135 | --inverted:: | 139 | --inverted:: |
136 | alias for inverted caller based call graph. | 140 | alias for inverted caller based call graph. |
137 | 141 | ||
142 | --ignore-callees=<regex>:: | ||
143 | Ignore callees of the function(s) matching the given regex. | ||
144 | This has the effect of collecting the callers of each such | ||
145 | function into one place in the call-graph tree. | ||
146 | |||
138 | --pretty=<key>:: | 147 | --pretty=<key>:: |
139 | Pretty printing style. key: normal, raw | 148 | Pretty printing style. key: normal, raw |
140 | 149 | ||