dm table: reject devices without request fns
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / tools / perf / builtin-sched.c
blobae7225c53c29d11b7d7eedce95f520cd1feaed9d
1 #include "builtin.h"
2 #include "perf.h"
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 #include "util/session.h"
11 #include "util/parse-options.h"
12 #include "util/trace-event.h"
14 #include "util/debug.h"
16 #include <sys/prctl.h>
18 #include <semaphore.h>
19 #include <pthread.h>
20 #include <math.h>
22 static char const *input_name = "perf.data";
24 static char default_sort_order[] = "avg, max, switch, runtime";
25 static const char *sort_order = default_sort_order;
27 static int profile_cpu = -1;
29 #define PR_SET_NAME 15 /* Set process name */
30 #define MAX_CPUS 4096
32 static u64 run_measurement_overhead;
33 static u64 sleep_measurement_overhead;
35 #define COMM_LEN 20
36 #define SYM_LEN 129
38 #define MAX_PID 65536
40 static unsigned long nr_tasks;
42 struct sched_atom;
44 struct task_desc {
45 unsigned long nr;
46 unsigned long pid;
47 char comm[COMM_LEN];
49 unsigned long nr_events;
50 unsigned long curr_event;
51 struct sched_atom **atoms;
53 pthread_t thread;
54 sem_t sleep_sem;
56 sem_t ready_for_work;
57 sem_t work_done_sem;
59 u64 cpu_usage;
62 enum sched_event_type {
63 SCHED_EVENT_RUN,
64 SCHED_EVENT_SLEEP,
65 SCHED_EVENT_WAKEUP,
66 SCHED_EVENT_MIGRATION,
69 struct sched_atom {
70 enum sched_event_type type;
71 int specific_wait;
72 u64 timestamp;
73 u64 duration;
74 unsigned long nr;
75 sem_t *wait_sem;
76 struct task_desc *wakee;
79 static struct task_desc *pid_to_task[MAX_PID];
81 static struct task_desc **tasks;
83 static pthread_mutex_t start_work_mutex = PTHREAD_MUTEX_INITIALIZER;
84 static u64 start_time;
86 static pthread_mutex_t work_done_wait_mutex = PTHREAD_MUTEX_INITIALIZER;
88 static unsigned long nr_run_events;
89 static unsigned long nr_sleep_events;
90 static unsigned long nr_wakeup_events;
92 static unsigned long nr_sleep_corrections;
93 static unsigned long nr_run_events_optimized;
95 static unsigned long targetless_wakeups;
96 static unsigned long multitarget_wakeups;
98 static u64 cpu_usage;
99 static u64 runavg_cpu_usage;
100 static u64 parent_cpu_usage;
101 static u64 runavg_parent_cpu_usage;
103 static unsigned long nr_runs;
104 static u64 sum_runtime;
105 static u64 sum_fluct;
106 static u64 run_avg;
108 static unsigned int replay_repeat = 10;
109 static unsigned long nr_timestamps;
110 static unsigned long nr_unordered_timestamps;
111 static unsigned long nr_state_machine_bugs;
112 static unsigned long nr_context_switch_bugs;
113 static unsigned long nr_events;
114 static unsigned long nr_lost_chunks;
115 static unsigned long nr_lost_events;
117 #define TASK_STATE_TO_CHAR_STR "RSDTtZX"
119 enum thread_state {
120 THREAD_SLEEPING = 0,
121 THREAD_WAIT_CPU,
122 THREAD_SCHED_IN,
123 THREAD_IGNORE
126 struct work_atom {
127 struct list_head list;
128 enum thread_state state;
129 u64 sched_out_time;
130 u64 wake_up_time;
131 u64 sched_in_time;
132 u64 runtime;
135 struct work_atoms {
136 struct list_head work_list;
137 struct thread *thread;
138 struct rb_node node;
139 u64 max_lat;
140 u64 max_lat_at;
141 u64 total_lat;
142 u64 nb_atoms;
143 u64 total_runtime;
146 typedef int (*sort_fn_t)(struct work_atoms *, struct work_atoms *);
148 static struct rb_root atom_root, sorted_atom_root;
150 static u64 all_runtime;
151 static u64 all_count;
154 static u64 get_nsecs(void)
156 struct timespec ts;
158 clock_gettime(CLOCK_MONOTONIC, &ts);
160 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
163 static void burn_nsecs(u64 nsecs)
165 u64 T0 = get_nsecs(), T1;
167 do {
168 T1 = get_nsecs();
169 } while (T1 + run_measurement_overhead < T0 + nsecs);
172 static void sleep_nsecs(u64 nsecs)
174 struct timespec ts;
176 ts.tv_nsec = nsecs % 999999999;
177 ts.tv_sec = nsecs / 999999999;
179 nanosleep(&ts, NULL);
182 static void calibrate_run_measurement_overhead(void)
184 u64 T0, T1, delta, min_delta = 1000000000ULL;
185 int i;
187 for (i = 0; i < 10; i++) {
188 T0 = get_nsecs();
189 burn_nsecs(0);
190 T1 = get_nsecs();
191 delta = T1-T0;
192 min_delta = min(min_delta, delta);
194 run_measurement_overhead = min_delta;
196 printf("run measurement overhead: %" PRIu64 " nsecs\n", min_delta);
199 static void calibrate_sleep_measurement_overhead(void)
201 u64 T0, T1, delta, min_delta = 1000000000ULL;
202 int i;
204 for (i = 0; i < 10; i++) {
205 T0 = get_nsecs();
206 sleep_nsecs(10000);
207 T1 = get_nsecs();
208 delta = T1-T0;
209 min_delta = min(min_delta, delta);
211 min_delta -= 10000;
212 sleep_measurement_overhead = min_delta;
214 printf("sleep measurement overhead: %" PRIu64 " nsecs\n", min_delta);
217 static struct sched_atom *
218 get_new_event(struct task_desc *task, u64 timestamp)
220 struct sched_atom *event = zalloc(sizeof(*event));
221 unsigned long idx = task->nr_events;
222 size_t size;
224 event->timestamp = timestamp;
225 event->nr = idx;
227 task->nr_events++;
228 size = sizeof(struct sched_atom *) * task->nr_events;
229 task->atoms = realloc(task->atoms, size);
230 BUG_ON(!task->atoms);
232 task->atoms[idx] = event;
234 return event;
237 static struct sched_atom *last_event(struct task_desc *task)
239 if (!task->nr_events)
240 return NULL;
242 return task->atoms[task->nr_events - 1];
245 static void
246 add_sched_event_run(struct task_desc *task, u64 timestamp, u64 duration)
248 struct sched_atom *event, *curr_event = last_event(task);
251 * optimize an existing RUN event by merging this one
252 * to it:
254 if (curr_event && curr_event->type == SCHED_EVENT_RUN) {
255 nr_run_events_optimized++;
256 curr_event->duration += duration;
257 return;
260 event = get_new_event(task, timestamp);
262 event->type = SCHED_EVENT_RUN;
263 event->duration = duration;
265 nr_run_events++;
268 static void
269 add_sched_event_wakeup(struct task_desc *task, u64 timestamp,
270 struct task_desc *wakee)
272 struct sched_atom *event, *wakee_event;
274 event = get_new_event(task, timestamp);
275 event->type = SCHED_EVENT_WAKEUP;
276 event->wakee = wakee;
278 wakee_event = last_event(wakee);
279 if (!wakee_event || wakee_event->type != SCHED_EVENT_SLEEP) {
280 targetless_wakeups++;
281 return;
283 if (wakee_event->wait_sem) {
284 multitarget_wakeups++;
285 return;
288 wakee_event->wait_sem = zalloc(sizeof(*wakee_event->wait_sem));
289 sem_init(wakee_event->wait_sem, 0, 0);
290 wakee_event->specific_wait = 1;
291 event->wait_sem = wakee_event->wait_sem;
293 nr_wakeup_events++;
296 static void
297 add_sched_event_sleep(struct task_desc *task, u64 timestamp,
298 u64 task_state __used)
300 struct sched_atom *event = get_new_event(task, timestamp);
302 event->type = SCHED_EVENT_SLEEP;
304 nr_sleep_events++;
307 static struct task_desc *register_pid(unsigned long pid, const char *comm)
309 struct task_desc *task;
311 BUG_ON(pid >= MAX_PID);
313 task = pid_to_task[pid];
315 if (task)
316 return task;
318 task = zalloc(sizeof(*task));
319 task->pid = pid;
320 task->nr = nr_tasks;
321 strcpy(task->comm, comm);
323 * every task starts in sleeping state - this gets ignored
324 * if there's no wakeup pointing to this sleep state:
326 add_sched_event_sleep(task, 0, 0);
328 pid_to_task[pid] = task;
329 nr_tasks++;
330 tasks = realloc(tasks, nr_tasks*sizeof(struct task_task *));
331 BUG_ON(!tasks);
332 tasks[task->nr] = task;
334 if (verbose)
335 printf("registered task #%ld, PID %ld (%s)\n", nr_tasks, pid, comm);
337 return task;
341 static void print_task_traces(void)
343 struct task_desc *task;
344 unsigned long i;
346 for (i = 0; i < nr_tasks; i++) {
347 task = tasks[i];
348 printf("task %6ld (%20s:%10ld), nr_events: %ld\n",
349 task->nr, task->comm, task->pid, task->nr_events);
353 static void add_cross_task_wakeups(void)
355 struct task_desc *task1, *task2;
356 unsigned long i, j;
358 for (i = 0; i < nr_tasks; i++) {
359 task1 = tasks[i];
360 j = i + 1;
361 if (j == nr_tasks)
362 j = 0;
363 task2 = tasks[j];
364 add_sched_event_wakeup(task1, 0, task2);
368 static void
369 process_sched_event(struct task_desc *this_task __used, struct sched_atom *atom)
371 int ret = 0;
373 switch (atom->type) {
374 case SCHED_EVENT_RUN:
375 burn_nsecs(atom->duration);
376 break;
377 case SCHED_EVENT_SLEEP:
378 if (atom->wait_sem)
379 ret = sem_wait(atom->wait_sem);
380 BUG_ON(ret);
381 break;
382 case SCHED_EVENT_WAKEUP:
383 if (atom->wait_sem)
384 ret = sem_post(atom->wait_sem);
385 BUG_ON(ret);
386 break;
387 case SCHED_EVENT_MIGRATION:
388 break;
389 default:
390 BUG_ON(1);
394 static u64 get_cpu_usage_nsec_parent(void)
396 struct rusage ru;
397 u64 sum;
398 int err;
400 err = getrusage(RUSAGE_SELF, &ru);
401 BUG_ON(err);
403 sum = ru.ru_utime.tv_sec*1e9 + ru.ru_utime.tv_usec*1e3;
404 sum += ru.ru_stime.tv_sec*1e9 + ru.ru_stime.tv_usec*1e3;
406 return sum;
409 static int self_open_counters(void)
411 struct perf_event_attr attr;
412 int fd;
414 memset(&attr, 0, sizeof(attr));
416 attr.type = PERF_TYPE_SOFTWARE;
417 attr.config = PERF_COUNT_SW_TASK_CLOCK;
419 fd = sys_perf_event_open(&attr, 0, -1, -1, 0);
421 if (fd < 0)
422 die("Error: sys_perf_event_open() syscall returned"
423 "with %d (%s)\n", fd, strerror(errno));
424 return fd;
427 static u64 get_cpu_usage_nsec_self(int fd)
429 u64 runtime;
430 int ret;
432 ret = read(fd, &runtime, sizeof(runtime));
433 BUG_ON(ret != sizeof(runtime));
435 return runtime;
438 static void *thread_func(void *ctx)
440 struct task_desc *this_task = ctx;
441 u64 cpu_usage_0, cpu_usage_1;
442 unsigned long i, ret;
443 char comm2[22];
444 int fd;
446 sprintf(comm2, ":%s", this_task->comm);
447 prctl(PR_SET_NAME, comm2);
448 fd = self_open_counters();
450 again:
451 ret = sem_post(&this_task->ready_for_work);
452 BUG_ON(ret);
453 ret = pthread_mutex_lock(&start_work_mutex);
454 BUG_ON(ret);
455 ret = pthread_mutex_unlock(&start_work_mutex);
456 BUG_ON(ret);
458 cpu_usage_0 = get_cpu_usage_nsec_self(fd);
460 for (i = 0; i < this_task->nr_events; i++) {
461 this_task->curr_event = i;
462 process_sched_event(this_task, this_task->atoms[i]);
465 cpu_usage_1 = get_cpu_usage_nsec_self(fd);
466 this_task->cpu_usage = cpu_usage_1 - cpu_usage_0;
467 ret = sem_post(&this_task->work_done_sem);
468 BUG_ON(ret);
470 ret = pthread_mutex_lock(&work_done_wait_mutex);
471 BUG_ON(ret);
472 ret = pthread_mutex_unlock(&work_done_wait_mutex);
473 BUG_ON(ret);
475 goto again;
478 static void create_tasks(void)
480 struct task_desc *task;
481 pthread_attr_t attr;
482 unsigned long i;
483 int err;
485 err = pthread_attr_init(&attr);
486 BUG_ON(err);
487 err = pthread_attr_setstacksize(&attr,
488 (size_t) max(16 * 1024, PTHREAD_STACK_MIN));
489 BUG_ON(err);
490 err = pthread_mutex_lock(&start_work_mutex);
491 BUG_ON(err);
492 err = pthread_mutex_lock(&work_done_wait_mutex);
493 BUG_ON(err);
494 for (i = 0; i < nr_tasks; i++) {
495 task = tasks[i];
496 sem_init(&task->sleep_sem, 0, 0);
497 sem_init(&task->ready_for_work, 0, 0);
498 sem_init(&task->work_done_sem, 0, 0);
499 task->curr_event = 0;
500 err = pthread_create(&task->thread, &attr, thread_func, task);
501 BUG_ON(err);
505 static void wait_for_tasks(void)
507 u64 cpu_usage_0, cpu_usage_1;
508 struct task_desc *task;
509 unsigned long i, ret;
511 start_time = get_nsecs();
512 cpu_usage = 0;
513 pthread_mutex_unlock(&work_done_wait_mutex);
515 for (i = 0; i < nr_tasks; i++) {
516 task = tasks[i];
517 ret = sem_wait(&task->ready_for_work);
518 BUG_ON(ret);
519 sem_init(&task->ready_for_work, 0, 0);
521 ret = pthread_mutex_lock(&work_done_wait_mutex);
522 BUG_ON(ret);
524 cpu_usage_0 = get_cpu_usage_nsec_parent();
526 pthread_mutex_unlock(&start_work_mutex);
528 for (i = 0; i < nr_tasks; i++) {
529 task = tasks[i];
530 ret = sem_wait(&task->work_done_sem);
531 BUG_ON(ret);
532 sem_init(&task->work_done_sem, 0, 0);
533 cpu_usage += task->cpu_usage;
534 task->cpu_usage = 0;
537 cpu_usage_1 = get_cpu_usage_nsec_parent();
538 if (!runavg_cpu_usage)
539 runavg_cpu_usage = cpu_usage;
540 runavg_cpu_usage = (runavg_cpu_usage*9 + cpu_usage)/10;
542 parent_cpu_usage = cpu_usage_1 - cpu_usage_0;
543 if (!runavg_parent_cpu_usage)
544 runavg_parent_cpu_usage = parent_cpu_usage;
545 runavg_parent_cpu_usage = (runavg_parent_cpu_usage*9 +
546 parent_cpu_usage)/10;
548 ret = pthread_mutex_lock(&start_work_mutex);
549 BUG_ON(ret);
551 for (i = 0; i < nr_tasks; i++) {
552 task = tasks[i];
553 sem_init(&task->sleep_sem, 0, 0);
554 task->curr_event = 0;
558 static void run_one_test(void)
560 u64 T0, T1, delta, avg_delta, fluct;
562 T0 = get_nsecs();
563 wait_for_tasks();
564 T1 = get_nsecs();
566 delta = T1 - T0;
567 sum_runtime += delta;
568 nr_runs++;
570 avg_delta = sum_runtime / nr_runs;
571 if (delta < avg_delta)
572 fluct = avg_delta - delta;
573 else
574 fluct = delta - avg_delta;
575 sum_fluct += fluct;
576 if (!run_avg)
577 run_avg = delta;
578 run_avg = (run_avg*9 + delta)/10;
580 printf("#%-3ld: %0.3f, ",
581 nr_runs, (double)delta/1000000.0);
583 printf("ravg: %0.2f, ",
584 (double)run_avg/1e6);
586 printf("cpu: %0.2f / %0.2f",
587 (double)cpu_usage/1e6, (double)runavg_cpu_usage/1e6);
589 #if 0
591 * rusage statistics done by the parent, these are less
592 * accurate than the sum_exec_runtime based statistics:
594 printf(" [%0.2f / %0.2f]",
595 (double)parent_cpu_usage/1e6,
596 (double)runavg_parent_cpu_usage/1e6);
597 #endif
599 printf("\n");
601 if (nr_sleep_corrections)
602 printf(" (%ld sleep corrections)\n", nr_sleep_corrections);
603 nr_sleep_corrections = 0;
606 static void test_calibrations(void)
608 u64 T0, T1;
610 T0 = get_nsecs();
611 burn_nsecs(1e6);
612 T1 = get_nsecs();
614 printf("the run test took %" PRIu64 " nsecs\n", T1 - T0);
616 T0 = get_nsecs();
617 sleep_nsecs(1e6);
618 T1 = get_nsecs();
620 printf("the sleep test took %" PRIu64 " nsecs\n", T1 - T0);
623 #define FILL_FIELD(ptr, field, event, data) \
624 ptr.field = (typeof(ptr.field)) raw_field_value(event, #field, data)
626 #define FILL_ARRAY(ptr, array, event, data) \
627 do { \
628 void *__array = raw_field_ptr(event, #array, data); \
629 memcpy(ptr.array, __array, sizeof(ptr.array)); \
630 } while(0)
632 #define FILL_COMMON_FIELDS(ptr, event, data) \
633 do { \
634 FILL_FIELD(ptr, common_type, event, data); \
635 FILL_FIELD(ptr, common_flags, event, data); \
636 FILL_FIELD(ptr, common_preempt_count, event, data); \
637 FILL_FIELD(ptr, common_pid, event, data); \
638 FILL_FIELD(ptr, common_tgid, event, data); \
639 } while (0)
643 struct trace_switch_event {
644 u32 size;
646 u16 common_type;
647 u8 common_flags;
648 u8 common_preempt_count;
649 u32 common_pid;
650 u32 common_tgid;
652 char prev_comm[16];
653 u32 prev_pid;
654 u32 prev_prio;
655 u64 prev_state;
656 char next_comm[16];
657 u32 next_pid;
658 u32 next_prio;
661 struct trace_runtime_event {
662 u32 size;
664 u16 common_type;
665 u8 common_flags;
666 u8 common_preempt_count;
667 u32 common_pid;
668 u32 common_tgid;
670 char comm[16];
671 u32 pid;
672 u64 runtime;
673 u64 vruntime;
676 struct trace_wakeup_event {
677 u32 size;
679 u16 common_type;
680 u8 common_flags;
681 u8 common_preempt_count;
682 u32 common_pid;
683 u32 common_tgid;
685 char comm[16];
686 u32 pid;
688 u32 prio;
689 u32 success;
690 u32 cpu;
693 struct trace_fork_event {
694 u32 size;
696 u16 common_type;
697 u8 common_flags;
698 u8 common_preempt_count;
699 u32 common_pid;
700 u32 common_tgid;
702 char parent_comm[16];
703 u32 parent_pid;
704 char child_comm[16];
705 u32 child_pid;
708 struct trace_migrate_task_event {
709 u32 size;
711 u16 common_type;
712 u8 common_flags;
713 u8 common_preempt_count;
714 u32 common_pid;
715 u32 common_tgid;
717 char comm[16];
718 u32 pid;
720 u32 prio;
721 u32 cpu;
724 struct trace_sched_handler {
725 void (*switch_event)(struct trace_switch_event *,
726 struct perf_session *,
727 struct event *,
728 int cpu,
729 u64 timestamp,
730 struct thread *thread);
732 void (*runtime_event)(struct trace_runtime_event *,
733 struct perf_session *,
734 struct event *,
735 int cpu,
736 u64 timestamp,
737 struct thread *thread);
739 void (*wakeup_event)(struct trace_wakeup_event *,
740 struct perf_session *,
741 struct event *,
742 int cpu,
743 u64 timestamp,
744 struct thread *thread);
746 void (*fork_event)(struct trace_fork_event *,
747 struct event *,
748 int cpu,
749 u64 timestamp,
750 struct thread *thread);
752 void (*migrate_task_event)(struct trace_migrate_task_event *,
753 struct perf_session *session,
754 struct event *,
755 int cpu,
756 u64 timestamp,
757 struct thread *thread);
761 static void
762 replay_wakeup_event(struct trace_wakeup_event *wakeup_event,
763 struct perf_session *session __used,
764 struct event *event,
765 int cpu __used,
766 u64 timestamp __used,
767 struct thread *thread __used)
769 struct task_desc *waker, *wakee;
771 if (verbose) {
772 printf("sched_wakeup event %p\n", event);
774 printf(" ... pid %d woke up %s/%d\n",
775 wakeup_event->common_pid,
776 wakeup_event->comm,
777 wakeup_event->pid);
780 waker = register_pid(wakeup_event->common_pid, "<unknown>");
781 wakee = register_pid(wakeup_event->pid, wakeup_event->comm);
783 add_sched_event_wakeup(waker, timestamp, wakee);
786 static u64 cpu_last_switched[MAX_CPUS];
788 static void
789 replay_switch_event(struct trace_switch_event *switch_event,
790 struct perf_session *session __used,
791 struct event *event,
792 int cpu,
793 u64 timestamp,
794 struct thread *thread __used)
796 struct task_desc *prev, __used *next;
797 u64 timestamp0;
798 s64 delta;
800 if (verbose)
801 printf("sched_switch event %p\n", event);
803 if (cpu >= MAX_CPUS || cpu < 0)
804 return;
806 timestamp0 = cpu_last_switched[cpu];
807 if (timestamp0)
808 delta = timestamp - timestamp0;
809 else
810 delta = 0;
812 if (delta < 0)
813 die("hm, delta: %" PRIu64 " < 0 ?\n", delta);
815 if (verbose) {
816 printf(" ... switch from %s/%d to %s/%d [ran %" PRIu64 " nsecs]\n",
817 switch_event->prev_comm, switch_event->prev_pid,
818 switch_event->next_comm, switch_event->next_pid,
819 delta);
822 prev = register_pid(switch_event->prev_pid, switch_event->prev_comm);
823 next = register_pid(switch_event->next_pid, switch_event->next_comm);
825 cpu_last_switched[cpu] = timestamp;
827 add_sched_event_run(prev, timestamp, delta);
828 add_sched_event_sleep(prev, timestamp, switch_event->prev_state);
832 static void
833 replay_fork_event(struct trace_fork_event *fork_event,
834 struct event *event,
835 int cpu __used,
836 u64 timestamp __used,
837 struct thread *thread __used)
839 if (verbose) {
840 printf("sched_fork event %p\n", event);
841 printf("... parent: %s/%d\n", fork_event->parent_comm, fork_event->parent_pid);
842 printf("... child: %s/%d\n", fork_event->child_comm, fork_event->child_pid);
844 register_pid(fork_event->parent_pid, fork_event->parent_comm);
845 register_pid(fork_event->child_pid, fork_event->child_comm);
848 static struct trace_sched_handler replay_ops = {
849 .wakeup_event = replay_wakeup_event,
850 .switch_event = replay_switch_event,
851 .fork_event = replay_fork_event,
854 struct sort_dimension {
855 const char *name;
856 sort_fn_t cmp;
857 struct list_head list;
860 static LIST_HEAD(cmp_pid);
862 static int
863 thread_lat_cmp(struct list_head *list, struct work_atoms *l, struct work_atoms *r)
865 struct sort_dimension *sort;
866 int ret = 0;
868 BUG_ON(list_empty(list));
870 list_for_each_entry(sort, list, list) {
871 ret = sort->cmp(l, r);
872 if (ret)
873 return ret;
876 return ret;
879 static struct work_atoms *
880 thread_atoms_search(struct rb_root *root, struct thread *thread,
881 struct list_head *sort_list)
883 struct rb_node *node = root->rb_node;
884 struct work_atoms key = { .thread = thread };
886 while (node) {
887 struct work_atoms *atoms;
888 int cmp;
890 atoms = container_of(node, struct work_atoms, node);
892 cmp = thread_lat_cmp(sort_list, &key, atoms);
893 if (cmp > 0)
894 node = node->rb_left;
895 else if (cmp < 0)
896 node = node->rb_right;
897 else {
898 BUG_ON(thread != atoms->thread);
899 return atoms;
902 return NULL;
905 static void
906 __thread_latency_insert(struct rb_root *root, struct work_atoms *data,
907 struct list_head *sort_list)
909 struct rb_node **new = &(root->rb_node), *parent = NULL;
911 while (*new) {
912 struct work_atoms *this;
913 int cmp;
915 this = container_of(*new, struct work_atoms, node);
916 parent = *new;
918 cmp = thread_lat_cmp(sort_list, data, this);
920 if (cmp > 0)
921 new = &((*new)->rb_left);
922 else
923 new = &((*new)->rb_right);
926 rb_link_node(&data->node, parent, new);
927 rb_insert_color(&data->node, root);
930 static void thread_atoms_insert(struct thread *thread)
932 struct work_atoms *atoms = zalloc(sizeof(*atoms));
933 if (!atoms)
934 die("No memory");
936 atoms->thread = thread;
937 INIT_LIST_HEAD(&atoms->work_list);
938 __thread_latency_insert(&atom_root, atoms, &cmp_pid);
941 static void
942 latency_fork_event(struct trace_fork_event *fork_event __used,
943 struct event *event __used,
944 int cpu __used,
945 u64 timestamp __used,
946 struct thread *thread __used)
948 /* should insert the newcomer */
951 __used
952 static char sched_out_state(struct trace_switch_event *switch_event)
954 const char *str = TASK_STATE_TO_CHAR_STR;
956 return str[switch_event->prev_state];
959 static void
960 add_sched_out_event(struct work_atoms *atoms,
961 char run_state,
962 u64 timestamp)
964 struct work_atom *atom = zalloc(sizeof(*atom));
965 if (!atom)
966 die("Non memory");
968 atom->sched_out_time = timestamp;
970 if (run_state == 'R') {
971 atom->state = THREAD_WAIT_CPU;
972 atom->wake_up_time = atom->sched_out_time;
975 list_add_tail(&atom->list, &atoms->work_list);
978 static void
979 add_runtime_event(struct work_atoms *atoms, u64 delta, u64 timestamp __used)
981 struct work_atom *atom;
983 BUG_ON(list_empty(&atoms->work_list));
985 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
987 atom->runtime += delta;
988 atoms->total_runtime += delta;
991 static void
992 add_sched_in_event(struct work_atoms *atoms, u64 timestamp)
994 struct work_atom *atom;
995 u64 delta;
997 if (list_empty(&atoms->work_list))
998 return;
1000 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1002 if (atom->state != THREAD_WAIT_CPU)
1003 return;
1005 if (timestamp < atom->wake_up_time) {
1006 atom->state = THREAD_IGNORE;
1007 return;
1010 atom->state = THREAD_SCHED_IN;
1011 atom->sched_in_time = timestamp;
1013 delta = atom->sched_in_time - atom->wake_up_time;
1014 atoms->total_lat += delta;
1015 if (delta > atoms->max_lat) {
1016 atoms->max_lat = delta;
1017 atoms->max_lat_at = timestamp;
1019 atoms->nb_atoms++;
1022 static void
1023 latency_switch_event(struct trace_switch_event *switch_event,
1024 struct perf_session *session,
1025 struct event *event __used,
1026 int cpu,
1027 u64 timestamp,
1028 struct thread *thread __used)
1030 struct work_atoms *out_events, *in_events;
1031 struct thread *sched_out, *sched_in;
1032 u64 timestamp0;
1033 s64 delta;
1035 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
1037 timestamp0 = cpu_last_switched[cpu];
1038 cpu_last_switched[cpu] = timestamp;
1039 if (timestamp0)
1040 delta = timestamp - timestamp0;
1041 else
1042 delta = 0;
1044 if (delta < 0)
1045 die("hm, delta: %" PRIu64 " < 0 ?\n", delta);
1048 sched_out = perf_session__findnew(session, switch_event->prev_pid);
1049 sched_in = perf_session__findnew(session, switch_event->next_pid);
1051 out_events = thread_atoms_search(&atom_root, sched_out, &cmp_pid);
1052 if (!out_events) {
1053 thread_atoms_insert(sched_out);
1054 out_events = thread_atoms_search(&atom_root, sched_out, &cmp_pid);
1055 if (!out_events)
1056 die("out-event: Internal tree error");
1058 add_sched_out_event(out_events, sched_out_state(switch_event), timestamp);
1060 in_events = thread_atoms_search(&atom_root, sched_in, &cmp_pid);
1061 if (!in_events) {
1062 thread_atoms_insert(sched_in);
1063 in_events = thread_atoms_search(&atom_root, sched_in, &cmp_pid);
1064 if (!in_events)
1065 die("in-event: Internal tree error");
1067 * Take came in we have not heard about yet,
1068 * add in an initial atom in runnable state:
1070 add_sched_out_event(in_events, 'R', timestamp);
1072 add_sched_in_event(in_events, timestamp);
1075 static void
1076 latency_runtime_event(struct trace_runtime_event *runtime_event,
1077 struct perf_session *session,
1078 struct event *event __used,
1079 int cpu,
1080 u64 timestamp,
1081 struct thread *this_thread __used)
1083 struct thread *thread = perf_session__findnew(session, runtime_event->pid);
1084 struct work_atoms *atoms = thread_atoms_search(&atom_root, thread, &cmp_pid);
1086 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
1087 if (!atoms) {
1088 thread_atoms_insert(thread);
1089 atoms = thread_atoms_search(&atom_root, thread, &cmp_pid);
1090 if (!atoms)
1091 die("in-event: Internal tree error");
1092 add_sched_out_event(atoms, 'R', timestamp);
1095 add_runtime_event(atoms, runtime_event->runtime, timestamp);
1098 static void
1099 latency_wakeup_event(struct trace_wakeup_event *wakeup_event,
1100 struct perf_session *session,
1101 struct event *__event __used,
1102 int cpu __used,
1103 u64 timestamp,
1104 struct thread *thread __used)
1106 struct work_atoms *atoms;
1107 struct work_atom *atom;
1108 struct thread *wakee;
1110 /* Note for later, it may be interesting to observe the failing cases */
1111 if (!wakeup_event->success)
1112 return;
1114 wakee = perf_session__findnew(session, wakeup_event->pid);
1115 atoms = thread_atoms_search(&atom_root, wakee, &cmp_pid);
1116 if (!atoms) {
1117 thread_atoms_insert(wakee);
1118 atoms = thread_atoms_search(&atom_root, wakee, &cmp_pid);
1119 if (!atoms)
1120 die("wakeup-event: Internal tree error");
1121 add_sched_out_event(atoms, 'S', timestamp);
1124 BUG_ON(list_empty(&atoms->work_list));
1126 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1129 * You WILL be missing events if you've recorded only
1130 * one CPU, or are only looking at only one, so don't
1131 * make useless noise.
1133 if (profile_cpu == -1 && atom->state != THREAD_SLEEPING)
1134 nr_state_machine_bugs++;
1136 nr_timestamps++;
1137 if (atom->sched_out_time > timestamp) {
1138 nr_unordered_timestamps++;
1139 return;
1142 atom->state = THREAD_WAIT_CPU;
1143 atom->wake_up_time = timestamp;
1146 static void
1147 latency_migrate_task_event(struct trace_migrate_task_event *migrate_task_event,
1148 struct perf_session *session,
1149 struct event *__event __used,
1150 int cpu __used,
1151 u64 timestamp,
1152 struct thread *thread __used)
1154 struct work_atoms *atoms;
1155 struct work_atom *atom;
1156 struct thread *migrant;
1159 * Only need to worry about migration when profiling one CPU.
1161 if (profile_cpu == -1)
1162 return;
1164 migrant = perf_session__findnew(session, migrate_task_event->pid);
1165 atoms = thread_atoms_search(&atom_root, migrant, &cmp_pid);
1166 if (!atoms) {
1167 thread_atoms_insert(migrant);
1168 register_pid(migrant->pid, migrant->comm);
1169 atoms = thread_atoms_search(&atom_root, migrant, &cmp_pid);
1170 if (!atoms)
1171 die("migration-event: Internal tree error");
1172 add_sched_out_event(atoms, 'R', timestamp);
1175 BUG_ON(list_empty(&atoms->work_list));
1177 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1178 atom->sched_in_time = atom->sched_out_time = atom->wake_up_time = timestamp;
1180 nr_timestamps++;
1182 if (atom->sched_out_time > timestamp)
1183 nr_unordered_timestamps++;
1186 static struct trace_sched_handler lat_ops = {
1187 .wakeup_event = latency_wakeup_event,
1188 .switch_event = latency_switch_event,
1189 .runtime_event = latency_runtime_event,
1190 .fork_event = latency_fork_event,
1191 .migrate_task_event = latency_migrate_task_event,
1194 static void output_lat_thread(struct work_atoms *work_list)
1196 int i;
1197 int ret;
1198 u64 avg;
1200 if (!work_list->nb_atoms)
1201 return;
1203 * Ignore idle threads:
1205 if (!strcmp(work_list->thread->comm, "swapper"))
1206 return;
1208 all_runtime += work_list->total_runtime;
1209 all_count += work_list->nb_atoms;
1211 ret = printf(" %s:%d ", work_list->thread->comm, work_list->thread->pid);
1213 for (i = 0; i < 24 - ret; i++)
1214 printf(" ");
1216 avg = work_list->total_lat / work_list->nb_atoms;
1218 printf("|%11.3f ms |%9" PRIu64 " | avg:%9.3f ms | max:%9.3f ms | max at: %9.6f s\n",
1219 (double)work_list->total_runtime / 1e6,
1220 work_list->nb_atoms, (double)avg / 1e6,
1221 (double)work_list->max_lat / 1e6,
1222 (double)work_list->max_lat_at / 1e9);
1225 static int pid_cmp(struct work_atoms *l, struct work_atoms *r)
1227 if (l->thread->pid < r->thread->pid)
1228 return -1;
1229 if (l->thread->pid > r->thread->pid)
1230 return 1;
1232 return 0;
1235 static struct sort_dimension pid_sort_dimension = {
1236 .name = "pid",
1237 .cmp = pid_cmp,
1240 static int avg_cmp(struct work_atoms *l, struct work_atoms *r)
1242 u64 avgl, avgr;
1244 if (!l->nb_atoms)
1245 return -1;
1247 if (!r->nb_atoms)
1248 return 1;
1250 avgl = l->total_lat / l->nb_atoms;
1251 avgr = r->total_lat / r->nb_atoms;
1253 if (avgl < avgr)
1254 return -1;
1255 if (avgl > avgr)
1256 return 1;
1258 return 0;
1261 static struct sort_dimension avg_sort_dimension = {
1262 .name = "avg",
1263 .cmp = avg_cmp,
1266 static int max_cmp(struct work_atoms *l, struct work_atoms *r)
1268 if (l->max_lat < r->max_lat)
1269 return -1;
1270 if (l->max_lat > r->max_lat)
1271 return 1;
1273 return 0;
1276 static struct sort_dimension max_sort_dimension = {
1277 .name = "max",
1278 .cmp = max_cmp,
1281 static int switch_cmp(struct work_atoms *l, struct work_atoms *r)
1283 if (l->nb_atoms < r->nb_atoms)
1284 return -1;
1285 if (l->nb_atoms > r->nb_atoms)
1286 return 1;
1288 return 0;
1291 static struct sort_dimension switch_sort_dimension = {
1292 .name = "switch",
1293 .cmp = switch_cmp,
1296 static int runtime_cmp(struct work_atoms *l, struct work_atoms *r)
1298 if (l->total_runtime < r->total_runtime)
1299 return -1;
1300 if (l->total_runtime > r->total_runtime)
1301 return 1;
1303 return 0;
1306 static struct sort_dimension runtime_sort_dimension = {
1307 .name = "runtime",
1308 .cmp = runtime_cmp,
1311 static struct sort_dimension *available_sorts[] = {
1312 &pid_sort_dimension,
1313 &avg_sort_dimension,
1314 &max_sort_dimension,
1315 &switch_sort_dimension,
1316 &runtime_sort_dimension,
1319 #define NB_AVAILABLE_SORTS (int)(sizeof(available_sorts) / sizeof(struct sort_dimension *))
1321 static LIST_HEAD(sort_list);
1323 static int sort_dimension__add(const char *tok, struct list_head *list)
1325 int i;
1327 for (i = 0; i < NB_AVAILABLE_SORTS; i++) {
1328 if (!strcmp(available_sorts[i]->name, tok)) {
1329 list_add_tail(&available_sorts[i]->list, list);
1331 return 0;
1335 return -1;
1338 static void setup_sorting(void);
1340 static void sort_lat(void)
1342 struct rb_node *node;
1344 for (;;) {
1345 struct work_atoms *data;
1346 node = rb_first(&atom_root);
1347 if (!node)
1348 break;
1350 rb_erase(node, &atom_root);
1351 data = rb_entry(node, struct work_atoms, node);
1352 __thread_latency_insert(&sorted_atom_root, data, &sort_list);
1356 static struct trace_sched_handler *trace_handler;
1358 static void
1359 process_sched_wakeup_event(void *data, struct perf_session *session,
1360 struct event *event,
1361 int cpu __used,
1362 u64 timestamp __used,
1363 struct thread *thread __used)
1365 struct trace_wakeup_event wakeup_event;
1367 FILL_COMMON_FIELDS(wakeup_event, event, data);
1369 FILL_ARRAY(wakeup_event, comm, event, data);
1370 FILL_FIELD(wakeup_event, pid, event, data);
1371 FILL_FIELD(wakeup_event, prio, event, data);
1372 FILL_FIELD(wakeup_event, success, event, data);
1373 FILL_FIELD(wakeup_event, cpu, event, data);
1375 if (trace_handler->wakeup_event)
1376 trace_handler->wakeup_event(&wakeup_event, session, event,
1377 cpu, timestamp, thread);
1381 * Track the current task - that way we can know whether there's any
1382 * weird events, such as a task being switched away that is not current.
1384 static int max_cpu;
1386 static u32 curr_pid[MAX_CPUS] = { [0 ... MAX_CPUS-1] = -1 };
1388 static struct thread *curr_thread[MAX_CPUS];
1390 static char next_shortname1 = 'A';
1391 static char next_shortname2 = '0';
1393 static void
1394 map_switch_event(struct trace_switch_event *switch_event,
1395 struct perf_session *session,
1396 struct event *event __used,
1397 int this_cpu,
1398 u64 timestamp,
1399 struct thread *thread __used)
1401 struct thread *sched_out __used, *sched_in;
1402 int new_shortname;
1403 u64 timestamp0;
1404 s64 delta;
1405 int cpu;
1407 BUG_ON(this_cpu >= MAX_CPUS || this_cpu < 0);
1409 if (this_cpu > max_cpu)
1410 max_cpu = this_cpu;
1412 timestamp0 = cpu_last_switched[this_cpu];
1413 cpu_last_switched[this_cpu] = timestamp;
1414 if (timestamp0)
1415 delta = timestamp - timestamp0;
1416 else
1417 delta = 0;
1419 if (delta < 0)
1420 die("hm, delta: %" PRIu64 " < 0 ?\n", delta);
1423 sched_out = perf_session__findnew(session, switch_event->prev_pid);
1424 sched_in = perf_session__findnew(session, switch_event->next_pid);
1426 curr_thread[this_cpu] = sched_in;
1428 printf(" ");
1430 new_shortname = 0;
1431 if (!sched_in->shortname[0]) {
1432 sched_in->shortname[0] = next_shortname1;
1433 sched_in->shortname[1] = next_shortname2;
1435 if (next_shortname1 < 'Z') {
1436 next_shortname1++;
1437 } else {
1438 next_shortname1='A';
1439 if (next_shortname2 < '9') {
1440 next_shortname2++;
1441 } else {
1442 next_shortname2='0';
1445 new_shortname = 1;
1448 for (cpu = 0; cpu <= max_cpu; cpu++) {
1449 if (cpu != this_cpu)
1450 printf(" ");
1451 else
1452 printf("*");
1454 if (curr_thread[cpu]) {
1455 if (curr_thread[cpu]->pid)
1456 printf("%2s ", curr_thread[cpu]->shortname);
1457 else
1458 printf(". ");
1459 } else
1460 printf(" ");
1463 printf(" %12.6f secs ", (double)timestamp/1e9);
1464 if (new_shortname) {
1465 printf("%s => %s:%d\n",
1466 sched_in->shortname, sched_in->comm, sched_in->pid);
1467 } else {
1468 printf("\n");
1473 static void
1474 process_sched_switch_event(void *data, struct perf_session *session,
1475 struct event *event,
1476 int this_cpu,
1477 u64 timestamp __used,
1478 struct thread *thread __used)
1480 struct trace_switch_event switch_event;
1482 FILL_COMMON_FIELDS(switch_event, event, data);
1484 FILL_ARRAY(switch_event, prev_comm, event, data);
1485 FILL_FIELD(switch_event, prev_pid, event, data);
1486 FILL_FIELD(switch_event, prev_prio, event, data);
1487 FILL_FIELD(switch_event, prev_state, event, data);
1488 FILL_ARRAY(switch_event, next_comm, event, data);
1489 FILL_FIELD(switch_event, next_pid, event, data);
1490 FILL_FIELD(switch_event, next_prio, event, data);
1492 if (curr_pid[this_cpu] != (u32)-1) {
1494 * Are we trying to switch away a PID that is
1495 * not current?
1497 if (curr_pid[this_cpu] != switch_event.prev_pid)
1498 nr_context_switch_bugs++;
1500 if (trace_handler->switch_event)
1501 trace_handler->switch_event(&switch_event, session, event,
1502 this_cpu, timestamp, thread);
1504 curr_pid[this_cpu] = switch_event.next_pid;
1507 static void
1508 process_sched_runtime_event(void *data, struct perf_session *session,
1509 struct event *event,
1510 int cpu __used,
1511 u64 timestamp __used,
1512 struct thread *thread __used)
1514 struct trace_runtime_event runtime_event;
1516 FILL_ARRAY(runtime_event, comm, event, data);
1517 FILL_FIELD(runtime_event, pid, event, data);
1518 FILL_FIELD(runtime_event, runtime, event, data);
1519 FILL_FIELD(runtime_event, vruntime, event, data);
1521 if (trace_handler->runtime_event)
1522 trace_handler->runtime_event(&runtime_event, session, event, cpu, timestamp, thread);
1525 static void
1526 process_sched_fork_event(void *data,
1527 struct event *event,
1528 int cpu __used,
1529 u64 timestamp __used,
1530 struct thread *thread __used)
1532 struct trace_fork_event fork_event;
1534 FILL_COMMON_FIELDS(fork_event, event, data);
1536 FILL_ARRAY(fork_event, parent_comm, event, data);
1537 FILL_FIELD(fork_event, parent_pid, event, data);
1538 FILL_ARRAY(fork_event, child_comm, event, data);
1539 FILL_FIELD(fork_event, child_pid, event, data);
1541 if (trace_handler->fork_event)
1542 trace_handler->fork_event(&fork_event, event,
1543 cpu, timestamp, thread);
1546 static void
1547 process_sched_exit_event(struct event *event,
1548 int cpu __used,
1549 u64 timestamp __used,
1550 struct thread *thread __used)
1552 if (verbose)
1553 printf("sched_exit event %p\n", event);
1556 static void
1557 process_sched_migrate_task_event(void *data, struct perf_session *session,
1558 struct event *event,
1559 int cpu __used,
1560 u64 timestamp __used,
1561 struct thread *thread __used)
1563 struct trace_migrate_task_event migrate_task_event;
1565 FILL_COMMON_FIELDS(migrate_task_event, event, data);
1567 FILL_ARRAY(migrate_task_event, comm, event, data);
1568 FILL_FIELD(migrate_task_event, pid, event, data);
1569 FILL_FIELD(migrate_task_event, prio, event, data);
1570 FILL_FIELD(migrate_task_event, cpu, event, data);
1572 if (trace_handler->migrate_task_event)
1573 trace_handler->migrate_task_event(&migrate_task_event, session,
1574 event, cpu, timestamp, thread);
1577 static void
1578 process_raw_event(event_t *raw_event __used, struct perf_session *session,
1579 void *data, int cpu, u64 timestamp, struct thread *thread)
1581 struct event *event;
1582 int type;
1585 type = trace_parse_common_type(data);
1586 event = trace_find_event(type);
1588 if (!strcmp(event->name, "sched_switch"))
1589 process_sched_switch_event(data, session, event, cpu, timestamp, thread);
1590 if (!strcmp(event->name, "sched_stat_runtime"))
1591 process_sched_runtime_event(data, session, event, cpu, timestamp, thread);
1592 if (!strcmp(event->name, "sched_wakeup"))
1593 process_sched_wakeup_event(data, session, event, cpu, timestamp, thread);
1594 if (!strcmp(event->name, "sched_wakeup_new"))
1595 process_sched_wakeup_event(data, session, event, cpu, timestamp, thread);
1596 if (!strcmp(event->name, "sched_process_fork"))
1597 process_sched_fork_event(data, event, cpu, timestamp, thread);
1598 if (!strcmp(event->name, "sched_process_exit"))
1599 process_sched_exit_event(event, cpu, timestamp, thread);
1600 if (!strcmp(event->name, "sched_migrate_task"))
1601 process_sched_migrate_task_event(data, session, event, cpu, timestamp, thread);
1604 static int process_sample_event(event_t *event, struct sample_data *sample,
1605 struct perf_session *session)
1607 struct thread *thread;
1609 if (!(session->sample_type & PERF_SAMPLE_RAW))
1610 return 0;
1612 thread = perf_session__findnew(session, sample->pid);
1613 if (thread == NULL) {
1614 pr_debug("problem processing %d event, skipping it.\n",
1615 event->header.type);
1616 return -1;
1619 dump_printf(" ... thread: %s:%d\n", thread->comm, thread->pid);
1621 if (profile_cpu != -1 && profile_cpu != (int)sample->cpu)
1622 return 0;
1624 process_raw_event(event, session, sample->raw_data, sample->cpu,
1625 sample->time, thread);
1627 return 0;
1630 static struct perf_event_ops event_ops = {
1631 .sample = process_sample_event,
1632 .comm = event__process_comm,
1633 .lost = event__process_lost,
1634 .fork = event__process_task,
1635 .ordered_samples = true,
1638 static int read_events(void)
1640 int err = -EINVAL;
1641 struct perf_session *session = perf_session__new(input_name, O_RDONLY,
1642 0, false, &event_ops);
1643 if (session == NULL)
1644 return -ENOMEM;
1646 if (perf_session__has_traces(session, "record -R")) {
1647 err = perf_session__process_events(session, &event_ops);
1648 nr_events = session->hists.stats.nr_events[0];
1649 nr_lost_events = session->hists.stats.total_lost;
1650 nr_lost_chunks = session->hists.stats.nr_events[PERF_RECORD_LOST];
1653 perf_session__delete(session);
1654 return err;
1657 static void print_bad_events(void)
1659 if (nr_unordered_timestamps && nr_timestamps) {
1660 printf(" INFO: %.3f%% unordered timestamps (%ld out of %ld)\n",
1661 (double)nr_unordered_timestamps/(double)nr_timestamps*100.0,
1662 nr_unordered_timestamps, nr_timestamps);
1664 if (nr_lost_events && nr_events) {
1665 printf(" INFO: %.3f%% lost events (%ld out of %ld, in %ld chunks)\n",
1666 (double)nr_lost_events/(double)nr_events*100.0,
1667 nr_lost_events, nr_events, nr_lost_chunks);
1669 if (nr_state_machine_bugs && nr_timestamps) {
1670 printf(" INFO: %.3f%% state machine bugs (%ld out of %ld)",
1671 (double)nr_state_machine_bugs/(double)nr_timestamps*100.0,
1672 nr_state_machine_bugs, nr_timestamps);
1673 if (nr_lost_events)
1674 printf(" (due to lost events?)");
1675 printf("\n");
1677 if (nr_context_switch_bugs && nr_timestamps) {
1678 printf(" INFO: %.3f%% context switch bugs (%ld out of %ld)",
1679 (double)nr_context_switch_bugs/(double)nr_timestamps*100.0,
1680 nr_context_switch_bugs, nr_timestamps);
1681 if (nr_lost_events)
1682 printf(" (due to lost events?)");
1683 printf("\n");
1687 static void __cmd_lat(void)
1689 struct rb_node *next;
1691 setup_pager();
1692 read_events();
1693 sort_lat();
1695 printf("\n ---------------------------------------------------------------------------------------------------------------\n");
1696 printf(" Task | Runtime ms | Switches | Average delay ms | Maximum delay ms | Maximum delay at |\n");
1697 printf(" ---------------------------------------------------------------------------------------------------------------\n");
1699 next = rb_first(&sorted_atom_root);
1701 while (next) {
1702 struct work_atoms *work_list;
1704 work_list = rb_entry(next, struct work_atoms, node);
1705 output_lat_thread(work_list);
1706 next = rb_next(next);
1709 printf(" -----------------------------------------------------------------------------------------\n");
1710 printf(" TOTAL: |%11.3f ms |%9" PRIu64 " |\n",
1711 (double)all_runtime/1e6, all_count);
1713 printf(" ---------------------------------------------------\n");
1715 print_bad_events();
1716 printf("\n");
1720 static struct trace_sched_handler map_ops = {
1721 .wakeup_event = NULL,
1722 .switch_event = map_switch_event,
1723 .runtime_event = NULL,
1724 .fork_event = NULL,
1727 static void __cmd_map(void)
1729 max_cpu = sysconf(_SC_NPROCESSORS_CONF);
1731 setup_pager();
1732 read_events();
1733 print_bad_events();
1736 static void __cmd_replay(void)
1738 unsigned long i;
1740 calibrate_run_measurement_overhead();
1741 calibrate_sleep_measurement_overhead();
1743 test_calibrations();
1745 read_events();
1747 printf("nr_run_events: %ld\n", nr_run_events);
1748 printf("nr_sleep_events: %ld\n", nr_sleep_events);
1749 printf("nr_wakeup_events: %ld\n", nr_wakeup_events);
1751 if (targetless_wakeups)
1752 printf("target-less wakeups: %ld\n", targetless_wakeups);
1753 if (multitarget_wakeups)
1754 printf("multi-target wakeups: %ld\n", multitarget_wakeups);
1755 if (nr_run_events_optimized)
1756 printf("run atoms optimized: %ld\n",
1757 nr_run_events_optimized);
1759 print_task_traces();
1760 add_cross_task_wakeups();
1762 create_tasks();
1763 printf("------------------------------------------------------------\n");
1764 for (i = 0; i < replay_repeat; i++)
1765 run_one_test();
1769 static const char * const sched_usage[] = {
1770 "perf sched [<options>] {record|latency|map|replay|trace}",
1771 NULL
1774 static const struct option sched_options[] = {
1775 OPT_STRING('i', "input", &input_name, "file",
1776 "input file name"),
1777 OPT_INCR('v', "verbose", &verbose,
1778 "be more verbose (show symbol address, etc)"),
1779 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1780 "dump raw trace in ASCII"),
1781 OPT_END()
1784 static const char * const latency_usage[] = {
1785 "perf sched latency [<options>]",
1786 NULL
1789 static const struct option latency_options[] = {
1790 OPT_STRING('s', "sort", &sort_order, "key[,key2...]",
1791 "sort by key(s): runtime, switch, avg, max"),
1792 OPT_INCR('v', "verbose", &verbose,
1793 "be more verbose (show symbol address, etc)"),
1794 OPT_INTEGER('C', "CPU", &profile_cpu,
1795 "CPU to profile on"),
1796 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1797 "dump raw trace in ASCII"),
1798 OPT_END()
1801 static const char * const replay_usage[] = {
1802 "perf sched replay [<options>]",
1803 NULL
1806 static const struct option replay_options[] = {
1807 OPT_UINTEGER('r', "repeat", &replay_repeat,
1808 "repeat the workload replay N times (-1: infinite)"),
1809 OPT_INCR('v', "verbose", &verbose,
1810 "be more verbose (show symbol address, etc)"),
1811 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1812 "dump raw trace in ASCII"),
1813 OPT_END()
1816 static void setup_sorting(void)
1818 char *tmp, *tok, *str = strdup(sort_order);
1820 for (tok = strtok_r(str, ", ", &tmp);
1821 tok; tok = strtok_r(NULL, ", ", &tmp)) {
1822 if (sort_dimension__add(tok, &sort_list) < 0) {
1823 error("Unknown --sort key: `%s'", tok);
1824 usage_with_options(latency_usage, latency_options);
1828 free(str);
1830 sort_dimension__add("pid", &cmp_pid);
1833 static const char *record_args[] = {
1834 "record",
1835 "-a",
1836 "-R",
1837 "-f",
1838 "-m", "1024",
1839 "-c", "1",
1840 "-e", "sched:sched_switch",
1841 "-e", "sched:sched_stat_wait",
1842 "-e", "sched:sched_stat_sleep",
1843 "-e", "sched:sched_stat_iowait",
1844 "-e", "sched:sched_stat_runtime",
1845 "-e", "sched:sched_process_exit",
1846 "-e", "sched:sched_process_fork",
1847 "-e", "sched:sched_wakeup",
1848 "-e", "sched:sched_migrate_task",
1851 static int __cmd_record(int argc, const char **argv)
1853 unsigned int rec_argc, i, j;
1854 const char **rec_argv;
1856 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
1857 rec_argv = calloc(rec_argc + 1, sizeof(char *));
1859 if (rec_argv == NULL)
1860 return -ENOMEM;
1862 for (i = 0; i < ARRAY_SIZE(record_args); i++)
1863 rec_argv[i] = strdup(record_args[i]);
1865 for (j = 1; j < (unsigned int)argc; j++, i++)
1866 rec_argv[i] = argv[j];
1868 BUG_ON(i != rec_argc);
1870 return cmd_record(i, rec_argv, NULL);
1873 int cmd_sched(int argc, const char **argv, const char *prefix __used)
1875 argc = parse_options(argc, argv, sched_options, sched_usage,
1876 PARSE_OPT_STOP_AT_NON_OPTION);
1877 if (!argc)
1878 usage_with_options(sched_usage, sched_options);
1881 * Aliased to 'perf script' for now:
1883 if (!strcmp(argv[0], "script"))
1884 return cmd_script(argc, argv, prefix);
1886 symbol__init();
1887 if (!strncmp(argv[0], "rec", 3)) {
1888 return __cmd_record(argc, argv);
1889 } else if (!strncmp(argv[0], "lat", 3)) {
1890 trace_handler = &lat_ops;
1891 if (argc > 1) {
1892 argc = parse_options(argc, argv, latency_options, latency_usage, 0);
1893 if (argc)
1894 usage_with_options(latency_usage, latency_options);
1896 setup_sorting();
1897 __cmd_lat();
1898 } else if (!strcmp(argv[0], "map")) {
1899 trace_handler = &map_ops;
1900 setup_sorting();
1901 __cmd_map();
1902 } else if (!strncmp(argv[0], "rep", 3)) {
1903 trace_handler = &replay_ops;
1904 if (argc) {
1905 argc = parse_options(argc, argv, replay_options, replay_usage, 0);
1906 if (argc)
1907 usage_with_options(replay_usage, replay_options);
1909 __cmd_replay();
1910 } else {
1911 usage_with_options(sched_usage, sched_options);
1914 return 0;