blob: adcb563ec4d28e7999c89bb17aa107bfe2ead549 [file] [log] [blame]
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001#include "builtin.h"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02002#include "perf.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +02003
4#include "util/util.h"
5#include "util/cache.h"
6#include "util/symbol.h"
7#include "util/thread.h"
8#include "util/header.h"
9
10#include "util/parse-options.h"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020011#include "util/trace-event.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020012
Ingo Molnar0a02ad92009-09-11 12:12:54 +020013#include "util/debug.h"
14
Ingo Molnarec156762009-09-11 12:12:54 +020015#include <sys/types.h>
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020016#include <sys/prctl.h>
Ingo Molnar0a02ad92009-09-11 12:12:54 +020017
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020018#include <semaphore.h>
19#include <pthread.h>
20#include <math.h>
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +020021
Ingo Molnarec156762009-09-11 12:12:54 +020022static char const *input_name = "perf.data";
23static int input;
24static unsigned long page_size;
25static unsigned long mmap_window = 32;
Ingo Molnar0a02ad92009-09-11 12:12:54 +020026
Ingo Molnarec156762009-09-11 12:12:54 +020027static unsigned long total_comm = 0;
Ingo Molnar0a02ad92009-09-11 12:12:54 +020028
Ingo Molnarec156762009-09-11 12:12:54 +020029static struct rb_root threads;
30static struct thread *last_match;
Ingo Molnar0a02ad92009-09-11 12:12:54 +020031
Ingo Molnarec156762009-09-11 12:12:54 +020032static struct perf_header *header;
33static u64 sample_type;
Ingo Molnar0a02ad92009-09-11 12:12:54 +020034
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +020035static char default_sort_order[] = "avg, max, switch, runtime";
36static char *sort_order = default_sort_order;
37
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020038#define PR_SET_NAME 15 /* Set process name */
39#define MAX_CPUS 4096
Ingo Molnar0a02ad92009-09-11 12:12:54 +020040
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020041#define BUG_ON(x) assert(!(x))
Ingo Molnarec156762009-09-11 12:12:54 +020042
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020043static u64 run_measurement_overhead;
44static u64 sleep_measurement_overhead;
Ingo Molnarec156762009-09-11 12:12:54 +020045
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020046#define COMM_LEN 20
47#define SYM_LEN 129
Ingo Molnarec156762009-09-11 12:12:54 +020048
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020049#define MAX_PID 65536
Ingo Molnarec156762009-09-11 12:12:54 +020050
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020051static unsigned long nr_tasks;
Ingo Molnarec156762009-09-11 12:12:54 +020052
mingo39aeb522009-09-14 20:04:48 +020053struct sched_atom;
Ingo Molnarec156762009-09-11 12:12:54 +020054
55struct task_desc {
56 unsigned long nr;
57 unsigned long pid;
58 char comm[COMM_LEN];
59
60 unsigned long nr_events;
61 unsigned long curr_event;
mingo39aeb522009-09-14 20:04:48 +020062 struct sched_atom **atoms;
Ingo Molnarec156762009-09-11 12:12:54 +020063
64 pthread_t thread;
65 sem_t sleep_sem;
66
67 sem_t ready_for_work;
68 sem_t work_done_sem;
69
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020070 u64 cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +020071};
72
73enum sched_event_type {
74 SCHED_EVENT_RUN,
75 SCHED_EVENT_SLEEP,
76 SCHED_EVENT_WAKEUP,
77};
78
mingo39aeb522009-09-14 20:04:48 +020079struct sched_atom {
Ingo Molnarec156762009-09-11 12:12:54 +020080 enum sched_event_type type;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020081 u64 timestamp;
82 u64 duration;
Ingo Molnarec156762009-09-11 12:12:54 +020083 unsigned long nr;
84 int specific_wait;
85 sem_t *wait_sem;
86 struct task_desc *wakee;
87};
88
89static struct task_desc *pid_to_task[MAX_PID];
90
91static struct task_desc **tasks;
92
93static pthread_mutex_t start_work_mutex = PTHREAD_MUTEX_INITIALIZER;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020094static u64 start_time;
Ingo Molnarec156762009-09-11 12:12:54 +020095
96static pthread_mutex_t work_done_wait_mutex = PTHREAD_MUTEX_INITIALIZER;
97
98static unsigned long nr_run_events;
99static unsigned long nr_sleep_events;
100static unsigned long nr_wakeup_events;
101
102static unsigned long nr_sleep_corrections;
103static unsigned long nr_run_events_optimized;
104
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200105static unsigned long targetless_wakeups;
106static unsigned long multitarget_wakeups;
107
108static u64 cpu_usage;
109static u64 runavg_cpu_usage;
110static u64 parent_cpu_usage;
111static u64 runavg_parent_cpu_usage;
112
113static unsigned long nr_runs;
114static u64 sum_runtime;
115static u64 sum_fluct;
116static u64 run_avg;
117
118static unsigned long replay_repeat = 10;
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200119static unsigned long nr_timestamps;
120static unsigned long unordered_timestamps;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200121
122#define TASK_STATE_TO_CHAR_STR "RSDTtZX"
123
124enum thread_state {
125 THREAD_SLEEPING = 0,
126 THREAD_WAIT_CPU,
127 THREAD_SCHED_IN,
128 THREAD_IGNORE
129};
130
131struct work_atom {
132 struct list_head list;
133 enum thread_state state;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200134 u64 sched_out_time;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200135 u64 wake_up_time;
136 u64 sched_in_time;
137 u64 runtime;
138};
139
mingo39aeb522009-09-14 20:04:48 +0200140struct work_atoms {
141 struct list_head work_list;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200142 struct thread *thread;
143 struct rb_node node;
144 u64 max_lat;
145 u64 total_lat;
146 u64 nb_atoms;
147 u64 total_runtime;
148};
149
mingo39aeb522009-09-14 20:04:48 +0200150typedef int (*sort_fn_t)(struct work_atoms *, struct work_atoms *);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200151
152static struct rb_root atom_root, sorted_atom_root;
153
154static u64 all_runtime;
155static u64 all_count;
156
157static int read_events(void);
158
159
160static u64 get_nsecs(void)
161{
162 struct timespec ts;
163
164 clock_gettime(CLOCK_MONOTONIC, &ts);
165
166 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
167}
168
169static void burn_nsecs(u64 nsecs)
170{
171 u64 T0 = get_nsecs(), T1;
172
173 do {
174 T1 = get_nsecs();
175 } while (T1 + run_measurement_overhead < T0 + nsecs);
176}
177
178static void sleep_nsecs(u64 nsecs)
179{
180 struct timespec ts;
181
182 ts.tv_nsec = nsecs % 999999999;
183 ts.tv_sec = nsecs / 999999999;
184
185 nanosleep(&ts, NULL);
186}
187
188static void calibrate_run_measurement_overhead(void)
189{
190 u64 T0, T1, delta, min_delta = 1000000000ULL;
191 int i;
192
193 for (i = 0; i < 10; i++) {
194 T0 = get_nsecs();
195 burn_nsecs(0);
196 T1 = get_nsecs();
197 delta = T1-T0;
198 min_delta = min(min_delta, delta);
199 }
200 run_measurement_overhead = min_delta;
201
202 printf("run measurement overhead: %Ld nsecs\n", min_delta);
203}
204
205static void calibrate_sleep_measurement_overhead(void)
206{
207 u64 T0, T1, delta, min_delta = 1000000000ULL;
208 int i;
209
210 for (i = 0; i < 10; i++) {
211 T0 = get_nsecs();
212 sleep_nsecs(10000);
213 T1 = get_nsecs();
214 delta = T1-T0;
215 min_delta = min(min_delta, delta);
216 }
217 min_delta -= 10000;
218 sleep_measurement_overhead = min_delta;
219
220 printf("sleep measurement overhead: %Ld nsecs\n", min_delta);
221}
222
mingo39aeb522009-09-14 20:04:48 +0200223static struct sched_atom *
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200224get_new_event(struct task_desc *task, u64 timestamp)
Ingo Molnarec156762009-09-11 12:12:54 +0200225{
mingo39aeb522009-09-14 20:04:48 +0200226 struct sched_atom *event = calloc(1, sizeof(*event));
Ingo Molnarec156762009-09-11 12:12:54 +0200227 unsigned long idx = task->nr_events;
228 size_t size;
229
230 event->timestamp = timestamp;
231 event->nr = idx;
232
233 task->nr_events++;
mingo39aeb522009-09-14 20:04:48 +0200234 size = sizeof(struct sched_atom *) * task->nr_events;
235 task->atoms = realloc(task->atoms, size);
236 BUG_ON(!task->atoms);
Ingo Molnarec156762009-09-11 12:12:54 +0200237
mingo39aeb522009-09-14 20:04:48 +0200238 task->atoms[idx] = event;
Ingo Molnarec156762009-09-11 12:12:54 +0200239
240 return event;
241}
242
mingo39aeb522009-09-14 20:04:48 +0200243static struct sched_atom *last_event(struct task_desc *task)
Ingo Molnarec156762009-09-11 12:12:54 +0200244{
245 if (!task->nr_events)
246 return NULL;
247
mingo39aeb522009-09-14 20:04:48 +0200248 return task->atoms[task->nr_events - 1];
Ingo Molnarec156762009-09-11 12:12:54 +0200249}
250
251static void
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200252add_sched_event_run(struct task_desc *task, u64 timestamp, u64 duration)
Ingo Molnarec156762009-09-11 12:12:54 +0200253{
mingo39aeb522009-09-14 20:04:48 +0200254 struct sched_atom *event, *curr_event = last_event(task);
Ingo Molnarec156762009-09-11 12:12:54 +0200255
256 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200257 * optimize an existing RUN event by merging this one
258 * to it:
259 */
Ingo Molnarec156762009-09-11 12:12:54 +0200260 if (curr_event && curr_event->type == SCHED_EVENT_RUN) {
261 nr_run_events_optimized++;
262 curr_event->duration += duration;
263 return;
264 }
265
266 event = get_new_event(task, timestamp);
267
268 event->type = SCHED_EVENT_RUN;
269 event->duration = duration;
270
271 nr_run_events++;
272}
273
Ingo Molnarec156762009-09-11 12:12:54 +0200274static void
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200275add_sched_event_wakeup(struct task_desc *task, u64 timestamp,
Ingo Molnarec156762009-09-11 12:12:54 +0200276 struct task_desc *wakee)
277{
mingo39aeb522009-09-14 20:04:48 +0200278 struct sched_atom *event, *wakee_event;
Ingo Molnarec156762009-09-11 12:12:54 +0200279
280 event = get_new_event(task, timestamp);
281 event->type = SCHED_EVENT_WAKEUP;
282 event->wakee = wakee;
283
284 wakee_event = last_event(wakee);
285 if (!wakee_event || wakee_event->type != SCHED_EVENT_SLEEP) {
286 targetless_wakeups++;
287 return;
288 }
289 if (wakee_event->wait_sem) {
290 multitarget_wakeups++;
291 return;
292 }
293
294 wakee_event->wait_sem = calloc(1, sizeof(*wakee_event->wait_sem));
295 sem_init(wakee_event->wait_sem, 0, 0);
296 wakee_event->specific_wait = 1;
297 event->wait_sem = wakee_event->wait_sem;
298
299 nr_wakeup_events++;
300}
301
302static void
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200303add_sched_event_sleep(struct task_desc *task, u64 timestamp,
Ingo Molnarad236fd2009-09-11 12:12:54 +0200304 u64 task_state __used)
Ingo Molnarec156762009-09-11 12:12:54 +0200305{
mingo39aeb522009-09-14 20:04:48 +0200306 struct sched_atom *event = get_new_event(task, timestamp);
Ingo Molnarec156762009-09-11 12:12:54 +0200307
308 event->type = SCHED_EVENT_SLEEP;
309
310 nr_sleep_events++;
311}
312
313static struct task_desc *register_pid(unsigned long pid, const char *comm)
314{
315 struct task_desc *task;
316
317 BUG_ON(pid >= MAX_PID);
318
319 task = pid_to_task[pid];
320
321 if (task)
322 return task;
323
324 task = calloc(1, sizeof(*task));
325 task->pid = pid;
326 task->nr = nr_tasks;
327 strcpy(task->comm, comm);
328 /*
329 * every task starts in sleeping state - this gets ignored
330 * if there's no wakeup pointing to this sleep state:
331 */
332 add_sched_event_sleep(task, 0, 0);
333
334 pid_to_task[pid] = task;
335 nr_tasks++;
336 tasks = realloc(tasks, nr_tasks*sizeof(struct task_task *));
337 BUG_ON(!tasks);
338 tasks[task->nr] = task;
339
Ingo Molnarad236fd2009-09-11 12:12:54 +0200340 if (verbose)
341 printf("registered task #%ld, PID %ld (%s)\n", nr_tasks, pid, comm);
Ingo Molnarec156762009-09-11 12:12:54 +0200342
343 return task;
344}
345
346
Ingo Molnarec156762009-09-11 12:12:54 +0200347static void print_task_traces(void)
348{
349 struct task_desc *task;
350 unsigned long i;
351
352 for (i = 0; i < nr_tasks; i++) {
353 task = tasks[i];
Ingo Molnarad236fd2009-09-11 12:12:54 +0200354 printf("task %6ld (%20s:%10ld), nr_events: %ld\n",
Ingo Molnarec156762009-09-11 12:12:54 +0200355 task->nr, task->comm, task->pid, task->nr_events);
356 }
357}
358
359static void add_cross_task_wakeups(void)
360{
361 struct task_desc *task1, *task2;
362 unsigned long i, j;
363
364 for (i = 0; i < nr_tasks; i++) {
365 task1 = tasks[i];
366 j = i + 1;
367 if (j == nr_tasks)
368 j = 0;
369 task2 = tasks[j];
370 add_sched_event_wakeup(task1, 0, task2);
371 }
372}
373
374static void
mingo39aeb522009-09-14 20:04:48 +0200375process_sched_event(struct task_desc *this_task __used, struct sched_atom *atom)
Ingo Molnarec156762009-09-11 12:12:54 +0200376{
377 int ret = 0;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200378 u64 now;
Ingo Molnarec156762009-09-11 12:12:54 +0200379 long long delta;
380
381 now = get_nsecs();
mingo39aeb522009-09-14 20:04:48 +0200382 delta = start_time + atom->timestamp - now;
Ingo Molnarec156762009-09-11 12:12:54 +0200383
mingo39aeb522009-09-14 20:04:48 +0200384 switch (atom->type) {
Ingo Molnarec156762009-09-11 12:12:54 +0200385 case SCHED_EVENT_RUN:
mingo39aeb522009-09-14 20:04:48 +0200386 burn_nsecs(atom->duration);
Ingo Molnarec156762009-09-11 12:12:54 +0200387 break;
388 case SCHED_EVENT_SLEEP:
mingo39aeb522009-09-14 20:04:48 +0200389 if (atom->wait_sem)
390 ret = sem_wait(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200391 BUG_ON(ret);
392 break;
393 case SCHED_EVENT_WAKEUP:
mingo39aeb522009-09-14 20:04:48 +0200394 if (atom->wait_sem)
395 ret = sem_post(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200396 BUG_ON(ret);
397 break;
398 default:
399 BUG_ON(1);
400 }
401}
402
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200403static u64 get_cpu_usage_nsec_parent(void)
Ingo Molnarec156762009-09-11 12:12:54 +0200404{
405 struct rusage ru;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200406 u64 sum;
Ingo Molnarec156762009-09-11 12:12:54 +0200407 int err;
408
409 err = getrusage(RUSAGE_SELF, &ru);
410 BUG_ON(err);
411
412 sum = ru.ru_utime.tv_sec*1e9 + ru.ru_utime.tv_usec*1e3;
413 sum += ru.ru_stime.tv_sec*1e9 + ru.ru_stime.tv_usec*1e3;
414
415 return sum;
416}
417
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200418static u64 get_cpu_usage_nsec_self(void)
Ingo Molnarec156762009-09-11 12:12:54 +0200419{
420 char filename [] = "/proc/1234567890/sched";
421 unsigned long msecs, nsecs;
422 char *line = NULL;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200423 u64 total = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200424 size_t len = 0;
425 ssize_t chars;
426 FILE *file;
427 int ret;
428
429 sprintf(filename, "/proc/%d/sched", getpid());
430 file = fopen(filename, "r");
431 BUG_ON(!file);
432
433 while ((chars = getline(&line, &len, file)) != -1) {
Ingo Molnarec156762009-09-11 12:12:54 +0200434 ret = sscanf(line, "se.sum_exec_runtime : %ld.%06ld\n",
435 &msecs, &nsecs);
436 if (ret == 2) {
437 total = msecs*1e6 + nsecs;
Ingo Molnarec156762009-09-11 12:12:54 +0200438 break;
439 }
440 }
441 if (line)
442 free(line);
443 fclose(file);
444
445 return total;
446}
447
448static void *thread_func(void *ctx)
449{
450 struct task_desc *this_task = ctx;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200451 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200452 unsigned long i, ret;
453 char comm2[22];
454
Ingo Molnarec156762009-09-11 12:12:54 +0200455 sprintf(comm2, ":%s", this_task->comm);
456 prctl(PR_SET_NAME, comm2);
457
458again:
459 ret = sem_post(&this_task->ready_for_work);
460 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200461 ret = pthread_mutex_lock(&start_work_mutex);
462 BUG_ON(ret);
463 ret = pthread_mutex_unlock(&start_work_mutex);
464 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200465
466 cpu_usage_0 = get_cpu_usage_nsec_self();
467
468 for (i = 0; i < this_task->nr_events; i++) {
469 this_task->curr_event = i;
mingo39aeb522009-09-14 20:04:48 +0200470 process_sched_event(this_task, this_task->atoms[i]);
Ingo Molnarec156762009-09-11 12:12:54 +0200471 }
472
473 cpu_usage_1 = get_cpu_usage_nsec_self();
474 this_task->cpu_usage = cpu_usage_1 - cpu_usage_0;
475
Ingo Molnarec156762009-09-11 12:12:54 +0200476 ret = sem_post(&this_task->work_done_sem);
477 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200478
479 ret = pthread_mutex_lock(&work_done_wait_mutex);
480 BUG_ON(ret);
481 ret = pthread_mutex_unlock(&work_done_wait_mutex);
482 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200483
484 goto again;
485}
486
487static void create_tasks(void)
488{
489 struct task_desc *task;
490 pthread_attr_t attr;
491 unsigned long i;
492 int err;
493
494 err = pthread_attr_init(&attr);
495 BUG_ON(err);
496 err = pthread_attr_setstacksize(&attr, (size_t)(16*1024));
497 BUG_ON(err);
498 err = pthread_mutex_lock(&start_work_mutex);
499 BUG_ON(err);
500 err = pthread_mutex_lock(&work_done_wait_mutex);
501 BUG_ON(err);
502 for (i = 0; i < nr_tasks; i++) {
503 task = tasks[i];
504 sem_init(&task->sleep_sem, 0, 0);
505 sem_init(&task->ready_for_work, 0, 0);
506 sem_init(&task->work_done_sem, 0, 0);
507 task->curr_event = 0;
508 err = pthread_create(&task->thread, &attr, thread_func, task);
509 BUG_ON(err);
510 }
511}
512
Ingo Molnarec156762009-09-11 12:12:54 +0200513static void wait_for_tasks(void)
514{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200515 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200516 struct task_desc *task;
517 unsigned long i, ret;
518
Ingo Molnarec156762009-09-11 12:12:54 +0200519 start_time = get_nsecs();
Ingo Molnarec156762009-09-11 12:12:54 +0200520 cpu_usage = 0;
521 pthread_mutex_unlock(&work_done_wait_mutex);
522
523 for (i = 0; i < nr_tasks; i++) {
524 task = tasks[i];
525 ret = sem_wait(&task->ready_for_work);
526 BUG_ON(ret);
527 sem_init(&task->ready_for_work, 0, 0);
528 }
529 ret = pthread_mutex_lock(&work_done_wait_mutex);
530 BUG_ON(ret);
531
532 cpu_usage_0 = get_cpu_usage_nsec_parent();
533
534 pthread_mutex_unlock(&start_work_mutex);
535
Ingo Molnarec156762009-09-11 12:12:54 +0200536 for (i = 0; i < nr_tasks; i++) {
537 task = tasks[i];
538 ret = sem_wait(&task->work_done_sem);
539 BUG_ON(ret);
540 sem_init(&task->work_done_sem, 0, 0);
541 cpu_usage += task->cpu_usage;
542 task->cpu_usage = 0;
543 }
544
545 cpu_usage_1 = get_cpu_usage_nsec_parent();
546 if (!runavg_cpu_usage)
547 runavg_cpu_usage = cpu_usage;
548 runavg_cpu_usage = (runavg_cpu_usage*9 + cpu_usage)/10;
549
550 parent_cpu_usage = cpu_usage_1 - cpu_usage_0;
551 if (!runavg_parent_cpu_usage)
552 runavg_parent_cpu_usage = parent_cpu_usage;
553 runavg_parent_cpu_usage = (runavg_parent_cpu_usage*9 +
554 parent_cpu_usage)/10;
555
556 ret = pthread_mutex_lock(&start_work_mutex);
557 BUG_ON(ret);
558
559 for (i = 0; i < nr_tasks; i++) {
560 task = tasks[i];
561 sem_init(&task->sleep_sem, 0, 0);
562 task->curr_event = 0;
563 }
564}
565
Ingo Molnarec156762009-09-11 12:12:54 +0200566static void run_one_test(void)
567{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200568 u64 T0, T1, delta, avg_delta, fluct, std_dev;
Ingo Molnarec156762009-09-11 12:12:54 +0200569
570 T0 = get_nsecs();
571 wait_for_tasks();
572 T1 = get_nsecs();
573
574 delta = T1 - T0;
575 sum_runtime += delta;
576 nr_runs++;
577
578 avg_delta = sum_runtime / nr_runs;
579 if (delta < avg_delta)
580 fluct = avg_delta - delta;
581 else
582 fluct = delta - avg_delta;
583 sum_fluct += fluct;
584 std_dev = sum_fluct / nr_runs / sqrt(nr_runs);
585 if (!run_avg)
586 run_avg = delta;
587 run_avg = (run_avg*9 + delta)/10;
588
Ingo Molnarad236fd2009-09-11 12:12:54 +0200589 printf("#%-3ld: %0.3f, ",
Ingo Molnarec156762009-09-11 12:12:54 +0200590 nr_runs, (double)delta/1000000.0);
591
Ingo Molnarad236fd2009-09-11 12:12:54 +0200592 printf("ravg: %0.2f, ",
Ingo Molnarec156762009-09-11 12:12:54 +0200593 (double)run_avg/1e6);
594
Ingo Molnarad236fd2009-09-11 12:12:54 +0200595 printf("cpu: %0.2f / %0.2f",
Ingo Molnarec156762009-09-11 12:12:54 +0200596 (double)cpu_usage/1e6, (double)runavg_cpu_usage/1e6);
597
598#if 0
599 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200600 * rusage statistics done by the parent, these are less
601 * accurate than the sum_exec_runtime based statistics:
602 */
Ingo Molnarad236fd2009-09-11 12:12:54 +0200603 printf(" [%0.2f / %0.2f]",
Ingo Molnarec156762009-09-11 12:12:54 +0200604 (double)parent_cpu_usage/1e6,
605 (double)runavg_parent_cpu_usage/1e6);
606#endif
607
Ingo Molnarad236fd2009-09-11 12:12:54 +0200608 printf("\n");
Ingo Molnarec156762009-09-11 12:12:54 +0200609
610 if (nr_sleep_corrections)
Ingo Molnarad236fd2009-09-11 12:12:54 +0200611 printf(" (%ld sleep corrections)\n", nr_sleep_corrections);
Ingo Molnarec156762009-09-11 12:12:54 +0200612 nr_sleep_corrections = 0;
613}
614
615static void test_calibrations(void)
616{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200617 u64 T0, T1;
Ingo Molnarec156762009-09-11 12:12:54 +0200618
619 T0 = get_nsecs();
620 burn_nsecs(1e6);
621 T1 = get_nsecs();
622
Ingo Molnarad236fd2009-09-11 12:12:54 +0200623 printf("the run test took %Ld nsecs\n", T1-T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200624
625 T0 = get_nsecs();
626 sleep_nsecs(1e6);
627 T1 = get_nsecs();
628
Ingo Molnarad236fd2009-09-11 12:12:54 +0200629 printf("the sleep test took %Ld nsecs\n", T1-T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200630}
631
Ingo Molnar46f392c2009-09-12 10:08:34 +0200632static void __cmd_replay(void)
633{
Ingo Molnarf2858d82009-09-11 12:12:54 +0200634 unsigned long i;
Ingo Molnar46f392c2009-09-12 10:08:34 +0200635
636 calibrate_run_measurement_overhead();
637 calibrate_sleep_measurement_overhead();
638
639 test_calibrations();
640
641 read_events();
642
643 printf("nr_run_events: %ld\n", nr_run_events);
644 printf("nr_sleep_events: %ld\n", nr_sleep_events);
645 printf("nr_wakeup_events: %ld\n", nr_wakeup_events);
646
647 if (targetless_wakeups)
648 printf("target-less wakeups: %ld\n", targetless_wakeups);
649 if (multitarget_wakeups)
650 printf("multi-target wakeups: %ld\n", multitarget_wakeups);
651 if (nr_run_events_optimized)
mingo39aeb522009-09-14 20:04:48 +0200652 printf("run atoms optimized: %ld\n",
Ingo Molnar46f392c2009-09-12 10:08:34 +0200653 nr_run_events_optimized);
654
655 print_task_traces();
656 add_cross_task_wakeups();
657
658 create_tasks();
659 printf("------------------------------------------------------------\n");
Ingo Molnarf2858d82009-09-11 12:12:54 +0200660 for (i = 0; i < replay_repeat; i++)
Ingo Molnar46f392c2009-09-12 10:08:34 +0200661 run_one_test();
662}
663
Ingo Molnar0a02ad92009-09-11 12:12:54 +0200664static int
665process_comm_event(event_t *event, unsigned long offset, unsigned long head)
666{
667 struct thread *thread;
668
669 thread = threads__findnew(event->comm.pid, &threads, &last_match);
670
671 dump_printf("%p [%p]: PERF_EVENT_COMM: %s:%d\n",
672 (void *)(offset + head),
673 (void *)(long)(event->header.size),
674 event->comm.comm, event->comm.pid);
675
676 if (thread == NULL ||
677 thread__set_comm(thread, event->comm.comm)) {
678 dump_printf("problem processing PERF_EVENT_COMM, skipping event.\n");
679 return -1;
680 }
681 total_comm++;
682
683 return 0;
684}
685
Frederic Weisbecker46538812009-09-12 02:43:45 +0200686
687struct raw_event_sample {
688 u32 size;
689 char data[0];
690};
691
692#define FILL_FIELD(ptr, field, event, data) \
693 ptr.field = (typeof(ptr.field)) raw_field_value(event, #field, data)
694
695#define FILL_ARRAY(ptr, array, event, data) \
696do { \
697 void *__array = raw_field_ptr(event, #array, data); \
698 memcpy(ptr.array, __array, sizeof(ptr.array)); \
699} while(0)
700
701#define FILL_COMMON_FIELDS(ptr, event, data) \
702do { \
703 FILL_FIELD(ptr, common_type, event, data); \
704 FILL_FIELD(ptr, common_flags, event, data); \
705 FILL_FIELD(ptr, common_preempt_count, event, data); \
706 FILL_FIELD(ptr, common_pid, event, data); \
707 FILL_FIELD(ptr, common_tgid, event, data); \
708} while (0)
709
Ingo Molnarfbf94822009-09-11 12:12:54 +0200710
Ingo Molnarec156762009-09-11 12:12:54 +0200711
Ingo Molnarfbf94822009-09-11 12:12:54 +0200712struct trace_switch_event {
713 u32 size;
714
715 u16 common_type;
716 u8 common_flags;
717 u8 common_preempt_count;
718 u32 common_pid;
719 u32 common_tgid;
720
721 char prev_comm[16];
722 u32 prev_pid;
723 u32 prev_prio;
724 u64 prev_state;
725 char next_comm[16];
726 u32 next_pid;
727 u32 next_prio;
728};
729
mingo39aeb522009-09-14 20:04:48 +0200730struct trace_runtime_event {
731 u32 size;
732
733 u16 common_type;
734 u8 common_flags;
735 u8 common_preempt_count;
736 u32 common_pid;
737 u32 common_tgid;
738
739 char comm[16];
740 u32 pid;
741 u64 runtime;
742 u64 vruntime;
743};
Ingo Molnarfbf94822009-09-11 12:12:54 +0200744
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200745struct trace_wakeup_event {
746 u32 size;
747
748 u16 common_type;
749 u8 common_flags;
750 u8 common_preempt_count;
751 u32 common_pid;
752 u32 common_tgid;
753
754 char comm[16];
755 u32 pid;
756
757 u32 prio;
758 u32 success;
759 u32 cpu;
760};
761
762struct trace_fork_event {
763 u32 size;
764
765 u16 common_type;
766 u8 common_flags;
767 u8 common_preempt_count;
768 u32 common_pid;
769 u32 common_tgid;
770
771 char parent_comm[16];
772 u32 parent_pid;
773 char child_comm[16];
774 u32 child_pid;
775};
776
777struct trace_sched_handler {
778 void (*switch_event)(struct trace_switch_event *,
779 struct event *,
780 int cpu,
781 u64 timestamp,
782 struct thread *thread);
783
mingo39aeb522009-09-14 20:04:48 +0200784 void (*runtime_event)(struct trace_runtime_event *,
785 struct event *,
786 int cpu,
787 u64 timestamp,
788 struct thread *thread);
789
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200790 void (*wakeup_event)(struct trace_wakeup_event *,
791 struct event *,
792 int cpu,
793 u64 timestamp,
794 struct thread *thread);
795
796 void (*fork_event)(struct trace_fork_event *,
797 struct event *,
798 int cpu,
799 u64 timestamp,
800 struct thread *thread);
801};
802
Ingo Molnarfbf94822009-09-11 12:12:54 +0200803
804static void
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200805replay_wakeup_event(struct trace_wakeup_event *wakeup_event,
806 struct event *event,
807 int cpu __used,
808 u64 timestamp __used,
809 struct thread *thread __used)
Ingo Molnarec156762009-09-11 12:12:54 +0200810{
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200811 struct task_desc *waker, *wakee;
812
813 if (verbose) {
814 printf("sched_wakeup event %p\n", event);
815
816 printf(" ... pid %d woke up %s/%d\n",
817 wakeup_event->common_pid,
818 wakeup_event->comm,
819 wakeup_event->pid);
820 }
821
822 waker = register_pid(wakeup_event->common_pid, "<unknown>");
823 wakee = register_pid(wakeup_event->pid, wakeup_event->comm);
824
825 add_sched_event_wakeup(waker, timestamp, wakee);
826}
827
Ingo Molnard1153382009-09-14 18:22:53 +0200828static u64 cpu_last_switched[MAX_CPUS];
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200829
830static void
831replay_switch_event(struct trace_switch_event *switch_event,
832 struct event *event,
833 int cpu,
834 u64 timestamp,
835 struct thread *thread __used)
836{
Ingo Molnarfbf94822009-09-11 12:12:54 +0200837 struct task_desc *prev, *next;
838 u64 timestamp0;
839 s64 delta;
840
Ingo Molnarad236fd2009-09-11 12:12:54 +0200841 if (verbose)
842 printf("sched_switch event %p\n", event);
843
Ingo Molnarfbf94822009-09-11 12:12:54 +0200844 if (cpu >= MAX_CPUS || cpu < 0)
845 return;
846
847 timestamp0 = cpu_last_switched[cpu];
848 if (timestamp0)
849 delta = timestamp - timestamp0;
850 else
851 delta = 0;
852
853 if (delta < 0)
854 die("hm, delta: %Ld < 0 ?\n", delta);
855
Ingo Molnarad236fd2009-09-11 12:12:54 +0200856 if (verbose) {
857 printf(" ... switch from %s/%d to %s/%d [ran %Ld nsecs]\n",
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200858 switch_event->prev_comm, switch_event->prev_pid,
859 switch_event->next_comm, switch_event->next_pid,
Ingo Molnarad236fd2009-09-11 12:12:54 +0200860 delta);
861 }
Ingo Molnarfbf94822009-09-11 12:12:54 +0200862
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200863 prev = register_pid(switch_event->prev_pid, switch_event->prev_comm);
864 next = register_pid(switch_event->next_pid, switch_event->next_comm);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200865
866 cpu_last_switched[cpu] = timestamp;
867
868 add_sched_event_run(prev, timestamp, delta);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200869 add_sched_event_sleep(prev, timestamp, switch_event->prev_state);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200870}
871
Ingo Molnarfbf94822009-09-11 12:12:54 +0200872
873static void
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200874replay_fork_event(struct trace_fork_event *fork_event,
875 struct event *event,
876 int cpu __used,
877 u64 timestamp __used,
878 struct thread *thread __used)
879{
880 if (verbose) {
881 printf("sched_fork event %p\n", event);
882 printf("... parent: %s/%d\n", fork_event->parent_comm, fork_event->parent_pid);
883 printf("... child: %s/%d\n", fork_event->child_comm, fork_event->child_pid);
884 }
885 register_pid(fork_event->parent_pid, fork_event->parent_comm);
886 register_pid(fork_event->child_pid, fork_event->child_comm);
887}
888
889static struct trace_sched_handler replay_ops = {
Ingo Molnarea92ed52009-09-12 10:08:34 +0200890 .wakeup_event = replay_wakeup_event,
891 .switch_event = replay_switch_event,
892 .fork_event = replay_fork_event,
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200893};
894
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200895struct sort_dimension {
896 const char *name;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200897 sort_fn_t cmp;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200898 struct list_head list;
899};
900
901static LIST_HEAD(cmp_pid);
902
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200903static int
mingo39aeb522009-09-14 20:04:48 +0200904thread_lat_cmp(struct list_head *list, struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200905{
906 struct sort_dimension *sort;
907 int ret = 0;
908
Ingo Molnarb5fae122009-09-11 12:12:54 +0200909 BUG_ON(list_empty(list));
910
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200911 list_for_each_entry(sort, list, list) {
912 ret = sort->cmp(l, r);
913 if (ret)
914 return ret;
915 }
916
917 return ret;
918}
919
mingo39aeb522009-09-14 20:04:48 +0200920static struct work_atoms *
Ingo Molnarb5fae122009-09-11 12:12:54 +0200921thread_atoms_search(struct rb_root *root, struct thread *thread,
922 struct list_head *sort_list)
923{
924 struct rb_node *node = root->rb_node;
mingo39aeb522009-09-14 20:04:48 +0200925 struct work_atoms key = { .thread = thread };
Ingo Molnarb5fae122009-09-11 12:12:54 +0200926
927 while (node) {
mingo39aeb522009-09-14 20:04:48 +0200928 struct work_atoms *atoms;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200929 int cmp;
930
mingo39aeb522009-09-14 20:04:48 +0200931 atoms = container_of(node, struct work_atoms, node);
Ingo Molnarb5fae122009-09-11 12:12:54 +0200932
933 cmp = thread_lat_cmp(sort_list, &key, atoms);
934 if (cmp > 0)
935 node = node->rb_left;
936 else if (cmp < 0)
937 node = node->rb_right;
938 else {
939 BUG_ON(thread != atoms->thread);
940 return atoms;
941 }
942 }
943 return NULL;
944}
945
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200946static void
mingo39aeb522009-09-14 20:04:48 +0200947__thread_latency_insert(struct rb_root *root, struct work_atoms *data,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200948 struct list_head *sort_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200949{
950 struct rb_node **new = &(root->rb_node), *parent = NULL;
951
952 while (*new) {
mingo39aeb522009-09-14 20:04:48 +0200953 struct work_atoms *this;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200954 int cmp;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200955
mingo39aeb522009-09-14 20:04:48 +0200956 this = container_of(*new, struct work_atoms, node);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200957 parent = *new;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200958
959 cmp = thread_lat_cmp(sort_list, data, this);
960
961 if (cmp > 0)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200962 new = &((*new)->rb_left);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200963 else
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200964 new = &((*new)->rb_right);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200965 }
966
967 rb_link_node(&data->node, parent, new);
968 rb_insert_color(&data->node, root);
969}
970
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200971static void thread_atoms_insert(struct thread *thread)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200972{
mingo39aeb522009-09-14 20:04:48 +0200973 struct work_atoms *atoms;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200974
Frederic Weisbecker17562202009-09-12 23:11:32 +0200975 atoms = calloc(sizeof(*atoms), 1);
976 if (!atoms)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200977 die("No memory");
978
Frederic Weisbecker17562202009-09-12 23:11:32 +0200979 atoms->thread = thread;
mingo39aeb522009-09-14 20:04:48 +0200980 INIT_LIST_HEAD(&atoms->work_list);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200981 __thread_latency_insert(&atom_root, atoms, &cmp_pid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200982}
983
984static void
985latency_fork_event(struct trace_fork_event *fork_event __used,
986 struct event *event __used,
987 int cpu __used,
988 u64 timestamp __used,
989 struct thread *thread __used)
990{
991 /* should insert the newcomer */
992}
993
Ingo Molnarea92ed52009-09-12 10:08:34 +0200994__used
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200995static char sched_out_state(struct trace_switch_event *switch_event)
996{
997 const char *str = TASK_STATE_TO_CHAR_STR;
998
999 return str[switch_event->prev_state];
1000}
1001
1002static void
mingo39aeb522009-09-14 20:04:48 +02001003add_sched_out_event(struct work_atoms *atoms,
1004 char run_state,
1005 u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001006{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001007 struct work_atom *atom;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001008
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001009 atom = calloc(sizeof(*atom), 1);
1010 if (!atom)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001011 die("Non memory");
1012
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001013 atom->sched_out_time = timestamp;
1014
mingo39aeb522009-09-14 20:04:48 +02001015 if (run_state == 'R') {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001016 atom->state = THREAD_WAIT_CPU;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001017 atom->wake_up_time = atom->sched_out_time;
Frederic Weisbeckerc6ced612009-09-13 00:46:19 +02001018 }
1019
mingo39aeb522009-09-14 20:04:48 +02001020 list_add_tail(&atom->list, &atoms->work_list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001021}
1022
1023static void
mingo39aeb522009-09-14 20:04:48 +02001024add_runtime_event(struct work_atoms *atoms, u64 delta, u64 timestamp __used)
1025{
1026 struct work_atom *atom;
1027
1028 BUG_ON(list_empty(&atoms->work_list));
1029
1030 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1031
1032 atom->runtime += delta;
1033 atoms->total_runtime += delta;
1034}
1035
1036static void
1037add_sched_in_event(struct work_atoms *atoms, u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001038{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001039 struct work_atom *atom;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001040 u64 delta;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001041
mingo39aeb522009-09-14 20:04:48 +02001042 if (list_empty(&atoms->work_list))
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001043 return;
1044
mingo39aeb522009-09-14 20:04:48 +02001045 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001046
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001047 if (atom->state != THREAD_WAIT_CPU)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001048 return;
1049
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001050 if (timestamp < atom->wake_up_time) {
1051 atom->state = THREAD_IGNORE;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001052 return;
1053 }
1054
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001055 atom->state = THREAD_SCHED_IN;
1056 atom->sched_in_time = timestamp;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001057
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001058 delta = atom->sched_in_time - atom->wake_up_time;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001059 atoms->total_lat += delta;
1060 if (delta > atoms->max_lat)
1061 atoms->max_lat = delta;
1062 atoms->nb_atoms++;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001063}
1064
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001065static void
1066latency_switch_event(struct trace_switch_event *switch_event,
1067 struct event *event __used,
Ingo Molnarea92ed52009-09-12 10:08:34 +02001068 int cpu,
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001069 u64 timestamp,
1070 struct thread *thread __used)
1071{
mingo39aeb522009-09-14 20:04:48 +02001072 struct work_atoms *out_events, *in_events;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001073 struct thread *sched_out, *sched_in;
Ingo Molnarea92ed52009-09-12 10:08:34 +02001074 u64 timestamp0;
1075 s64 delta;
1076
mingo39aeb522009-09-14 20:04:48 +02001077 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
Ingo Molnarea92ed52009-09-12 10:08:34 +02001078
1079 timestamp0 = cpu_last_switched[cpu];
1080 cpu_last_switched[cpu] = timestamp;
1081 if (timestamp0)
1082 delta = timestamp - timestamp0;
1083 else
1084 delta = 0;
1085
1086 if (delta < 0)
1087 die("hm, delta: %Ld < 0 ?\n", delta);
1088
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001089
1090 sched_out = threads__findnew(switch_event->prev_pid, &threads, &last_match);
1091 sched_in = threads__findnew(switch_event->next_pid, &threads, &last_match);
1092
mingo39aeb522009-09-14 20:04:48 +02001093 out_events = thread_atoms_search(&atom_root, sched_out, &cmp_pid);
1094 if (!out_events) {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001095 thread_atoms_insert(sched_out);
mingo39aeb522009-09-14 20:04:48 +02001096 out_events = thread_atoms_search(&atom_root, sched_out, &cmp_pid);
1097 if (!out_events)
1098 die("out-event: Internal tree error");
1099 }
1100 add_sched_out_event(out_events, sched_out_state(switch_event), timestamp);
1101
1102 in_events = thread_atoms_search(&atom_root, sched_in, &cmp_pid);
1103 if (!in_events) {
1104 thread_atoms_insert(sched_in);
1105 in_events = thread_atoms_search(&atom_root, sched_in, &cmp_pid);
1106 if (!in_events)
1107 die("in-event: Internal tree error");
1108 /*
1109 * Take came in we have not heard about yet,
1110 * add in an initial atom in runnable state:
1111 */
1112 add_sched_out_event(in_events, 'R', timestamp);
1113 }
1114 add_sched_in_event(in_events, timestamp);
1115}
1116
1117static void
1118latency_runtime_event(struct trace_runtime_event *runtime_event,
1119 struct event *event __used,
1120 int cpu,
1121 u64 timestamp,
1122 struct thread *this_thread __used)
1123{
1124 struct work_atoms *atoms;
1125 struct thread *thread;
1126
1127 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
1128
1129 thread = threads__findnew(runtime_event->pid, &threads, &last_match);
1130 atoms = thread_atoms_search(&atom_root, thread, &cmp_pid);
1131 if (!atoms) {
1132 thread_atoms_insert(thread);
1133 atoms = thread_atoms_search(&atom_root, thread, &cmp_pid);
1134 if (!atoms)
1135 die("in-event: Internal tree error");
1136 add_sched_out_event(atoms, 'R', timestamp);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001137 }
1138
mingo39aeb522009-09-14 20:04:48 +02001139 add_runtime_event(atoms, runtime_event->runtime, timestamp);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001140}
1141
1142static void
1143latency_wakeup_event(struct trace_wakeup_event *wakeup_event,
mingo39aeb522009-09-14 20:04:48 +02001144 struct event *__event __used,
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001145 int cpu __used,
1146 u64 timestamp,
1147 struct thread *thread __used)
1148{
mingo39aeb522009-09-14 20:04:48 +02001149 struct work_atoms *atoms;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001150 struct work_atom *atom;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001151 struct thread *wakee;
1152
1153 /* Note for later, it may be interesting to observe the failing cases */
1154 if (!wakeup_event->success)
1155 return;
1156
1157 wakee = threads__findnew(wakeup_event->pid, &threads, &last_match);
Ingo Molnarb5fae122009-09-11 12:12:54 +02001158 atoms = thread_atoms_search(&atom_root, wakee, &cmp_pid);
Frederic Weisbecker17562202009-09-12 23:11:32 +02001159 if (!atoms) {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001160 thread_atoms_insert(wakee);
mingo39aeb522009-09-14 20:04:48 +02001161 atoms = thread_atoms_search(&atom_root, wakee, &cmp_pid);
1162 if (!atoms)
1163 die("wakeup-event: Internal tree error");
1164 add_sched_out_event(atoms, 'S', timestamp);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001165 }
1166
mingo39aeb522009-09-14 20:04:48 +02001167 BUG_ON(list_empty(&atoms->work_list));
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001168
mingo39aeb522009-09-14 20:04:48 +02001169 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001170
mingo39aeb522009-09-14 20:04:48 +02001171 if (atom->state != THREAD_SLEEPING) {
1172 printf("boo2\n");
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001173 return;
mingo39aeb522009-09-14 20:04:48 +02001174 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001175
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001176 nr_timestamps++;
1177 if (atom->sched_out_time > timestamp) {
1178 unordered_timestamps++;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001179 return;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001180 }
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001181
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001182 atom->state = THREAD_WAIT_CPU;
1183 atom->wake_up_time = timestamp;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001184}
1185
1186static struct trace_sched_handler lat_ops = {
Ingo Molnarea92ed52009-09-12 10:08:34 +02001187 .wakeup_event = latency_wakeup_event,
1188 .switch_event = latency_switch_event,
mingo39aeb522009-09-14 20:04:48 +02001189 .runtime_event = latency_runtime_event,
Ingo Molnarea92ed52009-09-12 10:08:34 +02001190 .fork_event = latency_fork_event,
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001191};
1192
mingo39aeb522009-09-14 20:04:48 +02001193static void output_lat_thread(struct work_atoms *work_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001194{
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001195 int i;
1196 int ret;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001197 u64 avg;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001198
mingo39aeb522009-09-14 20:04:48 +02001199 if (!work_list->nb_atoms)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001200 return;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001201 /*
1202 * Ignore idle threads:
1203 */
mingo39aeb522009-09-14 20:04:48 +02001204 if (!work_list->thread->pid)
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001205 return;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001206
mingo39aeb522009-09-14 20:04:48 +02001207 all_runtime += work_list->total_runtime;
1208 all_count += work_list->nb_atoms;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001209
mingo39aeb522009-09-14 20:04:48 +02001210 ret = printf(" %s-%d ", work_list->thread->comm, work_list->thread->pid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001211
mingo08f69e62009-09-14 18:30:44 +02001212 for (i = 0; i < 24 - ret; i++)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001213 printf(" ");
1214
mingo39aeb522009-09-14 20:04:48 +02001215 avg = work_list->total_lat / work_list->nb_atoms;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001216
Frederic Weisbecker66685672009-09-13 01:56:25 +02001217 printf("|%9.3f ms |%9llu | avg:%9.3f ms | max:%9.3f ms |\n",
mingo39aeb522009-09-14 20:04:48 +02001218 (double)work_list->total_runtime / 1e6,
1219 work_list->nb_atoms, (double)avg / 1e6,
1220 (double)work_list->max_lat / 1e6);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001221}
1222
mingo39aeb522009-09-14 20:04:48 +02001223static int pid_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001224{
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001225 if (l->thread->pid < r->thread->pid)
1226 return -1;
1227 if (l->thread->pid > r->thread->pid)
1228 return 1;
1229
1230 return 0;
1231}
1232
1233static struct sort_dimension pid_sort_dimension = {
Ingo Molnarb5fae122009-09-11 12:12:54 +02001234 .name = "pid",
1235 .cmp = pid_cmp,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001236};
1237
mingo39aeb522009-09-14 20:04:48 +02001238static int avg_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001239{
1240 u64 avgl, avgr;
1241
1242 if (!l->nb_atoms)
1243 return -1;
1244
1245 if (!r->nb_atoms)
1246 return 1;
1247
1248 avgl = l->total_lat / l->nb_atoms;
1249 avgr = r->total_lat / r->nb_atoms;
1250
1251 if (avgl < avgr)
1252 return -1;
1253 if (avgl > avgr)
1254 return 1;
1255
1256 return 0;
1257}
1258
1259static struct sort_dimension avg_sort_dimension = {
Ingo Molnarb5fae122009-09-11 12:12:54 +02001260 .name = "avg",
1261 .cmp = avg_cmp,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001262};
1263
mingo39aeb522009-09-14 20:04:48 +02001264static int max_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001265{
1266 if (l->max_lat < r->max_lat)
1267 return -1;
1268 if (l->max_lat > r->max_lat)
1269 return 1;
1270
1271 return 0;
1272}
1273
1274static struct sort_dimension max_sort_dimension = {
Ingo Molnarb5fae122009-09-11 12:12:54 +02001275 .name = "max",
1276 .cmp = max_cmp,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001277};
1278
mingo39aeb522009-09-14 20:04:48 +02001279static int switch_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001280{
1281 if (l->nb_atoms < r->nb_atoms)
1282 return -1;
1283 if (l->nb_atoms > r->nb_atoms)
1284 return 1;
1285
1286 return 0;
1287}
1288
1289static struct sort_dimension switch_sort_dimension = {
Ingo Molnarb5fae122009-09-11 12:12:54 +02001290 .name = "switch",
1291 .cmp = switch_cmp,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001292};
1293
mingo39aeb522009-09-14 20:04:48 +02001294static int runtime_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001295{
1296 if (l->total_runtime < r->total_runtime)
1297 return -1;
1298 if (l->total_runtime > r->total_runtime)
1299 return 1;
1300
1301 return 0;
1302}
1303
1304static struct sort_dimension runtime_sort_dimension = {
Ingo Molnarb5fae122009-09-11 12:12:54 +02001305 .name = "runtime",
1306 .cmp = runtime_cmp,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001307};
1308
1309static struct sort_dimension *available_sorts[] = {
1310 &pid_sort_dimension,
1311 &avg_sort_dimension,
1312 &max_sort_dimension,
1313 &switch_sort_dimension,
1314 &runtime_sort_dimension,
1315};
1316
1317#define NB_AVAILABLE_SORTS (int)(sizeof(available_sorts) / sizeof(struct sort_dimension *))
1318
1319static LIST_HEAD(sort_list);
1320
1321static int sort_dimension__add(char *tok, struct list_head *list)
1322{
1323 int i;
1324
1325 for (i = 0; i < NB_AVAILABLE_SORTS; i++) {
1326 if (!strcmp(available_sorts[i]->name, tok)) {
1327 list_add_tail(&available_sorts[i]->list, list);
1328
1329 return 0;
1330 }
1331 }
1332
1333 return -1;
1334}
1335
1336static void setup_sorting(void);
1337
1338static void sort_lat(void)
1339{
1340 struct rb_node *node;
1341
1342 for (;;) {
mingo39aeb522009-09-14 20:04:48 +02001343 struct work_atoms *data;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001344 node = rb_first(&atom_root);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001345 if (!node)
1346 break;
1347
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001348 rb_erase(node, &atom_root);
mingo39aeb522009-09-14 20:04:48 +02001349 data = rb_entry(node, struct work_atoms, node);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001350 __thread_latency_insert(&sorted_atom_root, data, &sort_list);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001351 }
1352}
1353
Ingo Molnar46f392c2009-09-12 10:08:34 +02001354static void __cmd_lat(void)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001355{
1356 struct rb_node *next;
1357
Ingo Molnar46f392c2009-09-12 10:08:34 +02001358 setup_pager();
1359 read_events();
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001360 sort_lat();
Ingo Molnar46f392c2009-09-12 10:08:34 +02001361
mingo08f69e62009-09-14 18:30:44 +02001362 printf("\n ---------------------------------------------------------------------------------------\n");
1363 printf(" Task | Runtime ms | Switches | Average delay ms | Maximum delay ms |\n");
1364 printf(" ---------------------------------------------------------------------------------------\n");
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001365
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001366 next = rb_first(&sorted_atom_root);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001367
1368 while (next) {
mingo39aeb522009-09-14 20:04:48 +02001369 struct work_atoms *work_list;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001370
mingo39aeb522009-09-14 20:04:48 +02001371 work_list = rb_entry(next, struct work_atoms, node);
1372 output_lat_thread(work_list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001373 next = rb_next(next);
1374 }
Ingo Molnard9340c12009-09-12 10:08:34 +02001375
mingo08f69e62009-09-14 18:30:44 +02001376 printf(" ---------------------------------------------------------------------------------------\n");
1377 printf(" TOTAL: |%9.3f ms |%9Ld |",
Frederic Weisbecker73622622009-09-13 01:59:05 +02001378 (double)all_runtime/1e6, all_count);
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001379
1380 if (unordered_timestamps && nr_timestamps) {
1381 printf(" INFO: %.2f%% unordered events.\n",
1382 (double)unordered_timestamps/(double)nr_timestamps*100.0);
1383 } else {
1384 printf("\n");
1385 }
1386
mingo08f69e62009-09-14 18:30:44 +02001387 printf(" -------------------------------------------------\n\n");
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001388}
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001389
1390static struct trace_sched_handler *trace_handler;
1391
1392static void
1393process_sched_wakeup_event(struct raw_event_sample *raw,
1394 struct event *event,
1395 int cpu __used,
1396 u64 timestamp __used,
1397 struct thread *thread __used)
1398{
1399 struct trace_wakeup_event wakeup_event;
1400
1401 FILL_COMMON_FIELDS(wakeup_event, event, raw->data);
1402
1403 FILL_ARRAY(wakeup_event, comm, event, raw->data);
1404 FILL_FIELD(wakeup_event, pid, event, raw->data);
1405 FILL_FIELD(wakeup_event, prio, event, raw->data);
1406 FILL_FIELD(wakeup_event, success, event, raw->data);
1407 FILL_FIELD(wakeup_event, cpu, event, raw->data);
1408
1409 trace_handler->wakeup_event(&wakeup_event, event, cpu, timestamp, thread);
1410}
1411
1412static void
1413process_sched_switch_event(struct raw_event_sample *raw,
1414 struct event *event,
1415 int cpu __used,
1416 u64 timestamp __used,
1417 struct thread *thread __used)
1418{
1419 struct trace_switch_event switch_event;
1420
1421 FILL_COMMON_FIELDS(switch_event, event, raw->data);
1422
1423 FILL_ARRAY(switch_event, prev_comm, event, raw->data);
1424 FILL_FIELD(switch_event, prev_pid, event, raw->data);
1425 FILL_FIELD(switch_event, prev_prio, event, raw->data);
1426 FILL_FIELD(switch_event, prev_state, event, raw->data);
1427 FILL_ARRAY(switch_event, next_comm, event, raw->data);
1428 FILL_FIELD(switch_event, next_pid, event, raw->data);
1429 FILL_FIELD(switch_event, next_prio, event, raw->data);
1430
1431 trace_handler->switch_event(&switch_event, event, cpu, timestamp, thread);
1432}
1433
1434static void
mingo39aeb522009-09-14 20:04:48 +02001435process_sched_runtime_event(struct raw_event_sample *raw,
1436 struct event *event,
1437 int cpu __used,
1438 u64 timestamp __used,
1439 struct thread *thread __used)
1440{
1441 struct trace_runtime_event runtime_event;
1442
1443 FILL_ARRAY(runtime_event, comm, event, raw->data);
1444 FILL_FIELD(runtime_event, pid, event, raw->data);
1445 FILL_FIELD(runtime_event, runtime, event, raw->data);
1446 FILL_FIELD(runtime_event, vruntime, event, raw->data);
1447
1448 trace_handler->runtime_event(&runtime_event, event, cpu, timestamp, thread);
1449}
1450
1451static void
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001452process_sched_fork_event(struct raw_event_sample *raw,
1453 struct event *event,
1454 int cpu __used,
1455 u64 timestamp __used,
1456 struct thread *thread __used)
Ingo Molnarfbf94822009-09-11 12:12:54 +02001457{
Frederic Weisbecker46538812009-09-12 02:43:45 +02001458 struct trace_fork_event fork_event;
1459
1460 FILL_COMMON_FIELDS(fork_event, event, raw->data);
1461
1462 FILL_ARRAY(fork_event, parent_comm, event, raw->data);
1463 FILL_FIELD(fork_event, parent_pid, event, raw->data);
1464 FILL_ARRAY(fork_event, child_comm, event, raw->data);
1465 FILL_FIELD(fork_event, child_pid, event, raw->data);
1466
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001467 trace_handler->fork_event(&fork_event, event, cpu, timestamp, thread);
Ingo Molnarfbf94822009-09-11 12:12:54 +02001468}
1469
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001470static void
1471process_sched_exit_event(struct event *event,
1472 int cpu __used,
1473 u64 timestamp __used,
1474 struct thread *thread __used)
Ingo Molnarfbf94822009-09-11 12:12:54 +02001475{
Ingo Molnarad236fd2009-09-11 12:12:54 +02001476 if (verbose)
1477 printf("sched_exit event %p\n", event);
Ingo Molnarec156762009-09-11 12:12:54 +02001478}
1479
1480static void
Ingo Molnarad236fd2009-09-11 12:12:54 +02001481process_raw_event(event_t *raw_event __used, void *more_data,
Ingo Molnarec156762009-09-11 12:12:54 +02001482 int cpu, u64 timestamp, struct thread *thread)
1483{
Frederic Weisbecker46538812009-09-12 02:43:45 +02001484 struct raw_event_sample *raw = more_data;
Ingo Molnarec156762009-09-11 12:12:54 +02001485 struct event *event;
1486 int type;
1487
1488 type = trace_parse_common_type(raw->data);
1489 event = trace_find_event(type);
1490
Ingo Molnarec156762009-09-11 12:12:54 +02001491 if (!strcmp(event->name, "sched_switch"))
Frederic Weisbecker46538812009-09-12 02:43:45 +02001492 process_sched_switch_event(raw, event, cpu, timestamp, thread);
mingo39aeb522009-09-14 20:04:48 +02001493 if (!strcmp(event->name, "sched_stat_runtime"))
1494 process_sched_runtime_event(raw, event, cpu, timestamp, thread);
Ingo Molnarec156762009-09-11 12:12:54 +02001495 if (!strcmp(event->name, "sched_wakeup"))
Frederic Weisbecker46538812009-09-12 02:43:45 +02001496 process_sched_wakeup_event(raw, event, cpu, timestamp, thread);
Ingo Molnarfbf94822009-09-11 12:12:54 +02001497 if (!strcmp(event->name, "sched_wakeup_new"))
Frederic Weisbecker46538812009-09-12 02:43:45 +02001498 process_sched_wakeup_event(raw, event, cpu, timestamp, thread);
Ingo Molnarfbf94822009-09-11 12:12:54 +02001499 if (!strcmp(event->name, "sched_process_fork"))
Frederic Weisbecker46538812009-09-12 02:43:45 +02001500 process_sched_fork_event(raw, event, cpu, timestamp, thread);
Ingo Molnarfbf94822009-09-11 12:12:54 +02001501 if (!strcmp(event->name, "sched_process_exit"))
1502 process_sched_exit_event(event, cpu, timestamp, thread);
Ingo Molnarec156762009-09-11 12:12:54 +02001503}
1504
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001505static int
1506process_sample_event(event_t *event, unsigned long offset, unsigned long head)
1507{
1508 char level;
1509 int show = 0;
1510 struct dso *dso = NULL;
1511 struct thread *thread;
1512 u64 ip = event->ip.ip;
1513 u64 timestamp = -1;
1514 u32 cpu = -1;
1515 u64 period = 1;
1516 void *more_data = event->ip.__more_data;
1517 int cpumode;
1518
1519 thread = threads__findnew(event->ip.pid, &threads, &last_match);
1520
1521 if (sample_type & PERF_SAMPLE_TIME) {
1522 timestamp = *(u64 *)more_data;
1523 more_data += sizeof(u64);
1524 }
1525
1526 if (sample_type & PERF_SAMPLE_CPU) {
1527 cpu = *(u32 *)more_data;
1528 more_data += sizeof(u32);
1529 more_data += sizeof(u32); /* reserved */
1530 }
1531
1532 if (sample_type & PERF_SAMPLE_PERIOD) {
1533 period = *(u64 *)more_data;
1534 more_data += sizeof(u64);
1535 }
1536
1537 dump_printf("%p [%p]: PERF_EVENT_SAMPLE (IP, %d): %d/%d: %p period: %Ld\n",
1538 (void *)(offset + head),
1539 (void *)(long)(event->header.size),
1540 event->header.misc,
1541 event->ip.pid, event->ip.tid,
1542 (void *)(long)ip,
1543 (long long)period);
1544
1545 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
1546
1547 if (thread == NULL) {
1548 eprintf("problem processing %d event, skipping it.\n",
1549 event->header.type);
1550 return -1;
1551 }
1552
1553 cpumode = event->header.misc & PERF_EVENT_MISC_CPUMODE_MASK;
1554
1555 if (cpumode == PERF_EVENT_MISC_KERNEL) {
1556 show = SHOW_KERNEL;
1557 level = 'k';
1558
1559 dso = kernel_dso;
1560
1561 dump_printf(" ...... dso: %s\n", dso->name);
1562
1563 } else if (cpumode == PERF_EVENT_MISC_USER) {
1564
1565 show = SHOW_USER;
1566 level = '.';
1567
1568 } else {
1569 show = SHOW_HV;
1570 level = 'H';
1571
1572 dso = hypervisor_dso;
1573
1574 dump_printf(" ...... dso: [hypervisor]\n");
1575 }
1576
Ingo Molnarec156762009-09-11 12:12:54 +02001577 if (sample_type & PERF_SAMPLE_RAW)
1578 process_raw_event(event, more_data, cpu, timestamp, thread);
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001579
1580 return 0;
1581}
1582
1583static int
1584process_event(event_t *event, unsigned long offset, unsigned long head)
1585{
1586 trace_event(event);
1587
1588 switch (event->header.type) {
1589 case PERF_EVENT_MMAP ... PERF_EVENT_LOST:
1590 return 0;
1591
1592 case PERF_EVENT_COMM:
1593 return process_comm_event(event, offset, head);
1594
1595 case PERF_EVENT_EXIT ... PERF_EVENT_READ:
1596 return 0;
1597
1598 case PERF_EVENT_SAMPLE:
1599 return process_sample_event(event, offset, head);
1600
1601 case PERF_EVENT_MAX:
1602 default:
1603 return -1;
1604 }
1605
1606 return 0;
1607}
1608
Ingo Molnar46f392c2009-09-12 10:08:34 +02001609static int read_events(void)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001610{
1611 int ret, rc = EXIT_FAILURE;
1612 unsigned long offset = 0;
1613 unsigned long head = 0;
1614 struct stat perf_stat;
1615 event_t *event;
1616 uint32_t size;
1617 char *buf;
1618
1619 trace_report();
1620 register_idle_thread(&threads, &last_match);
1621
1622 input = open(input_name, O_RDONLY);
1623 if (input < 0) {
1624 perror("failed to open file");
1625 exit(-1);
1626 }
1627
1628 ret = fstat(input, &perf_stat);
1629 if (ret < 0) {
1630 perror("failed to stat file");
1631 exit(-1);
1632 }
1633
1634 if (!perf_stat.st_size) {
1635 fprintf(stderr, "zero-sized file, nothing to do!\n");
1636 exit(0);
1637 }
1638 header = perf_header__read(input);
1639 head = header->data_offset;
1640 sample_type = perf_header__sample_type(header);
1641
1642 if (!(sample_type & PERF_SAMPLE_RAW))
1643 die("No trace sample to read. Did you call perf record "
1644 "without -R?");
1645
1646 if (load_kernel() < 0) {
1647 perror("failed to load kernel symbols");
1648 return EXIT_FAILURE;
1649 }
1650
1651remap:
1652 buf = (char *)mmap(NULL, page_size * mmap_window, PROT_READ,
1653 MAP_SHARED, input, offset);
1654 if (buf == MAP_FAILED) {
1655 perror("failed to mmap file");
1656 exit(-1);
1657 }
1658
1659more:
1660 event = (event_t *)(buf + head);
1661
1662 size = event->header.size;
1663 if (!size)
1664 size = 8;
1665
1666 if (head + event->header.size >= page_size * mmap_window) {
1667 unsigned long shift = page_size * (head / page_size);
1668 int res;
1669
1670 res = munmap(buf, page_size * mmap_window);
1671 assert(res == 0);
1672
1673 offset += shift;
1674 head -= shift;
1675 goto remap;
1676 }
1677
1678 size = event->header.size;
1679
1680
1681 if (!size || process_event(event, offset, head) < 0) {
1682
1683 /*
1684 * assume we lost track of the stream, check alignment, and
1685 * increment a single u64 in the hope to catch on again 'soon'.
1686 */
1687
1688 if (unlikely(head & 7))
1689 head &= ~7ULL;
1690
1691 size = 8;
1692 }
1693
1694 head += size;
1695
1696 if (offset + head < (unsigned long)perf_stat.st_size)
1697 goto more;
1698
1699 rc = EXIT_SUCCESS;
1700 close(input);
1701
1702 return rc;
1703}
1704
Ingo Molnar46f392c2009-09-12 10:08:34 +02001705static const char * const sched_usage[] = {
Ingo Molnarc13f0d32009-09-13 16:51:04 +02001706 "perf sched [<options>] {record|latency|replay|trace}",
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001707 NULL
1708};
1709
Ingo Molnarf2858d82009-09-11 12:12:54 +02001710static const struct option sched_options[] = {
1711 OPT_BOOLEAN('v', "verbose", &verbose,
1712 "be more verbose (show symbol address, etc)"),
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001713 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1714 "dump raw trace in ASCII"),
Ingo Molnarf2858d82009-09-11 12:12:54 +02001715 OPT_END()
1716};
1717
1718static const char * const latency_usage[] = {
1719 "perf sched latency [<options>]",
1720 NULL
1721};
1722
1723static const struct option latency_options[] = {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001724 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
1725 "sort by key(s): runtime, switch, avg, max"),
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001726 OPT_BOOLEAN('v', "verbose", &verbose,
1727 "be more verbose (show symbol address, etc)"),
Ingo Molnarf2858d82009-09-11 12:12:54 +02001728 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1729 "dump raw trace in ASCII"),
1730 OPT_END()
1731};
1732
1733static const char * const replay_usage[] = {
1734 "perf sched replay [<options>]",
1735 NULL
1736};
1737
1738static const struct option replay_options[] = {
1739 OPT_INTEGER('r', "repeat", &replay_repeat,
1740 "repeat the workload replay N times (-1: infinite)"),
1741 OPT_BOOLEAN('v', "verbose", &verbose,
1742 "be more verbose (show symbol address, etc)"),
1743 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1744 "dump raw trace in ASCII"),
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001745 OPT_END()
1746};
1747
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001748static void setup_sorting(void)
1749{
1750 char *tmp, *tok, *str = strdup(sort_order);
1751
1752 for (tok = strtok_r(str, ", ", &tmp);
1753 tok; tok = strtok_r(NULL, ", ", &tmp)) {
1754 if (sort_dimension__add(tok, &sort_list) < 0) {
1755 error("Unknown --sort key: `%s'", tok);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001756 usage_with_options(latency_usage, latency_options);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001757 }
1758 }
1759
1760 free(str);
1761
1762 sort_dimension__add((char *)"pid", &cmp_pid);
1763}
1764
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001765static const char *record_args[] = {
1766 "record",
1767 "-a",
1768 "-R",
Frederic Weisbeckerd1302522009-09-14 08:57:15 +02001769 "-M",
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001770 "-f",
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001771 "-c", "1",
1772 "-e", "sched:sched_switch:r",
1773 "-e", "sched:sched_stat_wait:r",
1774 "-e", "sched:sched_stat_sleep:r",
1775 "-e", "sched:sched_stat_iowait:r",
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001776 "-e", "sched:sched_stat_runtime:r",
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001777 "-e", "sched:sched_process_exit:r",
1778 "-e", "sched:sched_process_fork:r",
1779 "-e", "sched:sched_wakeup:r",
1780 "-e", "sched:sched_migrate_task:r",
1781};
1782
1783static int __cmd_record(int argc, const char **argv)
1784{
1785 unsigned int rec_argc, i, j;
1786 const char **rec_argv;
1787
1788 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
1789 rec_argv = calloc(rec_argc + 1, sizeof(char *));
1790
1791 for (i = 0; i < ARRAY_SIZE(record_args); i++)
1792 rec_argv[i] = strdup(record_args[i]);
1793
1794 for (j = 1; j < (unsigned int)argc; j++, i++)
1795 rec_argv[i] = argv[j];
1796
1797 BUG_ON(i != rec_argc);
1798
1799 return cmd_record(i, rec_argv, NULL);
1800}
1801
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001802int cmd_sched(int argc, const char **argv, const char *prefix __used)
1803{
1804 symbol__init();
1805 page_size = getpagesize();
1806
Ingo Molnarf2858d82009-09-11 12:12:54 +02001807 argc = parse_options(argc, argv, sched_options, sched_usage,
1808 PARSE_OPT_STOP_AT_NON_OPTION);
1809 if (!argc)
1810 usage_with_options(sched_usage, sched_options);
1811
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001812 if (!strncmp(argv[0], "rec", 3)) {
1813 return __cmd_record(argc, argv);
1814 } else if (!strncmp(argv[0], "lat", 3)) {
Ingo Molnarf2858d82009-09-11 12:12:54 +02001815 trace_handler = &lat_ops;
1816 if (argc > 1) {
1817 argc = parse_options(argc, argv, latency_options, latency_usage, 0);
1818 if (argc)
1819 usage_with_options(latency_usage, latency_options);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001820 }
Ingo Molnarb5fae122009-09-11 12:12:54 +02001821 setup_sorting();
Ingo Molnarf2858d82009-09-11 12:12:54 +02001822 __cmd_lat();
1823 } else if (!strncmp(argv[0], "rep", 3)) {
1824 trace_handler = &replay_ops;
1825 if (argc) {
1826 argc = parse_options(argc, argv, replay_options, replay_usage, 0);
1827 if (argc)
1828 usage_with_options(replay_usage, replay_options);
1829 }
1830 __cmd_replay();
Ingo Molnarc13f0d32009-09-13 16:51:04 +02001831 } else if (!strcmp(argv[0], "trace")) {
1832 /*
1833 * Aliased to 'perf trace' for now:
1834 */
1835 return cmd_trace(argc, argv, prefix);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001836 } else {
1837 usage_with_options(sched_usage, sched_options);
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001838 }
1839
Ingo Molnarec156762009-09-11 12:12:54 +02001840 return 0;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001841}