[v2,07/14] perf kvm: Parse address location for samples
Commit Message
Parse address location for samples and save it into the structure
'perf_kvm_stat', it is to be used by histograms entry.
Signed-off-by: Leo Yan <leo.yan@linaro.org>
---
tools/perf/builtin-kvm.c | 5 +++++
tools/perf/util/kvm-stat.h | 4 ++++
2 files changed, 9 insertions(+)
@@ -704,6 +704,11 @@ static int process_sample_event(struct perf_tool *tool,
if (skip_sample(kvm, sample))
return 0;
+ if (machine__resolve(machine, &kvm->al, sample) < 0) {
+ pr_warning("Fail to resolve address location, skip sample.\n");
+ return 0;
+ }
+
thread = machine__findnew_thread(machine, sample->pid, sample->tid);
if (thread == NULL) {
pr_debug("problem processing %d event, skipping it.\n",
@@ -7,6 +7,7 @@
#include "tool.h"
#include "sort.h"
#include "stat.h"
+#include "symbol.h"
#include "record.h"
struct evsel;
@@ -86,6 +87,9 @@ struct perf_kvm_stat {
const char *sort_key;
int trace_vcpu;
+ /* Used when process events */
+ struct addr_location al;
+
struct exit_reasons_table *exit_reasons;
const char *exit_reasons_isa;