blob: 5ab58c6d246741f635ceeb17036777f8d4fa2607 [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"
Yann Droneaud57480d22014-06-30 22:28:47 +020013#include "util/cloexec.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020014
15#include "util/parse-options.h"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020016#include "util/trace-event.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020017
Ingo Molnar0a02ad92009-09-11 12:12:54 +020018#include "util/debug.h"
19
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020020#include <sys/prctl.h>
Markus Trippelsdorf7b78f132012-04-04 10:45:27 +020021#include <sys/resource.h>
Ingo Molnar0a02ad92009-09-11 12:12:54 +020022
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020023#include <semaphore.h>
24#include <pthread.h>
25#include <math.h>
Yunlong Songcb06ac22015-03-31 21:46:30 +080026#include <api/fs/fs.h>
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +020027
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020028#define PR_SET_NAME 15 /* Set process name */
29#define MAX_CPUS 4096
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020030#define COMM_LEN 20
31#define SYM_LEN 129
Yunlong Songa35e27d2015-03-31 21:46:29 +080032#define MAX_PID 1024000
Ingo Molnarec156762009-09-11 12:12:54 +020033
mingo39aeb522009-09-14 20:04:48 +020034struct sched_atom;
Ingo Molnarec156762009-09-11 12:12:54 +020035
36struct task_desc {
37 unsigned long nr;
38 unsigned long pid;
39 char comm[COMM_LEN];
40
41 unsigned long nr_events;
42 unsigned long curr_event;
mingo39aeb522009-09-14 20:04:48 +020043 struct sched_atom **atoms;
Ingo Molnarec156762009-09-11 12:12:54 +020044
45 pthread_t thread;
46 sem_t sleep_sem;
47
48 sem_t ready_for_work;
49 sem_t work_done_sem;
50
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020051 u64 cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +020052};
53
54enum sched_event_type {
55 SCHED_EVENT_RUN,
56 SCHED_EVENT_SLEEP,
57 SCHED_EVENT_WAKEUP,
Mike Galbraith55ffb7a2009-10-10 14:46:04 +020058 SCHED_EVENT_MIGRATION,
Ingo Molnarec156762009-09-11 12:12:54 +020059};
60
mingo39aeb522009-09-14 20:04:48 +020061struct sched_atom {
Ingo Molnarec156762009-09-11 12:12:54 +020062 enum sched_event_type type;
Arnaldo Carvalho de Meloeed05fe2010-04-05 12:53:45 -030063 int specific_wait;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020064 u64 timestamp;
65 u64 duration;
Ingo Molnarec156762009-09-11 12:12:54 +020066 unsigned long nr;
Ingo Molnarec156762009-09-11 12:12:54 +020067 sem_t *wait_sem;
68 struct task_desc *wakee;
69};
70
Dongshenge936e8e2014-05-05 16:05:54 +090071#define TASK_STATE_TO_CHAR_STR "RSDTtZXxKWP"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020072
73enum thread_state {
74 THREAD_SLEEPING = 0,
75 THREAD_WAIT_CPU,
76 THREAD_SCHED_IN,
77 THREAD_IGNORE
78};
79
80struct work_atom {
81 struct list_head list;
82 enum thread_state state;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +020083 u64 sched_out_time;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020084 u64 wake_up_time;
85 u64 sched_in_time;
86 u64 runtime;
87};
88
mingo39aeb522009-09-14 20:04:48 +020089struct work_atoms {
90 struct list_head work_list;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020091 struct thread *thread;
92 struct rb_node node;
93 u64 max_lat;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +010094 u64 max_lat_at;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020095 u64 total_lat;
96 u64 nb_atoms;
97 u64 total_runtime;
98};
99
mingo39aeb522009-09-14 20:04:48 +0200100typedef int (*sort_fn_t)(struct work_atoms *, struct work_atoms *);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200101
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300102struct perf_sched;
103
104struct trace_sched_handler {
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300105 int (*switch_event)(struct perf_sched *sched, struct perf_evsel *evsel,
106 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300107
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300108 int (*runtime_event)(struct perf_sched *sched, struct perf_evsel *evsel,
109 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300110
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300111 int (*wakeup_event)(struct perf_sched *sched, struct perf_evsel *evsel,
112 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300113
David Aherncb627502013-08-07 22:50:47 -0400114 /* PERF_RECORD_FORK event, not sched_process_fork tracepoint */
115 int (*fork_event)(struct perf_sched *sched, union perf_event *event,
116 struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300117
118 int (*migrate_task_event)(struct perf_sched *sched,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300119 struct perf_evsel *evsel,
120 struct perf_sample *sample,
121 struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300122};
123
124struct perf_sched {
125 struct perf_tool tool;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300126 const char *sort_order;
127 unsigned long nr_tasks;
Yunlong Songcb06ac22015-03-31 21:46:30 +0800128 struct task_desc **pid_to_task;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300129 struct task_desc **tasks;
130 const struct trace_sched_handler *tp_handler;
131 pthread_mutex_t start_work_mutex;
132 pthread_mutex_t work_done_wait_mutex;
133 int profile_cpu;
134/*
135 * Track the current task - that way we can know whether there's any
136 * weird events, such as a task being switched away that is not current.
137 */
138 int max_cpu;
139 u32 curr_pid[MAX_CPUS];
140 struct thread *curr_thread[MAX_CPUS];
141 char next_shortname1;
142 char next_shortname2;
143 unsigned int replay_repeat;
144 unsigned long nr_run_events;
145 unsigned long nr_sleep_events;
146 unsigned long nr_wakeup_events;
147 unsigned long nr_sleep_corrections;
148 unsigned long nr_run_events_optimized;
149 unsigned long targetless_wakeups;
150 unsigned long multitarget_wakeups;
151 unsigned long nr_runs;
152 unsigned long nr_timestamps;
153 unsigned long nr_unordered_timestamps;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300154 unsigned long nr_context_switch_bugs;
155 unsigned long nr_events;
156 unsigned long nr_lost_chunks;
157 unsigned long nr_lost_events;
158 u64 run_measurement_overhead;
159 u64 sleep_measurement_overhead;
160 u64 start_time;
161 u64 cpu_usage;
162 u64 runavg_cpu_usage;
163 u64 parent_cpu_usage;
164 u64 runavg_parent_cpu_usage;
165 u64 sum_runtime;
166 u64 sum_fluct;
167 u64 run_avg;
168 u64 all_runtime;
169 u64 all_count;
170 u64 cpu_last_switched[MAX_CPUS];
171 struct rb_root atom_root, sorted_atom_root;
172 struct list_head sort_list, cmp_pid;
Yunlong Song939cda52015-03-31 21:46:34 +0800173 bool force;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300174};
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200175
176static u64 get_nsecs(void)
177{
178 struct timespec ts;
179
180 clock_gettime(CLOCK_MONOTONIC, &ts);
181
182 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
183}
184
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300185static void burn_nsecs(struct perf_sched *sched, u64 nsecs)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200186{
187 u64 T0 = get_nsecs(), T1;
188
189 do {
190 T1 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300191 } while (T1 + sched->run_measurement_overhead < T0 + nsecs);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200192}
193
194static void sleep_nsecs(u64 nsecs)
195{
196 struct timespec ts;
197
198 ts.tv_nsec = nsecs % 999999999;
199 ts.tv_sec = nsecs / 999999999;
200
201 nanosleep(&ts, NULL);
202}
203
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300204static void calibrate_run_measurement_overhead(struct perf_sched *sched)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200205{
206 u64 T0, T1, delta, min_delta = 1000000000ULL;
207 int i;
208
209 for (i = 0; i < 10; i++) {
210 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300211 burn_nsecs(sched, 0);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200212 T1 = get_nsecs();
213 delta = T1-T0;
214 min_delta = min(min_delta, delta);
215 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300216 sched->run_measurement_overhead = min_delta;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200217
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200218 printf("run measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200219}
220
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300221static void calibrate_sleep_measurement_overhead(struct perf_sched *sched)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200222{
223 u64 T0, T1, delta, min_delta = 1000000000ULL;
224 int i;
225
226 for (i = 0; i < 10; i++) {
227 T0 = get_nsecs();
228 sleep_nsecs(10000);
229 T1 = get_nsecs();
230 delta = T1-T0;
231 min_delta = min(min_delta, delta);
232 }
233 min_delta -= 10000;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300234 sched->sleep_measurement_overhead = min_delta;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200235
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200236 printf("sleep measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200237}
238
mingo39aeb522009-09-14 20:04:48 +0200239static struct sched_atom *
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200240get_new_event(struct task_desc *task, u64 timestamp)
Ingo Molnarec156762009-09-11 12:12:54 +0200241{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200242 struct sched_atom *event = zalloc(sizeof(*event));
Ingo Molnarec156762009-09-11 12:12:54 +0200243 unsigned long idx = task->nr_events;
244 size_t size;
245
246 event->timestamp = timestamp;
247 event->nr = idx;
248
249 task->nr_events++;
mingo39aeb522009-09-14 20:04:48 +0200250 size = sizeof(struct sched_atom *) * task->nr_events;
251 task->atoms = realloc(task->atoms, size);
252 BUG_ON(!task->atoms);
Ingo Molnarec156762009-09-11 12:12:54 +0200253
mingo39aeb522009-09-14 20:04:48 +0200254 task->atoms[idx] = event;
Ingo Molnarec156762009-09-11 12:12:54 +0200255
256 return event;
257}
258
mingo39aeb522009-09-14 20:04:48 +0200259static struct sched_atom *last_event(struct task_desc *task)
Ingo Molnarec156762009-09-11 12:12:54 +0200260{
261 if (!task->nr_events)
262 return NULL;
263
mingo39aeb522009-09-14 20:04:48 +0200264 return task->atoms[task->nr_events - 1];
Ingo Molnarec156762009-09-11 12:12:54 +0200265}
266
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300267static void add_sched_event_run(struct perf_sched *sched, struct task_desc *task,
268 u64 timestamp, u64 duration)
Ingo Molnarec156762009-09-11 12:12:54 +0200269{
mingo39aeb522009-09-14 20:04:48 +0200270 struct sched_atom *event, *curr_event = last_event(task);
Ingo Molnarec156762009-09-11 12:12:54 +0200271
272 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200273 * optimize an existing RUN event by merging this one
274 * to it:
275 */
Ingo Molnarec156762009-09-11 12:12:54 +0200276 if (curr_event && curr_event->type == SCHED_EVENT_RUN) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300277 sched->nr_run_events_optimized++;
Ingo Molnarec156762009-09-11 12:12:54 +0200278 curr_event->duration += duration;
279 return;
280 }
281
282 event = get_new_event(task, timestamp);
283
284 event->type = SCHED_EVENT_RUN;
285 event->duration = duration;
286
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300287 sched->nr_run_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200288}
289
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300290static void add_sched_event_wakeup(struct perf_sched *sched, struct task_desc *task,
291 u64 timestamp, struct task_desc *wakee)
Ingo Molnarec156762009-09-11 12:12:54 +0200292{
mingo39aeb522009-09-14 20:04:48 +0200293 struct sched_atom *event, *wakee_event;
Ingo Molnarec156762009-09-11 12:12:54 +0200294
295 event = get_new_event(task, timestamp);
296 event->type = SCHED_EVENT_WAKEUP;
297 event->wakee = wakee;
298
299 wakee_event = last_event(wakee);
300 if (!wakee_event || wakee_event->type != SCHED_EVENT_SLEEP) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300301 sched->targetless_wakeups++;
Ingo Molnarec156762009-09-11 12:12:54 +0200302 return;
303 }
304 if (wakee_event->wait_sem) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300305 sched->multitarget_wakeups++;
Ingo Molnarec156762009-09-11 12:12:54 +0200306 return;
307 }
308
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200309 wakee_event->wait_sem = zalloc(sizeof(*wakee_event->wait_sem));
Ingo Molnarec156762009-09-11 12:12:54 +0200310 sem_init(wakee_event->wait_sem, 0, 0);
311 wakee_event->specific_wait = 1;
312 event->wait_sem = wakee_event->wait_sem;
313
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300314 sched->nr_wakeup_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200315}
316
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300317static void add_sched_event_sleep(struct perf_sched *sched, struct task_desc *task,
318 u64 timestamp, u64 task_state __maybe_unused)
Ingo Molnarec156762009-09-11 12:12:54 +0200319{
mingo39aeb522009-09-14 20:04:48 +0200320 struct sched_atom *event = get_new_event(task, timestamp);
Ingo Molnarec156762009-09-11 12:12:54 +0200321
322 event->type = SCHED_EVENT_SLEEP;
323
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300324 sched->nr_sleep_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200325}
326
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300327static struct task_desc *register_pid(struct perf_sched *sched,
328 unsigned long pid, const char *comm)
Ingo Molnarec156762009-09-11 12:12:54 +0200329{
330 struct task_desc *task;
Yunlong Songcb06ac22015-03-31 21:46:30 +0800331 static int pid_max;
Ingo Molnarec156762009-09-11 12:12:54 +0200332
Yunlong Songcb06ac22015-03-31 21:46:30 +0800333 if (sched->pid_to_task == NULL) {
334 if (sysctl__read_int("kernel/pid_max", &pid_max) < 0)
335 pid_max = MAX_PID;
336 BUG_ON((sched->pid_to_task = calloc(pid_max, sizeof(struct task_desc *))) == NULL);
337 }
Yunlong Song3a423a52015-03-31 21:46:31 +0800338 if (pid >= (unsigned long)pid_max) {
339 BUG_ON((sched->pid_to_task = realloc(sched->pid_to_task, (pid + 1) *
340 sizeof(struct task_desc *))) == NULL);
341 while (pid >= (unsigned long)pid_max)
342 sched->pid_to_task[pid_max++] = NULL;
343 }
Ingo Molnarec156762009-09-11 12:12:54 +0200344
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300345 task = sched->pid_to_task[pid];
Ingo Molnarec156762009-09-11 12:12:54 +0200346
347 if (task)
348 return task;
349
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200350 task = zalloc(sizeof(*task));
Ingo Molnarec156762009-09-11 12:12:54 +0200351 task->pid = pid;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300352 task->nr = sched->nr_tasks;
Ingo Molnarec156762009-09-11 12:12:54 +0200353 strcpy(task->comm, comm);
354 /*
355 * every task starts in sleeping state - this gets ignored
356 * if there's no wakeup pointing to this sleep state:
357 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300358 add_sched_event_sleep(sched, task, 0, 0);
Ingo Molnarec156762009-09-11 12:12:54 +0200359
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300360 sched->pid_to_task[pid] = task;
361 sched->nr_tasks++;
Yunlong Song0755bc42015-03-31 21:46:28 +0800362 sched->tasks = realloc(sched->tasks, sched->nr_tasks * sizeof(struct task_desc *));
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300363 BUG_ON(!sched->tasks);
364 sched->tasks[task->nr] = task;
Ingo Molnarec156762009-09-11 12:12:54 +0200365
Ingo Molnarad236fd2009-09-11 12:12:54 +0200366 if (verbose)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300367 printf("registered task #%ld, PID %ld (%s)\n", sched->nr_tasks, pid, comm);
Ingo Molnarec156762009-09-11 12:12:54 +0200368
369 return task;
370}
371
372
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300373static void print_task_traces(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200374{
375 struct task_desc *task;
376 unsigned long i;
377
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300378 for (i = 0; i < sched->nr_tasks; i++) {
379 task = sched->tasks[i];
Ingo Molnarad236fd2009-09-11 12:12:54 +0200380 printf("task %6ld (%20s:%10ld), nr_events: %ld\n",
Ingo Molnarec156762009-09-11 12:12:54 +0200381 task->nr, task->comm, task->pid, task->nr_events);
382 }
383}
384
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300385static void add_cross_task_wakeups(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200386{
387 struct task_desc *task1, *task2;
388 unsigned long i, j;
389
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300390 for (i = 0; i < sched->nr_tasks; i++) {
391 task1 = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200392 j = i + 1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300393 if (j == sched->nr_tasks)
Ingo Molnarec156762009-09-11 12:12:54 +0200394 j = 0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300395 task2 = sched->tasks[j];
396 add_sched_event_wakeup(sched, task1, 0, task2);
Ingo Molnarec156762009-09-11 12:12:54 +0200397 }
398}
399
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300400static void perf_sched__process_event(struct perf_sched *sched,
401 struct sched_atom *atom)
Ingo Molnarec156762009-09-11 12:12:54 +0200402{
403 int ret = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200404
mingo39aeb522009-09-14 20:04:48 +0200405 switch (atom->type) {
Ingo Molnarec156762009-09-11 12:12:54 +0200406 case SCHED_EVENT_RUN:
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300407 burn_nsecs(sched, atom->duration);
Ingo Molnarec156762009-09-11 12:12:54 +0200408 break;
409 case SCHED_EVENT_SLEEP:
mingo39aeb522009-09-14 20:04:48 +0200410 if (atom->wait_sem)
411 ret = sem_wait(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200412 BUG_ON(ret);
413 break;
414 case SCHED_EVENT_WAKEUP:
mingo39aeb522009-09-14 20:04:48 +0200415 if (atom->wait_sem)
416 ret = sem_post(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200417 BUG_ON(ret);
418 break;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +0200419 case SCHED_EVENT_MIGRATION:
420 break;
Ingo Molnarec156762009-09-11 12:12:54 +0200421 default:
422 BUG_ON(1);
423 }
424}
425
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200426static u64 get_cpu_usage_nsec_parent(void)
Ingo Molnarec156762009-09-11 12:12:54 +0200427{
428 struct rusage ru;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200429 u64 sum;
Ingo Molnarec156762009-09-11 12:12:54 +0200430 int err;
431
432 err = getrusage(RUSAGE_SELF, &ru);
433 BUG_ON(err);
434
435 sum = ru.ru_utime.tv_sec*1e9 + ru.ru_utime.tv_usec*1e3;
436 sum += ru.ru_stime.tv_sec*1e9 + ru.ru_stime.tv_usec*1e3;
437
438 return sum;
439}
440
Yunlong Song939cda52015-03-31 21:46:34 +0800441static int self_open_counters(struct perf_sched *sched, unsigned long cur_task)
Ingo Molnarec156762009-09-11 12:12:54 +0200442{
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800443 struct perf_event_attr attr;
Yunlong Song939cda52015-03-31 21:46:34 +0800444 char sbuf[STRERR_BUFSIZE], info[STRERR_BUFSIZE];
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800445 int fd;
Yunlong Song939cda52015-03-31 21:46:34 +0800446 struct rlimit limit;
447 bool need_privilege = false;
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800448
449 memset(&attr, 0, sizeof(attr));
450
451 attr.type = PERF_TYPE_SOFTWARE;
452 attr.config = PERF_COUNT_SW_TASK_CLOCK;
453
Yunlong Song939cda52015-03-31 21:46:34 +0800454force_again:
Yann Droneaud57480d22014-06-30 22:28:47 +0200455 fd = sys_perf_event_open(&attr, 0, -1, -1,
456 perf_event_open_cloexec_flag());
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800457
Yunlong Song1aff59b2015-03-31 21:46:33 +0800458 if (fd < 0) {
Yunlong Song939cda52015-03-31 21:46:34 +0800459 if (errno == EMFILE) {
460 if (sched->force) {
461 BUG_ON(getrlimit(RLIMIT_NOFILE, &limit) == -1);
462 limit.rlim_cur += sched->nr_tasks - cur_task;
463 if (limit.rlim_cur > limit.rlim_max) {
464 limit.rlim_max = limit.rlim_cur;
465 need_privilege = true;
466 }
467 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
468 if (need_privilege && errno == EPERM)
469 strcpy(info, "Need privilege\n");
470 } else
471 goto force_again;
472 } else
473 strcpy(info, "Have a try with -f option\n");
474 }
Namhyung Kim60b7d142012-09-12 11:11:06 +0900475 pr_err("Error: sys_perf_event_open() syscall returned "
Yunlong Song939cda52015-03-31 21:46:34 +0800476 "with %d (%s)\n%s", fd,
477 strerror_r(errno, sbuf, sizeof(sbuf)), info);
Yunlong Song1aff59b2015-03-31 21:46:33 +0800478 exit(EXIT_FAILURE);
479 }
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800480 return fd;
481}
482
483static u64 get_cpu_usage_nsec_self(int fd)
484{
485 u64 runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200486 int ret;
487
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800488 ret = read(fd, &runtime, sizeof(runtime));
489 BUG_ON(ret != sizeof(runtime));
Ingo Molnarec156762009-09-11 12:12:54 +0200490
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800491 return runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200492}
493
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300494struct sched_thread_parms {
495 struct task_desc *task;
496 struct perf_sched *sched;
Yunlong Song08097ab2015-03-31 21:46:32 +0800497 int fd;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300498};
499
Ingo Molnarec156762009-09-11 12:12:54 +0200500static void *thread_func(void *ctx)
501{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300502 struct sched_thread_parms *parms = ctx;
503 struct task_desc *this_task = parms->task;
504 struct perf_sched *sched = parms->sched;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200505 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200506 unsigned long i, ret;
507 char comm2[22];
Yunlong Song08097ab2015-03-31 21:46:32 +0800508 int fd = parms->fd;
Ingo Molnarec156762009-09-11 12:12:54 +0200509
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300510 zfree(&parms);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300511
Ingo Molnarec156762009-09-11 12:12:54 +0200512 sprintf(comm2, ":%s", this_task->comm);
513 prctl(PR_SET_NAME, comm2);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300514 if (fd < 0)
515 return NULL;
Ingo Molnarec156762009-09-11 12:12:54 +0200516again:
517 ret = sem_post(&this_task->ready_for_work);
518 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300519 ret = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200520 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300521 ret = pthread_mutex_unlock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200522 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200523
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800524 cpu_usage_0 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200525
526 for (i = 0; i < this_task->nr_events; i++) {
527 this_task->curr_event = i;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300528 perf_sched__process_event(sched, this_task->atoms[i]);
Ingo Molnarec156762009-09-11 12:12:54 +0200529 }
530
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800531 cpu_usage_1 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200532 this_task->cpu_usage = cpu_usage_1 - cpu_usage_0;
Ingo Molnarec156762009-09-11 12:12:54 +0200533 ret = sem_post(&this_task->work_done_sem);
534 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200535
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300536 ret = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200537 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300538 ret = pthread_mutex_unlock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200539 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200540
541 goto again;
542}
543
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300544static void create_tasks(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200545{
546 struct task_desc *task;
547 pthread_attr_t attr;
548 unsigned long i;
549 int err;
550
551 err = pthread_attr_init(&attr);
552 BUG_ON(err);
Jiri Pirko12f7e032011-01-10 14:14:23 -0200553 err = pthread_attr_setstacksize(&attr,
554 (size_t) max(16 * 1024, PTHREAD_STACK_MIN));
Ingo Molnarec156762009-09-11 12:12:54 +0200555 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300556 err = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200557 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300558 err = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200559 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300560 for (i = 0; i < sched->nr_tasks; i++) {
561 struct sched_thread_parms *parms = malloc(sizeof(*parms));
562 BUG_ON(parms == NULL);
563 parms->task = task = sched->tasks[i];
564 parms->sched = sched;
Yunlong Song939cda52015-03-31 21:46:34 +0800565 parms->fd = self_open_counters(sched, i);
Ingo Molnarec156762009-09-11 12:12:54 +0200566 sem_init(&task->sleep_sem, 0, 0);
567 sem_init(&task->ready_for_work, 0, 0);
568 sem_init(&task->work_done_sem, 0, 0);
569 task->curr_event = 0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300570 err = pthread_create(&task->thread, &attr, thread_func, parms);
Ingo Molnarec156762009-09-11 12:12:54 +0200571 BUG_ON(err);
572 }
573}
574
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300575static void wait_for_tasks(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200576{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200577 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200578 struct task_desc *task;
579 unsigned long i, ret;
580
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300581 sched->start_time = get_nsecs();
582 sched->cpu_usage = 0;
583 pthread_mutex_unlock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200584
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300585 for (i = 0; i < sched->nr_tasks; i++) {
586 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200587 ret = sem_wait(&task->ready_for_work);
588 BUG_ON(ret);
589 sem_init(&task->ready_for_work, 0, 0);
590 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300591 ret = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200592 BUG_ON(ret);
593
594 cpu_usage_0 = get_cpu_usage_nsec_parent();
595
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300596 pthread_mutex_unlock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200597
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300598 for (i = 0; i < sched->nr_tasks; i++) {
599 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200600 ret = sem_wait(&task->work_done_sem);
601 BUG_ON(ret);
602 sem_init(&task->work_done_sem, 0, 0);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300603 sched->cpu_usage += task->cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +0200604 task->cpu_usage = 0;
605 }
606
607 cpu_usage_1 = get_cpu_usage_nsec_parent();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300608 if (!sched->runavg_cpu_usage)
609 sched->runavg_cpu_usage = sched->cpu_usage;
610 sched->runavg_cpu_usage = (sched->runavg_cpu_usage * 9 + sched->cpu_usage) / 10;
Ingo Molnarec156762009-09-11 12:12:54 +0200611
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300612 sched->parent_cpu_usage = cpu_usage_1 - cpu_usage_0;
613 if (!sched->runavg_parent_cpu_usage)
614 sched->runavg_parent_cpu_usage = sched->parent_cpu_usage;
615 sched->runavg_parent_cpu_usage = (sched->runavg_parent_cpu_usage * 9 +
616 sched->parent_cpu_usage)/10;
Ingo Molnarec156762009-09-11 12:12:54 +0200617
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300618 ret = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200619 BUG_ON(ret);
620
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300621 for (i = 0; i < sched->nr_tasks; i++) {
622 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200623 sem_init(&task->sleep_sem, 0, 0);
624 task->curr_event = 0;
625 }
626}
627
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300628static void run_one_test(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200629{
Kyle McMartinfb7d0b32011-01-24 11:13:04 -0500630 u64 T0, T1, delta, avg_delta, fluct;
Ingo Molnarec156762009-09-11 12:12:54 +0200631
632 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300633 wait_for_tasks(sched);
Ingo Molnarec156762009-09-11 12:12:54 +0200634 T1 = get_nsecs();
635
636 delta = T1 - T0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300637 sched->sum_runtime += delta;
638 sched->nr_runs++;
Ingo Molnarec156762009-09-11 12:12:54 +0200639
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300640 avg_delta = sched->sum_runtime / sched->nr_runs;
Ingo Molnarec156762009-09-11 12:12:54 +0200641 if (delta < avg_delta)
642 fluct = avg_delta - delta;
643 else
644 fluct = delta - avg_delta;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300645 sched->sum_fluct += fluct;
646 if (!sched->run_avg)
647 sched->run_avg = delta;
648 sched->run_avg = (sched->run_avg * 9 + delta) / 10;
Ingo Molnarec156762009-09-11 12:12:54 +0200649
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300650 printf("#%-3ld: %0.3f, ", sched->nr_runs, (double)delta / 1000000.0);
Ingo Molnarec156762009-09-11 12:12:54 +0200651
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300652 printf("ravg: %0.2f, ", (double)sched->run_avg / 1e6);
Ingo Molnarec156762009-09-11 12:12:54 +0200653
Ingo Molnarad236fd2009-09-11 12:12:54 +0200654 printf("cpu: %0.2f / %0.2f",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300655 (double)sched->cpu_usage / 1e6, (double)sched->runavg_cpu_usage / 1e6);
Ingo Molnarec156762009-09-11 12:12:54 +0200656
657#if 0
658 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200659 * rusage statistics done by the parent, these are less
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300660 * accurate than the sched->sum_exec_runtime based statistics:
Ingo Molnarfbf94822009-09-11 12:12:54 +0200661 */
Ingo Molnarad236fd2009-09-11 12:12:54 +0200662 printf(" [%0.2f / %0.2f]",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300663 (double)sched->parent_cpu_usage/1e6,
664 (double)sched->runavg_parent_cpu_usage/1e6);
Ingo Molnarec156762009-09-11 12:12:54 +0200665#endif
666
Ingo Molnarad236fd2009-09-11 12:12:54 +0200667 printf("\n");
Ingo Molnarec156762009-09-11 12:12:54 +0200668
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300669 if (sched->nr_sleep_corrections)
670 printf(" (%ld sleep corrections)\n", sched->nr_sleep_corrections);
671 sched->nr_sleep_corrections = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200672}
673
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300674static void test_calibrations(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200675{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200676 u64 T0, T1;
Ingo Molnarec156762009-09-11 12:12:54 +0200677
678 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300679 burn_nsecs(sched, 1e6);
Ingo Molnarec156762009-09-11 12:12:54 +0200680 T1 = get_nsecs();
681
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200682 printf("the run test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200683
684 T0 = get_nsecs();
685 sleep_nsecs(1e6);
686 T1 = get_nsecs();
687
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200688 printf("the sleep test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200689}
690
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300691static int
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300692replay_wakeup_event(struct perf_sched *sched,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300693 struct perf_evsel *evsel, struct perf_sample *sample,
694 struct machine *machine __maybe_unused)
Ingo Molnarec156762009-09-11 12:12:54 +0200695{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300696 const char *comm = perf_evsel__strval(evsel, sample, "comm");
697 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200698 struct task_desc *waker, *wakee;
699
700 if (verbose) {
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300701 printf("sched_wakeup event %p\n", evsel);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200702
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300703 printf(" ... pid %d woke up %s/%d\n", sample->tid, comm, pid);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200704 }
705
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300706 waker = register_pid(sched, sample->tid, "<unknown>");
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300707 wakee = register_pid(sched, pid, comm);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200708
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300709 add_sched_event_wakeup(sched, waker, sample->time, wakee);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300710 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200711}
712
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300713static int replay_switch_event(struct perf_sched *sched,
714 struct perf_evsel *evsel,
715 struct perf_sample *sample,
716 struct machine *machine __maybe_unused)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200717{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300718 const char *prev_comm = perf_evsel__strval(evsel, sample, "prev_comm"),
719 *next_comm = perf_evsel__strval(evsel, sample, "next_comm");
720 const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
721 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
722 const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state");
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300723 struct task_desc *prev, __maybe_unused *next;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -0300724 u64 timestamp0, timestamp = sample->time;
725 int cpu = sample->cpu;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200726 s64 delta;
727
Ingo Molnarad236fd2009-09-11 12:12:54 +0200728 if (verbose)
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300729 printf("sched_switch event %p\n", evsel);
Ingo Molnarad236fd2009-09-11 12:12:54 +0200730
Ingo Molnarfbf94822009-09-11 12:12:54 +0200731 if (cpu >= MAX_CPUS || cpu < 0)
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300732 return 0;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200733
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300734 timestamp0 = sched->cpu_last_switched[cpu];
Ingo Molnarfbf94822009-09-11 12:12:54 +0200735 if (timestamp0)
736 delta = timestamp - timestamp0;
737 else
738 delta = 0;
739
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300740 if (delta < 0) {
Namhyung Kim60b7d142012-09-12 11:11:06 +0900741 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300742 return -1;
743 }
Ingo Molnarfbf94822009-09-11 12:12:54 +0200744
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300745 pr_debug(" ... switch from %s/%d to %s/%d [ran %" PRIu64 " nsecs]\n",
746 prev_comm, prev_pid, next_comm, next_pid, delta);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200747
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300748 prev = register_pid(sched, prev_pid, prev_comm);
749 next = register_pid(sched, next_pid, next_comm);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200750
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300751 sched->cpu_last_switched[cpu] = timestamp;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200752
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300753 add_sched_event_run(sched, prev, timestamp, delta);
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300754 add_sched_event_sleep(sched, prev, timestamp, prev_state);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300755
756 return 0;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200757}
758
David Aherncb627502013-08-07 22:50:47 -0400759static int replay_fork_event(struct perf_sched *sched,
760 union perf_event *event,
761 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200762{
David Aherncb627502013-08-07 22:50:47 -0400763 struct thread *child, *parent;
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300764
Adrian Hunter314add62013-08-27 11:23:03 +0300765 child = machine__findnew_thread(machine, event->fork.pid,
766 event->fork.tid);
767 parent = machine__findnew_thread(machine, event->fork.ppid,
768 event->fork.ptid);
David Aherncb627502013-08-07 22:50:47 -0400769
770 if (child == NULL || parent == NULL) {
771 pr_debug("thread does not exist on fork event: child %p, parent %p\n",
772 child, parent);
773 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200774 }
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300775
David Aherncb627502013-08-07 22:50:47 -0400776 if (verbose) {
777 printf("fork event\n");
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200778 printf("... parent: %s/%d\n", thread__comm_str(parent), parent->tid);
779 printf("... child: %s/%d\n", thread__comm_str(child), child->tid);
David Aherncb627502013-08-07 22:50:47 -0400780 }
781
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200782 register_pid(sched, parent->tid, thread__comm_str(parent));
783 register_pid(sched, child->tid, thread__comm_str(child));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300784 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200785}
786
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200787struct sort_dimension {
788 const char *name;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200789 sort_fn_t cmp;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200790 struct list_head list;
791};
792
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200793static int
mingo39aeb522009-09-14 20:04:48 +0200794thread_lat_cmp(struct list_head *list, struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200795{
796 struct sort_dimension *sort;
797 int ret = 0;
798
Ingo Molnarb5fae122009-09-11 12:12:54 +0200799 BUG_ON(list_empty(list));
800
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200801 list_for_each_entry(sort, list, list) {
802 ret = sort->cmp(l, r);
803 if (ret)
804 return ret;
805 }
806
807 return ret;
808}
809
mingo39aeb522009-09-14 20:04:48 +0200810static struct work_atoms *
Ingo Molnarb5fae122009-09-11 12:12:54 +0200811thread_atoms_search(struct rb_root *root, struct thread *thread,
812 struct list_head *sort_list)
813{
814 struct rb_node *node = root->rb_node;
mingo39aeb522009-09-14 20:04:48 +0200815 struct work_atoms key = { .thread = thread };
Ingo Molnarb5fae122009-09-11 12:12:54 +0200816
817 while (node) {
mingo39aeb522009-09-14 20:04:48 +0200818 struct work_atoms *atoms;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200819 int cmp;
820
mingo39aeb522009-09-14 20:04:48 +0200821 atoms = container_of(node, struct work_atoms, node);
Ingo Molnarb5fae122009-09-11 12:12:54 +0200822
823 cmp = thread_lat_cmp(sort_list, &key, atoms);
824 if (cmp > 0)
825 node = node->rb_left;
826 else if (cmp < 0)
827 node = node->rb_right;
828 else {
829 BUG_ON(thread != atoms->thread);
830 return atoms;
831 }
832 }
833 return NULL;
834}
835
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200836static void
mingo39aeb522009-09-14 20:04:48 +0200837__thread_latency_insert(struct rb_root *root, struct work_atoms *data,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200838 struct list_head *sort_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200839{
840 struct rb_node **new = &(root->rb_node), *parent = NULL;
841
842 while (*new) {
mingo39aeb522009-09-14 20:04:48 +0200843 struct work_atoms *this;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200844 int cmp;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200845
mingo39aeb522009-09-14 20:04:48 +0200846 this = container_of(*new, struct work_atoms, node);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200847 parent = *new;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200848
849 cmp = thread_lat_cmp(sort_list, data, this);
850
851 if (cmp > 0)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200852 new = &((*new)->rb_left);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200853 else
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200854 new = &((*new)->rb_right);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200855 }
856
857 rb_link_node(&data->node, parent, new);
858 rb_insert_color(&data->node, root);
859}
860
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300861static int thread_atoms_insert(struct perf_sched *sched, struct thread *thread)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200862{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200863 struct work_atoms *atoms = zalloc(sizeof(*atoms));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300864 if (!atoms) {
865 pr_err("No memory at %s\n", __func__);
866 return -1;
867 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200868
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300869 atoms->thread = thread__get(thread);
mingo39aeb522009-09-14 20:04:48 +0200870 INIT_LIST_HEAD(&atoms->work_list);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300871 __thread_latency_insert(&sched->atom_root, atoms, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300872 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200873}
874
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300875static char sched_out_state(u64 prev_state)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200876{
877 const char *str = TASK_STATE_TO_CHAR_STR;
878
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300879 return str[prev_state];
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200880}
881
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300882static int
mingo39aeb522009-09-14 20:04:48 +0200883add_sched_out_event(struct work_atoms *atoms,
884 char run_state,
885 u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200886{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200887 struct work_atom *atom = zalloc(sizeof(*atom));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300888 if (!atom) {
889 pr_err("Non memory at %s", __func__);
890 return -1;
891 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200892
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200893 atom->sched_out_time = timestamp;
894
mingo39aeb522009-09-14 20:04:48 +0200895 if (run_state == 'R') {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200896 atom->state = THREAD_WAIT_CPU;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200897 atom->wake_up_time = atom->sched_out_time;
Frederic Weisbeckerc6ced612009-09-13 00:46:19 +0200898 }
899
mingo39aeb522009-09-14 20:04:48 +0200900 list_add_tail(&atom->list, &atoms->work_list);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300901 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200902}
903
904static void
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300905add_runtime_event(struct work_atoms *atoms, u64 delta,
906 u64 timestamp __maybe_unused)
mingo39aeb522009-09-14 20:04:48 +0200907{
908 struct work_atom *atom;
909
910 BUG_ON(list_empty(&atoms->work_list));
911
912 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
913
914 atom->runtime += delta;
915 atoms->total_runtime += delta;
916}
917
918static void
919add_sched_in_event(struct work_atoms *atoms, u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200920{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200921 struct work_atom *atom;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200922 u64 delta;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200923
mingo39aeb522009-09-14 20:04:48 +0200924 if (list_empty(&atoms->work_list))
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200925 return;
926
mingo39aeb522009-09-14 20:04:48 +0200927 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200928
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200929 if (atom->state != THREAD_WAIT_CPU)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200930 return;
931
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200932 if (timestamp < atom->wake_up_time) {
933 atom->state = THREAD_IGNORE;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200934 return;
935 }
936
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200937 atom->state = THREAD_SCHED_IN;
938 atom->sched_in_time = timestamp;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200939
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200940 delta = atom->sched_in_time - atom->wake_up_time;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200941 atoms->total_lat += delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +0100942 if (delta > atoms->max_lat) {
Frederic Weisbecker66685672009-09-13 01:56:25 +0200943 atoms->max_lat = delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +0100944 atoms->max_lat_at = timestamp;
945 }
Frederic Weisbecker66685672009-09-13 01:56:25 +0200946 atoms->nb_atoms++;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200947}
948
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300949static int latency_switch_event(struct perf_sched *sched,
950 struct perf_evsel *evsel,
951 struct perf_sample *sample,
952 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200953{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300954 const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
955 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
956 const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state");
mingo39aeb522009-09-14 20:04:48 +0200957 struct work_atoms *out_events, *in_events;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200958 struct thread *sched_out, *sched_in;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -0300959 u64 timestamp0, timestamp = sample->time;
960 int cpu = sample->cpu;
Ingo Molnarea92ed52009-09-12 10:08:34 +0200961 s64 delta;
962
mingo39aeb522009-09-14 20:04:48 +0200963 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
Ingo Molnarea92ed52009-09-12 10:08:34 +0200964
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300965 timestamp0 = sched->cpu_last_switched[cpu];
966 sched->cpu_last_switched[cpu] = timestamp;
Ingo Molnarea92ed52009-09-12 10:08:34 +0200967 if (timestamp0)
968 delta = timestamp - timestamp0;
969 else
970 delta = 0;
971
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300972 if (delta < 0) {
973 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
974 return -1;
975 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200976
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300977 sched_out = machine__findnew_thread(machine, -1, prev_pid);
978 sched_in = machine__findnew_thread(machine, -1, next_pid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200979
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300980 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +0200981 if (!out_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300982 if (thread_atoms_insert(sched, sched_out))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300983 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300984 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300985 if (!out_events) {
986 pr_err("out-event: Internal tree error");
987 return -1;
988 }
mingo39aeb522009-09-14 20:04:48 +0200989 }
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300990 if (add_sched_out_event(out_events, sched_out_state(prev_state), timestamp))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300991 return -1;
mingo39aeb522009-09-14 20:04:48 +0200992
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300993 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +0200994 if (!in_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300995 if (thread_atoms_insert(sched, sched_in))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300996 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300997 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300998 if (!in_events) {
999 pr_err("in-event: Internal tree error");
1000 return -1;
1001 }
mingo39aeb522009-09-14 20:04:48 +02001002 /*
1003 * Take came in we have not heard about yet,
1004 * add in an initial atom in runnable state:
1005 */
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001006 if (add_sched_out_event(in_events, 'R', timestamp))
1007 return -1;
mingo39aeb522009-09-14 20:04:48 +02001008 }
1009 add_sched_in_event(in_events, timestamp);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001010
1011 return 0;
mingo39aeb522009-09-14 20:04:48 +02001012}
1013
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001014static int latency_runtime_event(struct perf_sched *sched,
1015 struct perf_evsel *evsel,
1016 struct perf_sample *sample,
1017 struct machine *machine)
mingo39aeb522009-09-14 20:04:48 +02001018{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001019 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
1020 const u64 runtime = perf_evsel__intval(evsel, sample, "runtime");
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001021 struct thread *thread = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001022 struct work_atoms *atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001023 u64 timestamp = sample->time;
1024 int cpu = sample->cpu;
mingo39aeb522009-09-14 20:04:48 +02001025
1026 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
mingo39aeb522009-09-14 20:04:48 +02001027 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001028 if (thread_atoms_insert(sched, thread))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001029 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001030 atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001031 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001032 pr_err("in-event: Internal tree error");
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001033 return -1;
1034 }
1035 if (add_sched_out_event(atoms, 'R', timestamp))
1036 return -1;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001037 }
1038
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001039 add_runtime_event(atoms, runtime, timestamp);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001040 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001041}
1042
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001043static int latency_wakeup_event(struct perf_sched *sched,
1044 struct perf_evsel *evsel,
1045 struct perf_sample *sample,
1046 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001047{
Peter Zijlstra0680ee72014-05-12 20:19:46 +02001048 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
mingo39aeb522009-09-14 20:04:48 +02001049 struct work_atoms *atoms;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001050 struct work_atom *atom;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001051 struct thread *wakee;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001052 u64 timestamp = sample->time;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001053
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001054 wakee = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001055 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Frederic Weisbecker17562202009-09-12 23:11:32 +02001056 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001057 if (thread_atoms_insert(sched, wakee))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001058 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001059 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001060 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001061 pr_err("wakeup-event: Internal tree error");
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001062 return -1;
1063 }
1064 if (add_sched_out_event(atoms, 'S', timestamp))
1065 return -1;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001066 }
1067
mingo39aeb522009-09-14 20:04:48 +02001068 BUG_ON(list_empty(&atoms->work_list));
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001069
mingo39aeb522009-09-14 20:04:48 +02001070 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001071
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001072 /*
Dongsheng Yang67d62592014-05-13 10:38:21 +09001073 * As we do not guarantee the wakeup event happens when
1074 * task is out of run queue, also may happen when task is
1075 * on run queue and wakeup only change ->state to TASK_RUNNING,
1076 * then we should not set the ->wake_up_time when wake up a
1077 * task which is on run queue.
1078 *
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001079 * You WILL be missing events if you've recorded only
1080 * one CPU, or are only looking at only one, so don't
Dongsheng Yang67d62592014-05-13 10:38:21 +09001081 * skip in this case.
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001082 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001083 if (sched->profile_cpu == -1 && atom->state != THREAD_SLEEPING)
Dongsheng Yang67d62592014-05-13 10:38:21 +09001084 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001085
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001086 sched->nr_timestamps++;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001087 if (atom->sched_out_time > timestamp) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001088 sched->nr_unordered_timestamps++;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001089 return 0;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001090 }
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001091
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001092 atom->state = THREAD_WAIT_CPU;
1093 atom->wake_up_time = timestamp;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001094 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001095}
1096
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001097static int latency_migrate_task_event(struct perf_sched *sched,
1098 struct perf_evsel *evsel,
1099 struct perf_sample *sample,
1100 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001101{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001102 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001103 u64 timestamp = sample->time;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001104 struct work_atoms *atoms;
1105 struct work_atom *atom;
1106 struct thread *migrant;
1107
1108 /*
1109 * Only need to worry about migration when profiling one CPU.
1110 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001111 if (sched->profile_cpu == -1)
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001112 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001113
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001114 migrant = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001115 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001116 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001117 if (thread_atoms_insert(sched, migrant))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001118 return -1;
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001119 register_pid(sched, migrant->tid, thread__comm_str(migrant));
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001120 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001121 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001122 pr_err("migration-event: Internal tree error");
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001123 return -1;
1124 }
1125 if (add_sched_out_event(atoms, 'R', timestamp))
1126 return -1;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001127 }
1128
1129 BUG_ON(list_empty(&atoms->work_list));
1130
1131 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1132 atom->sched_in_time = atom->sched_out_time = atom->wake_up_time = timestamp;
1133
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001134 sched->nr_timestamps++;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001135
1136 if (atom->sched_out_time > timestamp)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001137 sched->nr_unordered_timestamps++;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001138
1139 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001140}
1141
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001142static void output_lat_thread(struct perf_sched *sched, struct work_atoms *work_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001143{
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001144 int i;
1145 int ret;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001146 u64 avg;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001147
mingo39aeb522009-09-14 20:04:48 +02001148 if (!work_list->nb_atoms)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001149 return;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001150 /*
1151 * Ignore idle threads:
1152 */
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001153 if (!strcmp(thread__comm_str(work_list->thread), "swapper"))
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001154 return;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001155
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001156 sched->all_runtime += work_list->total_runtime;
1157 sched->all_count += work_list->nb_atoms;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001158
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001159 ret = printf(" %s:%d ", thread__comm_str(work_list->thread), work_list->thread->tid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001160
mingo08f69e62009-09-14 18:30:44 +02001161 for (i = 0; i < 24 - ret; i++)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001162 printf(" ");
1163
mingo39aeb522009-09-14 20:04:48 +02001164 avg = work_list->total_lat / work_list->nb_atoms;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001165
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04001166 printf("|%11.3f ms |%9" PRIu64 " | avg:%9.3f ms | max:%9.3f ms | max at: %13.6f s\n",
mingo39aeb522009-09-14 20:04:48 +02001167 (double)work_list->total_runtime / 1e6,
1168 work_list->nb_atoms, (double)avg / 1e6,
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001169 (double)work_list->max_lat / 1e6,
1170 (double)work_list->max_lat_at / 1e9);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001171}
1172
mingo39aeb522009-09-14 20:04:48 +02001173static int pid_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001174{
Adrian Hunter38051232013-07-04 16:20:31 +03001175 if (l->thread->tid < r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001176 return -1;
Adrian Hunter38051232013-07-04 16:20:31 +03001177 if (l->thread->tid > r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001178 return 1;
1179
1180 return 0;
1181}
1182
mingo39aeb522009-09-14 20:04:48 +02001183static int avg_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001184{
1185 u64 avgl, avgr;
1186
1187 if (!l->nb_atoms)
1188 return -1;
1189
1190 if (!r->nb_atoms)
1191 return 1;
1192
1193 avgl = l->total_lat / l->nb_atoms;
1194 avgr = r->total_lat / r->nb_atoms;
1195
1196 if (avgl < avgr)
1197 return -1;
1198 if (avgl > avgr)
1199 return 1;
1200
1201 return 0;
1202}
1203
mingo39aeb522009-09-14 20:04:48 +02001204static int max_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001205{
1206 if (l->max_lat < r->max_lat)
1207 return -1;
1208 if (l->max_lat > r->max_lat)
1209 return 1;
1210
1211 return 0;
1212}
1213
mingo39aeb522009-09-14 20:04:48 +02001214static int switch_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001215{
1216 if (l->nb_atoms < r->nb_atoms)
1217 return -1;
1218 if (l->nb_atoms > r->nb_atoms)
1219 return 1;
1220
1221 return 0;
1222}
1223
mingo39aeb522009-09-14 20:04:48 +02001224static int runtime_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001225{
1226 if (l->total_runtime < r->total_runtime)
1227 return -1;
1228 if (l->total_runtime > r->total_runtime)
1229 return 1;
1230
1231 return 0;
1232}
1233
Randy Dunlapcbef79a2009-10-05 13:17:29 -07001234static int sort_dimension__add(const char *tok, struct list_head *list)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001235{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001236 size_t i;
1237 static struct sort_dimension avg_sort_dimension = {
1238 .name = "avg",
1239 .cmp = avg_cmp,
1240 };
1241 static struct sort_dimension max_sort_dimension = {
1242 .name = "max",
1243 .cmp = max_cmp,
1244 };
1245 static struct sort_dimension pid_sort_dimension = {
1246 .name = "pid",
1247 .cmp = pid_cmp,
1248 };
1249 static struct sort_dimension runtime_sort_dimension = {
1250 .name = "runtime",
1251 .cmp = runtime_cmp,
1252 };
1253 static struct sort_dimension switch_sort_dimension = {
1254 .name = "switch",
1255 .cmp = switch_cmp,
1256 };
1257 struct sort_dimension *available_sorts[] = {
1258 &pid_sort_dimension,
1259 &avg_sort_dimension,
1260 &max_sort_dimension,
1261 &switch_sort_dimension,
1262 &runtime_sort_dimension,
1263 };
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001264
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001265 for (i = 0; i < ARRAY_SIZE(available_sorts); i++) {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001266 if (!strcmp(available_sorts[i]->name, tok)) {
1267 list_add_tail(&available_sorts[i]->list, list);
1268
1269 return 0;
1270 }
1271 }
1272
1273 return -1;
1274}
1275
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001276static void perf_sched__sort_lat(struct perf_sched *sched)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001277{
1278 struct rb_node *node;
1279
1280 for (;;) {
mingo39aeb522009-09-14 20:04:48 +02001281 struct work_atoms *data;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001282 node = rb_first(&sched->atom_root);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001283 if (!node)
1284 break;
1285
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001286 rb_erase(node, &sched->atom_root);
mingo39aeb522009-09-14 20:04:48 +02001287 data = rb_entry(node, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001288 __thread_latency_insert(&sched->sorted_atom_root, data, &sched->sort_list);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001289 }
1290}
1291
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001292static int process_sched_wakeup_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001293 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001294 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001295 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001296{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001297 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001298
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001299 if (sched->tp_handler->wakeup_event)
1300 return sched->tp_handler->wakeup_event(sched, evsel, sample, machine);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001301
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001302 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001303}
1304
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001305static int map_switch_event(struct perf_sched *sched, struct perf_evsel *evsel,
1306 struct perf_sample *sample, struct machine *machine)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001307{
Dongsheng Yang9d372ca2014-05-16 14:37:05 +09001308 const u32 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
1309 struct thread *sched_in;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001310 int new_shortname;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001311 u64 timestamp0, timestamp = sample->time;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001312 s64 delta;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001313 int cpu, this_cpu = sample->cpu;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001314
1315 BUG_ON(this_cpu >= MAX_CPUS || this_cpu < 0);
1316
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001317 if (this_cpu > sched->max_cpu)
1318 sched->max_cpu = this_cpu;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001319
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001320 timestamp0 = sched->cpu_last_switched[this_cpu];
1321 sched->cpu_last_switched[this_cpu] = timestamp;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001322 if (timestamp0)
1323 delta = timestamp - timestamp0;
1324 else
1325 delta = 0;
1326
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001327 if (delta < 0) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001328 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001329 return -1;
1330 }
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001331
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001332 sched_in = machine__findnew_thread(machine, -1, next_pid);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001333
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001334 sched->curr_thread[this_cpu] = sched_in;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001335
1336 printf(" ");
1337
1338 new_shortname = 0;
1339 if (!sched_in->shortname[0]) {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001340 if (!strcmp(thread__comm_str(sched_in), "swapper")) {
1341 /*
1342 * Don't allocate a letter-number for swapper:0
1343 * as a shortname. Instead, we use '.' for it.
1344 */
1345 sched_in->shortname[0] = '.';
1346 sched_in->shortname[1] = ' ';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001347 } else {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001348 sched_in->shortname[0] = sched->next_shortname1;
1349 sched_in->shortname[1] = sched->next_shortname2;
1350
1351 if (sched->next_shortname1 < 'Z') {
1352 sched->next_shortname1++;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001353 } else {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001354 sched->next_shortname1 = 'A';
1355 if (sched->next_shortname2 < '9')
1356 sched->next_shortname2++;
1357 else
1358 sched->next_shortname2 = '0';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001359 }
1360 }
1361 new_shortname = 1;
1362 }
1363
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001364 for (cpu = 0; cpu <= sched->max_cpu; cpu++) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001365 if (cpu != this_cpu)
1366 printf(" ");
1367 else
1368 printf("*");
1369
Dongsheng6bcab4e2014-05-06 14:39:01 +09001370 if (sched->curr_thread[cpu])
1371 printf("%2s ", sched->curr_thread[cpu]->shortname);
1372 else
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001373 printf(" ");
1374 }
1375
1376 printf(" %12.6f secs ", (double)timestamp/1e9);
1377 if (new_shortname) {
1378 printf("%s => %s:%d\n",
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001379 sched_in->shortname, thread__comm_str(sched_in), sched_in->tid);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001380 } else {
1381 printf("\n");
1382 }
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001383
1384 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001385}
1386
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001387static int process_sched_switch_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001388 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001389 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001390 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001391{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001392 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001393 int this_cpu = sample->cpu, err = 0;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001394 u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
1395 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001396
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001397 if (sched->curr_pid[this_cpu] != (u32)-1) {
Ingo Molnarc8a37752009-09-16 14:07:00 +02001398 /*
1399 * Are we trying to switch away a PID that is
1400 * not current?
1401 */
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001402 if (sched->curr_pid[this_cpu] != prev_pid)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001403 sched->nr_context_switch_bugs++;
Ingo Molnarc8a37752009-09-16 14:07:00 +02001404 }
Ingo Molnarc8a37752009-09-16 14:07:00 +02001405
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001406 if (sched->tp_handler->switch_event)
1407 err = sched->tp_handler->switch_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001408
1409 sched->curr_pid[this_cpu] = next_pid;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001410 return err;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001411}
1412
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001413static int process_sched_runtime_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001414 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001415 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001416 struct machine *machine)
mingo39aeb522009-09-14 20:04:48 +02001417{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001418 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
mingo39aeb522009-09-14 20:04:48 +02001419
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001420 if (sched->tp_handler->runtime_event)
1421 return sched->tp_handler->runtime_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001422
1423 return 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001424}
1425
David Aherncb627502013-08-07 22:50:47 -04001426static int perf_sched__process_fork_event(struct perf_tool *tool,
1427 union perf_event *event,
1428 struct perf_sample *sample,
1429 struct machine *machine)
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001430{
1431 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
1432
David Aherncb627502013-08-07 22:50:47 -04001433 /* run the fork event through the perf machineruy */
1434 perf_event__process_fork(tool, event, sample, machine);
1435
1436 /* and then run additional processing needed for this command */
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001437 if (sched->tp_handler->fork_event)
David Aherncb627502013-08-07 22:50:47 -04001438 return sched->tp_handler->fork_event(sched, event, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001439
1440 return 0;
1441}
1442
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001443static int process_sched_migrate_task_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001444 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001445 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001446 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001447{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001448 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001449
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001450 if (sched->tp_handler->migrate_task_event)
1451 return sched->tp_handler->migrate_task_event(sched, evsel, sample, machine);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001452
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001453 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001454}
1455
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001456typedef int (*tracepoint_handler)(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001457 struct perf_evsel *evsel,
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001458 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001459 struct machine *machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001460
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001461static int perf_sched__process_tracepoint_sample(struct perf_tool *tool __maybe_unused,
1462 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001463 struct perf_sample *sample,
1464 struct perf_evsel *evsel,
1465 struct machine *machine)
Ingo Molnarec156762009-09-11 12:12:54 +02001466{
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001467 int err = 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001468
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001469 if (evsel->handler != NULL) {
1470 tracepoint_handler f = evsel->handler;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001471 err = f(tool, evsel, sample, machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001472 }
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001473
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001474 return err;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001475}
1476
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001477static int perf_sched__read_events(struct perf_sched *sched)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001478{
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001479 const struct perf_evsel_str_handler handlers[] = {
1480 { "sched:sched_switch", process_sched_switch_event, },
1481 { "sched:sched_stat_runtime", process_sched_runtime_event, },
1482 { "sched:sched_wakeup", process_sched_wakeup_event, },
1483 { "sched:sched_wakeup_new", process_sched_wakeup_event, },
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001484 { "sched:sched_migrate_task", process_sched_migrate_task_event, },
1485 };
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001486 struct perf_session *session;
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001487 struct perf_data_file file = {
1488 .path = input_name,
1489 .mode = PERF_DATA_MODE_READ,
1490 };
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001491 int rc = -1;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001492
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001493 session = perf_session__new(&file, false, &sched->tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001494 if (session == NULL) {
1495 pr_debug("No Memory for session\n");
1496 return -1;
1497 }
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02001498
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001499 symbol__init(&session->header.env);
Namhyung Kim04934102014-08-12 15:40:41 +09001500
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001501 if (perf_session__set_tracepoints_handlers(session, handlers))
1502 goto out_delete;
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001503
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001504 if (perf_session__has_traces(session, "record -R")) {
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001505 int err = perf_session__process_events(session);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001506 if (err) {
1507 pr_err("Failed to process events, error %d", err);
1508 goto out_delete;
1509 }
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001510
Arnaldo Carvalho de Melo75be9892015-02-14 14:50:11 -03001511 sched->nr_events = session->evlist->stats.nr_events[0];
1512 sched->nr_lost_events = session->evlist->stats.total_lost;
1513 sched->nr_lost_chunks = session->evlist->stats.nr_events[PERF_RECORD_LOST];
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001514 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -02001515
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001516 rc = 0;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001517out_delete:
1518 perf_session__delete(session);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001519 return rc;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001520}
1521
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001522static void print_bad_events(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001523{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001524 if (sched->nr_unordered_timestamps && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001525 printf(" INFO: %.3f%% unordered timestamps (%ld out of %ld)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001526 (double)sched->nr_unordered_timestamps/(double)sched->nr_timestamps*100.0,
1527 sched->nr_unordered_timestamps, sched->nr_timestamps);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001528 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001529 if (sched->nr_lost_events && sched->nr_events) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001530 printf(" INFO: %.3f%% lost events (%ld out of %ld, in %ld chunks)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001531 (double)sched->nr_lost_events/(double)sched->nr_events * 100.0,
1532 sched->nr_lost_events, sched->nr_events, sched->nr_lost_chunks);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001533 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001534 if (sched->nr_context_switch_bugs && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001535 printf(" INFO: %.3f%% context switch bugs (%ld out of %ld)",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001536 (double)sched->nr_context_switch_bugs/(double)sched->nr_timestamps*100.0,
1537 sched->nr_context_switch_bugs, sched->nr_timestamps);
1538 if (sched->nr_lost_events)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001539 printf(" (due to lost events?)");
1540 printf("\n");
1541 }
1542}
1543
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001544static int perf_sched__lat(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001545{
1546 struct rb_node *next;
1547
1548 setup_pager();
David Ahernad9def72013-08-07 22:50:44 -04001549
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001550 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001551 return -1;
David Ahernad9def72013-08-07 22:50:44 -04001552
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001553 perf_sched__sort_lat(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001554
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04001555 printf("\n -----------------------------------------------------------------------------------------------------------------\n");
1556 printf(" Task | Runtime ms | Switches | Average delay ms | Maximum delay ms | Maximum delay at |\n");
1557 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001558
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001559 next = rb_first(&sched->sorted_atom_root);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001560
1561 while (next) {
1562 struct work_atoms *work_list;
1563
1564 work_list = rb_entry(next, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001565 output_lat_thread(sched, work_list);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001566 next = rb_next(next);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001567 thread__zput(work_list->thread);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001568 }
1569
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04001570 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001571 printf(" TOTAL: |%11.3f ms |%9" PRIu64 " |\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001572 (double)sched->all_runtime / 1e6, sched->all_count);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001573
1574 printf(" ---------------------------------------------------\n");
1575
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001576 print_bad_events(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001577 printf("\n");
1578
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001579 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001580}
1581
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001582static int perf_sched__map(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001583{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001584 sched->max_cpu = sysconf(_SC_NPROCESSORS_CONF);
Ingo Molnar40749d02009-09-17 18:24:55 +02001585
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001586 setup_pager();
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001587 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001588 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001589 print_bad_events(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001590 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001591}
1592
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001593static int perf_sched__replay(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001594{
1595 unsigned long i;
1596
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001597 calibrate_run_measurement_overhead(sched);
1598 calibrate_sleep_measurement_overhead(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001599
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001600 test_calibrations(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001601
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001602 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001603 return -1;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001604
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001605 printf("nr_run_events: %ld\n", sched->nr_run_events);
1606 printf("nr_sleep_events: %ld\n", sched->nr_sleep_events);
1607 printf("nr_wakeup_events: %ld\n", sched->nr_wakeup_events);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001608
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001609 if (sched->targetless_wakeups)
1610 printf("target-less wakeups: %ld\n", sched->targetless_wakeups);
1611 if (sched->multitarget_wakeups)
1612 printf("multi-target wakeups: %ld\n", sched->multitarget_wakeups);
1613 if (sched->nr_run_events_optimized)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001614 printf("run atoms optimized: %ld\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001615 sched->nr_run_events_optimized);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001616
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001617 print_task_traces(sched);
1618 add_cross_task_wakeups(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001619
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001620 create_tasks(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001621 printf("------------------------------------------------------------\n");
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001622 for (i = 0; i < sched->replay_repeat; i++)
1623 run_one_test(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001624
1625 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001626}
1627
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001628static void setup_sorting(struct perf_sched *sched, const struct option *options,
1629 const char * const usage_msg[])
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001630{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001631 char *tmp, *tok, *str = strdup(sched->sort_order);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001632
1633 for (tok = strtok_r(str, ", ", &tmp);
1634 tok; tok = strtok_r(NULL, ", ", &tmp)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001635 if (sort_dimension__add(tok, &sched->sort_list) < 0) {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001636 error("Unknown --sort key: `%s'", tok);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001637 usage_with_options(usage_msg, options);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001638 }
1639 }
1640
1641 free(str);
1642
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001643 sort_dimension__add("pid", &sched->cmp_pid);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001644}
1645
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001646static int __cmd_record(int argc, const char **argv)
1647{
1648 unsigned int rec_argc, i, j;
1649 const char **rec_argv;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001650 const char * const record_args[] = {
1651 "record",
1652 "-a",
1653 "-R",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001654 "-m", "1024",
1655 "-c", "1",
1656 "-e", "sched:sched_switch",
1657 "-e", "sched:sched_stat_wait",
1658 "-e", "sched:sched_stat_sleep",
1659 "-e", "sched:sched_stat_iowait",
1660 "-e", "sched:sched_stat_runtime",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001661 "-e", "sched:sched_process_fork",
1662 "-e", "sched:sched_wakeup",
Dongsheng7fff9592014-05-05 16:05:53 +09001663 "-e", "sched:sched_wakeup_new",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001664 "-e", "sched:sched_migrate_task",
1665 };
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001666
1667 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
1668 rec_argv = calloc(rec_argc + 1, sizeof(char *));
1669
Arnaldo Carvalho de Meloe462dc52011-01-10 10:48:47 -02001670 if (rec_argv == NULL)
Chris Samuelce47dc52010-11-13 13:35:06 +11001671 return -ENOMEM;
1672
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001673 for (i = 0; i < ARRAY_SIZE(record_args); i++)
1674 rec_argv[i] = strdup(record_args[i]);
1675
1676 for (j = 1; j < (unsigned int)argc; j++, i++)
1677 rec_argv[i] = argv[j];
1678
1679 BUG_ON(i != rec_argc);
1680
1681 return cmd_record(i, rec_argv, NULL);
1682}
1683
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001684int cmd_sched(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001685{
Adrian Hunter8a39df82013-10-22 10:34:15 +03001686 const char default_sort_order[] = "avg, max, switch, runtime";
1687 struct perf_sched sched = {
1688 .tool = {
1689 .sample = perf_sched__process_tracepoint_sample,
1690 .comm = perf_event__process_comm,
1691 .lost = perf_event__process_lost,
1692 .fork = perf_sched__process_fork_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02001693 .ordered_events = true,
Adrian Hunter8a39df82013-10-22 10:34:15 +03001694 },
1695 .cmp_pid = LIST_HEAD_INIT(sched.cmp_pid),
1696 .sort_list = LIST_HEAD_INIT(sched.sort_list),
1697 .start_work_mutex = PTHREAD_MUTEX_INITIALIZER,
1698 .work_done_wait_mutex = PTHREAD_MUTEX_INITIALIZER,
Adrian Hunter8a39df82013-10-22 10:34:15 +03001699 .sort_order = default_sort_order,
1700 .replay_repeat = 10,
1701 .profile_cpu = -1,
1702 .next_shortname1 = 'A',
1703 .next_shortname2 = '0',
1704 };
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001705 const struct option latency_options[] = {
1706 OPT_STRING('s', "sort", &sched.sort_order, "key[,key2...]",
1707 "sort by key(s): runtime, switch, avg, max"),
1708 OPT_INCR('v', "verbose", &verbose,
1709 "be more verbose (show symbol address, etc)"),
1710 OPT_INTEGER('C', "CPU", &sched.profile_cpu,
1711 "CPU to profile on"),
1712 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1713 "dump raw trace in ASCII"),
1714 OPT_END()
1715 };
1716 const struct option replay_options[] = {
1717 OPT_UINTEGER('r', "repeat", &sched.replay_repeat,
1718 "repeat the workload replay N times (-1: infinite)"),
1719 OPT_INCR('v', "verbose", &verbose,
1720 "be more verbose (show symbol address, etc)"),
1721 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1722 "dump raw trace in ASCII"),
Yunlong Song939cda52015-03-31 21:46:34 +08001723 OPT_BOOLEAN('f', "force", &sched.force, "don't complain, do it"),
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001724 OPT_END()
1725 };
1726 const struct option sched_options[] = {
Feng Tang70cb4e92012-10-30 11:56:02 +08001727 OPT_STRING('i', "input", &input_name, "file",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001728 "input file name"),
1729 OPT_INCR('v', "verbose", &verbose,
1730 "be more verbose (show symbol address, etc)"),
1731 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1732 "dump raw trace in ASCII"),
1733 OPT_END()
1734 };
1735 const char * const latency_usage[] = {
1736 "perf sched latency [<options>]",
1737 NULL
1738 };
1739 const char * const replay_usage[] = {
1740 "perf sched replay [<options>]",
1741 NULL
1742 };
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04001743 const char *const sched_subcommands[] = { "record", "latency", "map",
1744 "replay", "script", NULL };
1745 const char *sched_usage[] = {
1746 NULL,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001747 NULL
1748 };
1749 struct trace_sched_handler lat_ops = {
1750 .wakeup_event = latency_wakeup_event,
1751 .switch_event = latency_switch_event,
1752 .runtime_event = latency_runtime_event,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001753 .migrate_task_event = latency_migrate_task_event,
1754 };
1755 struct trace_sched_handler map_ops = {
1756 .switch_event = map_switch_event,
1757 };
1758 struct trace_sched_handler replay_ops = {
1759 .wakeup_event = replay_wakeup_event,
1760 .switch_event = replay_switch_event,
1761 .fork_event = replay_fork_event,
1762 };
Adrian Hunter156a2b02013-10-22 10:34:16 +03001763 unsigned int i;
1764
1765 for (i = 0; i < ARRAY_SIZE(sched.curr_pid); i++)
1766 sched.curr_pid[i] = -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001767
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04001768 argc = parse_options_subcommand(argc, argv, sched_options, sched_subcommands,
1769 sched_usage, PARSE_OPT_STOP_AT_NON_OPTION);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001770 if (!argc)
1771 usage_with_options(sched_usage, sched_options);
1772
Xiao Guangrongc0777c5a2009-12-07 12:04:49 +08001773 /*
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001774 * Aliased to 'perf script' for now:
Xiao Guangrongc0777c5a2009-12-07 12:04:49 +08001775 */
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001776 if (!strcmp(argv[0], "script"))
1777 return cmd_script(argc, argv, prefix);
Xiao Guangrongc0777c5a2009-12-07 12:04:49 +08001778
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001779 if (!strncmp(argv[0], "rec", 3)) {
1780 return __cmd_record(argc, argv);
1781 } else if (!strncmp(argv[0], "lat", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001782 sched.tp_handler = &lat_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02001783 if (argc > 1) {
1784 argc = parse_options(argc, argv, latency_options, latency_usage, 0);
1785 if (argc)
1786 usage_with_options(latency_usage, latency_options);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001787 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001788 setup_sorting(&sched, latency_options, latency_usage);
1789 return perf_sched__lat(&sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001790 } else if (!strcmp(argv[0], "map")) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001791 sched.tp_handler = &map_ops;
1792 setup_sorting(&sched, latency_options, latency_usage);
1793 return perf_sched__map(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001794 } else if (!strncmp(argv[0], "rep", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001795 sched.tp_handler = &replay_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02001796 if (argc) {
1797 argc = parse_options(argc, argv, replay_options, replay_usage, 0);
1798 if (argc)
1799 usage_with_options(replay_usage, replay_options);
1800 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001801 return perf_sched__replay(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001802 } else {
1803 usage_with_options(sched_usage, sched_options);
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001804 }
1805
Ingo Molnarec156762009-09-11 12:12:54 +02001806 return 0;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001807}