blob: 79273ecf92eba4ab262ecd01c5f5f2d8e0dfff87 [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;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800610 sched->runavg_cpu_usage = (sched->runavg_cpu_usage * (sched->replay_repeat - 1) + sched->cpu_usage) / sched->replay_repeat;
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;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800615 sched->runavg_parent_cpu_usage = (sched->runavg_parent_cpu_usage * (sched->replay_repeat - 1) +
616 sched->parent_cpu_usage)/sched->replay_repeat;
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;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800648 sched->run_avg = (sched->run_avg * (sched->replay_repeat - 1) + delta) / sched->replay_repeat;
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);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300773 goto out_put;
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 Melob91fc392015-04-06 20:43:22 -0300784out_put:
785 thread__put(child);
786 thread__put(parent);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300787 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200788}
789
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200790struct sort_dimension {
791 const char *name;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200792 sort_fn_t cmp;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200793 struct list_head list;
794};
795
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200796static int
mingo39aeb522009-09-14 20:04:48 +0200797thread_lat_cmp(struct list_head *list, struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200798{
799 struct sort_dimension *sort;
800 int ret = 0;
801
Ingo Molnarb5fae122009-09-11 12:12:54 +0200802 BUG_ON(list_empty(list));
803
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200804 list_for_each_entry(sort, list, list) {
805 ret = sort->cmp(l, r);
806 if (ret)
807 return ret;
808 }
809
810 return ret;
811}
812
mingo39aeb522009-09-14 20:04:48 +0200813static struct work_atoms *
Ingo Molnarb5fae122009-09-11 12:12:54 +0200814thread_atoms_search(struct rb_root *root, struct thread *thread,
815 struct list_head *sort_list)
816{
817 struct rb_node *node = root->rb_node;
mingo39aeb522009-09-14 20:04:48 +0200818 struct work_atoms key = { .thread = thread };
Ingo Molnarb5fae122009-09-11 12:12:54 +0200819
820 while (node) {
mingo39aeb522009-09-14 20:04:48 +0200821 struct work_atoms *atoms;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200822 int cmp;
823
mingo39aeb522009-09-14 20:04:48 +0200824 atoms = container_of(node, struct work_atoms, node);
Ingo Molnarb5fae122009-09-11 12:12:54 +0200825
826 cmp = thread_lat_cmp(sort_list, &key, atoms);
827 if (cmp > 0)
828 node = node->rb_left;
829 else if (cmp < 0)
830 node = node->rb_right;
831 else {
832 BUG_ON(thread != atoms->thread);
833 return atoms;
834 }
835 }
836 return NULL;
837}
838
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200839static void
mingo39aeb522009-09-14 20:04:48 +0200840__thread_latency_insert(struct rb_root *root, struct work_atoms *data,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200841 struct list_head *sort_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200842{
843 struct rb_node **new = &(root->rb_node), *parent = NULL;
844
845 while (*new) {
mingo39aeb522009-09-14 20:04:48 +0200846 struct work_atoms *this;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200847 int cmp;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200848
mingo39aeb522009-09-14 20:04:48 +0200849 this = container_of(*new, struct work_atoms, node);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200850 parent = *new;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200851
852 cmp = thread_lat_cmp(sort_list, data, this);
853
854 if (cmp > 0)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200855 new = &((*new)->rb_left);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200856 else
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200857 new = &((*new)->rb_right);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200858 }
859
860 rb_link_node(&data->node, parent, new);
861 rb_insert_color(&data->node, root);
862}
863
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300864static int thread_atoms_insert(struct perf_sched *sched, struct thread *thread)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200865{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200866 struct work_atoms *atoms = zalloc(sizeof(*atoms));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300867 if (!atoms) {
868 pr_err("No memory at %s\n", __func__);
869 return -1;
870 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200871
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300872 atoms->thread = thread__get(thread);
mingo39aeb522009-09-14 20:04:48 +0200873 INIT_LIST_HEAD(&atoms->work_list);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300874 __thread_latency_insert(&sched->atom_root, atoms, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300875 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200876}
877
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300878static char sched_out_state(u64 prev_state)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200879{
880 const char *str = TASK_STATE_TO_CHAR_STR;
881
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300882 return str[prev_state];
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200883}
884
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300885static int
mingo39aeb522009-09-14 20:04:48 +0200886add_sched_out_event(struct work_atoms *atoms,
887 char run_state,
888 u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200889{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200890 struct work_atom *atom = zalloc(sizeof(*atom));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300891 if (!atom) {
892 pr_err("Non memory at %s", __func__);
893 return -1;
894 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200895
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200896 atom->sched_out_time = timestamp;
897
mingo39aeb522009-09-14 20:04:48 +0200898 if (run_state == 'R') {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200899 atom->state = THREAD_WAIT_CPU;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200900 atom->wake_up_time = atom->sched_out_time;
Frederic Weisbeckerc6ced612009-09-13 00:46:19 +0200901 }
902
mingo39aeb522009-09-14 20:04:48 +0200903 list_add_tail(&atom->list, &atoms->work_list);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300904 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200905}
906
907static void
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300908add_runtime_event(struct work_atoms *atoms, u64 delta,
909 u64 timestamp __maybe_unused)
mingo39aeb522009-09-14 20:04:48 +0200910{
911 struct work_atom *atom;
912
913 BUG_ON(list_empty(&atoms->work_list));
914
915 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
916
917 atom->runtime += delta;
918 atoms->total_runtime += delta;
919}
920
921static void
922add_sched_in_event(struct work_atoms *atoms, u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200923{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200924 struct work_atom *atom;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200925 u64 delta;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200926
mingo39aeb522009-09-14 20:04:48 +0200927 if (list_empty(&atoms->work_list))
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200928 return;
929
mingo39aeb522009-09-14 20:04:48 +0200930 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200931
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200932 if (atom->state != THREAD_WAIT_CPU)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200933 return;
934
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200935 if (timestamp < atom->wake_up_time) {
936 atom->state = THREAD_IGNORE;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200937 return;
938 }
939
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200940 atom->state = THREAD_SCHED_IN;
941 atom->sched_in_time = timestamp;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200942
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200943 delta = atom->sched_in_time - atom->wake_up_time;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200944 atoms->total_lat += delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +0100945 if (delta > atoms->max_lat) {
Frederic Weisbecker66685672009-09-13 01:56:25 +0200946 atoms->max_lat = delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +0100947 atoms->max_lat_at = timestamp;
948 }
Frederic Weisbecker66685672009-09-13 01:56:25 +0200949 atoms->nb_atoms++;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200950}
951
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300952static int latency_switch_event(struct perf_sched *sched,
953 struct perf_evsel *evsel,
954 struct perf_sample *sample,
955 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200956{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300957 const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
958 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
959 const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state");
mingo39aeb522009-09-14 20:04:48 +0200960 struct work_atoms *out_events, *in_events;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200961 struct thread *sched_out, *sched_in;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -0300962 u64 timestamp0, timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300963 int cpu = sample->cpu, err = -1;
Ingo Molnarea92ed52009-09-12 10:08:34 +0200964 s64 delta;
965
mingo39aeb522009-09-14 20:04:48 +0200966 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
Ingo Molnarea92ed52009-09-12 10:08:34 +0200967
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300968 timestamp0 = sched->cpu_last_switched[cpu];
969 sched->cpu_last_switched[cpu] = timestamp;
Ingo Molnarea92ed52009-09-12 10:08:34 +0200970 if (timestamp0)
971 delta = timestamp - timestamp0;
972 else
973 delta = 0;
974
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300975 if (delta < 0) {
976 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
977 return -1;
978 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200979
Adrian Hunter1fcb8762014-07-14 13:02:25 +0300980 sched_out = machine__findnew_thread(machine, -1, prev_pid);
981 sched_in = machine__findnew_thread(machine, -1, next_pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300982 if (sched_out == NULL || sched_in == NULL)
983 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200984
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300985 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +0200986 if (!out_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300987 if (thread_atoms_insert(sched, sched_out))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300988 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300989 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300990 if (!out_events) {
991 pr_err("out-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300992 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300993 }
mingo39aeb522009-09-14 20:04:48 +0200994 }
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300995 if (add_sched_out_event(out_events, sched_out_state(prev_state), timestamp))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300996 return -1;
mingo39aeb522009-09-14 20:04:48 +0200997
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300998 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +0200999 if (!in_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001000 if (thread_atoms_insert(sched, sched_in))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001001 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001002 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001003 if (!in_events) {
1004 pr_err("in-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001005 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001006 }
mingo39aeb522009-09-14 20:04:48 +02001007 /*
1008 * Take came in we have not heard about yet,
1009 * add in an initial atom in runnable state:
1010 */
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001011 if (add_sched_out_event(in_events, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001012 goto out_put;
mingo39aeb522009-09-14 20:04:48 +02001013 }
1014 add_sched_in_event(in_events, timestamp);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001015 err = 0;
1016out_put:
1017 thread__put(sched_out);
1018 thread__put(sched_in);
1019 return err;
mingo39aeb522009-09-14 20:04:48 +02001020}
1021
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001022static int latency_runtime_event(struct perf_sched *sched,
1023 struct perf_evsel *evsel,
1024 struct perf_sample *sample,
1025 struct machine *machine)
mingo39aeb522009-09-14 20:04:48 +02001026{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001027 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
1028 const u64 runtime = perf_evsel__intval(evsel, sample, "runtime");
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001029 struct thread *thread = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001030 struct work_atoms *atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001031 u64 timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001032 int cpu = sample->cpu, err = -1;
1033
1034 if (thread == NULL)
1035 return -1;
mingo39aeb522009-09-14 20:04:48 +02001036
1037 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
mingo39aeb522009-09-14 20:04:48 +02001038 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001039 if (thread_atoms_insert(sched, thread))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001040 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001041 atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001042 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001043 pr_err("in-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001044 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001045 }
1046 if (add_sched_out_event(atoms, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001047 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001048 }
1049
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001050 add_runtime_event(atoms, runtime, timestamp);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001051 err = 0;
1052out_put:
1053 thread__put(thread);
1054 return err;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001055}
1056
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001057static int latency_wakeup_event(struct perf_sched *sched,
1058 struct perf_evsel *evsel,
1059 struct perf_sample *sample,
1060 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001061{
Peter Zijlstra0680ee72014-05-12 20:19:46 +02001062 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
mingo39aeb522009-09-14 20:04:48 +02001063 struct work_atoms *atoms;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001064 struct work_atom *atom;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001065 struct thread *wakee;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001066 u64 timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001067 int err = -1;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001068
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001069 wakee = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001070 if (wakee == NULL)
1071 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001072 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Frederic Weisbecker17562202009-09-12 23:11:32 +02001073 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001074 if (thread_atoms_insert(sched, wakee))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001075 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001076 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001077 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001078 pr_err("wakeup-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001079 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001080 }
1081 if (add_sched_out_event(atoms, 'S', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001082 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001083 }
1084
mingo39aeb522009-09-14 20:04:48 +02001085 BUG_ON(list_empty(&atoms->work_list));
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001086
mingo39aeb522009-09-14 20:04:48 +02001087 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001088
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001089 /*
Dongsheng Yang67d62592014-05-13 10:38:21 +09001090 * As we do not guarantee the wakeup event happens when
1091 * task is out of run queue, also may happen when task is
1092 * on run queue and wakeup only change ->state to TASK_RUNNING,
1093 * then we should not set the ->wake_up_time when wake up a
1094 * task which is on run queue.
1095 *
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001096 * You WILL be missing events if you've recorded only
1097 * one CPU, or are only looking at only one, so don't
Dongsheng Yang67d62592014-05-13 10:38:21 +09001098 * skip in this case.
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001099 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001100 if (sched->profile_cpu == -1 && atom->state != THREAD_SLEEPING)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001101 goto out_ok;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001102
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001103 sched->nr_timestamps++;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001104 if (atom->sched_out_time > timestamp) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001105 sched->nr_unordered_timestamps++;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001106 goto out_ok;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001107 }
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001108
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001109 atom->state = THREAD_WAIT_CPU;
1110 atom->wake_up_time = timestamp;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001111out_ok:
1112 err = 0;
1113out_put:
1114 thread__put(wakee);
1115 return err;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001116}
1117
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001118static int latency_migrate_task_event(struct perf_sched *sched,
1119 struct perf_evsel *evsel,
1120 struct perf_sample *sample,
1121 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001122{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001123 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001124 u64 timestamp = sample->time;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001125 struct work_atoms *atoms;
1126 struct work_atom *atom;
1127 struct thread *migrant;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001128 int err = -1;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001129
1130 /*
1131 * Only need to worry about migration when profiling one CPU.
1132 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001133 if (sched->profile_cpu == -1)
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001134 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001135
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001136 migrant = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001137 if (migrant == NULL)
1138 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001139 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001140 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001141 if (thread_atoms_insert(sched, migrant))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001142 goto out_put;
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001143 register_pid(sched, migrant->tid, thread__comm_str(migrant));
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001144 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001145 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001146 pr_err("migration-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001147 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001148 }
1149 if (add_sched_out_event(atoms, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001150 goto out_put;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001151 }
1152
1153 BUG_ON(list_empty(&atoms->work_list));
1154
1155 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1156 atom->sched_in_time = atom->sched_out_time = atom->wake_up_time = timestamp;
1157
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001158 sched->nr_timestamps++;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001159
1160 if (atom->sched_out_time > timestamp)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001161 sched->nr_unordered_timestamps++;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001162 err = 0;
1163out_put:
1164 thread__put(migrant);
1165 return err;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001166}
1167
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001168static void output_lat_thread(struct perf_sched *sched, struct work_atoms *work_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001169{
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001170 int i;
1171 int ret;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001172 u64 avg;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001173
mingo39aeb522009-09-14 20:04:48 +02001174 if (!work_list->nb_atoms)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001175 return;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001176 /*
1177 * Ignore idle threads:
1178 */
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001179 if (!strcmp(thread__comm_str(work_list->thread), "swapper"))
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001180 return;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001181
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001182 sched->all_runtime += work_list->total_runtime;
1183 sched->all_count += work_list->nb_atoms;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001184
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001185 ret = printf(" %s:%d ", thread__comm_str(work_list->thread), work_list->thread->tid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001186
mingo08f69e62009-09-14 18:30:44 +02001187 for (i = 0; i < 24 - ret; i++)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001188 printf(" ");
1189
mingo39aeb522009-09-14 20:04:48 +02001190 avg = work_list->total_lat / work_list->nb_atoms;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001191
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04001192 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 +02001193 (double)work_list->total_runtime / 1e6,
1194 work_list->nb_atoms, (double)avg / 1e6,
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001195 (double)work_list->max_lat / 1e6,
1196 (double)work_list->max_lat_at / 1e9);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001197}
1198
mingo39aeb522009-09-14 20:04:48 +02001199static int pid_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001200{
Adrian Hunter38051232013-07-04 16:20:31 +03001201 if (l->thread->tid < r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001202 return -1;
Adrian Hunter38051232013-07-04 16:20:31 +03001203 if (l->thread->tid > r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001204 return 1;
1205
1206 return 0;
1207}
1208
mingo39aeb522009-09-14 20:04:48 +02001209static int avg_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001210{
1211 u64 avgl, avgr;
1212
1213 if (!l->nb_atoms)
1214 return -1;
1215
1216 if (!r->nb_atoms)
1217 return 1;
1218
1219 avgl = l->total_lat / l->nb_atoms;
1220 avgr = r->total_lat / r->nb_atoms;
1221
1222 if (avgl < avgr)
1223 return -1;
1224 if (avgl > avgr)
1225 return 1;
1226
1227 return 0;
1228}
1229
mingo39aeb522009-09-14 20:04:48 +02001230static int max_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001231{
1232 if (l->max_lat < r->max_lat)
1233 return -1;
1234 if (l->max_lat > r->max_lat)
1235 return 1;
1236
1237 return 0;
1238}
1239
mingo39aeb522009-09-14 20:04:48 +02001240static int switch_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001241{
1242 if (l->nb_atoms < r->nb_atoms)
1243 return -1;
1244 if (l->nb_atoms > r->nb_atoms)
1245 return 1;
1246
1247 return 0;
1248}
1249
mingo39aeb522009-09-14 20:04:48 +02001250static int runtime_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001251{
1252 if (l->total_runtime < r->total_runtime)
1253 return -1;
1254 if (l->total_runtime > r->total_runtime)
1255 return 1;
1256
1257 return 0;
1258}
1259
Randy Dunlapcbef79a2009-10-05 13:17:29 -07001260static int sort_dimension__add(const char *tok, struct list_head *list)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001261{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001262 size_t i;
1263 static struct sort_dimension avg_sort_dimension = {
1264 .name = "avg",
1265 .cmp = avg_cmp,
1266 };
1267 static struct sort_dimension max_sort_dimension = {
1268 .name = "max",
1269 .cmp = max_cmp,
1270 };
1271 static struct sort_dimension pid_sort_dimension = {
1272 .name = "pid",
1273 .cmp = pid_cmp,
1274 };
1275 static struct sort_dimension runtime_sort_dimension = {
1276 .name = "runtime",
1277 .cmp = runtime_cmp,
1278 };
1279 static struct sort_dimension switch_sort_dimension = {
1280 .name = "switch",
1281 .cmp = switch_cmp,
1282 };
1283 struct sort_dimension *available_sorts[] = {
1284 &pid_sort_dimension,
1285 &avg_sort_dimension,
1286 &max_sort_dimension,
1287 &switch_sort_dimension,
1288 &runtime_sort_dimension,
1289 };
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001290
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001291 for (i = 0; i < ARRAY_SIZE(available_sorts); i++) {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001292 if (!strcmp(available_sorts[i]->name, tok)) {
1293 list_add_tail(&available_sorts[i]->list, list);
1294
1295 return 0;
1296 }
1297 }
1298
1299 return -1;
1300}
1301
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001302static void perf_sched__sort_lat(struct perf_sched *sched)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001303{
1304 struct rb_node *node;
1305
1306 for (;;) {
mingo39aeb522009-09-14 20:04:48 +02001307 struct work_atoms *data;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001308 node = rb_first(&sched->atom_root);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001309 if (!node)
1310 break;
1311
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001312 rb_erase(node, &sched->atom_root);
mingo39aeb522009-09-14 20:04:48 +02001313 data = rb_entry(node, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001314 __thread_latency_insert(&sched->sorted_atom_root, data, &sched->sort_list);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001315 }
1316}
1317
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001318static int process_sched_wakeup_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001319 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001320 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001321 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001322{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001323 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001324
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001325 if (sched->tp_handler->wakeup_event)
1326 return sched->tp_handler->wakeup_event(sched, evsel, sample, machine);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001327
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001328 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001329}
1330
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001331static int map_switch_event(struct perf_sched *sched, struct perf_evsel *evsel,
1332 struct perf_sample *sample, struct machine *machine)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001333{
Dongsheng Yang9d372ca2014-05-16 14:37:05 +09001334 const u32 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
1335 struct thread *sched_in;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001336 int new_shortname;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001337 u64 timestamp0, timestamp = sample->time;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001338 s64 delta;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001339 int cpu, this_cpu = sample->cpu;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001340
1341 BUG_ON(this_cpu >= MAX_CPUS || this_cpu < 0);
1342
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001343 if (this_cpu > sched->max_cpu)
1344 sched->max_cpu = this_cpu;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001345
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001346 timestamp0 = sched->cpu_last_switched[this_cpu];
1347 sched->cpu_last_switched[this_cpu] = timestamp;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001348 if (timestamp0)
1349 delta = timestamp - timestamp0;
1350 else
1351 delta = 0;
1352
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001353 if (delta < 0) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001354 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001355 return -1;
1356 }
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001357
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001358 sched_in = machine__findnew_thread(machine, -1, next_pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001359 if (sched_in == NULL)
1360 return -1;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001361
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001362 sched->curr_thread[this_cpu] = thread__get(sched_in);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001363
1364 printf(" ");
1365
1366 new_shortname = 0;
1367 if (!sched_in->shortname[0]) {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001368 if (!strcmp(thread__comm_str(sched_in), "swapper")) {
1369 /*
1370 * Don't allocate a letter-number for swapper:0
1371 * as a shortname. Instead, we use '.' for it.
1372 */
1373 sched_in->shortname[0] = '.';
1374 sched_in->shortname[1] = ' ';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001375 } else {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001376 sched_in->shortname[0] = sched->next_shortname1;
1377 sched_in->shortname[1] = sched->next_shortname2;
1378
1379 if (sched->next_shortname1 < 'Z') {
1380 sched->next_shortname1++;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001381 } else {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001382 sched->next_shortname1 = 'A';
1383 if (sched->next_shortname2 < '9')
1384 sched->next_shortname2++;
1385 else
1386 sched->next_shortname2 = '0';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001387 }
1388 }
1389 new_shortname = 1;
1390 }
1391
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001392 for (cpu = 0; cpu <= sched->max_cpu; cpu++) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001393 if (cpu != this_cpu)
1394 printf(" ");
1395 else
1396 printf("*");
1397
Dongsheng6bcab4e2014-05-06 14:39:01 +09001398 if (sched->curr_thread[cpu])
1399 printf("%2s ", sched->curr_thread[cpu]->shortname);
1400 else
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001401 printf(" ");
1402 }
1403
1404 printf(" %12.6f secs ", (double)timestamp/1e9);
1405 if (new_shortname) {
1406 printf("%s => %s:%d\n",
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001407 sched_in->shortname, thread__comm_str(sched_in), sched_in->tid);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001408 } else {
1409 printf("\n");
1410 }
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001411
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001412 thread__put(sched_in);
1413
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001414 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001415}
1416
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001417static int process_sched_switch_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001418 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001419 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001420 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001421{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001422 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001423 int this_cpu = sample->cpu, err = 0;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001424 u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
1425 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001426
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001427 if (sched->curr_pid[this_cpu] != (u32)-1) {
Ingo Molnarc8a37752009-09-16 14:07:00 +02001428 /*
1429 * Are we trying to switch away a PID that is
1430 * not current?
1431 */
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001432 if (sched->curr_pid[this_cpu] != prev_pid)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001433 sched->nr_context_switch_bugs++;
Ingo Molnarc8a37752009-09-16 14:07:00 +02001434 }
Ingo Molnarc8a37752009-09-16 14:07:00 +02001435
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001436 if (sched->tp_handler->switch_event)
1437 err = sched->tp_handler->switch_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001438
1439 sched->curr_pid[this_cpu] = next_pid;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001440 return err;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001441}
1442
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001443static int process_sched_runtime_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)
mingo39aeb522009-09-14 20:04:48 +02001447{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001448 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
mingo39aeb522009-09-14 20:04:48 +02001449
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001450 if (sched->tp_handler->runtime_event)
1451 return sched->tp_handler->runtime_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001452
1453 return 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001454}
1455
David Aherncb627502013-08-07 22:50:47 -04001456static int perf_sched__process_fork_event(struct perf_tool *tool,
1457 union perf_event *event,
1458 struct perf_sample *sample,
1459 struct machine *machine)
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001460{
1461 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
1462
David Aherncb627502013-08-07 22:50:47 -04001463 /* run the fork event through the perf machineruy */
1464 perf_event__process_fork(tool, event, sample, machine);
1465
1466 /* and then run additional processing needed for this command */
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001467 if (sched->tp_handler->fork_event)
David Aherncb627502013-08-07 22:50:47 -04001468 return sched->tp_handler->fork_event(sched, event, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001469
1470 return 0;
1471}
1472
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001473static int process_sched_migrate_task_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001474 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001475 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001476 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001477{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001478 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001479
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001480 if (sched->tp_handler->migrate_task_event)
1481 return sched->tp_handler->migrate_task_event(sched, evsel, sample, machine);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001482
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001483 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001484}
1485
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001486typedef int (*tracepoint_handler)(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001487 struct perf_evsel *evsel,
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001488 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001489 struct machine *machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001490
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001491static int perf_sched__process_tracepoint_sample(struct perf_tool *tool __maybe_unused,
1492 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001493 struct perf_sample *sample,
1494 struct perf_evsel *evsel,
1495 struct machine *machine)
Ingo Molnarec156762009-09-11 12:12:54 +02001496{
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001497 int err = 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001498
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001499 if (evsel->handler != NULL) {
1500 tracepoint_handler f = evsel->handler;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001501 err = f(tool, evsel, sample, machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001502 }
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001503
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001504 return err;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001505}
1506
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001507static int perf_sched__read_events(struct perf_sched *sched)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001508{
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001509 const struct perf_evsel_str_handler handlers[] = {
1510 { "sched:sched_switch", process_sched_switch_event, },
1511 { "sched:sched_stat_runtime", process_sched_runtime_event, },
1512 { "sched:sched_wakeup", process_sched_wakeup_event, },
1513 { "sched:sched_wakeup_new", process_sched_wakeup_event, },
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001514 { "sched:sched_migrate_task", process_sched_migrate_task_event, },
1515 };
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001516 struct perf_session *session;
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001517 struct perf_data_file file = {
1518 .path = input_name,
1519 .mode = PERF_DATA_MODE_READ,
Yunlong Songf0dd3302015-03-31 21:46:35 +08001520 .force = sched->force,
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001521 };
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001522 int rc = -1;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001523
Jiri Olsaf5fc1412013-10-15 16:27:32 +02001524 session = perf_session__new(&file, false, &sched->tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001525 if (session == NULL) {
1526 pr_debug("No Memory for session\n");
1527 return -1;
1528 }
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02001529
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001530 symbol__init(&session->header.env);
Namhyung Kim04934102014-08-12 15:40:41 +09001531
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001532 if (perf_session__set_tracepoints_handlers(session, handlers))
1533 goto out_delete;
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001534
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001535 if (perf_session__has_traces(session, "record -R")) {
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001536 int err = perf_session__process_events(session);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001537 if (err) {
1538 pr_err("Failed to process events, error %d", err);
1539 goto out_delete;
1540 }
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001541
Arnaldo Carvalho de Melo75be9892015-02-14 14:50:11 -03001542 sched->nr_events = session->evlist->stats.nr_events[0];
1543 sched->nr_lost_events = session->evlist->stats.total_lost;
1544 sched->nr_lost_chunks = session->evlist->stats.nr_events[PERF_RECORD_LOST];
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001545 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -02001546
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001547 rc = 0;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001548out_delete:
1549 perf_session__delete(session);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001550 return rc;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001551}
1552
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001553static void print_bad_events(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001554{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001555 if (sched->nr_unordered_timestamps && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001556 printf(" INFO: %.3f%% unordered timestamps (%ld out of %ld)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001557 (double)sched->nr_unordered_timestamps/(double)sched->nr_timestamps*100.0,
1558 sched->nr_unordered_timestamps, sched->nr_timestamps);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001559 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001560 if (sched->nr_lost_events && sched->nr_events) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001561 printf(" INFO: %.3f%% lost events (%ld out of %ld, in %ld chunks)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001562 (double)sched->nr_lost_events/(double)sched->nr_events * 100.0,
1563 sched->nr_lost_events, sched->nr_events, sched->nr_lost_chunks);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001564 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001565 if (sched->nr_context_switch_bugs && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001566 printf(" INFO: %.3f%% context switch bugs (%ld out of %ld)",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001567 (double)sched->nr_context_switch_bugs/(double)sched->nr_timestamps*100.0,
1568 sched->nr_context_switch_bugs, sched->nr_timestamps);
1569 if (sched->nr_lost_events)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001570 printf(" (due to lost events?)");
1571 printf("\n");
1572 }
1573}
1574
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001575static int perf_sched__lat(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001576{
1577 struct rb_node *next;
1578
1579 setup_pager();
David Ahernad9def72013-08-07 22:50:44 -04001580
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001581 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001582 return -1;
David Ahernad9def72013-08-07 22:50:44 -04001583
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001584 perf_sched__sort_lat(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001585
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04001586 printf("\n -----------------------------------------------------------------------------------------------------------------\n");
1587 printf(" Task | Runtime ms | Switches | Average delay ms | Maximum delay ms | Maximum delay at |\n");
1588 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001589
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001590 next = rb_first(&sched->sorted_atom_root);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001591
1592 while (next) {
1593 struct work_atoms *work_list;
1594
1595 work_list = rb_entry(next, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001596 output_lat_thread(sched, work_list);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001597 next = rb_next(next);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001598 thread__zput(work_list->thread);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001599 }
1600
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04001601 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02001602 printf(" TOTAL: |%11.3f ms |%9" PRIu64 " |\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001603 (double)sched->all_runtime / 1e6, sched->all_count);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001604
1605 printf(" ---------------------------------------------------\n");
1606
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001607 print_bad_events(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001608 printf("\n");
1609
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001610 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001611}
1612
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001613static int perf_sched__map(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001614{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001615 sched->max_cpu = sysconf(_SC_NPROCESSORS_CONF);
Ingo Molnar40749d02009-09-17 18:24:55 +02001616
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001617 setup_pager();
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001618 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001619 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001620 print_bad_events(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001621 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001622}
1623
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001624static int perf_sched__replay(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001625{
1626 unsigned long i;
1627
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001628 calibrate_run_measurement_overhead(sched);
1629 calibrate_sleep_measurement_overhead(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001630
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001631 test_calibrations(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001632
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001633 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001634 return -1;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001635
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001636 printf("nr_run_events: %ld\n", sched->nr_run_events);
1637 printf("nr_sleep_events: %ld\n", sched->nr_sleep_events);
1638 printf("nr_wakeup_events: %ld\n", sched->nr_wakeup_events);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001639
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001640 if (sched->targetless_wakeups)
1641 printf("target-less wakeups: %ld\n", sched->targetless_wakeups);
1642 if (sched->multitarget_wakeups)
1643 printf("multi-target wakeups: %ld\n", sched->multitarget_wakeups);
1644 if (sched->nr_run_events_optimized)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001645 printf("run atoms optimized: %ld\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001646 sched->nr_run_events_optimized);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001647
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001648 print_task_traces(sched);
1649 add_cross_task_wakeups(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001650
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001651 create_tasks(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001652 printf("------------------------------------------------------------\n");
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001653 for (i = 0; i < sched->replay_repeat; i++)
1654 run_one_test(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001655
1656 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001657}
1658
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001659static void setup_sorting(struct perf_sched *sched, const struct option *options,
1660 const char * const usage_msg[])
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001661{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001662 char *tmp, *tok, *str = strdup(sched->sort_order);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001663
1664 for (tok = strtok_r(str, ", ", &tmp);
1665 tok; tok = strtok_r(NULL, ", ", &tmp)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001666 if (sort_dimension__add(tok, &sched->sort_list) < 0) {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001667 error("Unknown --sort key: `%s'", tok);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001668 usage_with_options(usage_msg, options);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001669 }
1670 }
1671
1672 free(str);
1673
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001674 sort_dimension__add("pid", &sched->cmp_pid);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001675}
1676
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001677static int __cmd_record(int argc, const char **argv)
1678{
1679 unsigned int rec_argc, i, j;
1680 const char **rec_argv;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001681 const char * const record_args[] = {
1682 "record",
1683 "-a",
1684 "-R",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001685 "-m", "1024",
1686 "-c", "1",
1687 "-e", "sched:sched_switch",
1688 "-e", "sched:sched_stat_wait",
1689 "-e", "sched:sched_stat_sleep",
1690 "-e", "sched:sched_stat_iowait",
1691 "-e", "sched:sched_stat_runtime",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001692 "-e", "sched:sched_process_fork",
1693 "-e", "sched:sched_wakeup",
Dongsheng7fff9592014-05-05 16:05:53 +09001694 "-e", "sched:sched_wakeup_new",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001695 "-e", "sched:sched_migrate_task",
1696 };
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001697
1698 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
1699 rec_argv = calloc(rec_argc + 1, sizeof(char *));
1700
Arnaldo Carvalho de Meloe462dc52011-01-10 10:48:47 -02001701 if (rec_argv == NULL)
Chris Samuelce47dc52010-11-13 13:35:06 +11001702 return -ENOMEM;
1703
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001704 for (i = 0; i < ARRAY_SIZE(record_args); i++)
1705 rec_argv[i] = strdup(record_args[i]);
1706
1707 for (j = 1; j < (unsigned int)argc; j++, i++)
1708 rec_argv[i] = argv[j];
1709
1710 BUG_ON(i != rec_argc);
1711
1712 return cmd_record(i, rec_argv, NULL);
1713}
1714
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001715int cmd_sched(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001716{
Adrian Hunter8a39df82013-10-22 10:34:15 +03001717 const char default_sort_order[] = "avg, max, switch, runtime";
1718 struct perf_sched sched = {
1719 .tool = {
1720 .sample = perf_sched__process_tracepoint_sample,
1721 .comm = perf_event__process_comm,
1722 .lost = perf_event__process_lost,
1723 .fork = perf_sched__process_fork_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02001724 .ordered_events = true,
Adrian Hunter8a39df82013-10-22 10:34:15 +03001725 },
1726 .cmp_pid = LIST_HEAD_INIT(sched.cmp_pid),
1727 .sort_list = LIST_HEAD_INIT(sched.sort_list),
1728 .start_work_mutex = PTHREAD_MUTEX_INITIALIZER,
1729 .work_done_wait_mutex = PTHREAD_MUTEX_INITIALIZER,
Adrian Hunter8a39df82013-10-22 10:34:15 +03001730 .sort_order = default_sort_order,
1731 .replay_repeat = 10,
1732 .profile_cpu = -1,
1733 .next_shortname1 = 'A',
1734 .next_shortname2 = '0',
1735 };
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001736 const struct option latency_options[] = {
1737 OPT_STRING('s', "sort", &sched.sort_order, "key[,key2...]",
1738 "sort by key(s): runtime, switch, avg, max"),
1739 OPT_INCR('v', "verbose", &verbose,
1740 "be more verbose (show symbol address, etc)"),
1741 OPT_INTEGER('C', "CPU", &sched.profile_cpu,
1742 "CPU to profile on"),
1743 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1744 "dump raw trace in ASCII"),
1745 OPT_END()
1746 };
1747 const struct option replay_options[] = {
1748 OPT_UINTEGER('r', "repeat", &sched.replay_repeat,
1749 "repeat the workload replay N times (-1: infinite)"),
1750 OPT_INCR('v', "verbose", &verbose,
1751 "be more verbose (show symbol address, etc)"),
1752 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1753 "dump raw trace in ASCII"),
Yunlong Song939cda52015-03-31 21:46:34 +08001754 OPT_BOOLEAN('f', "force", &sched.force, "don't complain, do it"),
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001755 OPT_END()
1756 };
1757 const struct option sched_options[] = {
Feng Tang70cb4e92012-10-30 11:56:02 +08001758 OPT_STRING('i', "input", &input_name, "file",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001759 "input file name"),
1760 OPT_INCR('v', "verbose", &verbose,
1761 "be more verbose (show symbol address, etc)"),
1762 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
1763 "dump raw trace in ASCII"),
1764 OPT_END()
1765 };
1766 const char * const latency_usage[] = {
1767 "perf sched latency [<options>]",
1768 NULL
1769 };
1770 const char * const replay_usage[] = {
1771 "perf sched replay [<options>]",
1772 NULL
1773 };
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04001774 const char *const sched_subcommands[] = { "record", "latency", "map",
1775 "replay", "script", NULL };
1776 const char *sched_usage[] = {
1777 NULL,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001778 NULL
1779 };
1780 struct trace_sched_handler lat_ops = {
1781 .wakeup_event = latency_wakeup_event,
1782 .switch_event = latency_switch_event,
1783 .runtime_event = latency_runtime_event,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001784 .migrate_task_event = latency_migrate_task_event,
1785 };
1786 struct trace_sched_handler map_ops = {
1787 .switch_event = map_switch_event,
1788 };
1789 struct trace_sched_handler replay_ops = {
1790 .wakeup_event = replay_wakeup_event,
1791 .switch_event = replay_switch_event,
1792 .fork_event = replay_fork_event,
1793 };
Adrian Hunter156a2b02013-10-22 10:34:16 +03001794 unsigned int i;
1795
1796 for (i = 0; i < ARRAY_SIZE(sched.curr_pid); i++)
1797 sched.curr_pid[i] = -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001798
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04001799 argc = parse_options_subcommand(argc, argv, sched_options, sched_subcommands,
1800 sched_usage, PARSE_OPT_STOP_AT_NON_OPTION);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001801 if (!argc)
1802 usage_with_options(sched_usage, sched_options);
1803
Xiao Guangrongc0777c5a2009-12-07 12:04:49 +08001804 /*
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001805 * Aliased to 'perf script' for now:
Xiao Guangrongc0777c5a2009-12-07 12:04:49 +08001806 */
Ingo Molnar133dc4c2010-11-16 18:45:39 +01001807 if (!strcmp(argv[0], "script"))
1808 return cmd_script(argc, argv, prefix);
Xiao Guangrongc0777c5a2009-12-07 12:04:49 +08001809
Ingo Molnar1fc35b22009-09-13 09:44:29 +02001810 if (!strncmp(argv[0], "rec", 3)) {
1811 return __cmd_record(argc, argv);
1812 } else if (!strncmp(argv[0], "lat", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001813 sched.tp_handler = &lat_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02001814 if (argc > 1) {
1815 argc = parse_options(argc, argv, latency_options, latency_usage, 0);
1816 if (argc)
1817 usage_with_options(latency_usage, latency_options);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001818 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001819 setup_sorting(&sched, latency_options, latency_usage);
1820 return perf_sched__lat(&sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001821 } else if (!strcmp(argv[0], "map")) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001822 sched.tp_handler = &map_ops;
1823 setup_sorting(&sched, latency_options, latency_usage);
1824 return perf_sched__map(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001825 } else if (!strncmp(argv[0], "rep", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001826 sched.tp_handler = &replay_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02001827 if (argc) {
1828 argc = parse_options(argc, argv, replay_options, replay_usage, 0);
1829 if (argc)
1830 usage_with_options(replay_usage, replay_options);
1831 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001832 return perf_sched__replay(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02001833 } else {
1834 usage_with_options(sched_usage, sched_options);
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001835 }
1836
Ingo Molnarec156762009-09-11 12:12:54 +02001837 return 0;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001838}