blob: 24b78aecc9287bb018c26ac2668cacab20a3b789 [file] [log] [blame]
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001#include "builtin.h"
2#include "perf.h"
3
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08004#include "util/evsel.h"
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08005#include "util/util.h"
6#include "util/cache.h"
7#include "util/symbol.h"
8#include "util/thread.h"
9#include "util/header.h"
10#include "util/session.h"
11
12#include "util/parse-options.h"
13#include "util/trace-event.h"
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080014#include "util/debug.h"
Borislav Petkov85c66be2013-02-20 16:32:30 +010015#include <lk/debugfs.h>
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080016#include "util/tool.h"
17#include "util/stat.h"
Zhang, Yanmina1645ce2010-04-19 13:32:50 +080018
19#include <sys/prctl.h>
20
21#include <semaphore.h>
22#include <pthread.h>
23#include <math.h>
24
Xiao Guangrong73210902012-11-19 16:19:21 +080025#if defined(__i386__) || defined(__x86_64__)
David Howellsd2709c72012-11-19 22:21:03 +000026#include <asm/svm.h>
27#include <asm/vmx.h>
28#include <asm/kvm.h>
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080029
30struct event_key {
31 #define INVALID_KEY (~0ULL)
32 u64 key;
33 int info;
34};
35
David Ahernde332ac2012-10-02 22:09:53 -060036struct kvm_event_stats {
37 u64 time;
38 struct stats stats;
39};
40
41struct kvm_event {
42 struct list_head hash_entry;
43 struct rb_node rb;
44
45 struct event_key key;
46
47 struct kvm_event_stats total;
48
49 #define DEFAULT_VCPU_NUM 8
50 int max_vcpu;
51 struct kvm_event_stats *vcpu;
52};
53
54typedef int (*key_cmp_fun)(struct kvm_event*, struct kvm_event*, int);
55
56struct kvm_event_key {
57 const char *name;
58 key_cmp_fun key;
59};
60
61
Xiao Guangrong37860632012-11-15 14:17:01 +080062struct perf_kvm_stat;
David Ahernde332ac2012-10-02 22:09:53 -060063
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080064struct kvm_events_ops {
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -030065 bool (*is_begin_event)(struct perf_evsel *evsel,
66 struct perf_sample *sample,
67 struct event_key *key);
68 bool (*is_end_event)(struct perf_evsel *evsel,
69 struct perf_sample *sample, struct event_key *key);
Xiao Guangrong37860632012-11-15 14:17:01 +080070 void (*decode_key)(struct perf_kvm_stat *kvm, struct event_key *key,
David Ahernde332ac2012-10-02 22:09:53 -060071 char decode[20]);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080072 const char *name;
73};
74
David Ahernde332ac2012-10-02 22:09:53 -060075struct exit_reasons_table {
76 unsigned long exit_code;
77 const char *reason;
78};
79
80#define EVENTS_BITS 12
81#define EVENTS_CACHE_SIZE (1UL << EVENTS_BITS)
82
Xiao Guangrong37860632012-11-15 14:17:01 +080083struct perf_kvm_stat {
David Ahernde332ac2012-10-02 22:09:53 -060084 struct perf_tool tool;
85 struct perf_session *session;
86
87 const char *file_name;
88 const char *report_event;
89 const char *sort_key;
90 int trace_vcpu;
91
92 struct exit_reasons_table *exit_reasons;
93 int exit_reasons_size;
94 const char *exit_reasons_isa;
95
96 struct kvm_events_ops *events_ops;
97 key_cmp_fun compare;
98 struct list_head kvm_events_cache[EVENTS_CACHE_SIZE];
99 u64 total_time;
100 u64 total_count;
101
102 struct rb_root result;
103};
104
105
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300106static void exit_event_get_key(struct perf_evsel *evsel,
107 struct perf_sample *sample,
108 struct event_key *key)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800109{
110 key->info = 0;
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300111 key->key = perf_evsel__intval(evsel, sample, "exit_reason");
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800112}
113
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300114static bool kvm_exit_event(struct perf_evsel *evsel)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800115{
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300116 return !strcmp(evsel->name, "kvm:kvm_exit");
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800117}
118
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300119static bool exit_event_begin(struct perf_evsel *evsel,
120 struct perf_sample *sample, struct event_key *key)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800121{
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300122 if (kvm_exit_event(evsel)) {
123 exit_event_get_key(evsel, sample, key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800124 return true;
125 }
126
127 return false;
128}
129
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300130static bool kvm_entry_event(struct perf_evsel *evsel)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800131{
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300132 return !strcmp(evsel->name, "kvm:kvm_entry");
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800133}
134
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300135static bool exit_event_end(struct perf_evsel *evsel,
136 struct perf_sample *sample __maybe_unused,
137 struct event_key *key __maybe_unused)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800138{
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300139 return kvm_entry_event(evsel);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800140}
141
David Ahernde332ac2012-10-02 22:09:53 -0600142static struct exit_reasons_table vmx_exit_reasons[] = {
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800143 VMX_EXIT_REASONS
144};
145
David Ahernde332ac2012-10-02 22:09:53 -0600146static struct exit_reasons_table svm_exit_reasons[] = {
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800147 SVM_EXIT_REASONS
148};
149
Xiao Guangrong37860632012-11-15 14:17:01 +0800150static const char *get_exit_reason(struct perf_kvm_stat *kvm, u64 exit_code)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800151{
David Ahernde332ac2012-10-02 22:09:53 -0600152 int i = kvm->exit_reasons_size;
153 struct exit_reasons_table *tbl = kvm->exit_reasons;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800154
David Ahernde332ac2012-10-02 22:09:53 -0600155 while (i--) {
156 if (tbl->exit_code == exit_code)
157 return tbl->reason;
158 tbl++;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800159 }
160
161 pr_err("unknown kvm exit code:%lld on %s\n",
David Ahernde332ac2012-10-02 22:09:53 -0600162 (unsigned long long)exit_code, kvm->exit_reasons_isa);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800163 return "UNKNOWN";
164}
165
Xiao Guangrong37860632012-11-15 14:17:01 +0800166static void exit_event_decode_key(struct perf_kvm_stat *kvm,
David Ahernde332ac2012-10-02 22:09:53 -0600167 struct event_key *key,
168 char decode[20])
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800169{
David Ahernde332ac2012-10-02 22:09:53 -0600170 const char *exit_reason = get_exit_reason(kvm, key->key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800171
172 scnprintf(decode, 20, "%s", exit_reason);
173}
174
175static struct kvm_events_ops exit_events = {
176 .is_begin_event = exit_event_begin,
177 .is_end_event = exit_event_end,
178 .decode_key = exit_event_decode_key,
179 .name = "VM-EXIT"
180};
181
David Ahernde332ac2012-10-02 22:09:53 -0600182/*
183 * For the mmio events, we treat:
184 * the time of MMIO write: kvm_mmio(KVM_TRACE_MMIO_WRITE...) -> kvm_entry
185 * the time of MMIO read: kvm_exit -> kvm_mmio(KVM_TRACE_MMIO_READ...).
186 */
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300187static void mmio_event_get_key(struct perf_evsel *evsel, struct perf_sample *sample,
188 struct event_key *key)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800189{
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300190 key->key = perf_evsel__intval(evsel, sample, "gpa");
191 key->info = perf_evsel__intval(evsel, sample, "type");
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800192}
193
194#define KVM_TRACE_MMIO_READ_UNSATISFIED 0
195#define KVM_TRACE_MMIO_READ 1
196#define KVM_TRACE_MMIO_WRITE 2
197
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300198static bool mmio_event_begin(struct perf_evsel *evsel,
199 struct perf_sample *sample, struct event_key *key)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800200{
201 /* MMIO read begin event in kernel. */
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300202 if (kvm_exit_event(evsel))
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800203 return true;
204
205 /* MMIO write begin event in kernel. */
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300206 if (!strcmp(evsel->name, "kvm:kvm_mmio") &&
207 perf_evsel__intval(evsel, sample, "type") == KVM_TRACE_MMIO_WRITE) {
208 mmio_event_get_key(evsel, sample, key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800209 return true;
210 }
211
212 return false;
213}
214
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300215static bool mmio_event_end(struct perf_evsel *evsel, struct perf_sample *sample,
216 struct event_key *key)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800217{
218 /* MMIO write end event in kernel. */
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300219 if (kvm_entry_event(evsel))
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800220 return true;
221
222 /* MMIO read end event in kernel.*/
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300223 if (!strcmp(evsel->name, "kvm:kvm_mmio") &&
224 perf_evsel__intval(evsel, sample, "type") == KVM_TRACE_MMIO_READ) {
225 mmio_event_get_key(evsel, sample, key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800226 return true;
227 }
228
229 return false;
230}
231
Xiao Guangrong37860632012-11-15 14:17:01 +0800232static void mmio_event_decode_key(struct perf_kvm_stat *kvm __maybe_unused,
David Ahernde332ac2012-10-02 22:09:53 -0600233 struct event_key *key,
234 char decode[20])
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800235{
236 scnprintf(decode, 20, "%#lx:%s", (unsigned long)key->key,
237 key->info == KVM_TRACE_MMIO_WRITE ? "W" : "R");
238}
239
240static struct kvm_events_ops mmio_events = {
241 .is_begin_event = mmio_event_begin,
242 .is_end_event = mmio_event_end,
243 .decode_key = mmio_event_decode_key,
244 .name = "MMIO Access"
245};
246
247 /* The time of emulation pio access is from kvm_pio to kvm_entry. */
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300248static void ioport_event_get_key(struct perf_evsel *evsel,
249 struct perf_sample *sample,
250 struct event_key *key)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800251{
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300252 key->key = perf_evsel__intval(evsel, sample, "port");
253 key->info = perf_evsel__intval(evsel, sample, "rw");
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800254}
255
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300256static bool ioport_event_begin(struct perf_evsel *evsel,
257 struct perf_sample *sample,
258 struct event_key *key)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800259{
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300260 if (!strcmp(evsel->name, "kvm:kvm_pio")) {
261 ioport_event_get_key(evsel, sample, key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800262 return true;
263 }
264
265 return false;
266}
267
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300268static bool ioport_event_end(struct perf_evsel *evsel,
269 struct perf_sample *sample __maybe_unused,
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800270 struct event_key *key __maybe_unused)
271{
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300272 return kvm_entry_event(evsel);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800273}
274
Xiao Guangrong37860632012-11-15 14:17:01 +0800275static void ioport_event_decode_key(struct perf_kvm_stat *kvm __maybe_unused,
David Ahernde332ac2012-10-02 22:09:53 -0600276 struct event_key *key,
277 char decode[20])
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800278{
279 scnprintf(decode, 20, "%#llx:%s", (unsigned long long)key->key,
280 key->info ? "POUT" : "PIN");
281}
282
283static struct kvm_events_ops ioport_events = {
284 .is_begin_event = ioport_event_begin,
285 .is_end_event = ioport_event_end,
286 .decode_key = ioport_event_decode_key,
287 .name = "IO Port Access"
288};
289
Xiao Guangrong37860632012-11-15 14:17:01 +0800290static bool register_kvm_events_ops(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800291{
292 bool ret = true;
293
David Ahernde332ac2012-10-02 22:09:53 -0600294 if (!strcmp(kvm->report_event, "vmexit"))
295 kvm->events_ops = &exit_events;
296 else if (!strcmp(kvm->report_event, "mmio"))
297 kvm->events_ops = &mmio_events;
298 else if (!strcmp(kvm->report_event, "ioport"))
299 kvm->events_ops = &ioport_events;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800300 else {
David Ahernde332ac2012-10-02 22:09:53 -0600301 pr_err("Unknown report event:%s\n", kvm->report_event);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800302 ret = false;
303 }
304
305 return ret;
306}
307
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800308struct vcpu_event_record {
309 int vcpu_id;
310 u64 start_time;
311 struct kvm_event *last_event;
312};
313
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800314
Xiao Guangrong37860632012-11-15 14:17:01 +0800315static void init_kvm_event_record(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800316{
David Ahernb880dee2012-10-08 11:17:30 -0600317 unsigned int i;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800318
David Ahernb880dee2012-10-08 11:17:30 -0600319 for (i = 0; i < EVENTS_CACHE_SIZE; i++)
David Ahernde332ac2012-10-02 22:09:53 -0600320 INIT_LIST_HEAD(&kvm->kvm_events_cache[i]);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800321}
322
323static int kvm_events_hash_fn(u64 key)
324{
325 return key & (EVENTS_CACHE_SIZE - 1);
326}
327
328static bool kvm_event_expand(struct kvm_event *event, int vcpu_id)
329{
330 int old_max_vcpu = event->max_vcpu;
David Ahern6ca5f302013-05-25 18:24:46 -0600331 void *prev;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800332
333 if (vcpu_id < event->max_vcpu)
334 return true;
335
336 while (event->max_vcpu <= vcpu_id)
337 event->max_vcpu += DEFAULT_VCPU_NUM;
338
David Ahern6ca5f302013-05-25 18:24:46 -0600339 prev = event->vcpu;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800340 event->vcpu = realloc(event->vcpu,
341 event->max_vcpu * sizeof(*event->vcpu));
342 if (!event->vcpu) {
David Ahern6ca5f302013-05-25 18:24:46 -0600343 free(prev);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800344 pr_err("Not enough memory\n");
345 return false;
346 }
347
348 memset(event->vcpu + old_max_vcpu, 0,
349 (event->max_vcpu - old_max_vcpu) * sizeof(*event->vcpu));
350 return true;
351}
352
353static struct kvm_event *kvm_alloc_init_event(struct event_key *key)
354{
355 struct kvm_event *event;
356
357 event = zalloc(sizeof(*event));
358 if (!event) {
359 pr_err("Not enough memory\n");
360 return NULL;
361 }
362
363 event->key = *key;
364 return event;
365}
366
Xiao Guangrong37860632012-11-15 14:17:01 +0800367static struct kvm_event *find_create_kvm_event(struct perf_kvm_stat *kvm,
David Ahernde332ac2012-10-02 22:09:53 -0600368 struct event_key *key)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800369{
370 struct kvm_event *event;
371 struct list_head *head;
372
373 BUG_ON(key->key == INVALID_KEY);
374
David Ahernde332ac2012-10-02 22:09:53 -0600375 head = &kvm->kvm_events_cache[kvm_events_hash_fn(key->key)];
David Ahern355afe82012-10-08 11:17:32 -0600376 list_for_each_entry(event, head, hash_entry) {
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800377 if (event->key.key == key->key && event->key.info == key->info)
378 return event;
David Ahern355afe82012-10-08 11:17:32 -0600379 }
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800380
381 event = kvm_alloc_init_event(key);
382 if (!event)
383 return NULL;
384
385 list_add(&event->hash_entry, head);
386 return event;
387}
388
Xiao Guangrong37860632012-11-15 14:17:01 +0800389static bool handle_begin_event(struct perf_kvm_stat *kvm,
David Ahernde332ac2012-10-02 22:09:53 -0600390 struct vcpu_event_record *vcpu_record,
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800391 struct event_key *key, u64 timestamp)
392{
393 struct kvm_event *event = NULL;
394
395 if (key->key != INVALID_KEY)
David Ahernde332ac2012-10-02 22:09:53 -0600396 event = find_create_kvm_event(kvm, key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800397
398 vcpu_record->last_event = event;
399 vcpu_record->start_time = timestamp;
400 return true;
401}
402
403static void
404kvm_update_event_stats(struct kvm_event_stats *kvm_stats, u64 time_diff)
405{
406 kvm_stats->time += time_diff;
407 update_stats(&kvm_stats->stats, time_diff);
408}
409
410static double kvm_event_rel_stddev(int vcpu_id, struct kvm_event *event)
411{
412 struct kvm_event_stats *kvm_stats = &event->total;
413
414 if (vcpu_id != -1)
415 kvm_stats = &event->vcpu[vcpu_id];
416
417 return rel_stddev_stats(stddev_stats(&kvm_stats->stats),
418 avg_stats(&kvm_stats->stats));
419}
420
421static bool update_kvm_event(struct kvm_event *event, int vcpu_id,
422 u64 time_diff)
423{
David Ahern2aa8eab2012-10-08 11:17:35 -0600424 if (vcpu_id == -1) {
425 kvm_update_event_stats(&event->total, time_diff);
426 return true;
427 }
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800428
429 if (!kvm_event_expand(event, vcpu_id))
430 return false;
431
432 kvm_update_event_stats(&event->vcpu[vcpu_id], time_diff);
433 return true;
434}
435
Xiao Guangrong37860632012-11-15 14:17:01 +0800436static bool handle_end_event(struct perf_kvm_stat *kvm,
David Ahernde332ac2012-10-02 22:09:53 -0600437 struct vcpu_event_record *vcpu_record,
438 struct event_key *key,
439 u64 timestamp)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800440{
441 struct kvm_event *event;
442 u64 time_begin, time_diff;
David Ahern2aa8eab2012-10-08 11:17:35 -0600443 int vcpu;
444
445 if (kvm->trace_vcpu == -1)
446 vcpu = -1;
447 else
448 vcpu = vcpu_record->vcpu_id;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800449
450 event = vcpu_record->last_event;
451 time_begin = vcpu_record->start_time;
452
453 /* The begin event is not caught. */
454 if (!time_begin)
455 return true;
456
457 /*
458 * In some case, the 'begin event' only records the start timestamp,
459 * the actual event is recognized in the 'end event' (e.g. mmio-event).
460 */
461
462 /* Both begin and end events did not get the key. */
463 if (!event && key->key == INVALID_KEY)
464 return true;
465
466 if (!event)
David Ahernde332ac2012-10-02 22:09:53 -0600467 event = find_create_kvm_event(kvm, key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800468
469 if (!event)
470 return false;
471
472 vcpu_record->last_event = NULL;
473 vcpu_record->start_time = 0;
474
475 BUG_ON(timestamp < time_begin);
476
477 time_diff = timestamp - time_begin;
David Ahern2aa8eab2012-10-08 11:17:35 -0600478 return update_kvm_event(event, vcpu, time_diff);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800479}
480
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300481static
482struct vcpu_event_record *per_vcpu_record(struct thread *thread,
483 struct perf_evsel *evsel,
484 struct perf_sample *sample)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800485{
486 /* Only kvm_entry records vcpu id. */
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300487 if (!thread->priv && kvm_entry_event(evsel)) {
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800488 struct vcpu_event_record *vcpu_record;
489
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300490 vcpu_record = zalloc(sizeof(*vcpu_record));
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800491 if (!vcpu_record) {
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300492 pr_err("%s: Not enough memory\n", __func__);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800493 return NULL;
494 }
495
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300496 vcpu_record->vcpu_id = perf_evsel__intval(evsel, sample, "vcpu_id");
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800497 thread->priv = vcpu_record;
498 }
499
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300500 return thread->priv;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800501}
502
Xiao Guangrong37860632012-11-15 14:17:01 +0800503static bool handle_kvm_event(struct perf_kvm_stat *kvm,
David Ahernde332ac2012-10-02 22:09:53 -0600504 struct thread *thread,
505 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300506 struct perf_sample *sample)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800507{
508 struct vcpu_event_record *vcpu_record;
509 struct event_key key = {.key = INVALID_KEY};
510
Arnaldo Carvalho de Melo14907e72012-09-21 16:10:26 -0300511 vcpu_record = per_vcpu_record(thread, evsel, sample);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800512 if (!vcpu_record)
513 return true;
514
David Ahern2aa8eab2012-10-08 11:17:35 -0600515 /* only process events for vcpus user cares about */
516 if ((kvm->trace_vcpu != -1) &&
517 (kvm->trace_vcpu != vcpu_record->vcpu_id))
518 return true;
519
David Ahernde332ac2012-10-02 22:09:53 -0600520 if (kvm->events_ops->is_begin_event(evsel, sample, &key))
521 return handle_begin_event(kvm, vcpu_record, &key, sample->time);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800522
David Ahernde332ac2012-10-02 22:09:53 -0600523 if (kvm->events_ops->is_end_event(evsel, sample, &key))
524 return handle_end_event(kvm, vcpu_record, &key, sample->time);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800525
526 return true;
527}
528
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800529#define GET_EVENT_KEY(func, field) \
530static u64 get_event_ ##func(struct kvm_event *event, int vcpu) \
531{ \
532 if (vcpu == -1) \
533 return event->total.field; \
534 \
535 if (vcpu >= event->max_vcpu) \
536 return 0; \
537 \
538 return event->vcpu[vcpu].field; \
539}
540
541#define COMPARE_EVENT_KEY(func, field) \
542GET_EVENT_KEY(func, field) \
543static int compare_kvm_event_ ## func(struct kvm_event *one, \
544 struct kvm_event *two, int vcpu)\
545{ \
546 return get_event_ ##func(one, vcpu) > \
547 get_event_ ##func(two, vcpu); \
548}
549
550GET_EVENT_KEY(time, time);
551COMPARE_EVENT_KEY(count, stats.n);
552COMPARE_EVENT_KEY(mean, stats.mean);
553
554#define DEF_SORT_NAME_KEY(name, compare_key) \
555 { #name, compare_kvm_event_ ## compare_key }
556
557static struct kvm_event_key keys[] = {
558 DEF_SORT_NAME_KEY(sample, count),
559 DEF_SORT_NAME_KEY(time, mean),
560 { NULL, NULL }
561};
562
Xiao Guangrong37860632012-11-15 14:17:01 +0800563static bool select_key(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800564{
565 int i;
566
567 for (i = 0; keys[i].name; i++) {
David Ahernde332ac2012-10-02 22:09:53 -0600568 if (!strcmp(keys[i].name, kvm->sort_key)) {
569 kvm->compare = keys[i].key;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800570 return true;
571 }
572 }
573
David Ahernde332ac2012-10-02 22:09:53 -0600574 pr_err("Unknown compare key:%s\n", kvm->sort_key);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800575 return false;
576}
577
David Ahernde332ac2012-10-02 22:09:53 -0600578static void insert_to_result(struct rb_root *result, struct kvm_event *event,
579 key_cmp_fun bigger, int vcpu)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800580{
David Ahernde332ac2012-10-02 22:09:53 -0600581 struct rb_node **rb = &result->rb_node;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800582 struct rb_node *parent = NULL;
583 struct kvm_event *p;
584
585 while (*rb) {
586 p = container_of(*rb, struct kvm_event, rb);
587 parent = *rb;
588
589 if (bigger(event, p, vcpu))
590 rb = &(*rb)->rb_left;
591 else
592 rb = &(*rb)->rb_right;
593 }
594
595 rb_link_node(&event->rb, parent, rb);
David Ahernde332ac2012-10-02 22:09:53 -0600596 rb_insert_color(&event->rb, result);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800597}
598
Xiao Guangrong37860632012-11-15 14:17:01 +0800599static void
600update_total_count(struct perf_kvm_stat *kvm, struct kvm_event *event)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800601{
David Ahernde332ac2012-10-02 22:09:53 -0600602 int vcpu = kvm->trace_vcpu;
603
604 kvm->total_count += get_event_count(event, vcpu);
605 kvm->total_time += get_event_time(event, vcpu);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800606}
607
608static bool event_is_valid(struct kvm_event *event, int vcpu)
609{
610 return !!get_event_count(event, vcpu);
611}
612
Xiao Guangrong37860632012-11-15 14:17:01 +0800613static void sort_result(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800614{
615 unsigned int i;
David Ahernde332ac2012-10-02 22:09:53 -0600616 int vcpu = kvm->trace_vcpu;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800617 struct kvm_event *event;
618
David Ahern355afe82012-10-08 11:17:32 -0600619 for (i = 0; i < EVENTS_CACHE_SIZE; i++) {
620 list_for_each_entry(event, &kvm->kvm_events_cache[i], hash_entry) {
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800621 if (event_is_valid(event, vcpu)) {
David Ahernde332ac2012-10-02 22:09:53 -0600622 update_total_count(kvm, event);
623 insert_to_result(&kvm->result, event,
624 kvm->compare, vcpu);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800625 }
David Ahern355afe82012-10-08 11:17:32 -0600626 }
627 }
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800628}
629
630/* returns left most element of result, and erase it */
David Ahernde332ac2012-10-02 22:09:53 -0600631static struct kvm_event *pop_from_result(struct rb_root *result)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800632{
David Ahernde332ac2012-10-02 22:09:53 -0600633 struct rb_node *node = rb_first(result);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800634
635 if (!node)
636 return NULL;
637
David Ahernde332ac2012-10-02 22:09:53 -0600638 rb_erase(node, result);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800639 return container_of(node, struct kvm_event, rb);
640}
641
642static void print_vcpu_info(int vcpu)
643{
644 pr_info("Analyze events for ");
645
646 if (vcpu == -1)
647 pr_info("all VCPUs:\n\n");
648 else
649 pr_info("VCPU %d:\n\n", vcpu);
650}
651
Xiao Guangrong37860632012-11-15 14:17:01 +0800652static void print_result(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800653{
654 char decode[20];
655 struct kvm_event *event;
David Ahernde332ac2012-10-02 22:09:53 -0600656 int vcpu = kvm->trace_vcpu;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800657
658 pr_info("\n\n");
659 print_vcpu_info(vcpu);
David Ahernde332ac2012-10-02 22:09:53 -0600660 pr_info("%20s ", kvm->events_ops->name);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800661 pr_info("%10s ", "Samples");
662 pr_info("%9s ", "Samples%");
663
664 pr_info("%9s ", "Time%");
665 pr_info("%16s ", "Avg time");
666 pr_info("\n\n");
667
David Ahernde332ac2012-10-02 22:09:53 -0600668 while ((event = pop_from_result(&kvm->result))) {
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800669 u64 ecount, etime;
670
671 ecount = get_event_count(event, vcpu);
672 etime = get_event_time(event, vcpu);
673
David Ahernde332ac2012-10-02 22:09:53 -0600674 kvm->events_ops->decode_key(kvm, &event->key, decode);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800675 pr_info("%20s ", decode);
676 pr_info("%10llu ", (unsigned long long)ecount);
David Ahernde332ac2012-10-02 22:09:53 -0600677 pr_info("%8.2f%% ", (double)ecount / kvm->total_count * 100);
678 pr_info("%8.2f%% ", (double)etime / kvm->total_time * 100);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800679 pr_info("%9.2fus ( +-%7.2f%% )", (double)etime / ecount/1e3,
680 kvm_event_rel_stddev(vcpu, event));
681 pr_info("\n");
682 }
683
David Aherne4f76372012-10-08 11:17:34 -0600684 pr_info("\nTotal Samples:%" PRIu64 ", Total events handled time:%.2fus.\n\n",
685 kvm->total_count, kvm->total_time / 1e3);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800686}
687
David Ahernde332ac2012-10-02 22:09:53 -0600688static int process_sample_event(struct perf_tool *tool,
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800689 union perf_event *event,
690 struct perf_sample *sample,
691 struct perf_evsel *evsel,
692 struct machine *machine)
693{
694 struct thread *thread = machine__findnew_thread(machine, sample->tid);
Xiao Guangrong37860632012-11-15 14:17:01 +0800695 struct perf_kvm_stat *kvm = container_of(tool, struct perf_kvm_stat,
696 tool);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800697
698 if (thread == NULL) {
699 pr_debug("problem processing %d event, skipping it.\n",
700 event->header.type);
701 return -1;
702 }
703
David Ahernde332ac2012-10-02 22:09:53 -0600704 if (!handle_kvm_event(kvm, thread, evsel, sample))
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800705 return -1;
706
707 return 0;
708}
709
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800710static int get_cpu_isa(struct perf_session *session)
711{
Namhyung Kim2f9e97a2012-09-24 17:15:02 +0900712 char *cpuid = session->header.env.cpuid;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800713 int isa;
714
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800715 if (strstr(cpuid, "Intel"))
716 isa = 1;
717 else if (strstr(cpuid, "AMD"))
718 isa = 0;
719 else {
720 pr_err("CPU %s is not supported.\n", cpuid);
721 isa = -ENOTSUP;
722 }
723
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800724 return isa;
725}
726
Xiao Guangrong37860632012-11-15 14:17:01 +0800727static int read_events(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800728{
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800729 int ret;
730
David Ahernde332ac2012-10-02 22:09:53 -0600731 struct perf_tool eops = {
732 .sample = process_sample_event,
733 .comm = perf_event__process_comm,
734 .ordered_samples = true,
735 };
736
737 kvm->tool = eops;
738 kvm->session = perf_session__new(kvm->file_name, O_RDONLY, 0, false,
739 &kvm->tool);
740 if (!kvm->session) {
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800741 pr_err("Initializing perf session failed\n");
742 return -EINVAL;
743 }
744
David Ahernde332ac2012-10-02 22:09:53 -0600745 if (!perf_session__has_traces(kvm->session, "kvm record"))
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800746 return -EINVAL;
747
748 /*
749 * Do not use 'isa' recorded in kvm_exit tracepoint since it is not
750 * traced in the old kernel.
751 */
David Ahernde332ac2012-10-02 22:09:53 -0600752 ret = get_cpu_isa(kvm->session);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800753
754 if (ret < 0)
755 return ret;
756
David Ahernde332ac2012-10-02 22:09:53 -0600757 if (ret == 1) {
758 kvm->exit_reasons = vmx_exit_reasons;
759 kvm->exit_reasons_size = ARRAY_SIZE(vmx_exit_reasons);
760 kvm->exit_reasons_isa = "VMX";
761 }
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800762
David Ahernde332ac2012-10-02 22:09:53 -0600763 return perf_session__process_events(kvm->session, &kvm->tool);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800764}
765
766static bool verify_vcpu(int vcpu)
767{
768 if (vcpu != -1 && vcpu < 0) {
769 pr_err("Invalid vcpu:%d.\n", vcpu);
770 return false;
771 }
772
773 return true;
774}
775
Xiao Guangrong37860632012-11-15 14:17:01 +0800776static int kvm_events_report_vcpu(struct perf_kvm_stat *kvm)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800777{
778 int ret = -EINVAL;
David Ahernde332ac2012-10-02 22:09:53 -0600779 int vcpu = kvm->trace_vcpu;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800780
781 if (!verify_vcpu(vcpu))
782 goto exit;
783
David Ahernde332ac2012-10-02 22:09:53 -0600784 if (!select_key(kvm))
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800785 goto exit;
786
David Ahernde332ac2012-10-02 22:09:53 -0600787 if (!register_kvm_events_ops(kvm))
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800788 goto exit;
789
David Ahernde332ac2012-10-02 22:09:53 -0600790 init_kvm_event_record(kvm);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800791 setup_pager();
792
David Ahernde332ac2012-10-02 22:09:53 -0600793 ret = read_events(kvm);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800794 if (ret)
795 goto exit;
796
David Ahernde332ac2012-10-02 22:09:53 -0600797 sort_result(kvm);
798 print_result(kvm);
799
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800800exit:
801 return ret;
802}
803
804static const char * const record_args[] = {
805 "record",
806 "-R",
807 "-f",
808 "-m", "1024",
809 "-c", "1",
810 "-e", "kvm:kvm_entry",
811 "-e", "kvm:kvm_exit",
812 "-e", "kvm:kvm_mmio",
813 "-e", "kvm:kvm_pio",
814};
815
816#define STRDUP_FAIL_EXIT(s) \
817 ({ char *_p; \
818 _p = strdup(s); \
819 if (!_p) \
820 return -ENOMEM; \
821 _p; \
822 })
823
Xiao Guangrong37860632012-11-15 14:17:01 +0800824static int
825kvm_events_record(struct perf_kvm_stat *kvm, int argc, const char **argv)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800826{
827 unsigned int rec_argc, i, j;
828 const char **rec_argv;
829
830 rec_argc = ARRAY_SIZE(record_args) + argc + 2;
831 rec_argv = calloc(rec_argc + 1, sizeof(char *));
832
833 if (rec_argv == NULL)
834 return -ENOMEM;
835
836 for (i = 0; i < ARRAY_SIZE(record_args); i++)
837 rec_argv[i] = STRDUP_FAIL_EXIT(record_args[i]);
838
839 rec_argv[i++] = STRDUP_FAIL_EXIT("-o");
David Ahernde332ac2012-10-02 22:09:53 -0600840 rec_argv[i++] = STRDUP_FAIL_EXIT(kvm->file_name);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800841
842 for (j = 1; j < (unsigned int)argc; j++, i++)
843 rec_argv[i] = argv[j];
844
845 return cmd_record(i, rec_argv, NULL);
846}
847
Xiao Guangrong37860632012-11-15 14:17:01 +0800848static int
849kvm_events_report(struct perf_kvm_stat *kvm, int argc, const char **argv)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800850{
David Ahernde332ac2012-10-02 22:09:53 -0600851 const struct option kvm_events_report_options[] = {
852 OPT_STRING(0, "event", &kvm->report_event, "report event",
853 "event for reporting: vmexit, mmio, ioport"),
854 OPT_INTEGER(0, "vcpu", &kvm->trace_vcpu,
855 "vcpu id to report"),
856 OPT_STRING('k', "key", &kvm->sort_key, "sort-key",
857 "key for sorting: sample(sort by samples number)"
858 " time (sort by avg time)"),
859 OPT_END()
860 };
861
862 const char * const kvm_events_report_usage[] = {
863 "perf kvm stat report [<options>]",
864 NULL
865 };
866
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800867 symbol__init();
868
869 if (argc) {
870 argc = parse_options(argc, argv,
871 kvm_events_report_options,
872 kvm_events_report_usage, 0);
873 if (argc)
874 usage_with_options(kvm_events_report_usage,
875 kvm_events_report_options);
876 }
877
David Ahernde332ac2012-10-02 22:09:53 -0600878 return kvm_events_report_vcpu(kvm);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800879}
880
881static void print_kvm_stat_usage(void)
882{
883 printf("Usage: perf kvm stat <command>\n\n");
884
885 printf("# Available commands:\n");
886 printf("\trecord: record kvm events\n");
887 printf("\treport: report statistical data of kvm events\n");
888
889 printf("\nOtherwise, it is the alias of 'perf stat':\n");
890}
891
Xiao Guangrong37860632012-11-15 14:17:01 +0800892static int kvm_cmd_stat(const char *file_name, int argc, const char **argv)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800893{
Xiao Guangrong37860632012-11-15 14:17:01 +0800894 struct perf_kvm_stat kvm = {
895 .file_name = file_name,
896
897 .trace_vcpu = -1,
898 .report_event = "vmexit",
899 .sort_key = "sample",
900
901 .exit_reasons = svm_exit_reasons,
902 .exit_reasons_size = ARRAY_SIZE(svm_exit_reasons),
903 .exit_reasons_isa = "SVM",
904 };
905
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800906 if (argc == 1) {
907 print_kvm_stat_usage();
908 goto perf_stat;
909 }
910
911 if (!strncmp(argv[1], "rec", 3))
Xiao Guangrong37860632012-11-15 14:17:01 +0800912 return kvm_events_record(&kvm, argc - 1, argv + 1);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800913
914 if (!strncmp(argv[1], "rep", 3))
Xiao Guangrong37860632012-11-15 14:17:01 +0800915 return kvm_events_report(&kvm, argc - 1 , argv + 1);
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800916
917perf_stat:
918 return cmd_stat(argc, argv, NULL);
919}
Xiao Guangrong73210902012-11-19 16:19:21 +0800920#endif
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +0800921
Xiao Guangrong37860632012-11-15 14:17:01 +0800922static int __cmd_record(const char *file_name, int argc, const char **argv)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800923{
924 int rec_argc, i = 0, j;
925 const char **rec_argv;
926
927 rec_argc = argc + 2;
928 rec_argv = calloc(rec_argc + 1, sizeof(char *));
929 rec_argv[i++] = strdup("record");
930 rec_argv[i++] = strdup("-o");
Xiao Guangrong37860632012-11-15 14:17:01 +0800931 rec_argv[i++] = strdup(file_name);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800932 for (j = 1; j < argc; j++, i++)
933 rec_argv[i] = argv[j];
934
935 BUG_ON(i != rec_argc);
936
937 return cmd_record(i, rec_argv, NULL);
938}
939
Xiao Guangrong37860632012-11-15 14:17:01 +0800940static int __cmd_report(const char *file_name, int argc, const char **argv)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800941{
942 int rec_argc, i = 0, j;
943 const char **rec_argv;
944
945 rec_argc = argc + 2;
946 rec_argv = calloc(rec_argc + 1, sizeof(char *));
947 rec_argv[i++] = strdup("report");
948 rec_argv[i++] = strdup("-i");
Xiao Guangrong37860632012-11-15 14:17:01 +0800949 rec_argv[i++] = strdup(file_name);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800950 for (j = 1; j < argc; j++, i++)
951 rec_argv[i] = argv[j];
952
953 BUG_ON(i != rec_argc);
954
955 return cmd_report(i, rec_argv, NULL);
956}
957
Xiao Guangrong37860632012-11-15 14:17:01 +0800958static int
959__cmd_buildid_list(const char *file_name, int argc, const char **argv)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800960{
961 int rec_argc, i = 0, j;
962 const char **rec_argv;
963
964 rec_argc = argc + 2;
965 rec_argv = calloc(rec_argc + 1, sizeof(char *));
966 rec_argv[i++] = strdup("buildid-list");
967 rec_argv[i++] = strdup("-i");
Xiao Guangrong37860632012-11-15 14:17:01 +0800968 rec_argv[i++] = strdup(file_name);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800969 for (j = 1; j < argc; j++, i++)
970 rec_argv[i] = argv[j];
971
972 BUG_ON(i != rec_argc);
973
974 return cmd_buildid_list(i, rec_argv, NULL);
975}
976
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300977int cmd_kvm(int argc, const char **argv, const char *prefix __maybe_unused)
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800978{
Arnaldo Carvalho de Melo20914ce52012-12-19 10:59:29 -0300979 const char *file_name = NULL;
David Ahernde332ac2012-10-02 22:09:53 -0600980 const struct option kvm_options[] = {
Xiao Guangrong37860632012-11-15 14:17:01 +0800981 OPT_STRING('i', "input", &file_name, "file",
David Ahernde332ac2012-10-02 22:09:53 -0600982 "Input file name"),
Xiao Guangrong37860632012-11-15 14:17:01 +0800983 OPT_STRING('o', "output", &file_name, "file",
David Ahernde332ac2012-10-02 22:09:53 -0600984 "Output file name"),
985 OPT_BOOLEAN(0, "guest", &perf_guest,
986 "Collect guest os data"),
987 OPT_BOOLEAN(0, "host", &perf_host,
988 "Collect host os data"),
989 OPT_STRING(0, "guestmount", &symbol_conf.guestmount, "directory",
990 "guest mount directory under which every guest os"
991 " instance has a subdir"),
992 OPT_STRING(0, "guestvmlinux", &symbol_conf.default_guest_vmlinux_name,
993 "file", "file saving guest os vmlinux"),
994 OPT_STRING(0, "guestkallsyms", &symbol_conf.default_guest_kallsyms,
995 "file", "file saving guest os /proc/kallsyms"),
996 OPT_STRING(0, "guestmodules", &symbol_conf.default_guest_modules,
997 "file", "file saving guest os /proc/modules"),
998 OPT_END()
999 };
1000
1001
1002 const char * const kvm_usage[] = {
1003 "perf kvm [<options>] {top|record|report|diff|buildid-list|stat}",
1004 NULL
1005 };
1006
Joerg Roedel1aed2672012-01-04 17:54:20 +01001007 perf_host = 0;
1008 perf_guest = 1;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001009
1010 argc = parse_options(argc, argv, kvm_options, kvm_usage,
1011 PARSE_OPT_STOP_AT_NON_OPTION);
1012 if (!argc)
1013 usage_with_options(kvm_usage, kvm_options);
1014
1015 if (!perf_host)
1016 perf_guest = 1;
1017
Xiao Guangrong37860632012-11-15 14:17:01 +08001018 if (!file_name) {
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001019 if (perf_host && !perf_guest)
Xiao Guangrong37860632012-11-15 14:17:01 +08001020 file_name = strdup("perf.data.host");
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001021 else if (!perf_host && perf_guest)
Xiao Guangrong37860632012-11-15 14:17:01 +08001022 file_name = strdup("perf.data.guest");
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001023 else
Xiao Guangrong37860632012-11-15 14:17:01 +08001024 file_name = strdup("perf.data.kvm");
David Ahernde332ac2012-10-02 22:09:53 -06001025
Xiao Guangrong37860632012-11-15 14:17:01 +08001026 if (!file_name) {
David Ahernde332ac2012-10-02 22:09:53 -06001027 pr_err("Failed to allocate memory for filename\n");
1028 return -ENOMEM;
1029 }
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001030 }
1031
1032 if (!strncmp(argv[0], "rec", 3))
Xiao Guangrong37860632012-11-15 14:17:01 +08001033 return __cmd_record(file_name, argc, argv);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001034 else if (!strncmp(argv[0], "rep", 3))
Xiao Guangrong37860632012-11-15 14:17:01 +08001035 return __cmd_report(file_name, argc, argv);
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001036 else if (!strncmp(argv[0], "diff", 4))
1037 return cmd_diff(argc, argv, NULL);
1038 else if (!strncmp(argv[0], "top", 3))
1039 return cmd_top(argc, argv, NULL);
1040 else if (!strncmp(argv[0], "buildid-list", 12))
Xiao Guangrong37860632012-11-15 14:17:01 +08001041 return __cmd_buildid_list(file_name, argc, argv);
Xiao Guangrong73210902012-11-19 16:19:21 +08001042#if defined(__i386__) || defined(__x86_64__)
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +08001043 else if (!strncmp(argv[0], "stat", 4))
Xiao Guangrong37860632012-11-15 14:17:01 +08001044 return kvm_cmd_stat(file_name, argc, argv);
Xiao Guangrong73210902012-11-19 16:19:21 +08001045#endif
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08001046 else
1047 usage_with_options(kvm_usage, kvm_options);
1048
1049 return 0;
1050}