blob: fb8b5f83b4a0ae77736fbffe6a6736d56813eed6 [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"
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02005#include "util/evlist.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +02006#include "util/cache.h"
Arnaldo Carvalho de Meloe3f42602011-11-16 17:02:54 -02007#include "util/evsel.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +02008#include "util/symbol.h"
9#include "util/thread.h"
10#include "util/header.h"
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -020011#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020012#include "util/tool.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020013
14#include "util/parse-options.h"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020015#include "util/trace-event.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020016
Ingo Molnar0a02ad92009-09-11 12:12:54 +020017#include "util/debug.h"
18
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020019#include <sys/prctl.h>
Ingo Molnar0a02ad92009-09-11 12:12:54 +020020
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020021#include <semaphore.h>
22#include <pthread.h>
23#include <math.h>
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +020024
Robert Richterefad1412011-12-07 10:02:54 +010025static const char *input_name;
Ingo Molnar0a02ad92009-09-11 12:12:54 +020026
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +020027static char default_sort_order[] = "avg, max, switch, runtime";
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -030028static const char *sort_order = default_sort_order;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +020029
Mike Galbraith55ffb7a2009-10-10 14:46:04 +020030static int profile_cpu = -1;
31
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020032#define PR_SET_NAME 15 /* Set process name */
33#define MAX_CPUS 4096
Ingo Molnar0a02ad92009-09-11 12:12:54 +020034
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020035static u64 run_measurement_overhead;
36static u64 sleep_measurement_overhead;
Ingo Molnarec156762009-09-11 12:12:54 +020037
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020038#define COMM_LEN 20
39#define SYM_LEN 129
Ingo Molnarec156762009-09-11 12:12:54 +020040
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020041#define MAX_PID 65536
Ingo Molnarec156762009-09-11 12:12:54 +020042
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020043static unsigned long nr_tasks;
Ingo Molnarec156762009-09-11 12:12:54 +020044
mingo39aeb522009-09-14 20:04:48 +020045struct sched_atom;
Ingo Molnarec156762009-09-11 12:12:54 +020046
47struct task_desc {
48 unsigned long nr;
49 unsigned long pid;
50 char comm[COMM_LEN];
51
52 unsigned long nr_events;
53 unsigned long curr_event;
mingo39aeb522009-09-14 20:04:48 +020054 struct sched_atom **atoms;
Ingo Molnarec156762009-09-11 12:12:54 +020055
56 pthread_t thread;
57 sem_t sleep_sem;
58
59 sem_t ready_for_work;
60 sem_t work_done_sem;
61
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020062 u64 cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +020063};
64
65enum sched_event_type {
66 SCHED_EVENT_RUN,
67 SCHED_EVENT_SLEEP,
68 SCHED_EVENT_WAKEUP,
Mike Galbraith55ffb7a2009-10-10 14:46:04 +020069 SCHED_EVENT_MIGRATION,
Ingo Molnarec156762009-09-11 12:12:54 +020070};
71
mingo39aeb522009-09-14 20:04:48 +020072struct sched_atom {
Ingo Molnarec156762009-09-11 12:12:54 +020073 enum sched_event_type type;
Arnaldo Carvalho de Meloeed05fe2010-04-05 12:53:45 -030074 int specific_wait;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020075 u64 timestamp;
76 u64 duration;
Ingo Molnarec156762009-09-11 12:12:54 +020077 unsigned long nr;
Ingo Molnarec156762009-09-11 12:12:54 +020078 sem_t *wait_sem;
79 struct task_desc *wakee;
80};
81
82static struct task_desc *pid_to_task[MAX_PID];
83
84static struct task_desc **tasks;
85
86static pthread_mutex_t start_work_mutex = PTHREAD_MUTEX_INITIALIZER;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020087static u64 start_time;
Ingo Molnarec156762009-09-11 12:12:54 +020088
89static pthread_mutex_t work_done_wait_mutex = PTHREAD_MUTEX_INITIALIZER;
90
91static unsigned long nr_run_events;
92static unsigned long nr_sleep_events;
93static unsigned long nr_wakeup_events;
94
95static unsigned long nr_sleep_corrections;
96static unsigned long nr_run_events_optimized;
97
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020098static unsigned long targetless_wakeups;
99static unsigned long multitarget_wakeups;
100
101static u64 cpu_usage;
102static u64 runavg_cpu_usage;
103static u64 parent_cpu_usage;
104static u64 runavg_parent_cpu_usage;
105
106static unsigned long nr_runs;
107static u64 sum_runtime;
108static u64 sum_fluct;
109static u64 run_avg;
110
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -0300111static unsigned int replay_repeat = 10;
Ingo Molnarea57c4f2009-09-13 18:15:54 +0200112static unsigned long nr_timestamps;
Ingo Molnardc02bf72009-09-16 13:45:00 +0200113static unsigned long nr_unordered_timestamps;
114static unsigned long nr_state_machine_bugs;
Ingo Molnarc8a37752009-09-16 14:07:00 +0200115static unsigned long nr_context_switch_bugs;
Ingo Molnardc02bf72009-09-16 13:45:00 +0200116static unsigned long nr_events;
117static unsigned long nr_lost_chunks;
118static unsigned long nr_lost_events;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200119
120#define TASK_STATE_TO_CHAR_STR "RSDTtZX"
121
122enum thread_state {
123 THREAD_SLEEPING = 0,
124 THREAD_WAIT_CPU,
125 THREAD_SCHED_IN,
126 THREAD_IGNORE
127};
128
129struct work_atom {
130 struct list_head list;
131 enum thread_state state;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200132 u64 sched_out_time;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200133 u64 wake_up_time;
134 u64 sched_in_time;
135 u64 runtime;
136};
137
mingo39aeb522009-09-14 20:04:48 +0200138struct work_atoms {
139 struct list_head work_list;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200140 struct thread *thread;
141 struct rb_node node;
142 u64 max_lat;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +0100143 u64 max_lat_at;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200144 u64 total_lat;
145 u64 nb_atoms;
146 u64 total_runtime;
147};
148
mingo39aeb522009-09-14 20:04:48 +0200149typedef int (*sort_fn_t)(struct work_atoms *, struct work_atoms *);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200150
151static struct rb_root atom_root, sorted_atom_root;
152
153static u64 all_runtime;
154static u64 all_count;
155
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200156
157static u64 get_nsecs(void)
158{
159 struct timespec ts;
160
161 clock_gettime(CLOCK_MONOTONIC, &ts);
162
163 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
164}
165
166static void burn_nsecs(u64 nsecs)
167{
168 u64 T0 = get_nsecs(), T1;
169
170 do {
171 T1 = get_nsecs();
172 } while (T1 + run_measurement_overhead < T0 + nsecs);
173}
174
175static void sleep_nsecs(u64 nsecs)
176{
177 struct timespec ts;
178
179 ts.tv_nsec = nsecs % 999999999;
180 ts.tv_sec = nsecs / 999999999;
181
182 nanosleep(&ts, NULL);
183}
184
185static void calibrate_run_measurement_overhead(void)
186{
187 u64 T0, T1, delta, min_delta = 1000000000ULL;
188 int i;
189
190 for (i = 0; i < 10; i++) {
191 T0 = get_nsecs();
192 burn_nsecs(0);
193 T1 = get_nsecs();
194 delta = T1-T0;
195 min_delta = min(min_delta, delta);
196 }
197 run_measurement_overhead = min_delta;
198
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200199 printf("run measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200200}
201
202static void calibrate_sleep_measurement_overhead(void)
203{
204 u64 T0, T1, delta, min_delta = 1000000000ULL;
205 int i;
206
207 for (i = 0; i < 10; i++) {
208 T0 = get_nsecs();
209 sleep_nsecs(10000);
210 T1 = get_nsecs();
211 delta = T1-T0;
212 min_delta = min(min_delta, delta);
213 }
214 min_delta -= 10000;
215 sleep_measurement_overhead = min_delta;
216
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200217 printf("sleep measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200218}
219
mingo39aeb522009-09-14 20:04:48 +0200220static struct sched_atom *
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200221get_new_event(struct task_desc *task, u64 timestamp)
Ingo Molnarec156762009-09-11 12:12:54 +0200222{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200223 struct sched_atom *event = zalloc(sizeof(*event));
Ingo Molnarec156762009-09-11 12:12:54 +0200224 unsigned long idx = task->nr_events;
225 size_t size;
226
227 event->timestamp = timestamp;
228 event->nr = idx;
229
230 task->nr_events++;
mingo39aeb522009-09-14 20:04:48 +0200231 size = sizeof(struct sched_atom *) * task->nr_events;
232 task->atoms = realloc(task->atoms, size);
233 BUG_ON(!task->atoms);
Ingo Molnarec156762009-09-11 12:12:54 +0200234
mingo39aeb522009-09-14 20:04:48 +0200235 task->atoms[idx] = event;
Ingo Molnarec156762009-09-11 12:12:54 +0200236
237 return event;
238}
239
mingo39aeb522009-09-14 20:04:48 +0200240static struct sched_atom *last_event(struct task_desc *task)
Ingo Molnarec156762009-09-11 12:12:54 +0200241{
242 if (!task->nr_events)
243 return NULL;
244
mingo39aeb522009-09-14 20:04:48 +0200245 return task->atoms[task->nr_events - 1];
Ingo Molnarec156762009-09-11 12:12:54 +0200246}
247
248static void
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200249add_sched_event_run(struct task_desc *task, u64 timestamp, u64 duration)
Ingo Molnarec156762009-09-11 12:12:54 +0200250{
mingo39aeb522009-09-14 20:04:48 +0200251 struct sched_atom *event, *curr_event = last_event(task);
Ingo Molnarec156762009-09-11 12:12:54 +0200252
253 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200254 * optimize an existing RUN event by merging this one
255 * to it:
256 */
Ingo Molnarec156762009-09-11 12:12:54 +0200257 if (curr_event && curr_event->type == SCHED_EVENT_RUN) {
258 nr_run_events_optimized++;
259 curr_event->duration += duration;
260 return;
261 }
262
263 event = get_new_event(task, timestamp);
264
265 event->type = SCHED_EVENT_RUN;
266 event->duration = duration;
267
268 nr_run_events++;
269}
270
Ingo Molnarec156762009-09-11 12:12:54 +0200271static void
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200272add_sched_event_wakeup(struct task_desc *task, u64 timestamp,
Ingo Molnarec156762009-09-11 12:12:54 +0200273 struct task_desc *wakee)
274{
mingo39aeb522009-09-14 20:04:48 +0200275 struct sched_atom *event, *wakee_event;
Ingo Molnarec156762009-09-11 12:12:54 +0200276
277 event = get_new_event(task, timestamp);
278 event->type = SCHED_EVENT_WAKEUP;
279 event->wakee = wakee;
280
281 wakee_event = last_event(wakee);
282 if (!wakee_event || wakee_event->type != SCHED_EVENT_SLEEP) {
283 targetless_wakeups++;
284 return;
285 }
286 if (wakee_event->wait_sem) {
287 multitarget_wakeups++;
288 return;
289 }
290
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200291 wakee_event->wait_sem = zalloc(sizeof(*wakee_event->wait_sem));
Ingo Molnarec156762009-09-11 12:12:54 +0200292 sem_init(wakee_event->wait_sem, 0, 0);
293 wakee_event->specific_wait = 1;
294 event->wait_sem = wakee_event->wait_sem;
295
296 nr_wakeup_events++;
297}
298
299static void
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200300add_sched_event_sleep(struct task_desc *task, u64 timestamp,
Ingo Molnarad236fd2009-09-11 12:12:54 +0200301 u64 task_state __used)
Ingo Molnarec156762009-09-11 12:12:54 +0200302{
mingo39aeb522009-09-14 20:04:48 +0200303 struct sched_atom *event = get_new_event(task, timestamp);
Ingo Molnarec156762009-09-11 12:12:54 +0200304
305 event->type = SCHED_EVENT_SLEEP;
306
307 nr_sleep_events++;
308}
309
310static struct task_desc *register_pid(unsigned long pid, const char *comm)
311{
312 struct task_desc *task;
313
314 BUG_ON(pid >= MAX_PID);
315
316 task = pid_to_task[pid];
317
318 if (task)
319 return task;
320
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200321 task = zalloc(sizeof(*task));
Ingo Molnarec156762009-09-11 12:12:54 +0200322 task->pid = pid;
323 task->nr = nr_tasks;
324 strcpy(task->comm, comm);
325 /*
326 * every task starts in sleeping state - this gets ignored
327 * if there's no wakeup pointing to this sleep state:
328 */
329 add_sched_event_sleep(task, 0, 0);
330
331 pid_to_task[pid] = task;
332 nr_tasks++;
333 tasks = realloc(tasks, nr_tasks*sizeof(struct task_task *));
334 BUG_ON(!tasks);
335 tasks[task->nr] = task;
336
Ingo Molnarad236fd2009-09-11 12:12:54 +0200337 if (verbose)
338 printf("registered task #%ld, PID %ld (%s)\n", nr_tasks, pid, comm);
Ingo Molnarec156762009-09-11 12:12:54 +0200339
340 return task;
341}
342
343
Ingo Molnarec156762009-09-11 12:12:54 +0200344static void print_task_traces(void)
345{
346 struct task_desc *task;
347 unsigned long i;
348
349 for (i = 0; i < nr_tasks; i++) {
350 task = tasks[i];
Ingo Molnarad236fd2009-09-11 12:12:54 +0200351 printf("task %6ld (%20s:%10ld), nr_events: %ld\n",
Ingo Molnarec156762009-09-11 12:12:54 +0200352 task->nr, task->comm, task->pid, task->nr_events);
353 }
354}
355
356static void add_cross_task_wakeups(void)
357{
358 struct task_desc *task1, *task2;
359 unsigned long i, j;
360
361 for (i = 0; i < nr_tasks; i++) {
362 task1 = tasks[i];
363 j = i + 1;
364 if (j == nr_tasks)
365 j = 0;
366 task2 = tasks[j];
367 add_sched_event_wakeup(task1, 0, task2);
368 }
369}
370
371static void
mingo39aeb522009-09-14 20:04:48 +0200372process_sched_event(struct task_desc *this_task __used, struct sched_atom *atom)
Ingo Molnarec156762009-09-11 12:12:54 +0200373{
374 int ret = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200375
mingo39aeb522009-09-14 20:04:48 +0200376 switch (atom->type) {
Ingo Molnarec156762009-09-11 12:12:54 +0200377 case SCHED_EVENT_RUN:
mingo39aeb522009-09-14 20:04:48 +0200378 burn_nsecs(atom->duration);
Ingo Molnarec156762009-09-11 12:12:54 +0200379 break;
380 case SCHED_EVENT_SLEEP:
mingo39aeb522009-09-14 20:04:48 +0200381 if (atom->wait_sem)
382 ret = sem_wait(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200383 BUG_ON(ret);
384 break;
385 case SCHED_EVENT_WAKEUP:
mingo39aeb522009-09-14 20:04:48 +0200386 if (atom->wait_sem)
387 ret = sem_post(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200388 BUG_ON(ret);
389 break;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +0200390 case SCHED_EVENT_MIGRATION:
391 break;
Ingo Molnarec156762009-09-11 12:12:54 +0200392 default:
393 BUG_ON(1);
394 }
395}
396
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200397static u64 get_cpu_usage_nsec_parent(void)
Ingo Molnarec156762009-09-11 12:12:54 +0200398{
399 struct rusage ru;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200400 u64 sum;
Ingo Molnarec156762009-09-11 12:12:54 +0200401 int err;
402
403 err = getrusage(RUSAGE_SELF, &ru);
404 BUG_ON(err);
405
406 sum = ru.ru_utime.tv_sec*1e9 + ru.ru_utime.tv_usec*1e3;
407 sum += ru.ru_stime.tv_sec*1e9 + ru.ru_stime.tv_usec*1e3;
408
409 return sum;
410}
411
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800412static int self_open_counters(void)
Ingo Molnarec156762009-09-11 12:12:54 +0200413{
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800414 struct perf_event_attr attr;
415 int fd;
416
417 memset(&attr, 0, sizeof(attr));
418
419 attr.type = PERF_TYPE_SOFTWARE;
420 attr.config = PERF_COUNT_SW_TASK_CLOCK;
421
422 fd = sys_perf_event_open(&attr, 0, -1, -1, 0);
423
424 if (fd < 0)
425 die("Error: sys_perf_event_open() syscall returned"
426 "with %d (%s)\n", fd, strerror(errno));
427 return fd;
428}
429
430static u64 get_cpu_usage_nsec_self(int fd)
431{
432 u64 runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200433 int ret;
434
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800435 ret = read(fd, &runtime, sizeof(runtime));
436 BUG_ON(ret != sizeof(runtime));
Ingo Molnarec156762009-09-11 12:12:54 +0200437
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800438 return runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200439}
440
441static void *thread_func(void *ctx)
442{
443 struct task_desc *this_task = ctx;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200444 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200445 unsigned long i, ret;
446 char comm2[22];
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800447 int fd;
Ingo Molnarec156762009-09-11 12:12:54 +0200448
Ingo Molnarec156762009-09-11 12:12:54 +0200449 sprintf(comm2, ":%s", this_task->comm);
450 prctl(PR_SET_NAME, comm2);
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800451 fd = self_open_counters();
Ingo Molnarec156762009-09-11 12:12:54 +0200452
453again:
454 ret = sem_post(&this_task->ready_for_work);
455 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200456 ret = pthread_mutex_lock(&start_work_mutex);
457 BUG_ON(ret);
458 ret = pthread_mutex_unlock(&start_work_mutex);
459 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200460
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800461 cpu_usage_0 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200462
463 for (i = 0; i < this_task->nr_events; i++) {
464 this_task->curr_event = i;
mingo39aeb522009-09-14 20:04:48 +0200465 process_sched_event(this_task, this_task->atoms[i]);
Ingo Molnarec156762009-09-11 12:12:54 +0200466 }
467
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800468 cpu_usage_1 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200469 this_task->cpu_usage = cpu_usage_1 - cpu_usage_0;
Ingo Molnarec156762009-09-11 12:12:54 +0200470 ret = sem_post(&this_task->work_done_sem);
471 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200472
473 ret = pthread_mutex_lock(&work_done_wait_mutex);
474 BUG_ON(ret);
475 ret = pthread_mutex_unlock(&work_done_wait_mutex);
476 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200477
478 goto again;
479}
480
481static void create_tasks(void)
482{
483 struct task_desc *task;
484 pthread_attr_t attr;
485 unsigned long i;
486 int err;
487
488 err = pthread_attr_init(&attr);
489 BUG_ON(err);
Jiri Pirko12f7e032011-01-10 14:14:23 -0200490 err = pthread_attr_setstacksize(&attr,
491 (size_t) max(16 * 1024, PTHREAD_STACK_MIN));
Ingo Molnarec156762009-09-11 12:12:54 +0200492 BUG_ON(err);
493 err = pthread_mutex_lock(&start_work_mutex);
494 BUG_ON(err);
495 err = pthread_mutex_lock(&work_done_wait_mutex);
496 BUG_ON(err);
497 for (i = 0; i < nr_tasks; i++) {
498 task = tasks[i];
499 sem_init(&task->sleep_sem, 0, 0);
500 sem_init(&task->ready_for_work, 0, 0);
501 sem_init(&task->work_done_sem, 0, 0);
502 task->curr_event = 0;
503 err = pthread_create(&task->thread, &attr, thread_func, task);
504 BUG_ON(err);
505 }
506}
507
Ingo Molnarec156762009-09-11 12:12:54 +0200508static void wait_for_tasks(void)
509{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200510 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200511 struct task_desc *task;
512 unsigned long i, ret;
513
Ingo Molnarec156762009-09-11 12:12:54 +0200514 start_time = get_nsecs();
Ingo Molnarec156762009-09-11 12:12:54 +0200515 cpu_usage = 0;
516 pthread_mutex_unlock(&work_done_wait_mutex);
517
518 for (i = 0; i < nr_tasks; i++) {
519 task = tasks[i];
520 ret = sem_wait(&task->ready_for_work);
521 BUG_ON(ret);
522 sem_init(&task->ready_for_work, 0, 0);
523 }
524 ret = pthread_mutex_lock(&work_done_wait_mutex);
525 BUG_ON(ret);
526
527 cpu_usage_0 = get_cpu_usage_nsec_parent();
528
529 pthread_mutex_unlock(&start_work_mutex);
530
Ingo Molnarec156762009-09-11 12:12:54 +0200531 for (i = 0; i < nr_tasks; i++) {
532 task = tasks[i];
533 ret = sem_wait(&task->work_done_sem);
534 BUG_ON(ret);
535 sem_init(&task->work_done_sem, 0, 0);
536 cpu_usage += task->cpu_usage;
537 task->cpu_usage = 0;
538 }
539
540 cpu_usage_1 = get_cpu_usage_nsec_parent();
541 if (!runavg_cpu_usage)
542 runavg_cpu_usage = cpu_usage;
543 runavg_cpu_usage = (runavg_cpu_usage*9 + cpu_usage)/10;
544
545 parent_cpu_usage = cpu_usage_1 - cpu_usage_0;
546 if (!runavg_parent_cpu_usage)
547 runavg_parent_cpu_usage = parent_cpu_usage;
548 runavg_parent_cpu_usage = (runavg_parent_cpu_usage*9 +
549 parent_cpu_usage)/10;
550
551 ret = pthread_mutex_lock(&start_work_mutex);
552 BUG_ON(ret);
553
554 for (i = 0; i < nr_tasks; i++) {
555 task = tasks[i];
556 sem_init(&task->sleep_sem, 0, 0);
557 task->curr_event = 0;
558 }
559}
560
Ingo Molnarec156762009-09-11 12:12:54 +0200561static void run_one_test(void)
562{
Kyle McMartinfb7d0b32011-01-24 11:13:04 -0500563 u64 T0, T1, delta, avg_delta, fluct;
Ingo Molnarec156762009-09-11 12:12:54 +0200564
565 T0 = get_nsecs();
566 wait_for_tasks();
567 T1 = get_nsecs();
568
569 delta = T1 - T0;
570 sum_runtime += delta;
571 nr_runs++;
572
573 avg_delta = sum_runtime / nr_runs;
574 if (delta < avg_delta)
575 fluct = avg_delta - delta;
576 else
577 fluct = delta - avg_delta;
578 sum_fluct += fluct;
Ingo Molnarec156762009-09-11 12:12:54 +0200579 if (!run_avg)
580 run_avg = delta;
581 run_avg = (run_avg*9 + delta)/10;
582
Ingo Molnarad236fd2009-09-11 12:12:54 +0200583 printf("#%-3ld: %0.3f, ",
Ingo Molnarec156762009-09-11 12:12:54 +0200584 nr_runs, (double)delta/1000000.0);
585
Ingo Molnarad236fd2009-09-11 12:12:54 +0200586 printf("ravg: %0.2f, ",
Ingo Molnarec156762009-09-11 12:12:54 +0200587 (double)run_avg/1e6);
588
Ingo Molnarad236fd2009-09-11 12:12:54 +0200589 printf("cpu: %0.2f / %0.2f",
Ingo Molnarec156762009-09-11 12:12:54 +0200590 (double)cpu_usage/1e6, (double)runavg_cpu_usage/1e6);
591
592#if 0
593 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200594 * rusage statistics done by the parent, these are less
595 * accurate than the sum_exec_runtime based statistics:
596 */
Ingo Molnarad236fd2009-09-11 12:12:54 +0200597 printf(" [%0.2f / %0.2f]",
Ingo Molnarec156762009-09-11 12:12:54 +0200598 (double)parent_cpu_usage/1e6,
599 (double)runavg_parent_cpu_usage/1e6);
600#endif
601
Ingo Molnarad236fd2009-09-11 12:12:54 +0200602 printf("\n");
Ingo Molnarec156762009-09-11 12:12:54 +0200603
604 if (nr_sleep_corrections)
Ingo Molnarad236fd2009-09-11 12:12:54 +0200605 printf(" (%ld sleep corrections)\n", nr_sleep_corrections);
Ingo Molnarec156762009-09-11 12:12:54 +0200606 nr_sleep_corrections = 0;
607}
608
609static void test_calibrations(void)
610{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200611 u64 T0, T1;
Ingo Molnarec156762009-09-11 12:12:54 +0200612
613 T0 = get_nsecs();
614 burn_nsecs(1e6);
615 T1 = get_nsecs();
616
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200617 printf("the run test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200618
619 T0 = get_nsecs();
620 sleep_nsecs(1e6);
621 T1 = get_nsecs();
622
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200623 printf("the sleep test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200624}
625
Frederic Weisbecker46538812009-09-12 02:43:45 +0200626#define FILL_FIELD(ptr, field, event, data) \
627 ptr.field = (typeof(ptr.field)) raw_field_value(event, #field, data)
628
629#define FILL_ARRAY(ptr, array, event, data) \
630do { \
631 void *__array = raw_field_ptr(event, #array, data); \
632 memcpy(ptr.array, __array, sizeof(ptr.array)); \
633} while(0)
634
635#define FILL_COMMON_FIELDS(ptr, event, data) \
636do { \
637 FILL_FIELD(ptr, common_type, event, data); \
638 FILL_FIELD(ptr, common_flags, event, data); \
639 FILL_FIELD(ptr, common_preempt_count, event, data); \
640 FILL_FIELD(ptr, common_pid, event, data); \
641 FILL_FIELD(ptr, common_tgid, event, data); \
642} while (0)
643
Ingo Molnarfbf94822009-09-11 12:12:54 +0200644
Ingo Molnarec156762009-09-11 12:12:54 +0200645
Ingo Molnarfbf94822009-09-11 12:12:54 +0200646struct trace_switch_event {
647 u32 size;
648
649 u16 common_type;
650 u8 common_flags;
651 u8 common_preempt_count;
652 u32 common_pid;
653 u32 common_tgid;
654
655 char prev_comm[16];
656 u32 prev_pid;
657 u32 prev_prio;
658 u64 prev_state;
659 char next_comm[16];
660 u32 next_pid;
661 u32 next_prio;
662};
663
mingo39aeb522009-09-14 20:04:48 +0200664struct trace_runtime_event {
665 u32 size;
666
667 u16 common_type;
668 u8 common_flags;
669 u8 common_preempt_count;
670 u32 common_pid;
671 u32 common_tgid;
672
673 char comm[16];
674 u32 pid;
675 u64 runtime;
676 u64 vruntime;
677};
Ingo Molnarfbf94822009-09-11 12:12:54 +0200678
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200679struct trace_wakeup_event {
680 u32 size;
681
682 u16 common_type;
683 u8 common_flags;
684 u8 common_preempt_count;
685 u32 common_pid;
686 u32 common_tgid;
687
688 char comm[16];
689 u32 pid;
690
691 u32 prio;
692 u32 success;
693 u32 cpu;
694};
695
696struct trace_fork_event {
697 u32 size;
698
699 u16 common_type;
700 u8 common_flags;
701 u8 common_preempt_count;
702 u32 common_pid;
703 u32 common_tgid;
704
705 char parent_comm[16];
706 u32 parent_pid;
707 char child_comm[16];
708 u32 child_pid;
709};
710
Mike Galbraith55ffb7a2009-10-10 14:46:04 +0200711struct trace_migrate_task_event {
712 u32 size;
713
714 u16 common_type;
715 u8 common_flags;
716 u8 common_preempt_count;
717 u32 common_pid;
718 u32 common_tgid;
719
720 char comm[16];
721 u32 pid;
722
723 u32 prio;
724 u32 cpu;
725};
726
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200727struct trace_sched_handler {
728 void (*switch_event)(struct trace_switch_event *,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200729 struct machine *,
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200730 struct event *,
731 int cpu,
732 u64 timestamp,
733 struct thread *thread);
734
mingo39aeb522009-09-14 20:04:48 +0200735 void (*runtime_event)(struct trace_runtime_event *,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200736 struct machine *,
mingo39aeb522009-09-14 20:04:48 +0200737 struct event *,
738 int cpu,
739 u64 timestamp,
740 struct thread *thread);
741
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200742 void (*wakeup_event)(struct trace_wakeup_event *,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200743 struct machine *,
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200744 struct event *,
745 int cpu,
746 u64 timestamp,
747 struct thread *thread);
748
749 void (*fork_event)(struct trace_fork_event *,
750 struct event *,
751 int cpu,
752 u64 timestamp,
753 struct thread *thread);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +0200754
755 void (*migrate_task_event)(struct trace_migrate_task_event *,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200756 struct machine *machine,
Mike Galbraith55ffb7a2009-10-10 14:46:04 +0200757 struct event *,
758 int cpu,
759 u64 timestamp,
760 struct thread *thread);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200761};
762
Ingo Molnarfbf94822009-09-11 12:12:54 +0200763
764static void
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200765replay_wakeup_event(struct trace_wakeup_event *wakeup_event,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200766 struct machine *machine __used,
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200767 struct event *event,
768 int cpu __used,
769 u64 timestamp __used,
770 struct thread *thread __used)
Ingo Molnarec156762009-09-11 12:12:54 +0200771{
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200772 struct task_desc *waker, *wakee;
773
774 if (verbose) {
775 printf("sched_wakeup event %p\n", event);
776
777 printf(" ... pid %d woke up %s/%d\n",
778 wakeup_event->common_pid,
779 wakeup_event->comm,
780 wakeup_event->pid);
781 }
782
783 waker = register_pid(wakeup_event->common_pid, "<unknown>");
784 wakee = register_pid(wakeup_event->pid, wakeup_event->comm);
785
786 add_sched_event_wakeup(waker, timestamp, wakee);
787}
788
Ingo Molnard1153382009-09-14 18:22:53 +0200789static u64 cpu_last_switched[MAX_CPUS];
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200790
791static void
792replay_switch_event(struct trace_switch_event *switch_event,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200793 struct machine *machine __used,
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200794 struct event *event,
795 int cpu,
796 u64 timestamp,
797 struct thread *thread __used)
798{
Kyle McMartinfb7d0b32011-01-24 11:13:04 -0500799 struct task_desc *prev, __used *next;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200800 u64 timestamp0;
801 s64 delta;
802
Ingo Molnarad236fd2009-09-11 12:12:54 +0200803 if (verbose)
804 printf("sched_switch event %p\n", event);
805
Ingo Molnarfbf94822009-09-11 12:12:54 +0200806 if (cpu >= MAX_CPUS || cpu < 0)
807 return;
808
809 timestamp0 = cpu_last_switched[cpu];
810 if (timestamp0)
811 delta = timestamp - timestamp0;
812 else
813 delta = 0;
814
815 if (delta < 0)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200816 die("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200817
Ingo Molnarad236fd2009-09-11 12:12:54 +0200818 if (verbose) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200819 printf(" ... switch from %s/%d to %s/%d [ran %" PRIu64 " nsecs]\n",
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200820 switch_event->prev_comm, switch_event->prev_pid,
821 switch_event->next_comm, switch_event->next_pid,
Ingo Molnarad236fd2009-09-11 12:12:54 +0200822 delta);
823 }
Ingo Molnarfbf94822009-09-11 12:12:54 +0200824
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200825 prev = register_pid(switch_event->prev_pid, switch_event->prev_comm);
826 next = register_pid(switch_event->next_pid, switch_event->next_comm);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200827
828 cpu_last_switched[cpu] = timestamp;
829
830 add_sched_event_run(prev, timestamp, delta);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200831 add_sched_event_sleep(prev, timestamp, switch_event->prev_state);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200832}
833
Ingo Molnarfbf94822009-09-11 12:12:54 +0200834
835static void
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200836replay_fork_event(struct trace_fork_event *fork_event,
837 struct event *event,
838 int cpu __used,
839 u64 timestamp __used,
840 struct thread *thread __used)
841{
842 if (verbose) {
843 printf("sched_fork event %p\n", event);
844 printf("... parent: %s/%d\n", fork_event->parent_comm, fork_event->parent_pid);
845 printf("... child: %s/%d\n", fork_event->child_comm, fork_event->child_pid);
846 }
847 register_pid(fork_event->parent_pid, fork_event->parent_comm);
848 register_pid(fork_event->child_pid, fork_event->child_comm);
849}
850
851static struct trace_sched_handler replay_ops = {
Ingo Molnarea92ed52009-09-12 10:08:34 +0200852 .wakeup_event = replay_wakeup_event,
853 .switch_event = replay_switch_event,
854 .fork_event = replay_fork_event,
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200855};
856
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200857struct sort_dimension {
858 const char *name;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200859 sort_fn_t cmp;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200860 struct list_head list;
861};
862
863static LIST_HEAD(cmp_pid);
864
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200865static int
mingo39aeb522009-09-14 20:04:48 +0200866thread_lat_cmp(struct list_head *list, struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200867{
868 struct sort_dimension *sort;
869 int ret = 0;
870
Ingo Molnarb5fae122009-09-11 12:12:54 +0200871 BUG_ON(list_empty(list));
872
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200873 list_for_each_entry(sort, list, list) {
874 ret = sort->cmp(l, r);
875 if (ret)
876 return ret;
877 }
878
879 return ret;
880}
881
mingo39aeb522009-09-14 20:04:48 +0200882static struct work_atoms *
Ingo Molnarb5fae122009-09-11 12:12:54 +0200883thread_atoms_search(struct rb_root *root, struct thread *thread,
884 struct list_head *sort_list)
885{
886 struct rb_node *node = root->rb_node;
mingo39aeb522009-09-14 20:04:48 +0200887 struct work_atoms key = { .thread = thread };
Ingo Molnarb5fae122009-09-11 12:12:54 +0200888
889 while (node) {
mingo39aeb522009-09-14 20:04:48 +0200890 struct work_atoms *atoms;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200891 int cmp;
892
mingo39aeb522009-09-14 20:04:48 +0200893 atoms = container_of(node, struct work_atoms, node);
Ingo Molnarb5fae122009-09-11 12:12:54 +0200894
895 cmp = thread_lat_cmp(sort_list, &key, atoms);
896 if (cmp > 0)
897 node = node->rb_left;
898 else if (cmp < 0)
899 node = node->rb_right;
900 else {
901 BUG_ON(thread != atoms->thread);
902 return atoms;
903 }
904 }
905 return NULL;
906}
907
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200908static void
mingo39aeb522009-09-14 20:04:48 +0200909__thread_latency_insert(struct rb_root *root, struct work_atoms *data,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200910 struct list_head *sort_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200911{
912 struct rb_node **new = &(root->rb_node), *parent = NULL;
913
914 while (*new) {
mingo39aeb522009-09-14 20:04:48 +0200915 struct work_atoms *this;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200916 int cmp;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200917
mingo39aeb522009-09-14 20:04:48 +0200918 this = container_of(*new, struct work_atoms, node);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200919 parent = *new;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200920
921 cmp = thread_lat_cmp(sort_list, data, this);
922
923 if (cmp > 0)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200924 new = &((*new)->rb_left);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200925 else
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200926 new = &((*new)->rb_right);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200927 }
928
929 rb_link_node(&data->node, parent, new);
930 rb_insert_color(&data->node, root);
931}
932
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200933static void thread_atoms_insert(struct thread *thread)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200934{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200935 struct work_atoms *atoms = zalloc(sizeof(*atoms));
Frederic Weisbecker17562202009-09-12 23:11:32 +0200936 if (!atoms)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200937 die("No memory");
938
Frederic Weisbecker17562202009-09-12 23:11:32 +0200939 atoms->thread = thread;
mingo39aeb522009-09-14 20:04:48 +0200940 INIT_LIST_HEAD(&atoms->work_list);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200941 __thread_latency_insert(&atom_root, atoms, &cmp_pid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200942}
943
944static void
945latency_fork_event(struct trace_fork_event *fork_event __used,
946 struct event *event __used,
947 int cpu __used,
948 u64 timestamp __used,
949 struct thread *thread __used)
950{
951 /* should insert the newcomer */
952}
953
Ingo Molnarea92ed52009-09-12 10:08:34 +0200954__used
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200955static char sched_out_state(struct trace_switch_event *switch_event)
956{
957 const char *str = TASK_STATE_TO_CHAR_STR;
958
959 return str[switch_event->prev_state];
960}
961
962static void
mingo39aeb522009-09-14 20:04:48 +0200963add_sched_out_event(struct work_atoms *atoms,
964 char run_state,
965 u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200966{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200967 struct work_atom *atom = zalloc(sizeof(*atom));
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200968 if (!atom)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200969 die("Non memory");
970
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200971 atom->sched_out_time = timestamp;
972
mingo39aeb522009-09-14 20:04:48 +0200973 if (run_state == 'R') {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200974 atom->state = THREAD_WAIT_CPU;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200975 atom->wake_up_time = atom->sched_out_time;
Frederic Weisbeckerc6ced612009-09-13 00:46:19 +0200976 }
977
mingo39aeb522009-09-14 20:04:48 +0200978 list_add_tail(&atom->list, &atoms->work_list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200979}
980
981static void
mingo39aeb522009-09-14 20:04:48 +0200982add_runtime_event(struct work_atoms *atoms, u64 delta, u64 timestamp __used)
983{
984 struct work_atom *atom;
985
986 BUG_ON(list_empty(&atoms->work_list));
987
988 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
989
990 atom->runtime += delta;
991 atoms->total_runtime += delta;
992}
993
994static void
995add_sched_in_event(struct work_atoms *atoms, u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200996{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200997 struct work_atom *atom;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200998 u64 delta;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200999
mingo39aeb522009-09-14 20:04:48 +02001000 if (list_empty(&atoms->work_list))
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001001 return;
1002
mingo39aeb522009-09-14 20:04:48 +02001003 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001004
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001005 if (atom->state != THREAD_WAIT_CPU)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001006 return;
1007
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001008 if (timestamp < atom->wake_up_time) {
1009 atom->state = THREAD_IGNORE;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001010 return;
1011 }
1012
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001013 atom->state = THREAD_SCHED_IN;
1014 atom->sched_in_time = timestamp;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001015
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001016 delta = atom->sched_in_time - atom->wake_up_time;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001017 atoms->total_lat += delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001018 if (delta > atoms->max_lat) {
Frederic Weisbecker66685672009-09-13 01:56:25 +02001019 atoms->max_lat = delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001020 atoms->max_lat_at = timestamp;
1021 }
Frederic Weisbecker66685672009-09-13 01:56:25 +02001022 atoms->nb_atoms++;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001023}
1024
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001025static void
1026latency_switch_event(struct trace_switch_event *switch_event,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001027 struct machine *machine,
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001028 struct event *event __used,
Ingo Molnarea92ed52009-09-12 10:08:34 +02001029 int cpu,
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001030 u64 timestamp,
1031 struct thread *thread __used)
1032{
mingo39aeb522009-09-14 20:04:48 +02001033 struct work_atoms *out_events, *in_events;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001034 struct thread *sched_out, *sched_in;
Ingo Molnarea92ed52009-09-12 10:08:34 +02001035 u64 timestamp0;
1036 s64 delta;
1037
mingo39aeb522009-09-14 20:04:48 +02001038 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
Ingo Molnarea92ed52009-09-12 10:08:34 +02001039
1040 timestamp0 = cpu_last_switched[cpu];
1041 cpu_last_switched[cpu] = timestamp;
1042 if (timestamp0)
1043 delta = timestamp - timestamp0;
1044 else
1045 delta = 0;
1046
1047 if (delta < 0)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001048 die("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Ingo Molnarea92ed52009-09-12 10:08:34 +02001049
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001050
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001051 sched_out = machine__findnew_thread(machine, switch_event->prev_pid);
1052 sched_in = machine__findnew_thread(machine, switch_event->next_pid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001053
mingo39aeb522009-09-14 20:04:48 +02001054 out_events = thread_atoms_search(&atom_root, sched_out, &cmp_pid);
1055 if (!out_events) {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001056 thread_atoms_insert(sched_out);
mingo39aeb522009-09-14 20:04:48 +02001057 out_events = thread_atoms_search(&atom_root, sched_out, &cmp_pid);
1058 if (!out_events)
1059 die("out-event: Internal tree error");
1060 }
1061 add_sched_out_event(out_events, sched_out_state(switch_event), timestamp);
1062
1063 in_events = thread_atoms_search(&atom_root, sched_in, &cmp_pid);
1064 if (!in_events) {
1065 thread_atoms_insert(sched_in);
1066 in_events = thread_atoms_search(&atom_root, sched_in, &cmp_pid);
1067 if (!in_events)
1068 die("in-event: Internal tree error");
1069 /*
1070 * Take came in we have not heard about yet,
1071 * add in an initial atom in runnable state:
1072 */
1073 add_sched_out_event(in_events, 'R', timestamp);
1074 }
1075 add_sched_in_event(in_events, timestamp);
1076}
1077
1078static void
1079latency_runtime_event(struct trace_runtime_event *runtime_event,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001080 struct machine *machine,
mingo39aeb522009-09-14 20:04:48 +02001081 struct event *event __used,
1082 int cpu,
1083 u64 timestamp,
1084 struct thread *this_thread __used)
1085{
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001086 struct thread *thread = machine__findnew_thread(machine, runtime_event->pid);
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -03001087 struct work_atoms *atoms = thread_atoms_search(&atom_root, thread, &cmp_pid);
mingo39aeb522009-09-14 20:04:48 +02001088
1089 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
mingo39aeb522009-09-14 20:04:48 +02001090 if (!atoms) {
1091 thread_atoms_insert(thread);
1092 atoms = thread_atoms_search(&atom_root, thread, &cmp_pid);
1093 if (!atoms)
1094 die("in-event: Internal tree error");
1095 add_sched_out_event(atoms, 'R', timestamp);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001096 }
1097
mingo39aeb522009-09-14 20:04:48 +02001098 add_runtime_event(atoms, runtime_event->runtime, timestamp);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001099}
1100
1101static void
1102latency_wakeup_event(struct trace_wakeup_event *wakeup_event,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001103 struct machine *machine,
mingo39aeb522009-09-14 20:04:48 +02001104 struct event *__event __used,
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001105 int cpu __used,
1106 u64 timestamp,
1107 struct thread *thread __used)
1108{
mingo39aeb522009-09-14 20:04:48 +02001109 struct work_atoms *atoms;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001110 struct work_atom *atom;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001111 struct thread *wakee;
1112
1113 /* Note for later, it may be interesting to observe the failing cases */
1114 if (!wakeup_event->success)
1115 return;
1116
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001117 wakee = machine__findnew_thread(machine, wakeup_event->pid);
Ingo Molnarb5fae122009-09-11 12:12:54 +02001118 atoms = thread_atoms_search(&atom_root, wakee, &cmp_pid);
Frederic Weisbecker17562202009-09-12 23:11:32 +02001119 if (!atoms) {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001120 thread_atoms_insert(wakee);
mingo39aeb522009-09-14 20:04:48 +02001121 atoms = thread_atoms_search(&atom_root, wakee, &cmp_pid);
1122 if (!atoms)
1123 die("wakeup-event: Internal tree error");
1124 add_sched_out_event(atoms, 'S', timestamp);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001125 }
1126
mingo39aeb522009-09-14 20:04:48 +02001127 BUG_ON(list_empty(&atoms->work_list));
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001128
mingo39aeb522009-09-14 20:04:48 +02001129 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001130
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001131 /*
1132 * You WILL be missing events if you've recorded only
1133 * one CPU, or are only looking at only one, so don't
1134 * make useless noise.
1135 */
1136 if (profile_cpu == -1 && atom->state != THREAD_SLEEPING)
Ingo Molnardc02bf72009-09-16 13:45:00 +02001137 nr_state_machine_bugs++;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001138
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001139 nr_timestamps++;
1140 if (atom->sched_out_time > timestamp) {
Ingo Molnardc02bf72009-09-16 13:45:00 +02001141 nr_unordered_timestamps++;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001142 return;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001143 }
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001144
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001145 atom->state = THREAD_WAIT_CPU;
1146 atom->wake_up_time = timestamp;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001147}
1148
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001149static void
1150latency_migrate_task_event(struct trace_migrate_task_event *migrate_task_event,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001151 struct machine *machine,
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001152 struct event *__event __used,
1153 int cpu __used,
1154 u64 timestamp,
1155 struct thread *thread __used)
1156{
1157 struct work_atoms *atoms;
1158 struct work_atom *atom;
1159 struct thread *migrant;
1160
1161 /*
1162 * Only need to worry about migration when profiling one CPU.
1163 */
1164 if (profile_cpu == -1)
1165 return;
1166
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001167 migrant = machine__findnew_thread(machine, migrate_task_event->pid);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001168 atoms = thread_atoms_search(&atom_root, migrant, &cmp_pid);
1169 if (!atoms) {
1170 thread_atoms_insert(migrant);
1171 register_pid(migrant->pid, migrant->comm);
1172 atoms = thread_atoms_search(&atom_root, migrant, &cmp_pid);
1173 if (!atoms)
1174 die("migration-event: Internal tree error");
1175 add_sched_out_event(atoms, 'R', timestamp);
1176 }
1177
1178 BUG_ON(list_empty(&atoms->work_list));
1179
1180 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1181 atom->sched_in_time = atom->sched_out_time = atom->wake_up_time = timestamp;
1182
1183 nr_timestamps++;
1184
1185 if (atom->sched_out_time > timestamp)
1186 nr_unordered_timestamps++;
1187}
1188
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001189static struct trace_sched_handler lat_ops = {
Ingo Molnarea92ed52009-09-12 10:08:34 +02001190 .wakeup_event = latency_wakeup_event,
1191 .switch_event = latency_switch_event,
mingo39aeb522009-09-14 20:04:48 +02001192 .runtime_event = latency_runtime_event,
Ingo Molnarea92ed52009-09-12 10:08:34 +02001193 .fork_event = latency_fork_event,
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001194 .migrate_task_event = latency_migrate_task_event,
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001195};
1196
mingo39aeb522009-09-14 20:04:48 +02001197static void output_lat_thread(struct work_atoms *work_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001198{
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001199 int i;
1200 int ret;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001201 u64 avg;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001202
mingo39aeb522009-09-14 20:04:48 +02001203 if (!work_list->nb_atoms)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001204 return;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001205 /*
1206 * Ignore idle threads:
1207 */
Ingo Molnar80ed0982009-09-16 14:12:36 +02001208 if (!strcmp(work_list->thread->comm, "swapper"))
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001209 return;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001210
mingo39aeb522009-09-14 20:04:48 +02001211 all_runtime += work_list->total_runtime;
1212 all_count += work_list->nb_atoms;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001213
Ingo Molnar80ed0982009-09-16 14:12:36 +02001214 ret = printf(" %s:%d ", work_list->thread->comm, work_list->thread->pid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001215
mingo08f69e62009-09-14 18:30:44 +02001216 for (i = 0; i < 24 - ret; i++)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001217 printf(" ");
1218
mingo39aeb522009-09-14 20:04:48 +02001219 avg = work_list->total_lat / work_list->nb_atoms;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001220
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001221 printf("|%11.3f ms |%9" PRIu64 " | avg:%9.3f ms | max:%9.3f ms | max at: %9.6f s\n",
mingo39aeb522009-09-14 20:04:48 +02001222 (double)work_list->total_runtime / 1e6,
1223 work_list->nb_atoms, (double)avg / 1e6,
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001224 (double)work_list->max_lat / 1e6,
1225 (double)work_list->max_lat_at / 1e9);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001226}
1227
mingo39aeb522009-09-14 20:04:48 +02001228static int pid_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001229{
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001230 if (l->thread->pid < r->thread->pid)
1231 return -1;
1232 if (l->thread->pid > r->thread->pid)
1233 return 1;
1234
1235 return 0;
1236}
1237
1238static struct sort_dimension pid_sort_dimension = {
Ingo Molnarb5fae122009-09-11 12:12:54 +02001239 .name = "pid",
1240 .cmp = pid_cmp,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001241};
1242
mingo39aeb522009-09-14 20:04:48 +02001243static int avg_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001244{
1245 u64 avgl, avgr;
1246
1247 if (!l->nb_atoms)
1248 return -1;
1249
1250 if (!r->nb_atoms)
1251 return 1;
1252
1253 avgl = l->total_lat / l->nb_atoms;
1254 avgr = r->total_lat / r->nb_atoms;
1255
1256 if (avgl < avgr)
1257 return -1;
1258 if (avgl > avgr)
1259 return 1;
1260
1261 return 0;
1262}
1263
1264static struct sort_dimension avg_sort_dimension = {
Ingo Molnarb5fae122009-09-11 12:12:54 +02001265 .name = "avg",
1266 .cmp = avg_cmp,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001267};
1268
mingo39aeb522009-09-14 20:04:48 +02001269static int max_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001270{
1271 if (l->max_lat < r->max_lat)
1272 return -1;
1273 if (l->max_lat > r->max_lat)
1274 return 1;
1275
1276 return 0;
1277}
1278
1279static struct sort_dimension max_sort_dimension = {
Ingo Molnarb5fae122009-09-11 12:12:54 +02001280 .name = "max",
1281 .cmp = max_cmp,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001282};
1283
mingo39aeb522009-09-14 20:04:48 +02001284static int switch_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001285{
1286 if (l->nb_atoms < r->nb_atoms)
1287 return -1;
1288 if (l->nb_atoms > r->nb_atoms)
1289 return 1;
1290
1291 return 0;
1292}
1293
1294static struct sort_dimension switch_sort_dimension = {
Ingo Molnarb5fae122009-09-11 12:12:54 +02001295 .name = "switch",
1296 .cmp = switch_cmp,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001297};
1298
mingo39aeb522009-09-14 20:04:48 +02001299static int runtime_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001300{
1301 if (l->total_runtime < r->total_runtime)
1302 return -1;
1303 if (l->total_runtime > r->total_runtime)
1304 return 1;
1305
1306 return 0;
1307}
1308
1309static struct sort_dimension runtime_sort_dimension = {
Ingo Molnarb5fae122009-09-11 12:12:54 +02001310 .name = "runtime",
1311 .cmp = runtime_cmp,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001312};
1313
1314static struct sort_dimension *available_sorts[] = {
1315 &pid_sort_dimension,
1316 &avg_sort_dimension,
1317 &max_sort_dimension,
1318 &switch_sort_dimension,
1319 &runtime_sort_dimension,
1320};
1321
1322#define NB_AVAILABLE_SORTS (int)(sizeof(available_sorts) / sizeof(struct sort_dimension *))
1323
1324static LIST_HEAD(sort_list);
1325
Randy Dunlapcbef79a2009-10-05 13:17:29 -07001326static int sort_dimension__add(const char *tok, struct list_head *list)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001327{
1328 int i;
1329
1330 for (i = 0; i < NB_AVAILABLE_SORTS; i++) {
1331 if (!strcmp(available_sorts[i]->name, tok)) {
1332 list_add_tail(&available_sorts[i]->list, list);
1333
1334 return 0;
1335 }
1336 }
1337
1338 return -1;
1339}
1340
1341static void setup_sorting(void);
1342
1343static void sort_lat(void)
1344{
1345 struct rb_node *node;
1346
1347 for (;;) {
mingo39aeb522009-09-14 20:04:48 +02001348 struct work_atoms *data;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001349 node = rb_first(&atom_root);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001350 if (!node)
1351 break;
1352
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001353 rb_erase(node, &atom_root);
mingo39aeb522009-09-14 20:04:48 +02001354 data = rb_entry(node, struct work_atoms, node);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001355 __thread_latency_insert(&sorted_atom_root, data, &sort_list);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001356 }
1357}
1358
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001359static struct trace_sched_handler *trace_handler;
1360
1361static void
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001362process_sched_wakeup_event(struct perf_tool *tool __used,
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001363 struct event *event,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001364 struct perf_sample *sample,
1365 struct machine *machine,
1366 struct thread *thread)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001367{
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001368 void *data = sample->raw_data;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001369 struct trace_wakeup_event wakeup_event;
1370
Xiao Guangrongf48f6692009-12-07 13:04:04 +08001371 FILL_COMMON_FIELDS(wakeup_event, event, data);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001372
Xiao Guangrongf48f6692009-12-07 13:04:04 +08001373 FILL_ARRAY(wakeup_event, comm, event, data);
1374 FILL_FIELD(wakeup_event, pid, event, data);
1375 FILL_FIELD(wakeup_event, prio, event, data);
1376 FILL_FIELD(wakeup_event, success, event, data);
1377 FILL_FIELD(wakeup_event, cpu, event, data);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001378
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001379 if (trace_handler->wakeup_event)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001380 trace_handler->wakeup_event(&wakeup_event, machine, event,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001381 sample->cpu, sample->time, thread);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001382}
1383
Ingo Molnarc8a37752009-09-16 14:07:00 +02001384/*
1385 * Track the current task - that way we can know whether there's any
1386 * weird events, such as a task being switched away that is not current.
1387 */
Ingo Molnar40749d02009-09-17 18:24:55 +02001388static int max_cpu;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001389
Ingo Molnarc8a37752009-09-16 14:07:00 +02001390static u32 curr_pid[MAX_CPUS] = { [0 ... MAX_CPUS-1] = -1 };
1391
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001392static struct thread *curr_thread[MAX_CPUS];
1393
1394static char next_shortname1 = 'A';
1395static char next_shortname2 = '0';
1396
1397static void
1398map_switch_event(struct trace_switch_event *switch_event,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001399 struct machine *machine,
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001400 struct event *event __used,
1401 int this_cpu,
1402 u64 timestamp,
1403 struct thread *thread __used)
1404{
Kyle McMartinfb7d0b32011-01-24 11:13:04 -05001405 struct thread *sched_out __used, *sched_in;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001406 int new_shortname;
1407 u64 timestamp0;
1408 s64 delta;
1409 int cpu;
1410
1411 BUG_ON(this_cpu >= MAX_CPUS || this_cpu < 0);
1412
1413 if (this_cpu > max_cpu)
1414 max_cpu = this_cpu;
1415
1416 timestamp0 = cpu_last_switched[this_cpu];
1417 cpu_last_switched[this_cpu] = timestamp;
1418 if (timestamp0)
1419 delta = timestamp - timestamp0;
1420 else
1421 delta = 0;
1422
1423 if (delta < 0)
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001424 die("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001425
1426
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001427 sched_out = machine__findnew_thread(machine, switch_event->prev_pid);
1428 sched_in = machine__findnew_thread(machine, switch_event->next_pid);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001429
1430 curr_thread[this_cpu] = sched_in;
1431
1432 printf(" ");
1433
1434 new_shortname = 0;
1435 if (!sched_in->shortname[0]) {
1436 sched_in->shortname[0] = next_shortname1;
1437 sched_in->shortname[1] = next_shortname2;
1438
1439 if (next_shortname1 < 'Z') {
1440 next_shortname1++;
1441 } else {
1442 next_shortname1='A';
1443 if (next_shortname2 < '9') {
1444 next_shortname2++;
1445 } else {
1446 next_shortname2='0';
1447 }
1448 }
1449 new_shortname = 1;
1450 }
1451
1452 for (cpu = 0; cpu <= max_cpu; cpu++) {
1453 if (cpu != this_cpu)
1454 printf(" ");
1455 else
1456 printf("*");
1457
1458 if (curr_thread[cpu]) {
1459 if (curr_thread[cpu]->pid)
1460 printf("%2s ", curr_thread[cpu]->shortname);
1461 else
1462 printf(". ");
1463 } else
1464 printf(" ");
1465 }
1466
1467 printf(" %12.6f secs ", (double)timestamp/1e9);
1468 if (new_shortname) {
1469 printf("%s => %s:%d\n",
1470 sched_in->shortname, sched_in->comm, sched_in->pid);
1471 } else {
1472 printf("\n");
1473 }
1474}
1475
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001476static void
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001477process_sched_switch_event(struct perf_tool *tool __used,
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001478 struct event *event,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001479 struct perf_sample *sample,
1480 struct machine *machine,
1481 struct thread *thread)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001482{
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001483 int this_cpu = sample->cpu;
1484 void *data = sample->raw_data;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001485 struct trace_switch_event switch_event;
1486
Xiao Guangrongf48f6692009-12-07 13:04:04 +08001487 FILL_COMMON_FIELDS(switch_event, event, data);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001488
Xiao Guangrongf48f6692009-12-07 13:04:04 +08001489 FILL_ARRAY(switch_event, prev_comm, event, data);
1490 FILL_FIELD(switch_event, prev_pid, event, data);
1491 FILL_FIELD(switch_event, prev_prio, event, data);
1492 FILL_FIELD(switch_event, prev_state, event, data);
1493 FILL_ARRAY(switch_event, next_comm, event, data);
1494 FILL_FIELD(switch_event, next_pid, event, data);
1495 FILL_FIELD(switch_event, next_prio, event, data);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001496
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001497 if (curr_pid[this_cpu] != (u32)-1) {
Ingo Molnarc8a37752009-09-16 14:07:00 +02001498 /*
1499 * Are we trying to switch away a PID that is
1500 * not current?
1501 */
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001502 if (curr_pid[this_cpu] != switch_event.prev_pid)
Ingo Molnarc8a37752009-09-16 14:07:00 +02001503 nr_context_switch_bugs++;
1504 }
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001505 if (trace_handler->switch_event)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001506 trace_handler->switch_event(&switch_event, machine, event,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001507 this_cpu, sample->time, thread);
Ingo Molnarc8a37752009-09-16 14:07:00 +02001508
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001509 curr_pid[this_cpu] = switch_event.next_pid;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001510}
1511
1512static void
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001513process_sched_runtime_event(struct perf_tool *tool __used,
1514 struct event *event,
1515 struct perf_sample *sample,
1516 struct machine *machine,
1517 struct thread *thread)
mingo39aeb522009-09-14 20:04:48 +02001518{
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001519 void *data = sample->raw_data;
mingo39aeb522009-09-14 20:04:48 +02001520 struct trace_runtime_event runtime_event;
1521
Xiao Guangrongf48f6692009-12-07 13:04:04 +08001522 FILL_ARRAY(runtime_event, comm, event, data);
1523 FILL_FIELD(runtime_event, pid, event, data);
1524 FILL_FIELD(runtime_event, runtime, event, data);
1525 FILL_FIELD(runtime_event, vruntime, event, data);
mingo39aeb522009-09-14 20:04:48 +02001526
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001527 if (trace_handler->runtime_event)
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001528 trace_handler->runtime_event(&runtime_event, machine, event,
1529 sample->cpu, sample->time, thread);
mingo39aeb522009-09-14 20:04:48 +02001530}
1531
1532static void
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001533process_sched_fork_event(struct perf_tool *tool __used,
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001534 struct event *event,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001535 struct perf_sample *sample,
1536 struct machine *machine __used,
1537 struct thread *thread)
Ingo Molnarfbf94822009-09-11 12:12:54 +02001538{
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001539 void *data = sample->raw_data;
Frederic Weisbecker46538812009-09-12 02:43:45 +02001540 struct trace_fork_event fork_event;
1541
Xiao Guangrongf48f6692009-12-07 13:04:04 +08001542 FILL_COMMON_FIELDS(fork_event, event, data);
Frederic Weisbecker46538812009-09-12 02:43:45 +02001543
Xiao Guangrongf48f6692009-12-07 13:04:04 +08001544 FILL_ARRAY(fork_event, parent_comm, event, data);
1545 FILL_FIELD(fork_event, parent_pid, event, data);
1546 FILL_ARRAY(fork_event, child_comm, event, data);
1547 FILL_FIELD(fork_event, child_pid, event, data);
Frederic Weisbecker46538812009-09-12 02:43:45 +02001548
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001549 if (trace_handler->fork_event)
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -02001550 trace_handler->fork_event(&fork_event, event,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001551 sample->cpu, sample->time, thread);
Ingo Molnarfbf94822009-09-11 12:12:54 +02001552}
1553
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001554static void
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001555process_sched_exit_event(struct perf_tool *tool __used,
1556 struct event *event,
1557 struct perf_sample *sample __used,
1558 struct machine *machine __used,
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001559 struct thread *thread __used)
Ingo Molnarfbf94822009-09-11 12:12:54 +02001560{
Ingo Molnarad236fd2009-09-11 12:12:54 +02001561 if (verbose)
1562 printf("sched_exit event %p\n", event);
Ingo Molnarec156762009-09-11 12:12:54 +02001563}
1564
1565static void
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001566process_sched_migrate_task_event(struct perf_tool *tool __used,
1567 struct event *event,
1568 struct perf_sample *sample,
1569 struct machine *machine,
1570 struct thread *thread)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001571{
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001572 void *data = sample->raw_data;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001573 struct trace_migrate_task_event migrate_task_event;
1574
Xiao Guangrongf48f6692009-12-07 13:04:04 +08001575 FILL_COMMON_FIELDS(migrate_task_event, event, data);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001576
Xiao Guangrongf48f6692009-12-07 13:04:04 +08001577 FILL_ARRAY(migrate_task_event, comm, event, data);
1578 FILL_FIELD(migrate_task_event, pid, event, data);
1579 FILL_FIELD(migrate_task_event, prio, event, data);
1580 FILL_FIELD(migrate_task_event, cpu, event, data);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001581
1582 if (trace_handler->migrate_task_event)
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02001583 trace_handler->migrate_task_event(&migrate_task_event, machine,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001584 event, sample->cpu,
1585 sample->time, thread);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001586}
1587
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001588typedef void (*tracepoint_handler)(struct perf_tool *tool, struct event *event,
1589 struct perf_sample *sample,
1590 struct machine *machine,
1591 struct thread *thread);
1592
1593static int perf_sched__process_tracepoint_sample(struct perf_tool *tool,
1594 union perf_event *event __used,
1595 struct perf_sample *sample,
1596 struct perf_evsel *evsel,
1597 struct machine *machine)
Ingo Molnarec156762009-09-11 12:12:54 +02001598{
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001599 struct thread *thread = machine__findnew_thread(machine, sample->pid);
Ingo Molnarec156762009-09-11 12:12:54 +02001600
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001601 if (thread == NULL) {
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001602 pr_debug("problem processing %s event, skipping it.\n",
1603 evsel->name);
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001604 return -1;
1605 }
1606
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001607 evsel->hists.stats.total_period += sample->period;
1608 hists__inc_nr_events(&evsel->hists, PERF_RECORD_SAMPLE);
Julia Lawallf39cdf22009-10-17 08:43:17 +02001609
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001610 if (evsel->handler.func != NULL) {
1611 tracepoint_handler f = evsel->handler.func;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001612
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001613 if (evsel->handler.data == NULL)
1614 evsel->handler.data = trace_find_event(evsel->attr.config);
1615
1616 f(tool, evsel->handler.data, sample, machine, thread);
1617 }
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001618
1619 return 0;
1620}
1621
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001622static struct perf_tool perf_sched = {
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001623 .sample = perf_sched__process_tracepoint_sample,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02001624 .comm = perf_event__process_comm,
1625 .lost = perf_event__process_lost,
1626 .fork = perf_event__process_task,
Frederic Weisbeckera64eae72010-04-24 00:29:40 +02001627 .ordered_samples = true,
Frederic Weisbecker016e92f2009-10-07 12:47:31 +02001628};
1629
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001630static void read_events(bool destroy, struct perf_session **psession)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001631{
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -02001632 int err = -EINVAL;
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001633 const struct perf_evsel_str_handler handlers[] = {
1634 { "sched:sched_switch", process_sched_switch_event, },
1635 { "sched:sched_stat_runtime", process_sched_runtime_event, },
1636 { "sched:sched_wakeup", process_sched_wakeup_event, },
1637 { "sched:sched_wakeup_new", process_sched_wakeup_event, },
1638 { "sched:sched_process_fork", process_sched_fork_event, },
1639 { "sched:sched_process_exit", process_sched_exit_event, },
1640 { "sched:sched_migrate_task", process_sched_migrate_task_event, },
1641 };
Ian Munsie21ef97f2010-12-10 14:09:16 +11001642 struct perf_session *session = perf_session__new(input_name, O_RDONLY,
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001643 0, false, &perf_sched);
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02001644 if (session == NULL)
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001645 die("No Memory");
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02001646
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001647 err = perf_evlist__set_tracepoints_handlers_array(session->evlist, handlers);
1648 assert(err == 0);
1649
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001650 if (perf_session__has_traces(session, "record -R")) {
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02001651 err = perf_session__process_events(session, &perf_sched);
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001652 if (err)
1653 die("Failed to process events, error %d", err);
1654
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001655 nr_events = session->hists.stats.nr_events[0];
1656 nr_lost_events = session->hists.stats.total_lost;
1657 nr_lost_chunks = session->hists.stats.nr_events[PERF_RECORD_LOST];
1658 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -02001659
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001660 if (destroy)
1661 perf_session__delete(session);
1662
1663 if (psession)
1664 *psession = session;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001665}
1666
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001667static void print_bad_events(void)
1668{
1669 if (nr_unordered_timestamps && nr_timestamps) {
1670 printf(" INFO: %.3f%% unordered timestamps (%ld out of %ld)\n",
1671 (double)nr_unordered_timestamps/(double)nr_timestamps*100.0,
1672 nr_unordered_timestamps, nr_timestamps);
1673 }
1674 if (nr_lost_events && nr_events) {
1675 printf(" INFO: %.3f%% lost events (%ld out of %ld, in %ld chunks)\n",
1676 (double)nr_lost_events/(double)nr_events*100.0,
1677 nr_lost_events, nr_events, nr_lost_chunks);
1678 }
1679 if (nr_state_machine_bugs && nr_timestamps) {
1680 printf(" INFO: %.3f%% state machine bugs (%ld out of %ld)",
1681 (double)nr_state_machine_bugs/(double)nr_timestamps*100.0,
1682 nr_state_machine_bugs, nr_timestamps);
1683 if (nr_lost_events)
1684 printf(" (due to lost events?)");
1685 printf("\n");
1686 }
1687 if (nr_context_switch_bugs && nr_timestamps) {
1688 printf(" INFO: %.3f%% context switch bugs (%ld out of %ld)",
1689 (double)nr_context_switch_bugs/(double)nr_timestamps*100.0,
1690 nr_context_switch_bugs, nr_timestamps);
1691 if (nr_lost_events)
1692 printf(" (due to lost events?)");
1693 printf("\n");
1694 }
1695}
1696
1697static void __cmd_lat(void)
1698{
1699 struct rb_node *next;
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001700 struct perf_session *session;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001701
1702 setup_pager();
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001703 read_events(false, &session);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001704 sort_lat();
1705
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001706 printf("\n ---------------------------------------------------------------------------------------------------------------\n");
1707 printf(" Task | Runtime ms | Switches | Average delay ms | Maximum delay ms | Maximum delay at |\n");
1708 printf(" ---------------------------------------------------------------------------------------------------------------\n");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001709
1710 next = rb_first(&sorted_atom_root);
1711
1712 while (next) {
1713 struct work_atoms *work_list;
1714
1715 work_list = rb_entry(next, struct work_atoms, node);
1716 output_lat_thread(work_list);
1717 next = rb_next(next);
1718 }
1719
1720 printf(" -----------------------------------------------------------------------------------------\n");
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001721 printf(" TOTAL: |%11.3f ms |%9" PRIu64 " |\n",
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001722 (double)all_runtime/1e6, all_count);
1723
1724 printf(" ---------------------------------------------------\n");
1725
1726 print_bad_events();
1727 printf("\n");
1728
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001729 perf_session__delete(session);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001730}
1731
1732static struct trace_sched_handler map_ops = {
1733 .wakeup_event = NULL,
1734 .switch_event = map_switch_event,
1735 .runtime_event = NULL,
1736 .fork_event = NULL,
1737};
1738
1739static void __cmd_map(void)
1740{
Ingo Molnar40749d02009-09-17 18:24:55 +02001741 max_cpu = sysconf(_SC_NPROCESSORS_CONF);
1742
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001743 setup_pager();
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001744 read_events(true, NULL);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001745 print_bad_events();
1746}
1747
1748static void __cmd_replay(void)
1749{
1750 unsigned long i;
1751
1752 calibrate_run_measurement_overhead();
1753 calibrate_sleep_measurement_overhead();
1754
1755 test_calibrations();
1756
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001757 read_events(true, NULL);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001758
1759 printf("nr_run_events: %ld\n", nr_run_events);
1760 printf("nr_sleep_events: %ld\n", nr_sleep_events);
1761 printf("nr_wakeup_events: %ld\n", nr_wakeup_events);
1762
1763 if (targetless_wakeups)
1764 printf("target-less wakeups: %ld\n", targetless_wakeups);
1765 if (multitarget_wakeups)
1766 printf("multi-target wakeups: %ld\n", multitarget_wakeups);
1767 if (nr_run_events_optimized)
1768 printf("run atoms optimized: %ld\n",
1769 nr_run_events_optimized);
1770
1771 print_task_traces();
1772 add_cross_task_wakeups();
1773
1774 create_tasks();
1775 printf("------------------------------------------------------------\n");
1776 for (i = 0; i < replay_repeat; i++)
1777 run_one_test();
1778}
1779
1780
Ingo Molnar46f392c2009-09-12 10:08:34 +02001781static const char * const sched_usage[] = {
Jiri Olsa580cabe2011-08-09 14:46:51 +02001782 "perf sched [<options>] {record|latency|map|replay|script}",
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001783 NULL
1784};
1785
Ingo Molnarf2858d82009-09-11 12:12:54 +02001786static const struct option sched_options[] = {
Mike Galbraith4b77a722009-09-18 08:22:24 +02001787 OPT_STRING('i', "input", &input_name, "file",
1788 "input file name"),
Ian Munsiec0555642010-04-13 18:37:33 +10001789 OPT_INCR('v', "verbose", &verbose,
Ingo Molnarf2858d82009-09-11 12:12:54 +02001790 "be more verbose (show symbol address, etc)"),
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001791 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1792 "dump raw trace in ASCII"),
Ingo Molnarf2858d82009-09-11 12:12:54 +02001793 OPT_END()
1794};
1795
1796static const char * const latency_usage[] = {
1797 "perf sched latency [<options>]",
1798 NULL
1799};
1800
1801static const struct option latency_options[] = {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001802 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
1803 "sort by key(s): runtime, switch, avg, max"),
Ian Munsiec0555642010-04-13 18:37:33 +10001804 OPT_INCR('v', "verbose", &verbose,
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001805 "be more verbose (show symbol address, etc)"),
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001806 OPT_INTEGER('C', "CPU", &profile_cpu,
1807 "CPU to profile on"),
Ingo Molnarf2858d82009-09-11 12:12:54 +02001808 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1809 "dump raw trace in ASCII"),
1810 OPT_END()
1811};
1812
1813static const char * const replay_usage[] = {
1814 "perf sched replay [<options>]",
1815 NULL
1816};
1817
1818static const struct option replay_options[] = {
Arnaldo Carvalho de Melo19679362010-05-17 15:39:16 -03001819 OPT_UINTEGER('r', "repeat", &replay_repeat,
1820 "repeat the workload replay N times (-1: infinite)"),
Ian Munsiec0555642010-04-13 18:37:33 +10001821 OPT_INCR('v', "verbose", &verbose,
Ingo Molnarf2858d82009-09-11 12:12:54 +02001822 "be more verbose (show symbol address, etc)"),
1823 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1824 "dump raw trace in ASCII"),
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001825 OPT_END()
1826};
1827
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001828static void setup_sorting(void)
1829{
1830 char *tmp, *tok, *str = strdup(sort_order);
1831
1832 for (tok = strtok_r(str, ", ", &tmp);
1833 tok; tok = strtok_r(NULL, ", ", &tmp)) {
1834 if (sort_dimension__add(tok, &sort_list) < 0) {
1835 error("Unknown --sort key: `%s'", tok);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001836 usage_with_options(latency_usage, latency_options);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001837 }
1838 }
1839
1840 free(str);
1841
Randy Dunlapcbef79a2009-10-05 13:17:29 -07001842 sort_dimension__add("pid", &cmp_pid);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001843}
1844
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001845static const char *record_args[] = {
1846 "record",
1847 "-a",
1848 "-R",
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001849 "-f",
Ingo Molnardc02bf72009-09-16 13:45:00 +02001850 "-m", "1024",
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001851 "-c", "1",
Stephane Eranian97101182011-01-12 10:29:05 +01001852 "-e", "sched:sched_switch",
1853 "-e", "sched:sched_stat_wait",
1854 "-e", "sched:sched_stat_sleep",
1855 "-e", "sched:sched_stat_iowait",
1856 "-e", "sched:sched_stat_runtime",
1857 "-e", "sched:sched_process_exit",
1858 "-e", "sched:sched_process_fork",
1859 "-e", "sched:sched_wakeup",
1860 "-e", "sched:sched_migrate_task",
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001861};
1862
1863static int __cmd_record(int argc, const char **argv)
1864{
1865 unsigned int rec_argc, i, j;
1866 const char **rec_argv;
1867
1868 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
1869 rec_argv = calloc(rec_argc + 1, sizeof(char *));
1870
Arnaldo Carvalho de Meloe462dc52011-01-10 10:48:47 -02001871 if (rec_argv == NULL)
Chris Samuelce47dc52010-11-13 13:35:06 +11001872 return -ENOMEM;
1873
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001874 for (i = 0; i < ARRAY_SIZE(record_args); i++)
1875 rec_argv[i] = strdup(record_args[i]);
1876
1877 for (j = 1; j < (unsigned int)argc; j++, i++)
1878 rec_argv[i] = argv[j];
1879
1880 BUG_ON(i != rec_argc);
1881
1882 return cmd_record(i, rec_argv, NULL);
1883}
1884
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001885int cmd_sched(int argc, const char **argv, const char *prefix __used)
1886{
Ingo Molnarf2858d82009-09-11 12:12:54 +02001887 argc = parse_options(argc, argv, sched_options, sched_usage,
1888 PARSE_OPT_STOP_AT_NON_OPTION);
1889 if (!argc)
1890 usage_with_options(sched_usage, sched_options);
1891
Xiao Guangrongc0777c52009-12-07 12:04:49 +08001892 /*
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001893 * Aliased to 'perf script' for now:
Xiao Guangrongc0777c52009-12-07 12:04:49 +08001894 */
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001895 if (!strcmp(argv[0], "script"))
1896 return cmd_script(argc, argv, prefix);
Xiao Guangrongc0777c52009-12-07 12:04:49 +08001897
Arnaldo Carvalho de Melo75be6cf2009-12-15 20:04:39 -02001898 symbol__init();
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001899 if (!strncmp(argv[0], "rec", 3)) {
1900 return __cmd_record(argc, argv);
1901 } else if (!strncmp(argv[0], "lat", 3)) {
Ingo Molnarf2858d82009-09-11 12:12:54 +02001902 trace_handler = &lat_ops;
1903 if (argc > 1) {
1904 argc = parse_options(argc, argv, latency_options, latency_usage, 0);
1905 if (argc)
1906 usage_with_options(latency_usage, latency_options);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001907 }
Ingo Molnarb5fae122009-09-11 12:12:54 +02001908 setup_sorting();
Ingo Molnarf2858d82009-09-11 12:12:54 +02001909 __cmd_lat();
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001910 } else if (!strcmp(argv[0], "map")) {
1911 trace_handler = &map_ops;
1912 setup_sorting();
1913 __cmd_map();
Ingo Molnarf2858d82009-09-11 12:12:54 +02001914 } else if (!strncmp(argv[0], "rep", 3)) {
1915 trace_handler = &replay_ops;
1916 if (argc) {
1917 argc = parse_options(argc, argv, replay_options, replay_usage, 0);
1918 if (argc)
1919 usage_with_options(replay_usage, replay_options);
1920 }
1921 __cmd_replay();
1922 } else {
1923 usage_with_options(sched_usage, sched_options);
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001924 }
1925
Ingo Molnarec156762009-09-11 12:12:54 +02001926 return 0;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001927}