diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2009-07-02 14:14:33 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-07-02 15:38:37 -0400 |
commit | c20ab37ef30f4a874cf27e84c12c73e584e6f5cc (patch) | |
tree | 47f4d893d09727e387ac6742cc20156302e9c3fa | |
parent | 4eb3e4788b8a5e220a0aeb590f88c28850726ebe (diff) |
perf_counter tools: Set the minimum percent for callchains to be displayed
Callchains output may become a burden on a trace because even
rarely hit site are exposed. This can be too much information.
Let the user set a threshold as a minimum percent of hits using
the new pattern for the -c option:
-c mode,min_percent
Example:
$ perf report -s sym -c flat,4
8.25% [k] copy_user_generic_string
4.19%
copy_user_generic_string
generic_file_aio_read
do_sync_read
vfs_read
sys_pread64
system_call_fastpath
pread64
5.39% [k] search_by_key
4.63% 0x00000000009e0a
2.36% [k] memcpy_c
[...]
$ perf report -s sym -c graph,2
8.25% [k] copy_user_generic_string
|
|--4.31%-- generic_file_aio_read
| do_sync_read
| vfs_read
| |
| --4.19%-- sys_pread64
| system_call_fastpath
| pread64
|
--3.24%-- generic_file_buffered_write
__generic_file_aio_write_nolock
generic_file_aio_write
do_sync_write
reiserfs_file_write
vfs_write
|
--3.14%-- sys_pwrite64
system_call_fastpath
__pwrite64
5.39% [k] search_by_key
|
--2.23%-- reiserfs_update_sd_size
4.63% 0x00000000009e0a
2.36% [k] memcpy_c
[...]
You can also omit it and it will default to 0.
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Anton Blanchard <anton@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <1246558475-10624-1-git-send-email-fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | tools/perf/builtin-report.c | 45 | ||||
-rw-r--r-- | tools/perf/util/callchain.c | 19 | ||||
-rw-r--r-- | tools/perf/util/callchain.h | 6 |
3 files changed, 49 insertions, 21 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index 0ca46386d936..e8c98179fe45 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
@@ -60,6 +60,7 @@ static regex_t parent_regex; | |||
60 | static int exclude_other = 1; | 60 | static int exclude_other = 1; |
61 | static int callchain; | 61 | static int callchain; |
62 | static enum chain_mode callchain_mode; | 62 | static enum chain_mode callchain_mode; |
63 | static double callchain_min_percent = 0.0; | ||
63 | 64 | ||
64 | static u64 sample_type; | 65 | static u64 sample_type; |
65 | 66 | ||
@@ -1224,7 +1225,7 @@ static void collapse__resort(void) | |||
1224 | 1225 | ||
1225 | static struct rb_root output_hists; | 1226 | static struct rb_root output_hists; |
1226 | 1227 | ||
1227 | static void output__insert_entry(struct hist_entry *he) | 1228 | static void output__insert_entry(struct hist_entry *he, u64 min_callchain_hits) |
1228 | { | 1229 | { |
1229 | struct rb_node **p = &output_hists.rb_node; | 1230 | struct rb_node **p = &output_hists.rb_node; |
1230 | struct rb_node *parent = NULL; | 1231 | struct rb_node *parent = NULL; |
@@ -1232,9 +1233,11 @@ static void output__insert_entry(struct hist_entry *he) | |||
1232 | 1233 | ||
1233 | if (callchain) { | 1234 | if (callchain) { |
1234 | if (callchain_mode == FLAT) | 1235 | if (callchain_mode == FLAT) |
1235 | sort_chain_flat(&he->sorted_chain, &he->callchain); | 1236 | sort_chain_flat(&he->sorted_chain, &he->callchain, |
1237 | min_callchain_hits); | ||
1236 | else if (callchain_mode == GRAPH) | 1238 | else if (callchain_mode == GRAPH) |
1237 | sort_chain_graph(&he->sorted_chain, &he->callchain); | 1239 | sort_chain_graph(&he->sorted_chain, &he->callchain, |
1240 | min_callchain_hits); | ||
1238 | } | 1241 | } |
1239 | 1242 | ||
1240 | while (*p != NULL) { | 1243 | while (*p != NULL) { |
@@ -1251,11 +1254,14 @@ static void output__insert_entry(struct hist_entry *he) | |||
1251 | rb_insert_color(&he->rb_node, &output_hists); | 1254 | rb_insert_color(&he->rb_node, &output_hists); |
1252 | } | 1255 | } |
1253 | 1256 | ||
1254 | static void output__resort(void) | 1257 | static void output__resort(u64 total_samples) |
1255 | { | 1258 | { |
1256 | struct rb_node *next; | 1259 | struct rb_node *next; |
1257 | struct hist_entry *n; | 1260 | struct hist_entry *n; |
1258 | struct rb_root *tree = &hist; | 1261 | struct rb_root *tree = &hist; |
1262 | u64 min_callchain_hits; | ||
1263 | |||
1264 | min_callchain_hits = total_samples * (callchain_min_percent / 100); | ||
1259 | 1265 | ||
1260 | if (sort__need_collapse) | 1266 | if (sort__need_collapse) |
1261 | tree = &collapse_hists; | 1267 | tree = &collapse_hists; |
@@ -1267,7 +1273,7 @@ static void output__resort(void) | |||
1267 | next = rb_next(&n->rb_node); | 1273 | next = rb_next(&n->rb_node); |
1268 | 1274 | ||
1269 | rb_erase(&n->rb_node, tree); | 1275 | rb_erase(&n->rb_node, tree); |
1270 | output__insert_entry(n); | 1276 | output__insert_entry(n, min_callchain_hits); |
1271 | } | 1277 | } |
1272 | } | 1278 | } |
1273 | 1279 | ||
@@ -1801,7 +1807,7 @@ done: | |||
1801 | dsos__fprintf(stdout); | 1807 | dsos__fprintf(stdout); |
1802 | 1808 | ||
1803 | collapse__resort(); | 1809 | collapse__resort(); |
1804 | output__resort(); | 1810 | output__resort(total); |
1805 | output__fprintf(stdout, total); | 1811 | output__fprintf(stdout, total); |
1806 | 1812 | ||
1807 | return rc; | 1813 | return rc; |
@@ -1811,19 +1817,36 @@ static int | |||
1811 | parse_callchain_opt(const struct option *opt __used, const char *arg, | 1817 | parse_callchain_opt(const struct option *opt __used, const char *arg, |
1812 | int unset __used) | 1818 | int unset __used) |
1813 | { | 1819 | { |
1820 | char *tok; | ||
1821 | char *endptr; | ||
1822 | |||
1814 | callchain = 1; | 1823 | callchain = 1; |
1815 | 1824 | ||
1816 | if (!arg) | 1825 | if (!arg) |
1817 | return 0; | 1826 | return 0; |
1818 | 1827 | ||
1819 | if (!strncmp(arg, "graph", strlen(arg))) | 1828 | tok = strtok((char *)arg, ","); |
1829 | if (!tok) | ||
1830 | return -1; | ||
1831 | |||
1832 | /* get the output mode */ | ||
1833 | if (!strncmp(tok, "graph", strlen(arg))) | ||
1820 | callchain_mode = GRAPH; | 1834 | callchain_mode = GRAPH; |
1821 | 1835 | ||
1822 | else if (!strncmp(arg, "flat", strlen(arg))) | 1836 | else if (!strncmp(tok, "flat", strlen(arg))) |
1823 | callchain_mode = FLAT; | 1837 | callchain_mode = FLAT; |
1824 | else | 1838 | else |
1825 | return -1; | 1839 | return -1; |
1826 | 1840 | ||
1841 | /* get the min percentage */ | ||
1842 | tok = strtok(NULL, ","); | ||
1843 | if (!tok) | ||
1844 | return 0; | ||
1845 | |||
1846 | callchain_min_percent = strtod(tok, &endptr); | ||
1847 | if (tok == endptr) | ||
1848 | return -1; | ||
1849 | |||
1827 | return 0; | 1850 | return 0; |
1828 | } | 1851 | } |
1829 | 1852 | ||
@@ -1850,9 +1873,9 @@ static const struct option options[] = { | |||
1850 | "regex filter to identify parent, see: '--sort parent'"), | 1873 | "regex filter to identify parent, see: '--sort parent'"), |
1851 | OPT_BOOLEAN('x', "exclude-other", &exclude_other, | 1874 | OPT_BOOLEAN('x', "exclude-other", &exclude_other, |
1852 | "Only display entries with parent-match"), | 1875 | "Only display entries with parent-match"), |
1853 | OPT_CALLBACK_DEFAULT('c', "callchain", NULL, "output_type", | 1876 | OPT_CALLBACK_DEFAULT('c', "callchain", NULL, "output_type,min_percent", |
1854 | "Display callchains with output_type: flat, graph. " | 1877 | "Display callchains using output_type and min percent threshold. " |
1855 | "Default to flat", &parse_callchain_opt, "flat"), | 1878 | "Default: flat,0", &parse_callchain_opt, "flat,100"), |
1856 | OPT_STRING('d', "dsos", &dso_list_str, "dso[,dso...]", | 1879 | OPT_STRING('d', "dsos", &dso_list_str, "dso[,dso...]", |
1857 | "only consider symbols in these dsos"), | 1880 | "only consider symbols in these dsos"), |
1858 | OPT_STRING('C', "comms", &comm_list_str, "comm[,comm...]", | 1881 | OPT_STRING('C', "comms", &comm_list_str, "comm[,comm...]", |
diff --git a/tools/perf/util/callchain.c b/tools/perf/util/callchain.c index a9873aafcd92..c9900fe6b8b4 100644 --- a/tools/perf/util/callchain.c +++ b/tools/perf/util/callchain.c | |||
@@ -57,18 +57,19 @@ rb_insert_callchain(struct rb_root *root, struct callchain_node *chain, | |||
57 | * Once we get every callchains from the stream, we can now | 57 | * Once we get every callchains from the stream, we can now |
58 | * sort them by hit | 58 | * sort them by hit |
59 | */ | 59 | */ |
60 | void sort_chain_flat(struct rb_root *rb_root, struct callchain_node *node) | 60 | void sort_chain_flat(struct rb_root *rb_root, struct callchain_node *node, |
61 | u64 min_hit) | ||
61 | { | 62 | { |
62 | struct callchain_node *child; | 63 | struct callchain_node *child; |
63 | 64 | ||
64 | chain_for_each_child(child, node) | 65 | chain_for_each_child(child, node) |
65 | sort_chain_flat(rb_root, child); | 66 | sort_chain_flat(rb_root, child, min_hit); |
66 | 67 | ||
67 | if (node->hit) | 68 | if (node->hit && node->hit >= min_hit) |
68 | rb_insert_callchain(rb_root, node, FLAT); | 69 | rb_insert_callchain(rb_root, node, FLAT); |
69 | } | 70 | } |
70 | 71 | ||
71 | static void __sort_chain_graph(struct callchain_node *node) | 72 | static void __sort_chain_graph(struct callchain_node *node, u64 min_hit) |
72 | { | 73 | { |
73 | struct callchain_node *child; | 74 | struct callchain_node *child; |
74 | 75 | ||
@@ -76,16 +77,18 @@ static void __sort_chain_graph(struct callchain_node *node) | |||
76 | node->cumul_hit = node->hit; | 77 | node->cumul_hit = node->hit; |
77 | 78 | ||
78 | chain_for_each_child(child, node) { | 79 | chain_for_each_child(child, node) { |
79 | __sort_chain_graph(child); | 80 | __sort_chain_graph(child, min_hit); |
80 | rb_insert_callchain(&node->rb_root, child, GRAPH); | 81 | if (child->cumul_hit >= min_hit) |
82 | rb_insert_callchain(&node->rb_root, child, GRAPH); | ||
81 | node->cumul_hit += child->cumul_hit; | 83 | node->cumul_hit += child->cumul_hit; |
82 | } | 84 | } |
83 | } | 85 | } |
84 | 86 | ||
85 | void | 87 | void |
86 | sort_chain_graph(struct rb_root *rb_root, struct callchain_node *chain_root) | 88 | sort_chain_graph(struct rb_root *rb_root, struct callchain_node *chain_root, |
89 | u64 min_hit) | ||
87 | { | 90 | { |
88 | __sort_chain_graph(chain_root); | 91 | __sort_chain_graph(chain_root, min_hit); |
89 | rb_root->rb_node = chain_root->rb_root.rb_node; | 92 | rb_root->rb_node = chain_root->rb_root.rb_node; |
90 | } | 93 | } |
91 | 94 | ||
diff --git a/tools/perf/util/callchain.h b/tools/perf/util/callchain.h index dfa56008d9ad..f3e4776e7430 100644 --- a/tools/perf/util/callchain.h +++ b/tools/perf/util/callchain.h | |||
@@ -38,6 +38,8 @@ static inline void callchain_init(struct callchain_node *node) | |||
38 | 38 | ||
39 | void append_chain(struct callchain_node *root, struct ip_callchain *chain, | 39 | void append_chain(struct callchain_node *root, struct ip_callchain *chain, |
40 | struct symbol **syms); | 40 | struct symbol **syms); |
41 | void sort_chain_flat(struct rb_root *rb_root, struct callchain_node *node); | 41 | void sort_chain_flat(struct rb_root *rb_root, struct callchain_node *node, |
42 | void sort_chain_graph(struct rb_root *rb_root, struct callchain_node *node); | 42 | u64 min_hit); |
43 | void sort_chain_graph(struct rb_root *rb_root, struct callchain_node *node, | ||
44 | u64 min_hit); | ||
43 | #endif | 45 | #endif |