2009-06-26 18:28:00 +04:00
|
|
|
/*
|
2011-01-14 06:51:58 +03:00
|
|
|
* Copyright (C) 2009-2011, Frederic Weisbecker <fweisbec@gmail.com>
|
2009-06-26 18:28:00 +04:00
|
|
|
*
|
|
|
|
* Handle the callchains from the stream in an ad-hoc radix tree and then
|
|
|
|
* sort them in an rbtree.
|
|
|
|
*
|
2009-07-01 07:35:15 +04:00
|
|
|
* Using a radix for code path provides a fast retrieval and factorizes
|
|
|
|
* memory use. Also that lets us use the paths in a hierarchical graph view.
|
|
|
|
*
|
2009-06-26 18:28:00 +04:00
|
|
|
*/
|
|
|
|
|
2017-04-17 21:23:08 +03:00
|
|
|
#include <inttypes.h>
|
2009-06-26 18:28:00 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <errno.h>
|
2009-08-09 06:19:15 +04:00
|
|
|
#include <math.h>
|
2009-06-26 18:28:00 +04:00
|
|
|
|
2014-01-14 19:37:15 +04:00
|
|
|
#include "asm/bug.h"
|
|
|
|
|
2013-07-19 02:33:57 +04:00
|
|
|
#include "hist.h"
|
2010-05-20 19:15:33 +04:00
|
|
|
#include "util.h"
|
2014-01-14 09:25:35 +04:00
|
|
|
#include "sort.h"
|
|
|
|
#include "machine.h"
|
2009-06-26 18:28:00 +04:00
|
|
|
#include "callchain.h"
|
2017-07-18 15:13:15 +03:00
|
|
|
#include "branch.h"
|
2009-06-26 18:28:00 +04:00
|
|
|
|
2017-04-20 00:38:33 +03:00
|
|
|
#define CALLCHAIN_PARAM_DEFAULT \
|
|
|
|
.mode = CHAIN_GRAPH_ABS, \
|
|
|
|
.min_percent = 0.5, \
|
|
|
|
.order = ORDER_CALLEE, \
|
|
|
|
.key = CCKEY_FUNCTION, \
|
|
|
|
.value = CCVAL_PERCENT, \
|
|
|
|
|
|
|
|
struct callchain_param callchain_param = {
|
|
|
|
CALLCHAIN_PARAM_DEFAULT
|
|
|
|
};
|
|
|
|
|
|
|
|
struct callchain_param callchain_param_default = {
|
|
|
|
CALLCHAIN_PARAM_DEFAULT
|
|
|
|
};
|
|
|
|
|
2012-05-31 09:43:26 +04:00
|
|
|
__thread struct callchain_cursor callchain_cursor;
|
|
|
|
|
2015-08-04 11:30:20 +03:00
|
|
|
int parse_callchain_record_opt(const char *arg, struct callchain_param *param)
|
2014-09-23 05:01:42 +04:00
|
|
|
{
|
2015-08-06 22:44:52 +03:00
|
|
|
return parse_callchain_record(arg, param);
|
2014-09-23 05:01:42 +04:00
|
|
|
}
|
|
|
|
|
2014-09-23 05:01:43 +04:00
|
|
|
static int parse_callchain_mode(const char *value)
|
|
|
|
{
|
|
|
|
if (!strncmp(value, "graph", strlen(value))) {
|
|
|
|
callchain_param.mode = CHAIN_GRAPH_ABS;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!strncmp(value, "flat", strlen(value))) {
|
|
|
|
callchain_param.mode = CHAIN_FLAT;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!strncmp(value, "fractal", strlen(value))) {
|
|
|
|
callchain_param.mode = CHAIN_GRAPH_REL;
|
|
|
|
return 0;
|
|
|
|
}
|
2015-11-09 08:45:37 +03:00
|
|
|
if (!strncmp(value, "folded", strlen(value))) {
|
|
|
|
callchain_param.mode = CHAIN_FOLDED;
|
|
|
|
return 0;
|
|
|
|
}
|
2014-09-23 05:01:43 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int parse_callchain_order(const char *value)
|
|
|
|
{
|
|
|
|
if (!strncmp(value, "caller", strlen(value))) {
|
|
|
|
callchain_param.order = ORDER_CALLER;
|
2015-10-22 10:45:46 +03:00
|
|
|
callchain_param.order_set = true;
|
2014-09-23 05:01:43 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!strncmp(value, "callee", strlen(value))) {
|
|
|
|
callchain_param.order = ORDER_CALLEE;
|
2015-10-22 10:45:46 +03:00
|
|
|
callchain_param.order_set = true;
|
2014-09-23 05:01:43 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int parse_callchain_sort_key(const char *value)
|
|
|
|
{
|
|
|
|
if (!strncmp(value, "function", strlen(value))) {
|
|
|
|
callchain_param.key = CCKEY_FUNCTION;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!strncmp(value, "address", strlen(value))) {
|
|
|
|
callchain_param.key = CCKEY_ADDRESS;
|
|
|
|
return 0;
|
|
|
|
}
|
2017-03-19 00:49:28 +03:00
|
|
|
if (!strncmp(value, "srcline", strlen(value))) {
|
|
|
|
callchain_param.key = CCKEY_SRCLINE;
|
|
|
|
return 0;
|
|
|
|
}
|
perf callchain: Support handling complete branch stacks as histograms
Currently branch stacks can be only shown as edge histograms for
individual branches. I never found this display particularly useful.
This implements an alternative mode that creates histograms over
complete branch traces, instead of individual branches, similar to how
normal callgraphs are handled. This is done by putting it in front of
the normal callgraph and then using the normal callgraph histogram
infrastructure to unify them.
This way in complex functions we can understand the control flow that
lead to a particular sample, and may even see some control flow in the
caller for short functions.
Example (simplified, of course for such simple code this is usually not
needed), please run this after the whole patchkit is in, as at this
point in the patch order there is no --branch-history, that will be
added in a patch after this one:
tcall.c:
volatile a = 10000, b = 100000, c;
__attribute__((noinline)) f2()
{
c = a / b;
}
__attribute__((noinline)) f1()
{
f2();
f2();
}
main()
{
int i;
for (i = 0; i < 1000000; i++)
f1();
}
% perf record -b -g ./tsrc/tcall
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.044 MB perf.data (~1923 samples) ]
% perf report --no-children --branch-history
...
54.91% tcall.c:6 [.] f2 tcall
|
|--65.53%-- f2 tcall.c:5
| |
| |--70.83%-- f1 tcall.c:11
| | f1 tcall.c:10
| | main tcall.c:18
| | main tcall.c:18
| | main tcall.c:17
| | main tcall.c:17
| | f1 tcall.c:13
| | f1 tcall.c:13
| | f2 tcall.c:7
| | f2 tcall.c:5
| | f1 tcall.c:12
| | f1 tcall.c:12
| | f2 tcall.c:7
| | f2 tcall.c:5
| | f1 tcall.c:11
| |
| --29.17%-- f1 tcall.c:12
| f1 tcall.c:12
| f2 tcall.c:7
| f2 tcall.c:5
| f1 tcall.c:11
| f1 tcall.c:10
| main tcall.c:18
| main tcall.c:18
| main tcall.c:17
| main tcall.c:17
| f1 tcall.c:13
| f1 tcall.c:13
| f2 tcall.c:7
| f2 tcall.c:5
| f1 tcall.c:12
The default output is unchanged.
This is only implemented in perf report, no change to record or anywhere
else.
This adds the basic code to report:
- add a new "branch" option to the -g option parser to enable this mode
- when the flag is set include the LBR into the callstack in machine.c.
The rest of the history code is unchanged and doesn't know the
difference between LBR entry and normal call entry.
- detect overlaps with the callchain
- remove small loop duplicates in the LBR
Current limitations:
- The LBR flags (mispredict etc.) are not shown in the history
and LBR entries have no special marker.
- It would be nice if annotate marked the LBR entries somehow
(e.g. with arrows)
v2: Various fixes.
v3: Merge further patches into this one. Fix white space.
v4: Improve manpage. Address review feedback.
v5: Rename functions. Better error message without -g. Fix crash without
-b.
v6: Rebase
v7: Rebase. Use NO_ENTRY in memset.
v8: Port to latest tip. Move add_callchain_ip to separate
patch. Skip initial entries in callchain. Minor cleanups.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1415844328-4884-3-git-send-email-andi@firstfloor.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2014-11-13 05:05:20 +03:00
|
|
|
if (!strncmp(value, "branch", strlen(value))) {
|
|
|
|
callchain_param.branch_callstack = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
2014-09-23 05:01:43 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-11-09 08:45:41 +03:00
|
|
|
static int parse_callchain_value(const char *value)
|
|
|
|
{
|
|
|
|
if (!strncmp(value, "percent", strlen(value))) {
|
|
|
|
callchain_param.value = CCVAL_PERCENT;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!strncmp(value, "period", strlen(value))) {
|
|
|
|
callchain_param.value = CCVAL_PERIOD;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!strncmp(value, "count", strlen(value))) {
|
|
|
|
callchain_param.value = CCVAL_COUNT;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-04-20 00:38:33 +03:00
|
|
|
static int get_stack_size(const char *str, unsigned long *_size)
|
|
|
|
{
|
|
|
|
char *endptr;
|
|
|
|
unsigned long size;
|
|
|
|
unsigned long max_size = round_down(USHRT_MAX, sizeof(u64));
|
|
|
|
|
|
|
|
size = strtoul(str, &endptr, 0);
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (*endptr)
|
|
|
|
break;
|
|
|
|
|
|
|
|
size = round_up(size, sizeof(u64));
|
|
|
|
if (!size || size > max_size)
|
|
|
|
break;
|
|
|
|
|
|
|
|
*_size = size;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
pr_err("callchain: Incorrect stack dump size (max %ld): %s\n",
|
|
|
|
max_size, str);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
perf top: Support call-graph display options also
Currently 'perf top --call-graph' option is same as 'perf record'. But
'perf top' also need to receive display options in 'perf report'. To do
that, change parse_callchain_report_opt() to allow record options too.
Now perf top can receive display options like below:
$ perf top --call-graph
Error: option `call-graph' requires a value
Usage: perf top [<options>]
--call-graph
<mode[,dump_size],output_type,min_percent[,print_limit],call_order[,branch]>
setup and enables call-graph (stack chain/backtrace)
recording: fp dwarf lbr, output_type (graph, flat,
fractal, or none), min percent threshold, optional
print limit, callchain order, key (function or
address), add branches
$ perf top --call-graph callee,graph,fp
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Chandler Carruth <chandlerc@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1445495330-25416-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-10-22 09:28:49 +03:00
|
|
|
static int
|
|
|
|
__parse_callchain_report_opt(const char *arg, bool allow_record_opt)
|
2014-04-07 22:55:24 +04:00
|
|
|
{
|
2014-08-14 10:01:38 +04:00
|
|
|
char *tok;
|
2017-04-05 17:38:10 +03:00
|
|
|
char *endptr, *saveptr = NULL;
|
2014-08-14 10:01:38 +04:00
|
|
|
bool minpcnt_set = false;
|
perf top: Support call-graph display options also
Currently 'perf top --call-graph' option is same as 'perf record'. But
'perf top' also need to receive display options in 'perf report'. To do
that, change parse_callchain_report_opt() to allow record options too.
Now perf top can receive display options like below:
$ perf top --call-graph
Error: option `call-graph' requires a value
Usage: perf top [<options>]
--call-graph
<mode[,dump_size],output_type,min_percent[,print_limit],call_order[,branch]>
setup and enables call-graph (stack chain/backtrace)
recording: fp dwarf lbr, output_type (graph, flat,
fractal, or none), min percent threshold, optional
print limit, callchain order, key (function or
address), add branches
$ perf top --call-graph callee,graph,fp
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Chandler Carruth <chandlerc@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1445495330-25416-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-10-22 09:28:49 +03:00
|
|
|
bool record_opt_set = false;
|
|
|
|
bool try_stack_size = false;
|
2014-04-07 22:55:24 +04:00
|
|
|
|
2016-04-18 17:53:07 +03:00
|
|
|
callchain_param.enabled = true;
|
2014-04-07 22:55:24 +04:00
|
|
|
symbol_conf.use_callchain = true;
|
|
|
|
|
|
|
|
if (!arg)
|
|
|
|
return 0;
|
|
|
|
|
2017-04-05 17:38:10 +03:00
|
|
|
while ((tok = strtok_r((char *)arg, ",", &saveptr)) != NULL) {
|
2014-08-14 10:01:38 +04:00
|
|
|
if (!strncmp(tok, "none", strlen(tok))) {
|
|
|
|
callchain_param.mode = CHAIN_NONE;
|
2016-04-18 17:53:07 +03:00
|
|
|
callchain_param.enabled = false;
|
2014-08-14 10:01:38 +04:00
|
|
|
symbol_conf.use_callchain = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-09-23 05:01:43 +04:00
|
|
|
if (!parse_callchain_mode(tok) ||
|
|
|
|
!parse_callchain_order(tok) ||
|
2015-11-09 08:45:41 +03:00
|
|
|
!parse_callchain_sort_key(tok) ||
|
|
|
|
!parse_callchain_value(tok)) {
|
2014-09-23 05:01:43 +04:00
|
|
|
/* parsing ok - move on to the next */
|
perf top: Support call-graph display options also
Currently 'perf top --call-graph' option is same as 'perf record'. But
'perf top' also need to receive display options in 'perf report'. To do
that, change parse_callchain_report_opt() to allow record options too.
Now perf top can receive display options like below:
$ perf top --call-graph
Error: option `call-graph' requires a value
Usage: perf top [<options>]
--call-graph
<mode[,dump_size],output_type,min_percent[,print_limit],call_order[,branch]>
setup and enables call-graph (stack chain/backtrace)
recording: fp dwarf lbr, output_type (graph, flat,
fractal, or none), min percent threshold, optional
print limit, callchain order, key (function or
address), add branches
$ perf top --call-graph callee,graph,fp
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Chandler Carruth <chandlerc@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1445495330-25416-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-10-22 09:28:49 +03:00
|
|
|
try_stack_size = false;
|
|
|
|
goto next;
|
|
|
|
} else if (allow_record_opt && !record_opt_set) {
|
|
|
|
if (parse_callchain_record(tok, &callchain_param))
|
|
|
|
goto try_numbers;
|
|
|
|
|
|
|
|
/* assume that number followed by 'dwarf' is stack size */
|
|
|
|
if (callchain_param.record_mode == CALLCHAIN_DWARF)
|
|
|
|
try_stack_size = true;
|
|
|
|
|
|
|
|
record_opt_set = true;
|
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
|
|
|
|
try_numbers:
|
|
|
|
if (try_stack_size) {
|
|
|
|
unsigned long size = 0;
|
|
|
|
|
|
|
|
if (get_stack_size(tok, &size) < 0)
|
|
|
|
return -1;
|
|
|
|
callchain_param.dump_size = size;
|
|
|
|
try_stack_size = false;
|
2014-09-23 05:01:43 +04:00
|
|
|
} else if (!minpcnt_set) {
|
|
|
|
/* try to get the min percent */
|
2014-08-14 10:01:38 +04:00
|
|
|
callchain_param.min_percent = strtod(tok, &endptr);
|
|
|
|
if (tok == endptr)
|
|
|
|
return -1;
|
|
|
|
minpcnt_set = true;
|
|
|
|
} else {
|
|
|
|
/* try print limit at last */
|
|
|
|
callchain_param.print_limit = strtoul(tok, &endptr, 0);
|
|
|
|
if (tok == endptr)
|
|
|
|
return -1;
|
|
|
|
}
|
perf top: Support call-graph display options also
Currently 'perf top --call-graph' option is same as 'perf record'. But
'perf top' also need to receive display options in 'perf report'. To do
that, change parse_callchain_report_opt() to allow record options too.
Now perf top can receive display options like below:
$ perf top --call-graph
Error: option `call-graph' requires a value
Usage: perf top [<options>]
--call-graph
<mode[,dump_size],output_type,min_percent[,print_limit],call_order[,branch]>
setup and enables call-graph (stack chain/backtrace)
recording: fp dwarf lbr, output_type (graph, flat,
fractal, or none), min percent threshold, optional
print limit, callchain order, key (function or
address), add branches
$ perf top --call-graph callee,graph,fp
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Chandler Carruth <chandlerc@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1445495330-25416-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-10-22 09:28:49 +03:00
|
|
|
next:
|
2014-08-14 10:01:38 +04:00
|
|
|
arg = NULL;
|
2014-04-07 22:55:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (callchain_register_param(&callchain_param) < 0) {
|
|
|
|
pr_err("Can't register callchain params\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
perf top: Support call-graph display options also
Currently 'perf top --call-graph' option is same as 'perf record'. But
'perf top' also need to receive display options in 'perf report'. To do
that, change parse_callchain_report_opt() to allow record options too.
Now perf top can receive display options like below:
$ perf top --call-graph
Error: option `call-graph' requires a value
Usage: perf top [<options>]
--call-graph
<mode[,dump_size],output_type,min_percent[,print_limit],call_order[,branch]>
setup and enables call-graph (stack chain/backtrace)
recording: fp dwarf lbr, output_type (graph, flat,
fractal, or none), min percent threshold, optional
print limit, callchain order, key (function or
address), add branches
$ perf top --call-graph callee,graph,fp
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Chandler Carruth <chandlerc@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1445495330-25416-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-10-22 09:28:49 +03:00
|
|
|
int parse_callchain_report_opt(const char *arg)
|
|
|
|
{
|
|
|
|
return __parse_callchain_report_opt(arg, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
int parse_callchain_top_opt(const char *arg)
|
|
|
|
{
|
|
|
|
return __parse_callchain_report_opt(arg, true);
|
|
|
|
}
|
|
|
|
|
2017-04-20 00:38:33 +03:00
|
|
|
int parse_callchain_record(const char *arg, struct callchain_param *param)
|
|
|
|
{
|
|
|
|
char *tok, *name, *saveptr = NULL;
|
|
|
|
char *buf;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
/* We need buffer that we know we can write to. */
|
|
|
|
buf = malloc(strlen(arg) + 1);
|
|
|
|
if (!buf)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
strcpy(buf, arg);
|
|
|
|
|
|
|
|
tok = strtok_r((char *)buf, ",", &saveptr);
|
|
|
|
name = tok ? : (char *)buf;
|
|
|
|
|
|
|
|
do {
|
|
|
|
/* Framepointer style */
|
|
|
|
if (!strncmp(name, "fp", sizeof("fp"))) {
|
|
|
|
if (!strtok_r(NULL, ",", &saveptr)) {
|
|
|
|
param->record_mode = CALLCHAIN_FP;
|
|
|
|
ret = 0;
|
|
|
|
} else
|
|
|
|
pr_err("callchain: No more arguments "
|
|
|
|
"needed for --call-graph fp\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Dwarf style */
|
|
|
|
} else if (!strncmp(name, "dwarf", sizeof("dwarf"))) {
|
|
|
|
const unsigned long default_stack_dump_size = 8192;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
param->record_mode = CALLCHAIN_DWARF;
|
|
|
|
param->dump_size = default_stack_dump_size;
|
|
|
|
|
|
|
|
tok = strtok_r(NULL, ",", &saveptr);
|
|
|
|
if (tok) {
|
|
|
|
unsigned long size = 0;
|
|
|
|
|
|
|
|
ret = get_stack_size(tok, &size);
|
|
|
|
param->dump_size = size;
|
|
|
|
}
|
|
|
|
} else if (!strncmp(name, "lbr", sizeof("lbr"))) {
|
|
|
|
if (!strtok_r(NULL, ",", &saveptr)) {
|
|
|
|
param->record_mode = CALLCHAIN_LBR;
|
|
|
|
ret = 0;
|
|
|
|
} else
|
|
|
|
pr_err("callchain: No more arguments "
|
|
|
|
"needed for --call-graph lbr\n");
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
pr_err("callchain: Unknown --call-graph option "
|
|
|
|
"value: %s\n", arg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-09-23 05:01:43 +04:00
|
|
|
int perf_callchain_config(const char *var, const char *value)
|
|
|
|
{
|
|
|
|
char *endptr;
|
|
|
|
|
2017-07-20 21:27:39 +03:00
|
|
|
if (!strstarts(var, "call-graph."))
|
2014-09-23 05:01:43 +04:00
|
|
|
return 0;
|
|
|
|
var += sizeof("call-graph.") - 1;
|
|
|
|
|
|
|
|
if (!strcmp(var, "record-mode"))
|
2015-08-04 11:30:20 +03:00
|
|
|
return parse_callchain_record_opt(value, &callchain_param);
|
2014-09-23 05:01:43 +04:00
|
|
|
if (!strcmp(var, "dump-size")) {
|
|
|
|
unsigned long size = 0;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = get_stack_size(value, &size);
|
|
|
|
callchain_param.dump_size = size;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
perf report: Fix debug messages with --call-graph option
With --call-graph option, perf report can display call chains using
type, min percent threshold, optional print limit and order. And the
default call-graph parameter is 'graph,0.5,caller,function,percent'.
Before this patch, 'perf report --call-graph' shows incorrect debug
messages as below:
# perf report --call-graph
Invalid callchain mode: 0.5
Invalid callchain order: 0.5
Invalid callchain sort key: 0.5
Invalid callchain config key: 0.5
Invalid callchain mode: caller
Invalid callchain mode: function
Invalid callchain order: function
Invalid callchain mode: percent
Invalid callchain order: percent
Invalid callchain sort key: percent
That is because in function __parse_callchain_report_opt(),each field of
the call-graph parameter is passed to parse_callchain_{mode,order,
sort_key,value} in turn until it meets the matching value.
For example, the order field "caller" is passed to
parse_callchain_mode() firstly and obviously it doesn't match any mode
field. Therefore parse_callchain_mode() will shows the debug message
"Invalid callchain mode: caller", which could confuse users.
The patch fixes this issue by moving the warning out of the function
parse_callchain_{mode,order,sort_key,value}.
Signed-off-by: Mengting Zhang <zhangmengting@huawei.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Krister Johansen <kjlx@templeofstupid.com>
Cc: Li Bin <huawei.libin@huawei.com>
Cc: Milian Wolff <milian.wolff@kdab.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Wang Nan <wangnan0@huawei.com>
Cc: Yao Jin <yao.jin@linux.intel.com>
Link: http://lkml.kernel.org/r/1506154694-39691-1-git-send-email-zhangmengting@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2017-09-23 11:18:14 +03:00
|
|
|
if (!strcmp(var, "print-type")){
|
|
|
|
int ret;
|
|
|
|
ret = parse_callchain_mode(value);
|
|
|
|
if (ret == -1)
|
|
|
|
pr_err("Invalid callchain mode: %s\n", value);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
if (!strcmp(var, "order")){
|
|
|
|
int ret;
|
|
|
|
ret = parse_callchain_order(value);
|
|
|
|
if (ret == -1)
|
|
|
|
pr_err("Invalid callchain order: %s\n", value);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
if (!strcmp(var, "sort-key")){
|
|
|
|
int ret;
|
|
|
|
ret = parse_callchain_sort_key(value);
|
|
|
|
if (ret == -1)
|
|
|
|
pr_err("Invalid callchain sort key: %s\n", value);
|
|
|
|
return ret;
|
|
|
|
}
|
2014-09-23 05:01:43 +04:00
|
|
|
if (!strcmp(var, "threshold")) {
|
|
|
|
callchain_param.min_percent = strtod(value, &endptr);
|
2017-01-24 19:44:10 +03:00
|
|
|
if (value == endptr) {
|
|
|
|
pr_err("Invalid callchain threshold: %s\n", value);
|
2014-09-23 05:01:43 +04:00
|
|
|
return -1;
|
2017-01-24 19:44:10 +03:00
|
|
|
}
|
2014-09-23 05:01:43 +04:00
|
|
|
}
|
|
|
|
if (!strcmp(var, "print-limit")) {
|
|
|
|
callchain_param.print_limit = strtod(value, &endptr);
|
2017-01-24 19:44:10 +03:00
|
|
|
if (value == endptr) {
|
|
|
|
pr_err("Invalid callchain print limit: %s\n", value);
|
2014-09-23 05:01:43 +04:00
|
|
|
return -1;
|
2017-01-24 19:44:10 +03:00
|
|
|
}
|
2014-09-23 05:01:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-01 07:35:15 +04:00
|
|
|
static void
|
2009-07-02 19:58:21 +04:00
|
|
|
rb_insert_callchain(struct rb_root *root, struct callchain_node *chain,
|
|
|
|
enum chain_mode mode)
|
2009-06-26 18:28:00 +04:00
|
|
|
{
|
|
|
|
struct rb_node **p = &root->rb_node;
|
|
|
|
struct rb_node *parent = NULL;
|
|
|
|
struct callchain_node *rnode;
|
2011-01-14 06:51:59 +03:00
|
|
|
u64 chain_cumul = callchain_cumul_hits(chain);
|
2009-06-26 18:28:00 +04:00
|
|
|
|
|
|
|
while (*p) {
|
2009-08-07 09:11:05 +04:00
|
|
|
u64 rnode_cumul;
|
|
|
|
|
2009-06-26 18:28:00 +04:00
|
|
|
parent = *p;
|
|
|
|
rnode = rb_entry(parent, struct callchain_node, rb_node);
|
2011-01-14 06:51:59 +03:00
|
|
|
rnode_cumul = callchain_cumul_hits(rnode);
|
2009-06-26 18:28:00 +04:00
|
|
|
|
2009-07-02 19:58:21 +04:00
|
|
|
switch (mode) {
|
2009-07-05 09:39:21 +04:00
|
|
|
case CHAIN_FLAT:
|
2015-11-09 08:45:37 +03:00
|
|
|
case CHAIN_FOLDED:
|
2009-07-02 19:58:21 +04:00
|
|
|
if (rnode->hit < chain->hit)
|
|
|
|
p = &(*p)->rb_left;
|
|
|
|
else
|
|
|
|
p = &(*p)->rb_right;
|
|
|
|
break;
|
2009-07-05 09:39:21 +04:00
|
|
|
case CHAIN_GRAPH_ABS: /* Falldown */
|
|
|
|
case CHAIN_GRAPH_REL:
|
2009-08-07 09:11:05 +04:00
|
|
|
if (rnode_cumul < chain_cumul)
|
2009-07-02 19:58:21 +04:00
|
|
|
p = &(*p)->rb_left;
|
|
|
|
else
|
|
|
|
p = &(*p)->rb_right;
|
|
|
|
break;
|
2009-08-15 14:26:57 +04:00
|
|
|
case CHAIN_NONE:
|
2009-07-02 19:58:21 +04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
rb_link_node(&chain->rb_node, parent, p);
|
|
|
|
rb_insert_color(&chain->rb_node, root);
|
|
|
|
}
|
|
|
|
|
2009-07-05 09:39:21 +04:00
|
|
|
static void
|
|
|
|
__sort_chain_flat(struct rb_root *rb_root, struct callchain_node *node,
|
|
|
|
u64 min_hit)
|
|
|
|
{
|
2013-10-11 09:15:36 +04:00
|
|
|
struct rb_node *n;
|
2009-07-05 09:39:21 +04:00
|
|
|
struct callchain_node *child;
|
|
|
|
|
2013-10-11 09:15:36 +04:00
|
|
|
n = rb_first(&node->rb_root_in);
|
|
|
|
while (n) {
|
|
|
|
child = rb_entry(n, struct callchain_node, rb_node_in);
|
|
|
|
n = rb_next(n);
|
|
|
|
|
2009-07-05 09:39:21 +04:00
|
|
|
__sort_chain_flat(rb_root, child, min_hit);
|
2013-10-11 09:15:36 +04:00
|
|
|
}
|
2009-07-05 09:39:21 +04:00
|
|
|
|
|
|
|
if (node->hit && node->hit >= min_hit)
|
|
|
|
rb_insert_callchain(rb_root, node, CHAIN_FLAT);
|
|
|
|
}
|
|
|
|
|
2009-06-26 18:28:00 +04:00
|
|
|
/*
|
|
|
|
* Once we get every callchains from the stream, we can now
|
|
|
|
* sort them by hit
|
|
|
|
*/
|
2009-07-05 09:39:21 +04:00
|
|
|
static void
|
2010-08-22 22:05:22 +04:00
|
|
|
sort_chain_flat(struct rb_root *rb_root, struct callchain_root *root,
|
2012-09-11 02:15:03 +04:00
|
|
|
u64 min_hit, struct callchain_param *param __maybe_unused)
|
2009-07-05 09:39:21 +04:00
|
|
|
{
|
2015-11-26 10:08:18 +03:00
|
|
|
*rb_root = RB_ROOT;
|
2010-08-22 22:05:22 +04:00
|
|
|
__sort_chain_flat(rb_root, &root->node, min_hit);
|
2009-07-05 09:39:21 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __sort_chain_graph_abs(struct callchain_node *node,
|
|
|
|
u64 min_hit)
|
2009-06-26 18:28:00 +04:00
|
|
|
{
|
2013-10-11 09:15:36 +04:00
|
|
|
struct rb_node *n;
|
2009-06-26 18:28:00 +04:00
|
|
|
struct callchain_node *child;
|
|
|
|
|
2009-07-05 09:39:21 +04:00
|
|
|
node->rb_root = RB_ROOT;
|
2013-10-11 09:15:36 +04:00
|
|
|
n = rb_first(&node->rb_root_in);
|
|
|
|
|
|
|
|
while (n) {
|
|
|
|
child = rb_entry(n, struct callchain_node, rb_node_in);
|
|
|
|
n = rb_next(n);
|
2009-06-26 18:28:00 +04:00
|
|
|
|
2009-07-05 09:39:21 +04:00
|
|
|
__sort_chain_graph_abs(child, min_hit);
|
2011-01-14 06:51:59 +03:00
|
|
|
if (callchain_cumul_hits(child) >= min_hit)
|
2009-07-05 09:39:21 +04:00
|
|
|
rb_insert_callchain(&node->rb_root, child,
|
|
|
|
CHAIN_GRAPH_ABS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-22 22:05:22 +04:00
|
|
|
sort_chain_graph_abs(struct rb_root *rb_root, struct callchain_root *chain_root,
|
2012-09-11 02:15:03 +04:00
|
|
|
u64 min_hit, struct callchain_param *param __maybe_unused)
|
2009-07-05 09:39:21 +04:00
|
|
|
{
|
2010-08-22 22:05:22 +04:00
|
|
|
__sort_chain_graph_abs(&chain_root->node, min_hit);
|
|
|
|
rb_root->rb_node = chain_root->node.rb_root.rb_node;
|
2009-07-02 19:58:21 +04:00
|
|
|
}
|
|
|
|
|
2009-07-05 09:39:21 +04:00
|
|
|
static void __sort_chain_graph_rel(struct callchain_node *node,
|
|
|
|
double min_percent)
|
2009-07-02 19:58:21 +04:00
|
|
|
{
|
2013-10-11 09:15:36 +04:00
|
|
|
struct rb_node *n;
|
2009-07-02 19:58:21 +04:00
|
|
|
struct callchain_node *child;
|
2009-07-05 09:39:21 +04:00
|
|
|
u64 min_hit;
|
2009-07-02 19:58:21 +04:00
|
|
|
|
|
|
|
node->rb_root = RB_ROOT;
|
2009-08-09 06:19:15 +04:00
|
|
|
min_hit = ceil(node->children_hit * min_percent);
|
2009-07-02 19:58:21 +04:00
|
|
|
|
2013-10-11 09:15:36 +04:00
|
|
|
n = rb_first(&node->rb_root_in);
|
|
|
|
while (n) {
|
|
|
|
child = rb_entry(n, struct callchain_node, rb_node_in);
|
|
|
|
n = rb_next(n);
|
|
|
|
|
2009-07-05 09:39:21 +04:00
|
|
|
__sort_chain_graph_rel(child, min_percent);
|
2011-01-14 06:51:59 +03:00
|
|
|
if (callchain_cumul_hits(child) >= min_hit)
|
2009-07-05 09:39:21 +04:00
|
|
|
rb_insert_callchain(&node->rb_root, child,
|
|
|
|
CHAIN_GRAPH_REL);
|
2009-07-02 19:58:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-05 09:39:21 +04:00
|
|
|
static void
|
2010-08-22 22:05:22 +04:00
|
|
|
sort_chain_graph_rel(struct rb_root *rb_root, struct callchain_root *chain_root,
|
2012-09-11 02:15:03 +04:00
|
|
|
u64 min_hit __maybe_unused, struct callchain_param *param)
|
2009-07-02 19:58:21 +04:00
|
|
|
{
|
2010-08-22 22:05:22 +04:00
|
|
|
__sort_chain_graph_rel(&chain_root->node, param->min_percent / 100.0);
|
|
|
|
rb_root->rb_node = chain_root->node.rb_root.rb_node;
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
|
|
|
|
2011-01-14 06:52:00 +03:00
|
|
|
int callchain_register_param(struct callchain_param *param)
|
2009-07-05 09:39:21 +04:00
|
|
|
{
|
|
|
|
switch (param->mode) {
|
|
|
|
case CHAIN_GRAPH_ABS:
|
|
|
|
param->sort = sort_chain_graph_abs;
|
|
|
|
break;
|
|
|
|
case CHAIN_GRAPH_REL:
|
|
|
|
param->sort = sort_chain_graph_rel;
|
|
|
|
break;
|
|
|
|
case CHAIN_FLAT:
|
2015-11-09 08:45:37 +03:00
|
|
|
case CHAIN_FOLDED:
|
2009-07-05 09:39:21 +04:00
|
|
|
param->sort = sort_chain_flat;
|
|
|
|
break;
|
2009-08-15 14:26:57 +04:00
|
|
|
case CHAIN_NONE:
|
2009-07-05 09:39:21 +04:00
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-01 07:35:15 +04:00
|
|
|
/*
|
|
|
|
* Create a child for a parent. If inherit_children, then the new child
|
|
|
|
* will become the new parent of it's parent children
|
|
|
|
*/
|
|
|
|
static struct callchain_node *
|
|
|
|
create_child(struct callchain_node *parent, bool inherit_children)
|
2009-06-26 18:28:00 +04:00
|
|
|
{
|
|
|
|
struct callchain_node *new;
|
|
|
|
|
2010-05-10 17:56:50 +04:00
|
|
|
new = zalloc(sizeof(*new));
|
2009-06-26 18:28:00 +04:00
|
|
|
if (!new) {
|
|
|
|
perror("not enough memory to create child for code path tree");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
new->parent = parent;
|
|
|
|
INIT_LIST_HEAD(&new->val);
|
2015-11-09 08:45:43 +03:00
|
|
|
INIT_LIST_HEAD(&new->parent_val);
|
2009-07-01 07:35:15 +04:00
|
|
|
|
|
|
|
if (inherit_children) {
|
2013-10-11 09:15:36 +04:00
|
|
|
struct rb_node *n;
|
|
|
|
struct callchain_node *child;
|
|
|
|
|
|
|
|
new->rb_root_in = parent->rb_root_in;
|
|
|
|
parent->rb_root_in = RB_ROOT;
|
2009-07-01 07:35:15 +04:00
|
|
|
|
2013-10-11 09:15:36 +04:00
|
|
|
n = rb_first(&new->rb_root_in);
|
|
|
|
while (n) {
|
|
|
|
child = rb_entry(n, struct callchain_node, rb_node_in);
|
|
|
|
child->parent = new;
|
|
|
|
n = rb_next(n);
|
|
|
|
}
|
2009-07-01 07:35:15 +04:00
|
|
|
|
2013-10-11 09:15:36 +04:00
|
|
|
/* make it the first child */
|
|
|
|
rb_link_node(&new->rb_node_in, NULL, &parent->rb_root_in.rb_node);
|
|
|
|
rb_insert_color(&new->rb_node_in, &parent->rb_root_in);
|
2009-07-01 07:35:15 +04:00
|
|
|
}
|
2009-06-26 18:28:00 +04:00
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2010-03-22 19:09:33 +03:00
|
|
|
|
2009-07-01 07:35:15 +04:00
|
|
|
/*
|
|
|
|
* Fill the node with callchain values
|
|
|
|
*/
|
2016-02-16 17:08:21 +03:00
|
|
|
static int
|
2011-01-14 06:51:58 +03:00
|
|
|
fill_node(struct callchain_node *node, struct callchain_cursor *cursor)
|
2009-06-26 18:28:00 +04:00
|
|
|
{
|
2011-01-14 06:51:58 +03:00
|
|
|
struct callchain_cursor_node *cursor_node;
|
|
|
|
|
|
|
|
node->val_nr = cursor->nr - cursor->pos;
|
|
|
|
if (!node->val_nr)
|
|
|
|
pr_warning("Warning: empty node in callchain tree\n");
|
2009-06-26 18:28:00 +04:00
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
cursor_node = callchain_cursor_current(cursor);
|
|
|
|
|
|
|
|
while (cursor_node) {
|
2009-06-26 18:28:00 +04:00
|
|
|
struct callchain_list *call;
|
|
|
|
|
2010-05-10 17:56:50 +04:00
|
|
|
call = zalloc(sizeof(*call));
|
2009-06-26 18:28:00 +04:00
|
|
|
if (!call) {
|
|
|
|
perror("not enough memory for the code path tree");
|
2016-02-16 17:08:21 +03:00
|
|
|
return -1;
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
2011-01-14 06:51:58 +03:00
|
|
|
call->ip = cursor_node->ip;
|
|
|
|
call->ms.sym = cursor_node->sym;
|
2017-01-06 09:23:31 +03:00
|
|
|
call->ms.map = map__get(cursor_node->map);
|
2017-10-09 23:32:56 +03:00
|
|
|
call->srcline = cursor_node->srcline;
|
2016-10-31 04:19:51 +03:00
|
|
|
|
|
|
|
if (cursor_node->branch) {
|
|
|
|
call->branch_count = 1;
|
|
|
|
|
2017-07-24 14:09:07 +03:00
|
|
|
if (cursor_node->branch_from) {
|
|
|
|
/*
|
|
|
|
* branch_from is set with value somewhere else
|
|
|
|
* to imply it's "to" of a branch.
|
|
|
|
*/
|
|
|
|
call->brtype_stat.branch_to = true;
|
|
|
|
|
|
|
|
if (cursor_node->branch_flags.predicted)
|
|
|
|
call->predicted_count = 1;
|
|
|
|
|
|
|
|
if (cursor_node->branch_flags.abort)
|
|
|
|
call->abort_count = 1;
|
|
|
|
|
|
|
|
branch_type_count(&call->brtype_stat,
|
|
|
|
&cursor_node->branch_flags,
|
|
|
|
cursor_node->branch_from,
|
|
|
|
cursor_node->ip);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* It's "from" of a branch
|
|
|
|
*/
|
|
|
|
call->brtype_stat.branch_to = false;
|
|
|
|
call->cycles_count =
|
|
|
|
cursor_node->branch_flags.cycles;
|
|
|
|
call->iter_count = cursor_node->nr_loop_iter;
|
2017-08-07 16:05:15 +03:00
|
|
|
call->iter_cycles = cursor_node->iter_cycles;
|
2017-07-24 14:09:07 +03:00
|
|
|
}
|
2016-10-31 04:19:51 +03:00
|
|
|
}
|
|
|
|
|
2009-06-26 18:28:00 +04:00
|
|
|
list_add_tail(&call->list, &node->val);
|
2011-01-14 06:51:58 +03:00
|
|
|
|
|
|
|
callchain_cursor_advance(cursor);
|
|
|
|
cursor_node = callchain_cursor_current(cursor);
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
2016-02-16 17:08:21 +03:00
|
|
|
return 0;
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
|
|
|
|
2013-10-11 09:15:36 +04:00
|
|
|
static struct callchain_node *
|
2011-01-14 06:51:58 +03:00
|
|
|
add_child(struct callchain_node *parent,
|
|
|
|
struct callchain_cursor *cursor,
|
|
|
|
u64 period)
|
2009-06-26 18:28:00 +04:00
|
|
|
{
|
|
|
|
struct callchain_node *new;
|
|
|
|
|
2009-07-01 07:35:15 +04:00
|
|
|
new = create_child(parent, false);
|
2016-02-16 17:08:20 +03:00
|
|
|
if (new == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2016-02-16 17:08:21 +03:00
|
|
|
if (fill_node(new, cursor) < 0) {
|
|
|
|
struct callchain_list *call, *tmp;
|
|
|
|
|
|
|
|
list_for_each_entry_safe(call, tmp, &new->val, list) {
|
|
|
|
list_del(&call->list);
|
2017-01-06 09:23:31 +03:00
|
|
|
map__zput(call->ms.map);
|
2016-02-16 17:08:21 +03:00
|
|
|
free(call);
|
|
|
|
}
|
|
|
|
free(new);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-06-26 18:28:00 +04:00
|
|
|
|
2009-08-07 09:11:05 +04:00
|
|
|
new->children_hit = 0;
|
2010-07-08 05:41:46 +04:00
|
|
|
new->hit = period;
|
2015-11-09 08:45:40 +03:00
|
|
|
new->children_count = 0;
|
|
|
|
new->count = 1;
|
2013-10-11 09:15:36 +04:00
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2016-02-16 17:08:22 +03:00
|
|
|
enum match_result {
|
|
|
|
MATCH_ERROR = -1,
|
|
|
|
MATCH_EQ,
|
|
|
|
MATCH_LT,
|
|
|
|
MATCH_GT,
|
|
|
|
};
|
|
|
|
|
2017-10-09 23:33:00 +03:00
|
|
|
static enum match_result match_chain_strings(const char *left,
|
|
|
|
const char *right)
|
2017-03-19 00:49:28 +03:00
|
|
|
{
|
2017-05-24 09:21:23 +03:00
|
|
|
enum match_result ret = MATCH_EQ;
|
|
|
|
int cmp;
|
|
|
|
|
2017-03-19 00:49:28 +03:00
|
|
|
if (left && right)
|
|
|
|
cmp = strcmp(left, right);
|
|
|
|
else if (!left && right)
|
|
|
|
cmp = 1;
|
|
|
|
else if (left && !right)
|
|
|
|
cmp = -1;
|
|
|
|
else
|
2017-10-09 23:33:00 +03:00
|
|
|
return MATCH_ERROR;
|
2017-03-19 00:49:28 +03:00
|
|
|
|
|
|
|
if (cmp != 0)
|
|
|
|
ret = cmp < 0 ? MATCH_LT : MATCH_GT;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-02-16 17:08:22 +03:00
|
|
|
static enum match_result match_chain(struct callchain_cursor_node *node,
|
|
|
|
struct callchain_list *cnode)
|
2013-10-11 09:15:36 +04:00
|
|
|
{
|
|
|
|
struct symbol *sym = node->sym;
|
2016-02-16 17:08:22 +03:00
|
|
|
u64 left, right;
|
2017-10-05 12:12:34 +03:00
|
|
|
struct dso *left_dso = NULL;
|
|
|
|
struct dso *right_dso = NULL;
|
2013-10-11 09:15:36 +04:00
|
|
|
|
2017-03-19 00:49:28 +03:00
|
|
|
if (callchain_param.key == CCKEY_SRCLINE) {
|
2017-10-09 23:33:00 +03:00
|
|
|
enum match_result match = match_chain_strings(cnode->srcline,
|
|
|
|
node->srcline);
|
|
|
|
|
|
|
|
/* if no srcline is available, fallback to symbol name */
|
|
|
|
if (match == MATCH_ERROR && cnode->ms.sym && node->sym)
|
|
|
|
match = match_chain_strings(cnode->ms.sym->name,
|
|
|
|
node->sym->name);
|
2017-03-19 00:49:28 +03:00
|
|
|
|
|
|
|
if (match != MATCH_ERROR)
|
|
|
|
return match;
|
2017-10-09 23:33:00 +03:00
|
|
|
|
|
|
|
/* otherwise fall-back to IP-based comparison below */
|
2017-03-19 00:49:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cnode->ms.sym && sym && callchain_param.key == CCKEY_FUNCTION) {
|
2016-02-16 17:08:22 +03:00
|
|
|
left = cnode->ms.sym->start;
|
|
|
|
right = sym->start;
|
2017-10-05 12:12:34 +03:00
|
|
|
left_dso = cnode->ms.map->dso;
|
|
|
|
right_dso = node->map->dso;
|
2016-02-16 17:08:22 +03:00
|
|
|
} else {
|
|
|
|
left = cnode->ip;
|
|
|
|
right = node->ip;
|
|
|
|
}
|
|
|
|
|
2017-10-05 12:12:34 +03:00
|
|
|
if (left == right && left_dso == right_dso) {
|
2016-10-31 04:19:51 +03:00
|
|
|
if (node->branch) {
|
|
|
|
cnode->branch_count++;
|
|
|
|
|
2017-07-24 14:09:07 +03:00
|
|
|
if (node->branch_from) {
|
|
|
|
/*
|
|
|
|
* It's "to" of a branch
|
|
|
|
*/
|
|
|
|
cnode->brtype_stat.branch_to = true;
|
|
|
|
|
|
|
|
if (node->branch_flags.predicted)
|
|
|
|
cnode->predicted_count++;
|
|
|
|
|
|
|
|
if (node->branch_flags.abort)
|
|
|
|
cnode->abort_count++;
|
|
|
|
|
|
|
|
branch_type_count(&cnode->brtype_stat,
|
|
|
|
&node->branch_flags,
|
|
|
|
node->branch_from,
|
|
|
|
node->ip);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* It's "from" of a branch
|
|
|
|
*/
|
|
|
|
cnode->brtype_stat.branch_to = false;
|
|
|
|
cnode->cycles_count +=
|
|
|
|
node->branch_flags.cycles;
|
|
|
|
cnode->iter_count += node->nr_loop_iter;
|
2017-08-07 16:05:15 +03:00
|
|
|
cnode->iter_cycles += node->iter_cycles;
|
2017-07-24 14:09:07 +03:00
|
|
|
}
|
2016-10-31 04:19:51 +03:00
|
|
|
}
|
|
|
|
|
2016-02-16 17:08:22 +03:00
|
|
|
return MATCH_EQ;
|
2016-10-31 04:19:51 +03:00
|
|
|
}
|
2016-02-16 17:08:22 +03:00
|
|
|
|
|
|
|
return left > right ? MATCH_GT : MATCH_LT;
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
|
|
|
|
2009-07-01 07:35:15 +04:00
|
|
|
/*
|
|
|
|
* Split the parent in two parts (a new child is created) and
|
|
|
|
* give a part of its callchain to the created child.
|
|
|
|
* Then create another child to host the given callchain of new branch
|
|
|
|
*/
|
2016-02-16 17:08:23 +03:00
|
|
|
static int
|
2011-01-14 06:51:58 +03:00
|
|
|
split_add_child(struct callchain_node *parent,
|
|
|
|
struct callchain_cursor *cursor,
|
|
|
|
struct callchain_list *to_split,
|
|
|
|
u64 idx_parents, u64 idx_local, u64 period)
|
2009-06-26 18:28:00 +04:00
|
|
|
{
|
|
|
|
struct callchain_node *new;
|
2009-07-01 07:35:15 +04:00
|
|
|
struct list_head *old_tail;
|
2009-07-01 14:37:06 +04:00
|
|
|
unsigned int idx_total = idx_parents + idx_local;
|
2009-06-26 18:28:00 +04:00
|
|
|
|
|
|
|
/* split */
|
2009-07-01 07:35:15 +04:00
|
|
|
new = create_child(parent, true);
|
2016-02-16 17:08:23 +03:00
|
|
|
if (new == NULL)
|
|
|
|
return -1;
|
2009-07-01 07:35:15 +04:00
|
|
|
|
|
|
|
/* split the callchain and move a part to the new child */
|
|
|
|
old_tail = parent->val.prev;
|
|
|
|
list_del_range(&to_split->list, old_tail);
|
|
|
|
new->val.next = &to_split->list;
|
|
|
|
new->val.prev = old_tail;
|
|
|
|
to_split->list.prev = &new->val;
|
|
|
|
old_tail->next = &new->val;
|
2009-06-26 18:28:00 +04:00
|
|
|
|
2009-07-01 07:35:15 +04:00
|
|
|
/* split the hits */
|
|
|
|
new->hit = parent->hit;
|
2009-08-07 09:11:05 +04:00
|
|
|
new->children_hit = parent->children_hit;
|
2011-01-14 06:51:59 +03:00
|
|
|
parent->children_hit = callchain_cumul_hits(new);
|
2009-07-01 07:35:15 +04:00
|
|
|
new->val_nr = parent->val_nr - idx_local;
|
|
|
|
parent->val_nr = idx_local;
|
2015-11-09 08:45:40 +03:00
|
|
|
new->count = parent->count;
|
|
|
|
new->children_count = parent->children_count;
|
|
|
|
parent->children_count = callchain_cumul_counts(new);
|
2009-07-01 07:35:15 +04:00
|
|
|
|
|
|
|
/* create a new child for the new branch if any */
|
2011-01-14 06:51:58 +03:00
|
|
|
if (idx_total < cursor->nr) {
|
2013-10-11 09:15:36 +04:00
|
|
|
struct callchain_node *first;
|
|
|
|
struct callchain_list *cnode;
|
|
|
|
struct callchain_cursor_node *node;
|
|
|
|
struct rb_node *p, **pp;
|
|
|
|
|
2009-07-01 07:35:15 +04:00
|
|
|
parent->hit = 0;
|
2010-07-08 05:41:46 +04:00
|
|
|
parent->children_hit += period;
|
2015-11-09 08:45:40 +03:00
|
|
|
parent->count = 0;
|
|
|
|
parent->children_count += 1;
|
2013-10-11 09:15:36 +04:00
|
|
|
|
|
|
|
node = callchain_cursor_current(cursor);
|
|
|
|
new = add_child(parent, cursor, period);
|
2016-02-16 17:08:20 +03:00
|
|
|
if (new == NULL)
|
2016-02-16 17:08:23 +03:00
|
|
|
return -1;
|
2013-10-11 09:15:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is second child since we moved parent's children
|
|
|
|
* to new (first) child above.
|
|
|
|
*/
|
|
|
|
p = parent->rb_root_in.rb_node;
|
|
|
|
first = rb_entry(p, struct callchain_node, rb_node_in);
|
|
|
|
cnode = list_first_entry(&first->val, struct callchain_list,
|
|
|
|
list);
|
|
|
|
|
2016-02-16 17:08:22 +03:00
|
|
|
if (match_chain(node, cnode) == MATCH_LT)
|
2013-10-11 09:15:36 +04:00
|
|
|
pp = &p->rb_left;
|
|
|
|
else
|
|
|
|
pp = &p->rb_right;
|
|
|
|
|
|
|
|
rb_link_node(&new->rb_node_in, p, pp);
|
|
|
|
rb_insert_color(&new->rb_node_in, &parent->rb_root_in);
|
2009-07-01 07:35:15 +04:00
|
|
|
} else {
|
2010-07-08 05:41:46 +04:00
|
|
|
parent->hit = period;
|
2015-11-09 08:45:40 +03:00
|
|
|
parent->count = 1;
|
2009-07-01 07:35:15 +04:00
|
|
|
}
|
2016-02-16 17:08:23 +03:00
|
|
|
return 0;
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
|
|
|
|
2016-02-16 17:08:22 +03:00
|
|
|
static enum match_result
|
2011-01-14 06:51:58 +03:00
|
|
|
append_chain(struct callchain_node *root,
|
|
|
|
struct callchain_cursor *cursor,
|
|
|
|
u64 period);
|
2009-06-26 18:28:00 +04:00
|
|
|
|
2016-02-16 17:08:24 +03:00
|
|
|
static int
|
2011-01-14 06:51:58 +03:00
|
|
|
append_chain_children(struct callchain_node *root,
|
|
|
|
struct callchain_cursor *cursor,
|
|
|
|
u64 period)
|
2009-06-26 18:28:00 +04:00
|
|
|
{
|
|
|
|
struct callchain_node *rnode;
|
2013-10-11 09:15:36 +04:00
|
|
|
struct callchain_cursor_node *node;
|
|
|
|
struct rb_node **p = &root->rb_root_in.rb_node;
|
|
|
|
struct rb_node *parent = NULL;
|
|
|
|
|
|
|
|
node = callchain_cursor_current(cursor);
|
|
|
|
if (!node)
|
2016-02-16 17:08:24 +03:00
|
|
|
return -1;
|
2009-06-26 18:28:00 +04:00
|
|
|
|
|
|
|
/* lookup in childrens */
|
2013-10-11 09:15:36 +04:00
|
|
|
while (*p) {
|
2016-02-16 17:08:22 +03:00
|
|
|
enum match_result ret;
|
2009-07-01 14:37:06 +04:00
|
|
|
|
2013-10-11 09:15:36 +04:00
|
|
|
parent = *p;
|
|
|
|
rnode = rb_entry(parent, struct callchain_node, rb_node_in);
|
|
|
|
|
2014-01-14 19:37:15 +04:00
|
|
|
/* If at least first entry matches, rely to children */
|
|
|
|
ret = append_chain(rnode, cursor, period);
|
2016-02-16 17:08:22 +03:00
|
|
|
if (ret == MATCH_EQ)
|
2009-08-07 09:11:05 +04:00
|
|
|
goto inc_children_hit;
|
2016-02-16 17:08:24 +03:00
|
|
|
if (ret == MATCH_ERROR)
|
|
|
|
return -1;
|
2013-10-11 09:15:36 +04:00
|
|
|
|
2016-02-16 17:08:22 +03:00
|
|
|
if (ret == MATCH_LT)
|
2013-10-11 09:15:36 +04:00
|
|
|
p = &parent->rb_left;
|
|
|
|
else
|
|
|
|
p = &parent->rb_right;
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
2009-07-01 07:35:15 +04:00
|
|
|
/* nothing in children, add to the current node */
|
2013-10-11 09:15:36 +04:00
|
|
|
rnode = add_child(root, cursor, period);
|
2016-02-16 17:08:20 +03:00
|
|
|
if (rnode == NULL)
|
2016-02-16 17:08:24 +03:00
|
|
|
return -1;
|
2016-02-16 17:08:20 +03:00
|
|
|
|
2013-10-11 09:15:36 +04:00
|
|
|
rb_link_node(&rnode->rb_node_in, parent, p);
|
|
|
|
rb_insert_color(&rnode->rb_node_in, &root->rb_root_in);
|
2009-07-05 09:39:20 +04:00
|
|
|
|
2009-08-07 09:11:05 +04:00
|
|
|
inc_children_hit:
|
2010-07-08 05:41:46 +04:00
|
|
|
root->children_hit += period;
|
2015-11-09 08:45:40 +03:00
|
|
|
root->children_count++;
|
2016-02-16 17:08:24 +03:00
|
|
|
return 0;
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
|
|
|
|
2016-02-16 17:08:22 +03:00
|
|
|
static enum match_result
|
2011-01-14 06:51:58 +03:00
|
|
|
append_chain(struct callchain_node *root,
|
|
|
|
struct callchain_cursor *cursor,
|
|
|
|
u64 period)
|
2009-06-26 18:28:00 +04:00
|
|
|
{
|
|
|
|
struct callchain_list *cnode;
|
2011-01-14 06:51:58 +03:00
|
|
|
u64 start = cursor->pos;
|
2009-06-26 18:28:00 +04:00
|
|
|
bool found = false;
|
2011-01-14 06:51:58 +03:00
|
|
|
u64 matches;
|
2016-02-16 17:08:22 +03:00
|
|
|
enum match_result cmp = MATCH_ERROR;
|
2009-06-26 18:28:00 +04:00
|
|
|
|
2009-07-01 07:35:15 +04:00
|
|
|
/*
|
|
|
|
* Lookup in the current node
|
|
|
|
* If we have a symbol, then compare the start to match
|
2013-07-19 02:33:57 +04:00
|
|
|
* anywhere inside a function, unless function
|
|
|
|
* mode is disabled.
|
2009-07-01 07:35:15 +04:00
|
|
|
*/
|
2009-06-26 18:28:00 +04:00
|
|
|
list_for_each_entry(cnode, &root->val, list) {
|
2011-01-14 06:51:58 +03:00
|
|
|
struct callchain_cursor_node *node;
|
2010-03-22 19:09:33 +03:00
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
node = callchain_cursor_current(cursor);
|
|
|
|
if (!node)
|
2009-07-01 07:35:15 +04:00
|
|
|
break;
|
2010-03-22 19:09:33 +03:00
|
|
|
|
2014-01-14 19:37:15 +04:00
|
|
|
cmp = match_chain(node, cnode);
|
2016-02-16 17:08:22 +03:00
|
|
|
if (cmp != MATCH_EQ)
|
2009-06-26 18:28:00 +04:00
|
|
|
break;
|
2010-03-22 19:09:33 +03:00
|
|
|
|
2013-10-11 09:15:36 +04:00
|
|
|
found = true;
|
2011-01-14 06:51:58 +03:00
|
|
|
|
|
|
|
callchain_cursor_advance(cursor);
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
|
|
|
|
2013-10-11 09:15:36 +04:00
|
|
|
/* matches not, relay no the parent */
|
2011-01-14 06:51:58 +03:00
|
|
|
if (!found) {
|
2016-02-16 17:08:22 +03:00
|
|
|
WARN_ONCE(cmp == MATCH_ERROR, "Chain comparison error\n");
|
2014-01-14 19:37:15 +04:00
|
|
|
return cmp;
|
2011-01-14 06:51:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
matches = cursor->pos - start;
|
2009-06-26 18:28:00 +04:00
|
|
|
|
|
|
|
/* we match only a part of the node. Split it and add the new chain */
|
2011-01-14 06:51:58 +03:00
|
|
|
if (matches < root->val_nr) {
|
2016-02-16 17:08:23 +03:00
|
|
|
if (split_add_child(root, cursor, cnode, start, matches,
|
|
|
|
period) < 0)
|
|
|
|
return MATCH_ERROR;
|
|
|
|
|
2016-02-16 17:08:22 +03:00
|
|
|
return MATCH_EQ;
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* we match 100% of the path, increment the hit */
|
2011-01-14 06:51:58 +03:00
|
|
|
if (matches == root->val_nr && cursor->pos == cursor->nr) {
|
2010-07-08 05:41:46 +04:00
|
|
|
root->hit += period;
|
2015-11-09 08:45:40 +03:00
|
|
|
root->count++;
|
2016-02-16 17:08:22 +03:00
|
|
|
return MATCH_EQ;
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
|
|
|
|
2009-07-01 07:35:15 +04:00
|
|
|
/* We match the node and still have a part remaining */
|
2016-02-16 17:08:24 +03:00
|
|
|
if (append_chain_children(root, cursor, period) < 0)
|
|
|
|
return MATCH_ERROR;
|
2009-07-01 07:35:15 +04:00
|
|
|
|
2016-02-16 17:08:22 +03:00
|
|
|
return MATCH_EQ;
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
int callchain_append(struct callchain_root *root,
|
|
|
|
struct callchain_cursor *cursor,
|
|
|
|
u64 period)
|
2009-06-26 18:28:00 +04:00
|
|
|
{
|
2011-01-14 06:51:58 +03:00
|
|
|
if (!cursor->nr)
|
2010-03-22 19:09:33 +03:00
|
|
|
return 0;
|
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
callchain_cursor_commit(cursor);
|
2010-03-22 19:09:33 +03:00
|
|
|
|
2016-02-16 17:08:24 +03:00
|
|
|
if (append_chain_children(&root->node, cursor, period) < 0)
|
|
|
|
return -1;
|
2010-08-22 22:05:22 +04:00
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
if (cursor->nr > root->max_depth)
|
|
|
|
root->max_depth = cursor->nr;
|
2010-03-22 19:09:33 +03:00
|
|
|
|
|
|
|
return 0;
|
2009-06-26 18:28:00 +04:00
|
|
|
}
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
|
|
|
|
static int
|
2011-01-14 06:51:58 +03:00
|
|
|
merge_chain_branch(struct callchain_cursor *cursor,
|
|
|
|
struct callchain_node *dst, struct callchain_node *src)
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
{
|
2011-01-14 06:51:58 +03:00
|
|
|
struct callchain_cursor_node **old_last = cursor->last;
|
2013-10-11 09:15:36 +04:00
|
|
|
struct callchain_node *child;
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
struct callchain_list *list, *next_list;
|
2013-10-11 09:15:36 +04:00
|
|
|
struct rb_node *n;
|
2011-01-14 06:51:58 +03:00
|
|
|
int old_pos = cursor->nr;
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
list_for_each_entry_safe(list, next_list, &src->val, list) {
|
2011-01-14 06:51:58 +03:00
|
|
|
callchain_cursor_append(cursor, list->ip,
|
perf report: Add branch flag to callchain cursor node
Since the branch ip has been added to call stack for easier browsing,
this patch adds more branch information. For example, add a flag to
indicate if this ip is a branch, and also add with the branch flag.
Then we can know if the cursor node represents a branch and know what
the branch flag it has.
The branch history code has a loop detection pass that removes loops. It
would be nice for knowing how many loops were removed then in next
steps, we can compute out the average number of iterations.
For example:
Before remove_loops(),
entry0: from = 0x100, to = 0x200
entry1: from = 0x300, to = 0x250
entry2: from = 0x300, to = 0x250
entry3: from = 0x300, to = 0x250
entry4: from = 0x700, to = 0x800
After remove_loops()
entry0: from = 0x100, to = 0x200
entry1: from = 0x300, to = 0x250
entry2: from = 0x700, to = 0x800
The original entry2 and entry3 are removed. So the number of iterations
(from = 0x300, to = 0x250) is equal to removed number + 1 (2 + 1).
iterations = removed number + 1;
average iteractions = Sum(iteractions) / number of samples
This formula ignores other cases, for example, iterations cross multiple
buffers and one buffer contains 2+ loops. Because in practice, it's good
enough.
Signed-off-by: Yao Jin <yao.jin@linux.intel.com>
Acked-by: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Linux-kernel@vger.kernel.org
Cc: Yao Jin <yao.jin@linux.intel.com>
Link: http://lkml.kernel.org/n/1477876794-30749-2-git-send-email-yao.jin@linux.intel.com
[ Renamed 'iter' to 'nr_loop_iter' for clarity ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-10-31 04:19:49 +03:00
|
|
|
list->ms.map, list->ms.sym,
|
2017-10-09 23:32:56 +03:00
|
|
|
false, NULL, 0, 0, 0, list->srcline);
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
list_del(&list->list);
|
2017-01-06 09:23:31 +03:00
|
|
|
map__zput(list->ms.map);
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
free(list);
|
|
|
|
}
|
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
if (src->hit) {
|
|
|
|
callchain_cursor_commit(cursor);
|
2016-02-16 17:08:24 +03:00
|
|
|
if (append_chain_children(dst, cursor, src->hit) < 0)
|
|
|
|
return -1;
|
2011-01-14 06:51:58 +03:00
|
|
|
}
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
|
2013-10-11 09:15:36 +04:00
|
|
|
n = rb_first(&src->rb_root_in);
|
|
|
|
while (n) {
|
|
|
|
child = container_of(n, struct callchain_node, rb_node_in);
|
|
|
|
n = rb_next(n);
|
|
|
|
rb_erase(&child->rb_node_in, &src->rb_root_in);
|
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
err = merge_chain_branch(cursor, dst, child);
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
if (err)
|
|
|
|
break;
|
|
|
|
|
|
|
|
free(child);
|
|
|
|
}
|
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
cursor->nr = old_pos;
|
|
|
|
cursor->last = old_last;
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
int callchain_merge(struct callchain_cursor *cursor,
|
|
|
|
struct callchain_root *dst, struct callchain_root *src)
|
|
|
|
{
|
|
|
|
return merge_chain_branch(cursor, &dst->node, &src->node);
|
|
|
|
}
|
|
|
|
|
|
|
|
int callchain_cursor_append(struct callchain_cursor *cursor,
|
perf report: Add branch flag to callchain cursor node
Since the branch ip has been added to call stack for easier browsing,
this patch adds more branch information. For example, add a flag to
indicate if this ip is a branch, and also add with the branch flag.
Then we can know if the cursor node represents a branch and know what
the branch flag it has.
The branch history code has a loop detection pass that removes loops. It
would be nice for knowing how many loops were removed then in next
steps, we can compute out the average number of iterations.
For example:
Before remove_loops(),
entry0: from = 0x100, to = 0x200
entry1: from = 0x300, to = 0x250
entry2: from = 0x300, to = 0x250
entry3: from = 0x300, to = 0x250
entry4: from = 0x700, to = 0x800
After remove_loops()
entry0: from = 0x100, to = 0x200
entry1: from = 0x300, to = 0x250
entry2: from = 0x700, to = 0x800
The original entry2 and entry3 are removed. So the number of iterations
(from = 0x300, to = 0x250) is equal to removed number + 1 (2 + 1).
iterations = removed number + 1;
average iteractions = Sum(iteractions) / number of samples
This formula ignores other cases, for example, iterations cross multiple
buffers and one buffer contains 2+ loops. Because in practice, it's good
enough.
Signed-off-by: Yao Jin <yao.jin@linux.intel.com>
Acked-by: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Linux-kernel@vger.kernel.org
Cc: Yao Jin <yao.jin@linux.intel.com>
Link: http://lkml.kernel.org/n/1477876794-30749-2-git-send-email-yao.jin@linux.intel.com
[ Renamed 'iter' to 'nr_loop_iter' for clarity ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-10-31 04:19:49 +03:00
|
|
|
u64 ip, struct map *map, struct symbol *sym,
|
|
|
|
bool branch, struct branch_flags *flags,
|
2017-10-09 23:32:56 +03:00
|
|
|
int nr_loop_iter, u64 iter_cycles, u64 branch_from,
|
|
|
|
const char *srcline)
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
{
|
2011-01-14 06:51:58 +03:00
|
|
|
struct callchain_cursor_node *node = *cursor->last;
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
if (!node) {
|
2013-01-31 05:05:49 +04:00
|
|
|
node = calloc(1, sizeof(*node));
|
2011-01-14 06:51:58 +03:00
|
|
|
if (!node)
|
|
|
|
return -ENOMEM;
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
*cursor->last = node;
|
|
|
|
}
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
node->ip = ip;
|
2017-01-06 09:23:31 +03:00
|
|
|
map__zput(node->map);
|
|
|
|
node->map = map__get(map);
|
2011-01-14 06:51:58 +03:00
|
|
|
node->sym = sym;
|
perf report: Add branch flag to callchain cursor node
Since the branch ip has been added to call stack for easier browsing,
this patch adds more branch information. For example, add a flag to
indicate if this ip is a branch, and also add with the branch flag.
Then we can know if the cursor node represents a branch and know what
the branch flag it has.
The branch history code has a loop detection pass that removes loops. It
would be nice for knowing how many loops were removed then in next
steps, we can compute out the average number of iterations.
For example:
Before remove_loops(),
entry0: from = 0x100, to = 0x200
entry1: from = 0x300, to = 0x250
entry2: from = 0x300, to = 0x250
entry3: from = 0x300, to = 0x250
entry4: from = 0x700, to = 0x800
After remove_loops()
entry0: from = 0x100, to = 0x200
entry1: from = 0x300, to = 0x250
entry2: from = 0x700, to = 0x800
The original entry2 and entry3 are removed. So the number of iterations
(from = 0x300, to = 0x250) is equal to removed number + 1 (2 + 1).
iterations = removed number + 1;
average iteractions = Sum(iteractions) / number of samples
This formula ignores other cases, for example, iterations cross multiple
buffers and one buffer contains 2+ loops. Because in practice, it's good
enough.
Signed-off-by: Yao Jin <yao.jin@linux.intel.com>
Acked-by: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Linux-kernel@vger.kernel.org
Cc: Yao Jin <yao.jin@linux.intel.com>
Link: http://lkml.kernel.org/n/1477876794-30749-2-git-send-email-yao.jin@linux.intel.com
[ Renamed 'iter' to 'nr_loop_iter' for clarity ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-10-31 04:19:49 +03:00
|
|
|
node->branch = branch;
|
|
|
|
node->nr_loop_iter = nr_loop_iter;
|
2017-08-07 16:05:15 +03:00
|
|
|
node->iter_cycles = iter_cycles;
|
2017-10-09 23:32:56 +03:00
|
|
|
node->srcline = srcline;
|
perf report: Add branch flag to callchain cursor node
Since the branch ip has been added to call stack for easier browsing,
this patch adds more branch information. For example, add a flag to
indicate if this ip is a branch, and also add with the branch flag.
Then we can know if the cursor node represents a branch and know what
the branch flag it has.
The branch history code has a loop detection pass that removes loops. It
would be nice for knowing how many loops were removed then in next
steps, we can compute out the average number of iterations.
For example:
Before remove_loops(),
entry0: from = 0x100, to = 0x200
entry1: from = 0x300, to = 0x250
entry2: from = 0x300, to = 0x250
entry3: from = 0x300, to = 0x250
entry4: from = 0x700, to = 0x800
After remove_loops()
entry0: from = 0x100, to = 0x200
entry1: from = 0x300, to = 0x250
entry2: from = 0x700, to = 0x800
The original entry2 and entry3 are removed. So the number of iterations
(from = 0x300, to = 0x250) is equal to removed number + 1 (2 + 1).
iterations = removed number + 1;
average iteractions = Sum(iteractions) / number of samples
This formula ignores other cases, for example, iterations cross multiple
buffers and one buffer contains 2+ loops. Because in practice, it's good
enough.
Signed-off-by: Yao Jin <yao.jin@linux.intel.com>
Acked-by: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Linux-kernel@vger.kernel.org
Cc: Yao Jin <yao.jin@linux.intel.com>
Link: http://lkml.kernel.org/n/1477876794-30749-2-git-send-email-yao.jin@linux.intel.com
[ Renamed 'iter' to 'nr_loop_iter' for clarity ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-10-31 04:19:49 +03:00
|
|
|
|
|
|
|
if (flags)
|
|
|
|
memcpy(&node->branch_flags, flags,
|
|
|
|
sizeof(struct branch_flags));
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
|
2017-07-18 15:13:15 +03:00
|
|
|
node->branch_from = branch_from;
|
2011-01-14 06:51:58 +03:00
|
|
|
cursor->nr++;
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
|
2011-01-14 06:51:58 +03:00
|
|
|
cursor->last = &node->next;
|
|
|
|
|
|
|
|
return 0;
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-22 23:10:35 +04:00
|
|
|
}
|
2014-01-14 09:25:35 +04:00
|
|
|
|
2016-04-14 20:48:07 +03:00
|
|
|
int sample__resolve_callchain(struct perf_sample *sample,
|
|
|
|
struct callchain_cursor *cursor, struct symbol **parent,
|
2014-01-14 09:25:35 +04:00
|
|
|
struct perf_evsel *evsel, struct addr_location *al,
|
|
|
|
int max_stack)
|
|
|
|
{
|
perf report: Make --branch-history work without callgraphs(-g) option in perf record
perf record -b -g <command>
perf report --branch-history
This merges the LBRs with the callgraphs.
However it would be nice if it also works without callgraphs (-g) set in
perf record, so that only the LBRs are displayed. But currently perf
report errors in this case. For example,
perf record -b <command>
perf report --branch-history
Error:
Selected -g or --branch-history but no callchain data. Did
you call 'perf record' without -g?
This patch displays the LBRs only even if callgraphs(-g) is not enabled
in perf record.
Change log:
v2: According to Milian Wolff's comment, change the obsolete error
message. Now the error message is:
┌─Error:─────────────────────────────────────┐
│Selected -g or --branch-history. │
│But no callchain or branch data. │
│Did you call 'perf record' without -g or -b?│
│ │
│ │
│Press any key... │
└────────────────────────────────────────────┘
When passing the last parameter to hists__fprintf,
changes "|" to "||".
hists__fprintf(hists, !quiet, 0, 0, rep->min_percent, stdout,
symbol_conf.use_callchain || symbol_conf.show_branchflag_count);
Signed-off-by: Yao Jin <yao.jin@linux.intel.com>
Reviewed-by: Andi Kleen <ak@linux.intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1494240182-28899-1-git-send-email-yao.jin@linux.intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2017-05-08 13:43:02 +03:00
|
|
|
if (sample->callchain == NULL && !symbol_conf.show_branchflag_count)
|
2014-01-14 09:25:35 +04:00
|
|
|
return 0;
|
|
|
|
|
2012-09-11 09:13:04 +04:00
|
|
|
if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain ||
|
perf report: Make --branch-history work without callgraphs(-g) option in perf record
perf record -b -g <command>
perf report --branch-history
This merges the LBRs with the callgraphs.
However it would be nice if it also works without callgraphs (-g) set in
perf record, so that only the LBRs are displayed. But currently perf
report errors in this case. For example,
perf record -b <command>
perf report --branch-history
Error:
Selected -g or --branch-history but no callchain data. Did
you call 'perf record' without -g?
This patch displays the LBRs only even if callgraphs(-g) is not enabled
in perf record.
Change log:
v2: According to Milian Wolff's comment, change the obsolete error
message. Now the error message is:
┌─Error:─────────────────────────────────────┐
│Selected -g or --branch-history. │
│But no callchain or branch data. │
│Did you call 'perf record' without -g or -b?│
│ │
│ │
│Press any key... │
└────────────────────────────────────────────┘
When passing the last parameter to hists__fprintf,
changes "|" to "||".
hists__fprintf(hists, !quiet, 0, 0, rep->min_percent, stdout,
symbol_conf.use_callchain || symbol_conf.show_branchflag_count);
Signed-off-by: Yao Jin <yao.jin@linux.intel.com>
Reviewed-by: Andi Kleen <ak@linux.intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1494240182-28899-1-git-send-email-yao.jin@linux.intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2017-05-08 13:43:02 +03:00
|
|
|
perf_hpp_list.parent || symbol_conf.show_branchflag_count) {
|
2016-04-14 20:48:07 +03:00
|
|
|
return thread__resolve_callchain(al->thread, cursor, evsel, sample,
|
2014-10-23 22:26:17 +04:00
|
|
|
parent, al, max_stack);
|
2014-01-14 09:25:35 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int hist_entry__append_callchain(struct hist_entry *he, struct perf_sample *sample)
|
|
|
|
{
|
perf report: Make --branch-history work without callgraphs(-g) option in perf record
perf record -b -g <command>
perf report --branch-history
This merges the LBRs with the callgraphs.
However it would be nice if it also works without callgraphs (-g) set in
perf record, so that only the LBRs are displayed. But currently perf
report errors in this case. For example,
perf record -b <command>
perf report --branch-history
Error:
Selected -g or --branch-history but no callchain data. Did
you call 'perf record' without -g?
This patch displays the LBRs only even if callgraphs(-g) is not enabled
in perf record.
Change log:
v2: According to Milian Wolff's comment, change the obsolete error
message. Now the error message is:
┌─Error:─────────────────────────────────────┐
│Selected -g or --branch-history. │
│But no callchain or branch data. │
│Did you call 'perf record' without -g or -b?│
│ │
│ │
│Press any key... │
└────────────────────────────────────────────┘
When passing the last parameter to hists__fprintf,
changes "|" to "||".
hists__fprintf(hists, !quiet, 0, 0, rep->min_percent, stdout,
symbol_conf.use_callchain || symbol_conf.show_branchflag_count);
Signed-off-by: Yao Jin <yao.jin@linux.intel.com>
Reviewed-by: Andi Kleen <ak@linux.intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1494240182-28899-1-git-send-email-yao.jin@linux.intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2017-05-08 13:43:02 +03:00
|
|
|
if ((!symbol_conf.use_callchain || sample->callchain == NULL) &&
|
|
|
|
!symbol_conf.show_branchflag_count)
|
2014-01-14 09:25:35 +04:00
|
|
|
return 0;
|
|
|
|
return callchain_append(he->callchain, &callchain_cursor, sample->period);
|
|
|
|
}
|
2013-10-31 08:58:30 +04:00
|
|
|
|
|
|
|
int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node,
|
|
|
|
bool hide_unresolved)
|
|
|
|
{
|
|
|
|
al->map = node->map;
|
|
|
|
al->sym = node->sym;
|
|
|
|
if (node->map)
|
|
|
|
al->addr = node->map->map_ip(node->map, node->ip);
|
|
|
|
else
|
|
|
|
al->addr = node->ip;
|
|
|
|
|
|
|
|
if (al->sym == NULL) {
|
|
|
|
if (hide_unresolved)
|
|
|
|
return 0;
|
|
|
|
if (al->map == NULL)
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (al->map->groups == &al->machine->kmaps) {
|
|
|
|
if (machine__is_host(al->machine)) {
|
|
|
|
al->cpumode = PERF_RECORD_MISC_KERNEL;
|
|
|
|
al->level = 'k';
|
|
|
|
} else {
|
|
|
|
al->cpumode = PERF_RECORD_MISC_GUEST_KERNEL;
|
|
|
|
al->level = 'g';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (machine__is_host(al->machine)) {
|
|
|
|
al->cpumode = PERF_RECORD_MISC_USER;
|
|
|
|
al->level = '.';
|
|
|
|
} else if (perf_guest) {
|
|
|
|
al->cpumode = PERF_RECORD_MISC_GUEST_USER;
|
|
|
|
al->level = 'u';
|
|
|
|
} else {
|
|
|
|
al->cpumode = PERF_RECORD_MISC_HYPERVISOR;
|
|
|
|
al->level = 'H';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
return 1;
|
|
|
|
}
|
2014-11-13 05:05:23 +03:00
|
|
|
|
|
|
|
char *callchain_list__sym_name(struct callchain_list *cl,
|
|
|
|
char *bf, size_t bfsize, bool show_dso)
|
|
|
|
{
|
2017-03-19 00:49:28 +03:00
|
|
|
bool show_addr = callchain_param.key == CCKEY_ADDRESS;
|
|
|
|
bool show_srcline = show_addr || callchain_param.key == CCKEY_SRCLINE;
|
2014-11-13 05:05:23 +03:00
|
|
|
int printed;
|
|
|
|
|
|
|
|
if (cl->ms.sym) {
|
2017-10-09 23:33:01 +03:00
|
|
|
const char *inlined = cl->ms.sym->inlined ? " (inlined)" : "";
|
|
|
|
|
2017-10-09 23:32:56 +03:00
|
|
|
if (show_srcline && cl->srcline)
|
2017-10-09 23:33:01 +03:00
|
|
|
printed = scnprintf(bf, bfsize, "%s %s%s",
|
|
|
|
cl->ms.sym->name, cl->srcline,
|
|
|
|
inlined);
|
2014-11-13 05:05:24 +03:00
|
|
|
else
|
2017-10-09 23:33:01 +03:00
|
|
|
printed = scnprintf(bf, bfsize, "%s%s",
|
|
|
|
cl->ms.sym->name, inlined);
|
2014-11-13 05:05:23 +03:00
|
|
|
} else
|
|
|
|
printed = scnprintf(bf, bfsize, "%#" PRIx64, cl->ip);
|
|
|
|
|
|
|
|
if (show_dso)
|
|
|
|
scnprintf(bf + printed, bfsize - printed, " %s",
|
|
|
|
cl->ms.map ?
|
|
|
|
cl->ms.map->dso->short_name :
|
|
|
|
"unknown");
|
|
|
|
|
|
|
|
return bf;
|
|
|
|
}
|
2014-12-30 08:38:13 +03:00
|
|
|
|
2015-11-09 08:45:39 +03:00
|
|
|
char *callchain_node__scnprintf_value(struct callchain_node *node,
|
|
|
|
char *bf, size_t bfsize, u64 total)
|
|
|
|
{
|
|
|
|
double percent = 0.0;
|
|
|
|
u64 period = callchain_cumul_hits(node);
|
2015-11-09 08:45:41 +03:00
|
|
|
unsigned count = callchain_cumul_counts(node);
|
2015-11-09 08:45:39 +03:00
|
|
|
|
2015-11-09 08:45:41 +03:00
|
|
|
if (callchain_param.mode == CHAIN_FOLDED) {
|
2015-11-09 08:45:39 +03:00
|
|
|
period = node->hit;
|
2015-11-09 08:45:41 +03:00
|
|
|
count = node->count;
|
|
|
|
}
|
2015-11-09 08:45:39 +03:00
|
|
|
|
2015-11-09 08:45:41 +03:00
|
|
|
switch (callchain_param.value) {
|
|
|
|
case CCVAL_PERIOD:
|
|
|
|
scnprintf(bf, bfsize, "%"PRIu64, period);
|
|
|
|
break;
|
|
|
|
case CCVAL_COUNT:
|
|
|
|
scnprintf(bf, bfsize, "%u", count);
|
|
|
|
break;
|
|
|
|
case CCVAL_PERCENT:
|
|
|
|
default:
|
|
|
|
if (total)
|
|
|
|
percent = period * 100.0 / total;
|
|
|
|
scnprintf(bf, bfsize, "%.2f%%", percent);
|
|
|
|
break;
|
|
|
|
}
|
2015-11-09 08:45:39 +03:00
|
|
|
return bf;
|
|
|
|
}
|
|
|
|
|
|
|
|
int callchain_node__fprintf_value(struct callchain_node *node,
|
|
|
|
FILE *fp, u64 total)
|
|
|
|
{
|
|
|
|
double percent = 0.0;
|
|
|
|
u64 period = callchain_cumul_hits(node);
|
2015-11-09 08:45:41 +03:00
|
|
|
unsigned count = callchain_cumul_counts(node);
|
2015-11-09 08:45:39 +03:00
|
|
|
|
2015-11-09 08:45:41 +03:00
|
|
|
if (callchain_param.mode == CHAIN_FOLDED) {
|
2015-11-09 08:45:39 +03:00
|
|
|
period = node->hit;
|
2015-11-09 08:45:41 +03:00
|
|
|
count = node->count;
|
|
|
|
}
|
2015-11-09 08:45:39 +03:00
|
|
|
|
2015-11-09 08:45:41 +03:00
|
|
|
switch (callchain_param.value) {
|
|
|
|
case CCVAL_PERIOD:
|
|
|
|
return fprintf(fp, "%"PRIu64, period);
|
|
|
|
case CCVAL_COUNT:
|
|
|
|
return fprintf(fp, "%u", count);
|
|
|
|
case CCVAL_PERCENT:
|
|
|
|
default:
|
|
|
|
if (total)
|
|
|
|
percent = period * 100.0 / total;
|
|
|
|
return percent_color_fprintf(fp, "%.2f%%", percent);
|
|
|
|
}
|
|
|
|
return 0;
|
2015-11-09 08:45:39 +03:00
|
|
|
}
|
|
|
|
|
2016-10-31 04:19:51 +03:00
|
|
|
static void callchain_counts_value(struct callchain_node *node,
|
|
|
|
u64 *branch_count, u64 *predicted_count,
|
|
|
|
u64 *abort_count, u64 *cycles_count)
|
|
|
|
{
|
|
|
|
struct callchain_list *clist;
|
|
|
|
|
|
|
|
list_for_each_entry(clist, &node->val, list) {
|
|
|
|
if (branch_count)
|
|
|
|
*branch_count += clist->branch_count;
|
|
|
|
|
|
|
|
if (predicted_count)
|
|
|
|
*predicted_count += clist->predicted_count;
|
|
|
|
|
|
|
|
if (abort_count)
|
|
|
|
*abort_count += clist->abort_count;
|
|
|
|
|
|
|
|
if (cycles_count)
|
|
|
|
*cycles_count += clist->cycles_count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int callchain_node_branch_counts_cumul(struct callchain_node *node,
|
|
|
|
u64 *branch_count,
|
|
|
|
u64 *predicted_count,
|
|
|
|
u64 *abort_count,
|
|
|
|
u64 *cycles_count)
|
|
|
|
{
|
|
|
|
struct callchain_node *child;
|
|
|
|
struct rb_node *n;
|
|
|
|
|
|
|
|
n = rb_first(&node->rb_root_in);
|
|
|
|
while (n) {
|
|
|
|
child = rb_entry(n, struct callchain_node, rb_node_in);
|
|
|
|
n = rb_next(n);
|
|
|
|
|
|
|
|
callchain_node_branch_counts_cumul(child, branch_count,
|
|
|
|
predicted_count,
|
|
|
|
abort_count,
|
|
|
|
cycles_count);
|
|
|
|
|
|
|
|
callchain_counts_value(child, branch_count,
|
|
|
|
predicted_count, abort_count,
|
|
|
|
cycles_count);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int callchain_branch_counts(struct callchain_root *root,
|
|
|
|
u64 *branch_count, u64 *predicted_count,
|
|
|
|
u64 *abort_count, u64 *cycles_count)
|
|
|
|
{
|
|
|
|
if (branch_count)
|
|
|
|
*branch_count = 0;
|
|
|
|
|
|
|
|
if (predicted_count)
|
|
|
|
*predicted_count = 0;
|
|
|
|
|
|
|
|
if (abort_count)
|
|
|
|
*abort_count = 0;
|
|
|
|
|
|
|
|
if (cycles_count)
|
|
|
|
*cycles_count = 0;
|
|
|
|
|
|
|
|
return callchain_node_branch_counts_cumul(&root->node,
|
|
|
|
branch_count,
|
|
|
|
predicted_count,
|
|
|
|
abort_count,
|
|
|
|
cycles_count);
|
|
|
|
}
|
|
|
|
|
2017-07-18 15:13:12 +03:00
|
|
|
static int count_pri64_printf(int idx, const char *str, u64 value, char *bf, int bfsize)
|
|
|
|
{
|
|
|
|
int printed;
|
|
|
|
|
|
|
|
printed = scnprintf(bf, bfsize, "%s%s:%" PRId64 "", (idx) ? " " : " (", str, value);
|
|
|
|
|
|
|
|
return printed;
|
|
|
|
}
|
|
|
|
|
2017-07-24 14:09:07 +03:00
|
|
|
static int count_float_printf(int idx, const char *str, float value,
|
|
|
|
char *bf, int bfsize, float threshold)
|
2017-07-18 15:13:12 +03:00
|
|
|
{
|
|
|
|
int printed;
|
|
|
|
|
2017-07-24 14:09:07 +03:00
|
|
|
if (threshold != 0.0 && value < threshold)
|
|
|
|
return 0;
|
|
|
|
|
2017-07-18 15:13:12 +03:00
|
|
|
printed = scnprintf(bf, bfsize, "%s%s:%.1f%%", (idx) ? " " : " (", str, value);
|
|
|
|
|
|
|
|
return printed;
|
|
|
|
}
|
|
|
|
|
2017-07-24 14:09:07 +03:00
|
|
|
static int branch_to_str(char *bf, int bfsize,
|
|
|
|
u64 branch_count, u64 predicted_count,
|
|
|
|
u64 abort_count,
|
|
|
|
struct branch_type_stat *brtype_stat)
|
2016-10-31 04:19:51 +03:00
|
|
|
{
|
2017-07-18 15:13:15 +03:00
|
|
|
int printed, i = 0;
|
2016-10-31 04:19:51 +03:00
|
|
|
|
2017-07-18 15:13:15 +03:00
|
|
|
printed = branch_type_str(brtype_stat, bf, bfsize);
|
|
|
|
if (printed)
|
|
|
|
i++;
|
|
|
|
|
2017-07-18 15:13:12 +03:00
|
|
|
if (predicted_count < branch_count) {
|
|
|
|
printed += count_float_printf(i++, "predicted",
|
|
|
|
predicted_count * 100.0 / branch_count,
|
2017-07-24 14:09:07 +03:00
|
|
|
bf + printed, bfsize - printed, 0.0);
|
2017-07-18 15:13:12 +03:00
|
|
|
}
|
2016-10-31 04:19:51 +03:00
|
|
|
|
2017-07-18 15:13:12 +03:00
|
|
|
if (abort_count) {
|
|
|
|
printed += count_float_printf(i++, "abort",
|
|
|
|
abort_count * 100.0 / branch_count,
|
2017-07-24 14:09:07 +03:00
|
|
|
bf + printed, bfsize - printed, 0.1);
|
2017-03-09 11:06:26 +03:00
|
|
|
}
|
2016-10-31 04:19:51 +03:00
|
|
|
|
2017-07-24 14:09:07 +03:00
|
|
|
if (i)
|
|
|
|
printed += scnprintf(bf + printed, bfsize - printed, ")");
|
|
|
|
|
|
|
|
return printed;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int branch_from_str(char *bf, int bfsize,
|
|
|
|
u64 branch_count,
|
|
|
|
u64 cycles_count, u64 iter_count,
|
2017-08-07 16:05:15 +03:00
|
|
|
u64 iter_cycles)
|
2017-07-24 14:09:07 +03:00
|
|
|
{
|
|
|
|
int printed = 0, i = 0;
|
|
|
|
u64 cycles;
|
|
|
|
|
2017-07-18 15:13:12 +03:00
|
|
|
cycles = cycles_count / branch_count;
|
|
|
|
if (cycles) {
|
|
|
|
printed += count_pri64_printf(i++, "cycles",
|
|
|
|
cycles,
|
|
|
|
bf + printed, bfsize - printed);
|
2016-10-31 04:19:51 +03:00
|
|
|
}
|
|
|
|
|
2017-08-07 16:05:15 +03:00
|
|
|
if (iter_count) {
|
|
|
|
printed += count_pri64_printf(i++, "iter",
|
|
|
|
iter_count,
|
|
|
|
bf + printed, bfsize - printed);
|
|
|
|
|
|
|
|
printed += count_pri64_printf(i++, "avg_cycles",
|
|
|
|
iter_cycles / iter_count,
|
2017-07-18 15:13:12 +03:00
|
|
|
bf + printed, bfsize - printed);
|
2017-03-09 11:06:26 +03:00
|
|
|
}
|
2016-10-31 04:19:51 +03:00
|
|
|
|
2017-07-18 15:13:12 +03:00
|
|
|
if (i)
|
2017-07-24 14:09:07 +03:00
|
|
|
printed += scnprintf(bf + printed, bfsize - printed, ")");
|
2017-03-09 11:06:26 +03:00
|
|
|
|
2017-07-24 14:09:07 +03:00
|
|
|
return printed;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int counts_str_build(char *bf, int bfsize,
|
|
|
|
u64 branch_count, u64 predicted_count,
|
|
|
|
u64 abort_count, u64 cycles_count,
|
2017-08-07 16:05:15 +03:00
|
|
|
u64 iter_count, u64 iter_cycles,
|
2017-07-24 14:09:07 +03:00
|
|
|
struct branch_type_stat *brtype_stat)
|
|
|
|
{
|
|
|
|
int printed;
|
|
|
|
|
|
|
|
if (branch_count == 0)
|
|
|
|
return scnprintf(bf, bfsize, " (calltrace)");
|
|
|
|
|
|
|
|
if (brtype_stat->branch_to) {
|
|
|
|
printed = branch_to_str(bf, bfsize, branch_count,
|
|
|
|
predicted_count, abort_count, brtype_stat);
|
|
|
|
} else {
|
|
|
|
printed = branch_from_str(bf, bfsize, branch_count,
|
2017-08-07 16:05:15 +03:00
|
|
|
cycles_count, iter_count, iter_cycles);
|
2017-07-24 14:09:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!printed)
|
|
|
|
bf[0] = 0;
|
|
|
|
|
|
|
|
return printed;
|
2017-03-09 11:06:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int callchain_counts_printf(FILE *fp, char *bf, int bfsize,
|
|
|
|
u64 branch_count, u64 predicted_count,
|
|
|
|
u64 abort_count, u64 cycles_count,
|
2017-08-07 16:05:15 +03:00
|
|
|
u64 iter_count, u64 iter_cycles,
|
2017-07-18 15:13:15 +03:00
|
|
|
struct branch_type_stat *brtype_stat)
|
2017-03-09 11:06:26 +03:00
|
|
|
{
|
2017-07-18 15:13:15 +03:00
|
|
|
char str[256];
|
2017-03-09 11:06:26 +03:00
|
|
|
|
|
|
|
counts_str_build(str, sizeof(str), branch_count,
|
|
|
|
predicted_count, abort_count, cycles_count,
|
2017-08-07 16:05:15 +03:00
|
|
|
iter_count, iter_cycles, brtype_stat);
|
2016-10-31 04:19:51 +03:00
|
|
|
|
|
|
|
if (fp)
|
2017-03-09 11:06:26 +03:00
|
|
|
return fprintf(fp, "%s", str);
|
2016-10-31 04:19:51 +03:00
|
|
|
|
2017-03-09 11:06:26 +03:00
|
|
|
return scnprintf(bf, bfsize, "%s", str);
|
2016-10-31 04:19:51 +03:00
|
|
|
}
|
|
|
|
|
2017-08-07 16:05:15 +03:00
|
|
|
int callchain_list_counts__printf_value(struct callchain_list *clist,
|
2016-10-31 04:19:51 +03:00
|
|
|
FILE *fp, char *bf, int bfsize)
|
|
|
|
{
|
|
|
|
u64 branch_count, predicted_count;
|
|
|
|
u64 abort_count, cycles_count;
|
2017-08-07 16:05:15 +03:00
|
|
|
u64 iter_count, iter_cycles;
|
2016-10-31 04:19:51 +03:00
|
|
|
|
|
|
|
branch_count = clist->branch_count;
|
|
|
|
predicted_count = clist->predicted_count;
|
|
|
|
abort_count = clist->abort_count;
|
|
|
|
cycles_count = clist->cycles_count;
|
2017-08-07 16:05:15 +03:00
|
|
|
iter_count = clist->iter_count;
|
|
|
|
iter_cycles = clist->iter_cycles;
|
2016-10-31 04:19:51 +03:00
|
|
|
|
|
|
|
return callchain_counts_printf(fp, bf, bfsize, branch_count,
|
|
|
|
predicted_count, abort_count,
|
2017-08-07 16:05:15 +03:00
|
|
|
cycles_count, iter_count, iter_cycles,
|
2017-07-18 15:13:15 +03:00
|
|
|
&clist->brtype_stat);
|
2016-10-31 04:19:51 +03:00
|
|
|
}
|
|
|
|
|
2014-12-30 08:38:13 +03:00
|
|
|
static void free_callchain_node(struct callchain_node *node)
|
|
|
|
{
|
|
|
|
struct callchain_list *list, *tmp;
|
|
|
|
struct callchain_node *child;
|
|
|
|
struct rb_node *n;
|
|
|
|
|
2015-11-09 08:45:43 +03:00
|
|
|
list_for_each_entry_safe(list, tmp, &node->parent_val, list) {
|
|
|
|
list_del(&list->list);
|
2017-01-06 09:23:31 +03:00
|
|
|
map__zput(list->ms.map);
|
2015-11-09 08:45:43 +03:00
|
|
|
free(list);
|
|
|
|
}
|
|
|
|
|
2014-12-30 08:38:13 +03:00
|
|
|
list_for_each_entry_safe(list, tmp, &node->val, list) {
|
|
|
|
list_del(&list->list);
|
2017-01-06 09:23:31 +03:00
|
|
|
map__zput(list->ms.map);
|
2014-12-30 08:38:13 +03:00
|
|
|
free(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
n = rb_first(&node->rb_root_in);
|
|
|
|
while (n) {
|
|
|
|
child = container_of(n, struct callchain_node, rb_node_in);
|
|
|
|
n = rb_next(n);
|
|
|
|
rb_erase(&child->rb_node_in, &node->rb_root_in);
|
|
|
|
|
|
|
|
free_callchain_node(child);
|
|
|
|
free(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void free_callchain(struct callchain_root *root)
|
|
|
|
{
|
|
|
|
if (!symbol_conf.use_callchain)
|
|
|
|
return;
|
|
|
|
|
|
|
|
free_callchain_node(&root->node);
|
|
|
|
}
|
2015-11-09 08:45:43 +03:00
|
|
|
|
2016-01-05 06:06:00 +03:00
|
|
|
static u64 decay_callchain_node(struct callchain_node *node)
|
|
|
|
{
|
|
|
|
struct callchain_node *child;
|
|
|
|
struct rb_node *n;
|
|
|
|
u64 child_hits = 0;
|
|
|
|
|
|
|
|
n = rb_first(&node->rb_root_in);
|
|
|
|
while (n) {
|
|
|
|
child = container_of(n, struct callchain_node, rb_node_in);
|
|
|
|
|
|
|
|
child_hits += decay_callchain_node(child);
|
|
|
|
n = rb_next(n);
|
|
|
|
}
|
|
|
|
|
|
|
|
node->hit = (node->hit * 7) / 8;
|
|
|
|
node->children_hit = child_hits;
|
|
|
|
|
|
|
|
return node->hit;
|
|
|
|
}
|
|
|
|
|
|
|
|
void decay_callchain(struct callchain_root *root)
|
|
|
|
{
|
|
|
|
if (!symbol_conf.use_callchain)
|
|
|
|
return;
|
|
|
|
|
|
|
|
decay_callchain_node(&root->node);
|
|
|
|
}
|
|
|
|
|
2015-11-09 08:45:43 +03:00
|
|
|
int callchain_node__make_parent_list(struct callchain_node *node)
|
|
|
|
{
|
|
|
|
struct callchain_node *parent = node->parent;
|
|
|
|
struct callchain_list *chain, *new;
|
|
|
|
LIST_HEAD(head);
|
|
|
|
|
|
|
|
while (parent) {
|
|
|
|
list_for_each_entry_reverse(chain, &parent->val, list) {
|
|
|
|
new = malloc(sizeof(*new));
|
|
|
|
if (new == NULL)
|
|
|
|
goto out;
|
|
|
|
*new = *chain;
|
|
|
|
new->has_children = false;
|
2017-01-06 09:23:31 +03:00
|
|
|
map__get(new->ms.map);
|
2015-11-09 08:45:43 +03:00
|
|
|
list_add_tail(&new->list, &head);
|
|
|
|
}
|
|
|
|
parent = parent->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_for_each_entry_safe_reverse(chain, new, &head, list)
|
|
|
|
list_move_tail(&chain->list, &node->parent_val);
|
|
|
|
|
|
|
|
if (!list_empty(&node->parent_val)) {
|
|
|
|
chain = list_first_entry(&node->parent_val, struct callchain_list, list);
|
|
|
|
chain->has_children = rb_prev(&node->rb_node) || rb_next(&node->rb_node);
|
|
|
|
|
|
|
|
chain = list_first_entry(&node->val, struct callchain_list, list);
|
|
|
|
chain->has_children = false;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
out:
|
|
|
|
list_for_each_entry_safe(chain, new, &head, list) {
|
|
|
|
list_del(&chain->list);
|
2017-01-06 09:23:31 +03:00
|
|
|
map__zput(chain->ms.map);
|
2015-11-09 08:45:43 +03:00
|
|
|
free(chain);
|
|
|
|
}
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2016-12-06 06:40:02 +03:00
|
|
|
|
|
|
|
int callchain_cursor__copy(struct callchain_cursor *dst,
|
|
|
|
struct callchain_cursor *src)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
callchain_cursor_reset(dst);
|
|
|
|
callchain_cursor_commit(src);
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
struct callchain_cursor_node *node;
|
|
|
|
|
|
|
|
node = callchain_cursor_current(src);
|
|
|
|
if (node == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
rc = callchain_cursor_append(dst, node->ip, node->map, node->sym,
|
|
|
|
node->branch, &node->branch_flags,
|
2017-08-07 16:05:15 +03:00
|
|
|
node->nr_loop_iter,
|
|
|
|
node->iter_cycles,
|
2017-10-09 23:32:56 +03:00
|
|
|
node->branch_from, node->srcline);
|
2016-12-06 06:40:02 +03:00
|
|
|
if (rc)
|
|
|
|
break;
|
|
|
|
|
|
|
|
callchain_cursor_advance(src);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|