blob: 06be809a02ab30507170d100e270e98a9b952e95 [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"
Jiri Olsaa151a372016-04-12 15:29:29 +020014#include "util/thread_map.h"
Jiri Olsa8cd91192016-04-12 15:29:27 +020015#include "util/color.h"
David Ahern49394a22016-11-16 15:06:29 +090016#include "util/stat.h"
David Ahern6c973c92016-11-16 15:06:32 +090017#include "util/callchain.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020018
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060019#include <subcmd/parse-options.h>
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020020#include "util/trace-event.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020021
Ingo Molnar0a02ad92009-09-11 12:12:54 +020022#include "util/debug.h"
23
David Ahern49394a22016-11-16 15:06:29 +090024#include <linux/log2.h>
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020025#include <sys/prctl.h>
Markus Trippelsdorf7b78f132012-04-04 10:45:27 +020026#include <sys/resource.h>
Ingo Molnar0a02ad92009-09-11 12:12:54 +020027
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020028#include <semaphore.h>
29#include <pthread.h>
30#include <math.h>
Yunlong Songcb06ac22015-03-31 21:46:30 +080031#include <api/fs/fs.h>
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -030032#include <linux/time64.h>
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +020033
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020034#define PR_SET_NAME 15 /* Set process name */
35#define MAX_CPUS 4096
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020036#define COMM_LEN 20
37#define SYM_LEN 129
Yunlong Songa35e27d2015-03-31 21:46:29 +080038#define MAX_PID 1024000
Ingo Molnarec156762009-09-11 12:12:54 +020039
mingo39aeb522009-09-14 20:04:48 +020040struct sched_atom;
Ingo Molnarec156762009-09-11 12:12:54 +020041
42struct task_desc {
43 unsigned long nr;
44 unsigned long pid;
45 char comm[COMM_LEN];
46
47 unsigned long nr_events;
48 unsigned long curr_event;
mingo39aeb522009-09-14 20:04:48 +020049 struct sched_atom **atoms;
Ingo Molnarec156762009-09-11 12:12:54 +020050
51 pthread_t thread;
52 sem_t sleep_sem;
53
54 sem_t ready_for_work;
55 sem_t work_done_sem;
56
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020057 u64 cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +020058};
59
60enum sched_event_type {
61 SCHED_EVENT_RUN,
62 SCHED_EVENT_SLEEP,
63 SCHED_EVENT_WAKEUP,
Mike Galbraith55ffb7a2009-10-10 14:46:04 +020064 SCHED_EVENT_MIGRATION,
Ingo Molnarec156762009-09-11 12:12:54 +020065};
66
mingo39aeb522009-09-14 20:04:48 +020067struct sched_atom {
Ingo Molnarec156762009-09-11 12:12:54 +020068 enum sched_event_type type;
Arnaldo Carvalho de Meloeed05fe2010-04-05 12:53:45 -030069 int specific_wait;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020070 u64 timestamp;
71 u64 duration;
Ingo Molnarec156762009-09-11 12:12:54 +020072 unsigned long nr;
Ingo Molnarec156762009-09-11 12:12:54 +020073 sem_t *wait_sem;
74 struct task_desc *wakee;
75};
76
Dongshenge936e8e2014-05-05 16:05:54 +090077#define TASK_STATE_TO_CHAR_STR "RSDTtZXxKWP"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020078
79enum thread_state {
80 THREAD_SLEEPING = 0,
81 THREAD_WAIT_CPU,
82 THREAD_SCHED_IN,
83 THREAD_IGNORE
84};
85
86struct work_atom {
87 struct list_head list;
88 enum thread_state state;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +020089 u64 sched_out_time;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020090 u64 wake_up_time;
91 u64 sched_in_time;
92 u64 runtime;
93};
94
mingo39aeb522009-09-14 20:04:48 +020095struct work_atoms {
96 struct list_head work_list;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020097 struct thread *thread;
98 struct rb_node node;
99 u64 max_lat;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +0100100 u64 max_lat_at;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200101 u64 total_lat;
102 u64 nb_atoms;
103 u64 total_runtime;
Josef Bacik2f80dd42015-05-22 09:18:40 -0400104 int num_merged;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200105};
106
mingo39aeb522009-09-14 20:04:48 +0200107typedef int (*sort_fn_t)(struct work_atoms *, struct work_atoms *);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200108
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300109struct perf_sched;
110
111struct trace_sched_handler {
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300112 int (*switch_event)(struct perf_sched *sched, struct perf_evsel *evsel,
113 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300114
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300115 int (*runtime_event)(struct perf_sched *sched, struct perf_evsel *evsel,
116 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300117
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300118 int (*wakeup_event)(struct perf_sched *sched, struct perf_evsel *evsel,
119 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300120
David Aherncb627502013-08-07 22:50:47 -0400121 /* PERF_RECORD_FORK event, not sched_process_fork tracepoint */
122 int (*fork_event)(struct perf_sched *sched, union perf_event *event,
123 struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300124
125 int (*migrate_task_event)(struct perf_sched *sched,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300126 struct perf_evsel *evsel,
127 struct perf_sample *sample,
128 struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300129};
130
Jiri Olsaa151a372016-04-12 15:29:29 +0200131#define COLOR_PIDS PERF_COLOR_BLUE
Jiri Olsacf294f22016-04-12 15:29:30 +0200132#define COLOR_CPUS PERF_COLOR_BG_RED
Jiri Olsaa151a372016-04-12 15:29:29 +0200133
Jiri Olsa99623c62016-04-12 15:29:26 +0200134struct perf_sched_map {
135 DECLARE_BITMAP(comp_cpus_mask, MAX_CPUS);
136 int *comp_cpus;
137 bool comp;
Jiri Olsaa151a372016-04-12 15:29:29 +0200138 struct thread_map *color_pids;
139 const char *color_pids_str;
Jiri Olsacf294f22016-04-12 15:29:30 +0200140 struct cpu_map *color_cpus;
141 const char *color_cpus_str;
Jiri Olsa73643bb2016-04-12 15:29:31 +0200142 struct cpu_map *cpus;
143 const char *cpus_str;
Jiri Olsa99623c62016-04-12 15:29:26 +0200144};
145
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300146struct perf_sched {
147 struct perf_tool tool;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300148 const char *sort_order;
149 unsigned long nr_tasks;
Yunlong Songcb06ac22015-03-31 21:46:30 +0800150 struct task_desc **pid_to_task;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300151 struct task_desc **tasks;
152 const struct trace_sched_handler *tp_handler;
153 pthread_mutex_t start_work_mutex;
154 pthread_mutex_t work_done_wait_mutex;
155 int profile_cpu;
156/*
157 * Track the current task - that way we can know whether there's any
158 * weird events, such as a task being switched away that is not current.
159 */
160 int max_cpu;
161 u32 curr_pid[MAX_CPUS];
162 struct thread *curr_thread[MAX_CPUS];
163 char next_shortname1;
164 char next_shortname2;
165 unsigned int replay_repeat;
166 unsigned long nr_run_events;
167 unsigned long nr_sleep_events;
168 unsigned long nr_wakeup_events;
169 unsigned long nr_sleep_corrections;
170 unsigned long nr_run_events_optimized;
171 unsigned long targetless_wakeups;
172 unsigned long multitarget_wakeups;
173 unsigned long nr_runs;
174 unsigned long nr_timestamps;
175 unsigned long nr_unordered_timestamps;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300176 unsigned long nr_context_switch_bugs;
177 unsigned long nr_events;
178 unsigned long nr_lost_chunks;
179 unsigned long nr_lost_events;
180 u64 run_measurement_overhead;
181 u64 sleep_measurement_overhead;
182 u64 start_time;
183 u64 cpu_usage;
184 u64 runavg_cpu_usage;
185 u64 parent_cpu_usage;
186 u64 runavg_parent_cpu_usage;
187 u64 sum_runtime;
188 u64 sum_fluct;
189 u64 run_avg;
190 u64 all_runtime;
191 u64 all_count;
192 u64 cpu_last_switched[MAX_CPUS];
Josef Bacik2f80dd42015-05-22 09:18:40 -0400193 struct rb_root atom_root, sorted_atom_root, merged_atom_root;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300194 struct list_head sort_list, cmp_pid;
Yunlong Song939cda52015-03-31 21:46:34 +0800195 bool force;
Josef Bacik2f80dd42015-05-22 09:18:40 -0400196 bool skip_merge;
Jiri Olsa99623c62016-04-12 15:29:26 +0200197 struct perf_sched_map map;
David Ahern52df1382016-11-16 15:06:30 +0900198
199 /* options for timehist command */
200 bool summary;
201 bool summary_only;
David Ahern6c973c92016-11-16 15:06:32 +0900202 bool show_callchain;
203 unsigned int max_stack;
David Aherna407b062016-11-16 15:06:33 +0900204 bool show_cpu_visual;
David Ahernfc1469f2016-11-16 15:06:31 +0900205 bool show_wakeups;
David Ahern52df1382016-11-16 15:06:30 +0900206 u64 skipped_samples;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300207};
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200208
David Ahern49394a22016-11-16 15:06:29 +0900209/* per thread run time data */
210struct thread_runtime {
211 u64 last_time; /* time of previous sched in/out event */
212 u64 dt_run; /* run time */
213 u64 dt_wait; /* time between CPU access (off cpu) */
214 u64 dt_delay; /* time between wakeup and sched-in */
215 u64 ready_to_run; /* time of wakeup */
216
217 struct stats run_stats;
218 u64 total_run_time;
219};
220
221/* per event run time data */
222struct evsel_runtime {
223 u64 *last_time; /* time this event was last seen per cpu */
224 u32 ncpu; /* highest cpu slot allocated */
225};
226
227/* track idle times per cpu */
228static struct thread **idle_threads;
229static int idle_max_cpu;
230static char idle_comm[] = "<idle>";
231
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200232static u64 get_nsecs(void)
233{
234 struct timespec ts;
235
236 clock_gettime(CLOCK_MONOTONIC, &ts);
237
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300238 return ts.tv_sec * NSEC_PER_SEC + ts.tv_nsec;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200239}
240
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300241static void burn_nsecs(struct perf_sched *sched, u64 nsecs)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200242{
243 u64 T0 = get_nsecs(), T1;
244
245 do {
246 T1 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300247 } while (T1 + sched->run_measurement_overhead < T0 + nsecs);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200248}
249
250static void sleep_nsecs(u64 nsecs)
251{
252 struct timespec ts;
253
254 ts.tv_nsec = nsecs % 999999999;
255 ts.tv_sec = nsecs / 999999999;
256
257 nanosleep(&ts, NULL);
258}
259
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300260static void calibrate_run_measurement_overhead(struct perf_sched *sched)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200261{
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300262 u64 T0, T1, delta, min_delta = NSEC_PER_SEC;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200263 int i;
264
265 for (i = 0; i < 10; i++) {
266 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300267 burn_nsecs(sched, 0);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200268 T1 = get_nsecs();
269 delta = T1-T0;
270 min_delta = min(min_delta, delta);
271 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300272 sched->run_measurement_overhead = min_delta;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200273
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200274 printf("run measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200275}
276
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300277static void calibrate_sleep_measurement_overhead(struct perf_sched *sched)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200278{
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300279 u64 T0, T1, delta, min_delta = NSEC_PER_SEC;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200280 int i;
281
282 for (i = 0; i < 10; i++) {
283 T0 = get_nsecs();
284 sleep_nsecs(10000);
285 T1 = get_nsecs();
286 delta = T1-T0;
287 min_delta = min(min_delta, delta);
288 }
289 min_delta -= 10000;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300290 sched->sleep_measurement_overhead = min_delta;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200291
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200292 printf("sleep measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200293}
294
mingo39aeb522009-09-14 20:04:48 +0200295static struct sched_atom *
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200296get_new_event(struct task_desc *task, u64 timestamp)
Ingo Molnarec156762009-09-11 12:12:54 +0200297{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200298 struct sched_atom *event = zalloc(sizeof(*event));
Ingo Molnarec156762009-09-11 12:12:54 +0200299 unsigned long idx = task->nr_events;
300 size_t size;
301
302 event->timestamp = timestamp;
303 event->nr = idx;
304
305 task->nr_events++;
mingo39aeb522009-09-14 20:04:48 +0200306 size = sizeof(struct sched_atom *) * task->nr_events;
307 task->atoms = realloc(task->atoms, size);
308 BUG_ON(!task->atoms);
Ingo Molnarec156762009-09-11 12:12:54 +0200309
mingo39aeb522009-09-14 20:04:48 +0200310 task->atoms[idx] = event;
Ingo Molnarec156762009-09-11 12:12:54 +0200311
312 return event;
313}
314
mingo39aeb522009-09-14 20:04:48 +0200315static struct sched_atom *last_event(struct task_desc *task)
Ingo Molnarec156762009-09-11 12:12:54 +0200316{
317 if (!task->nr_events)
318 return NULL;
319
mingo39aeb522009-09-14 20:04:48 +0200320 return task->atoms[task->nr_events - 1];
Ingo Molnarec156762009-09-11 12:12:54 +0200321}
322
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300323static void add_sched_event_run(struct perf_sched *sched, struct task_desc *task,
324 u64 timestamp, u64 duration)
Ingo Molnarec156762009-09-11 12:12:54 +0200325{
mingo39aeb522009-09-14 20:04:48 +0200326 struct sched_atom *event, *curr_event = last_event(task);
Ingo Molnarec156762009-09-11 12:12:54 +0200327
328 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200329 * optimize an existing RUN event by merging this one
330 * to it:
331 */
Ingo Molnarec156762009-09-11 12:12:54 +0200332 if (curr_event && curr_event->type == SCHED_EVENT_RUN) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300333 sched->nr_run_events_optimized++;
Ingo Molnarec156762009-09-11 12:12:54 +0200334 curr_event->duration += duration;
335 return;
336 }
337
338 event = get_new_event(task, timestamp);
339
340 event->type = SCHED_EVENT_RUN;
341 event->duration = duration;
342
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300343 sched->nr_run_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200344}
345
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300346static void add_sched_event_wakeup(struct perf_sched *sched, struct task_desc *task,
347 u64 timestamp, struct task_desc *wakee)
Ingo Molnarec156762009-09-11 12:12:54 +0200348{
mingo39aeb522009-09-14 20:04:48 +0200349 struct sched_atom *event, *wakee_event;
Ingo Molnarec156762009-09-11 12:12:54 +0200350
351 event = get_new_event(task, timestamp);
352 event->type = SCHED_EVENT_WAKEUP;
353 event->wakee = wakee;
354
355 wakee_event = last_event(wakee);
356 if (!wakee_event || wakee_event->type != SCHED_EVENT_SLEEP) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300357 sched->targetless_wakeups++;
Ingo Molnarec156762009-09-11 12:12:54 +0200358 return;
359 }
360 if (wakee_event->wait_sem) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300361 sched->multitarget_wakeups++;
Ingo Molnarec156762009-09-11 12:12:54 +0200362 return;
363 }
364
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200365 wakee_event->wait_sem = zalloc(sizeof(*wakee_event->wait_sem));
Ingo Molnarec156762009-09-11 12:12:54 +0200366 sem_init(wakee_event->wait_sem, 0, 0);
367 wakee_event->specific_wait = 1;
368 event->wait_sem = wakee_event->wait_sem;
369
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300370 sched->nr_wakeup_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200371}
372
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300373static void add_sched_event_sleep(struct perf_sched *sched, struct task_desc *task,
374 u64 timestamp, u64 task_state __maybe_unused)
Ingo Molnarec156762009-09-11 12:12:54 +0200375{
mingo39aeb522009-09-14 20:04:48 +0200376 struct sched_atom *event = get_new_event(task, timestamp);
Ingo Molnarec156762009-09-11 12:12:54 +0200377
378 event->type = SCHED_EVENT_SLEEP;
379
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300380 sched->nr_sleep_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200381}
382
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300383static struct task_desc *register_pid(struct perf_sched *sched,
384 unsigned long pid, const char *comm)
Ingo Molnarec156762009-09-11 12:12:54 +0200385{
386 struct task_desc *task;
Yunlong Songcb06ac22015-03-31 21:46:30 +0800387 static int pid_max;
Ingo Molnarec156762009-09-11 12:12:54 +0200388
Yunlong Songcb06ac22015-03-31 21:46:30 +0800389 if (sched->pid_to_task == NULL) {
390 if (sysctl__read_int("kernel/pid_max", &pid_max) < 0)
391 pid_max = MAX_PID;
392 BUG_ON((sched->pid_to_task = calloc(pid_max, sizeof(struct task_desc *))) == NULL);
393 }
Yunlong Song3a423a52015-03-31 21:46:31 +0800394 if (pid >= (unsigned long)pid_max) {
395 BUG_ON((sched->pid_to_task = realloc(sched->pid_to_task, (pid + 1) *
396 sizeof(struct task_desc *))) == NULL);
397 while (pid >= (unsigned long)pid_max)
398 sched->pid_to_task[pid_max++] = NULL;
399 }
Ingo Molnarec156762009-09-11 12:12:54 +0200400
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300401 task = sched->pid_to_task[pid];
Ingo Molnarec156762009-09-11 12:12:54 +0200402
403 if (task)
404 return task;
405
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200406 task = zalloc(sizeof(*task));
Ingo Molnarec156762009-09-11 12:12:54 +0200407 task->pid = pid;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300408 task->nr = sched->nr_tasks;
Ingo Molnarec156762009-09-11 12:12:54 +0200409 strcpy(task->comm, comm);
410 /*
411 * every task starts in sleeping state - this gets ignored
412 * if there's no wakeup pointing to this sleep state:
413 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300414 add_sched_event_sleep(sched, task, 0, 0);
Ingo Molnarec156762009-09-11 12:12:54 +0200415
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300416 sched->pid_to_task[pid] = task;
417 sched->nr_tasks++;
Yunlong Song0755bc42015-03-31 21:46:28 +0800418 sched->tasks = realloc(sched->tasks, sched->nr_tasks * sizeof(struct task_desc *));
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300419 BUG_ON(!sched->tasks);
420 sched->tasks[task->nr] = task;
Ingo Molnarec156762009-09-11 12:12:54 +0200421
Ingo Molnarad236fd2009-09-11 12:12:54 +0200422 if (verbose)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300423 printf("registered task #%ld, PID %ld (%s)\n", sched->nr_tasks, pid, comm);
Ingo Molnarec156762009-09-11 12:12:54 +0200424
425 return task;
426}
427
428
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300429static void print_task_traces(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200430{
431 struct task_desc *task;
432 unsigned long i;
433
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300434 for (i = 0; i < sched->nr_tasks; i++) {
435 task = sched->tasks[i];
Ingo Molnarad236fd2009-09-11 12:12:54 +0200436 printf("task %6ld (%20s:%10ld), nr_events: %ld\n",
Ingo Molnarec156762009-09-11 12:12:54 +0200437 task->nr, task->comm, task->pid, task->nr_events);
438 }
439}
440
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300441static void add_cross_task_wakeups(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200442{
443 struct task_desc *task1, *task2;
444 unsigned long i, j;
445
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300446 for (i = 0; i < sched->nr_tasks; i++) {
447 task1 = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200448 j = i + 1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300449 if (j == sched->nr_tasks)
Ingo Molnarec156762009-09-11 12:12:54 +0200450 j = 0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300451 task2 = sched->tasks[j];
452 add_sched_event_wakeup(sched, task1, 0, task2);
Ingo Molnarec156762009-09-11 12:12:54 +0200453 }
454}
455
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300456static void perf_sched__process_event(struct perf_sched *sched,
457 struct sched_atom *atom)
Ingo Molnarec156762009-09-11 12:12:54 +0200458{
459 int ret = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200460
mingo39aeb522009-09-14 20:04:48 +0200461 switch (atom->type) {
Ingo Molnarec156762009-09-11 12:12:54 +0200462 case SCHED_EVENT_RUN:
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300463 burn_nsecs(sched, atom->duration);
Ingo Molnarec156762009-09-11 12:12:54 +0200464 break;
465 case SCHED_EVENT_SLEEP:
mingo39aeb522009-09-14 20:04:48 +0200466 if (atom->wait_sem)
467 ret = sem_wait(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200468 BUG_ON(ret);
469 break;
470 case SCHED_EVENT_WAKEUP:
mingo39aeb522009-09-14 20:04:48 +0200471 if (atom->wait_sem)
472 ret = sem_post(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200473 BUG_ON(ret);
474 break;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +0200475 case SCHED_EVENT_MIGRATION:
476 break;
Ingo Molnarec156762009-09-11 12:12:54 +0200477 default:
478 BUG_ON(1);
479 }
480}
481
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200482static u64 get_cpu_usage_nsec_parent(void)
Ingo Molnarec156762009-09-11 12:12:54 +0200483{
484 struct rusage ru;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200485 u64 sum;
Ingo Molnarec156762009-09-11 12:12:54 +0200486 int err;
487
488 err = getrusage(RUSAGE_SELF, &ru);
489 BUG_ON(err);
490
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300491 sum = ru.ru_utime.tv_sec * NSEC_PER_SEC + ru.ru_utime.tv_usec * NSEC_PER_USEC;
492 sum += ru.ru_stime.tv_sec * NSEC_PER_SEC + ru.ru_stime.tv_usec * NSEC_PER_USEC;
Ingo Molnarec156762009-09-11 12:12:54 +0200493
494 return sum;
495}
496
Yunlong Song939cda52015-03-31 21:46:34 +0800497static int self_open_counters(struct perf_sched *sched, unsigned long cur_task)
Ingo Molnarec156762009-09-11 12:12:54 +0200498{
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800499 struct perf_event_attr attr;
Yunlong Song939cda52015-03-31 21:46:34 +0800500 char sbuf[STRERR_BUFSIZE], info[STRERR_BUFSIZE];
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800501 int fd;
Yunlong Song939cda52015-03-31 21:46:34 +0800502 struct rlimit limit;
503 bool need_privilege = false;
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800504
505 memset(&attr, 0, sizeof(attr));
506
507 attr.type = PERF_TYPE_SOFTWARE;
508 attr.config = PERF_COUNT_SW_TASK_CLOCK;
509
Yunlong Song939cda52015-03-31 21:46:34 +0800510force_again:
Yann Droneaud57480d22014-06-30 22:28:47 +0200511 fd = sys_perf_event_open(&attr, 0, -1, -1,
512 perf_event_open_cloexec_flag());
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800513
Yunlong Song1aff59b2015-03-31 21:46:33 +0800514 if (fd < 0) {
Yunlong Song939cda52015-03-31 21:46:34 +0800515 if (errno == EMFILE) {
516 if (sched->force) {
517 BUG_ON(getrlimit(RLIMIT_NOFILE, &limit) == -1);
518 limit.rlim_cur += sched->nr_tasks - cur_task;
519 if (limit.rlim_cur > limit.rlim_max) {
520 limit.rlim_max = limit.rlim_cur;
521 need_privilege = true;
522 }
523 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
524 if (need_privilege && errno == EPERM)
525 strcpy(info, "Need privilege\n");
526 } else
527 goto force_again;
528 } else
529 strcpy(info, "Have a try with -f option\n");
530 }
Namhyung Kim60b7d142012-09-12 11:11:06 +0900531 pr_err("Error: sys_perf_event_open() syscall returned "
Yunlong Song939cda52015-03-31 21:46:34 +0800532 "with %d (%s)\n%s", fd,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300533 str_error_r(errno, sbuf, sizeof(sbuf)), info);
Yunlong Song1aff59b2015-03-31 21:46:33 +0800534 exit(EXIT_FAILURE);
535 }
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800536 return fd;
537}
538
539static u64 get_cpu_usage_nsec_self(int fd)
540{
541 u64 runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200542 int ret;
543
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800544 ret = read(fd, &runtime, sizeof(runtime));
545 BUG_ON(ret != sizeof(runtime));
Ingo Molnarec156762009-09-11 12:12:54 +0200546
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800547 return runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200548}
549
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300550struct sched_thread_parms {
551 struct task_desc *task;
552 struct perf_sched *sched;
Yunlong Song08097ab2015-03-31 21:46:32 +0800553 int fd;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300554};
555
Ingo Molnarec156762009-09-11 12:12:54 +0200556static void *thread_func(void *ctx)
557{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300558 struct sched_thread_parms *parms = ctx;
559 struct task_desc *this_task = parms->task;
560 struct perf_sched *sched = parms->sched;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200561 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200562 unsigned long i, ret;
563 char comm2[22];
Yunlong Song08097ab2015-03-31 21:46:32 +0800564 int fd = parms->fd;
Ingo Molnarec156762009-09-11 12:12:54 +0200565
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300566 zfree(&parms);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300567
Ingo Molnarec156762009-09-11 12:12:54 +0200568 sprintf(comm2, ":%s", this_task->comm);
569 prctl(PR_SET_NAME, comm2);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300570 if (fd < 0)
571 return NULL;
Ingo Molnarec156762009-09-11 12:12:54 +0200572again:
573 ret = sem_post(&this_task->ready_for_work);
574 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300575 ret = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200576 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300577 ret = pthread_mutex_unlock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200578 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200579
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800580 cpu_usage_0 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200581
582 for (i = 0; i < this_task->nr_events; i++) {
583 this_task->curr_event = i;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300584 perf_sched__process_event(sched, this_task->atoms[i]);
Ingo Molnarec156762009-09-11 12:12:54 +0200585 }
586
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800587 cpu_usage_1 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200588 this_task->cpu_usage = cpu_usage_1 - cpu_usage_0;
Ingo Molnarec156762009-09-11 12:12:54 +0200589 ret = sem_post(&this_task->work_done_sem);
590 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200591
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300592 ret = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200593 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300594 ret = pthread_mutex_unlock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200595 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200596
597 goto again;
598}
599
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300600static void create_tasks(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200601{
602 struct task_desc *task;
603 pthread_attr_t attr;
604 unsigned long i;
605 int err;
606
607 err = pthread_attr_init(&attr);
608 BUG_ON(err);
Jiri Pirko12f7e032011-01-10 14:14:23 -0200609 err = pthread_attr_setstacksize(&attr,
610 (size_t) max(16 * 1024, PTHREAD_STACK_MIN));
Ingo Molnarec156762009-09-11 12:12:54 +0200611 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300612 err = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200613 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300614 err = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200615 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300616 for (i = 0; i < sched->nr_tasks; i++) {
617 struct sched_thread_parms *parms = malloc(sizeof(*parms));
618 BUG_ON(parms == NULL);
619 parms->task = task = sched->tasks[i];
620 parms->sched = sched;
Yunlong Song939cda52015-03-31 21:46:34 +0800621 parms->fd = self_open_counters(sched, i);
Ingo Molnarec156762009-09-11 12:12:54 +0200622 sem_init(&task->sleep_sem, 0, 0);
623 sem_init(&task->ready_for_work, 0, 0);
624 sem_init(&task->work_done_sem, 0, 0);
625 task->curr_event = 0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300626 err = pthread_create(&task->thread, &attr, thread_func, parms);
Ingo Molnarec156762009-09-11 12:12:54 +0200627 BUG_ON(err);
628 }
629}
630
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300631static void wait_for_tasks(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200632{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200633 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200634 struct task_desc *task;
635 unsigned long i, ret;
636
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300637 sched->start_time = get_nsecs();
638 sched->cpu_usage = 0;
639 pthread_mutex_unlock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200640
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300641 for (i = 0; i < sched->nr_tasks; i++) {
642 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200643 ret = sem_wait(&task->ready_for_work);
644 BUG_ON(ret);
645 sem_init(&task->ready_for_work, 0, 0);
646 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300647 ret = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200648 BUG_ON(ret);
649
650 cpu_usage_0 = get_cpu_usage_nsec_parent();
651
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300652 pthread_mutex_unlock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200653
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300654 for (i = 0; i < sched->nr_tasks; i++) {
655 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200656 ret = sem_wait(&task->work_done_sem);
657 BUG_ON(ret);
658 sem_init(&task->work_done_sem, 0, 0);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300659 sched->cpu_usage += task->cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +0200660 task->cpu_usage = 0;
661 }
662
663 cpu_usage_1 = get_cpu_usage_nsec_parent();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300664 if (!sched->runavg_cpu_usage)
665 sched->runavg_cpu_usage = sched->cpu_usage;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800666 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 +0200667
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300668 sched->parent_cpu_usage = cpu_usage_1 - cpu_usage_0;
669 if (!sched->runavg_parent_cpu_usage)
670 sched->runavg_parent_cpu_usage = sched->parent_cpu_usage;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800671 sched->runavg_parent_cpu_usage = (sched->runavg_parent_cpu_usage * (sched->replay_repeat - 1) +
672 sched->parent_cpu_usage)/sched->replay_repeat;
Ingo Molnarec156762009-09-11 12:12:54 +0200673
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300674 ret = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200675 BUG_ON(ret);
676
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300677 for (i = 0; i < sched->nr_tasks; i++) {
678 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200679 sem_init(&task->sleep_sem, 0, 0);
680 task->curr_event = 0;
681 }
682}
683
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300684static void run_one_test(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200685{
Kyle McMartinfb7d0b32011-01-24 11:13:04 -0500686 u64 T0, T1, delta, avg_delta, fluct;
Ingo Molnarec156762009-09-11 12:12:54 +0200687
688 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300689 wait_for_tasks(sched);
Ingo Molnarec156762009-09-11 12:12:54 +0200690 T1 = get_nsecs();
691
692 delta = T1 - T0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300693 sched->sum_runtime += delta;
694 sched->nr_runs++;
Ingo Molnarec156762009-09-11 12:12:54 +0200695
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300696 avg_delta = sched->sum_runtime / sched->nr_runs;
Ingo Molnarec156762009-09-11 12:12:54 +0200697 if (delta < avg_delta)
698 fluct = avg_delta - delta;
699 else
700 fluct = delta - avg_delta;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300701 sched->sum_fluct += fluct;
702 if (!sched->run_avg)
703 sched->run_avg = delta;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800704 sched->run_avg = (sched->run_avg * (sched->replay_repeat - 1) + delta) / sched->replay_repeat;
Ingo Molnarec156762009-09-11 12:12:54 +0200705
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300706 printf("#%-3ld: %0.3f, ", sched->nr_runs, (double)delta / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200707
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300708 printf("ravg: %0.2f, ", (double)sched->run_avg / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200709
Ingo Molnarad236fd2009-09-11 12:12:54 +0200710 printf("cpu: %0.2f / %0.2f",
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300711 (double)sched->cpu_usage / NSEC_PER_MSEC, (double)sched->runavg_cpu_usage / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200712
713#if 0
714 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200715 * rusage statistics done by the parent, these are less
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300716 * accurate than the sched->sum_exec_runtime based statistics:
Ingo Molnarfbf94822009-09-11 12:12:54 +0200717 */
Ingo Molnarad236fd2009-09-11 12:12:54 +0200718 printf(" [%0.2f / %0.2f]",
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300719 (double)sched->parent_cpu_usage / NSEC_PER_MSEC,
720 (double)sched->runavg_parent_cpu_usage / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200721#endif
722
Ingo Molnarad236fd2009-09-11 12:12:54 +0200723 printf("\n");
Ingo Molnarec156762009-09-11 12:12:54 +0200724
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300725 if (sched->nr_sleep_corrections)
726 printf(" (%ld sleep corrections)\n", sched->nr_sleep_corrections);
727 sched->nr_sleep_corrections = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200728}
729
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300730static void test_calibrations(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200731{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200732 u64 T0, T1;
Ingo Molnarec156762009-09-11 12:12:54 +0200733
734 T0 = get_nsecs();
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300735 burn_nsecs(sched, NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200736 T1 = get_nsecs();
737
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200738 printf("the run test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200739
740 T0 = get_nsecs();
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300741 sleep_nsecs(NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200742 T1 = get_nsecs();
743
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200744 printf("the sleep test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200745}
746
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300747static int
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300748replay_wakeup_event(struct perf_sched *sched,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300749 struct perf_evsel *evsel, struct perf_sample *sample,
750 struct machine *machine __maybe_unused)
Ingo Molnarec156762009-09-11 12:12:54 +0200751{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300752 const char *comm = perf_evsel__strval(evsel, sample, "comm");
753 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200754 struct task_desc *waker, *wakee;
755
756 if (verbose) {
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300757 printf("sched_wakeup event %p\n", evsel);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200758
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300759 printf(" ... pid %d woke up %s/%d\n", sample->tid, comm, pid);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200760 }
761
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300762 waker = register_pid(sched, sample->tid, "<unknown>");
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300763 wakee = register_pid(sched, pid, comm);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200764
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300765 add_sched_event_wakeup(sched, waker, sample->time, wakee);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300766 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200767}
768
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300769static int replay_switch_event(struct perf_sched *sched,
770 struct perf_evsel *evsel,
771 struct perf_sample *sample,
772 struct machine *machine __maybe_unused)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200773{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300774 const char *prev_comm = perf_evsel__strval(evsel, sample, "prev_comm"),
775 *next_comm = perf_evsel__strval(evsel, sample, "next_comm");
776 const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
777 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
778 const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state");
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300779 struct task_desc *prev, __maybe_unused *next;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -0300780 u64 timestamp0, timestamp = sample->time;
781 int cpu = sample->cpu;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200782 s64 delta;
783
Ingo Molnarad236fd2009-09-11 12:12:54 +0200784 if (verbose)
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300785 printf("sched_switch event %p\n", evsel);
Ingo Molnarad236fd2009-09-11 12:12:54 +0200786
Ingo Molnarfbf94822009-09-11 12:12:54 +0200787 if (cpu >= MAX_CPUS || cpu < 0)
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300788 return 0;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200789
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300790 timestamp0 = sched->cpu_last_switched[cpu];
Ingo Molnarfbf94822009-09-11 12:12:54 +0200791 if (timestamp0)
792 delta = timestamp - timestamp0;
793 else
794 delta = 0;
795
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300796 if (delta < 0) {
Namhyung Kim60b7d142012-09-12 11:11:06 +0900797 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300798 return -1;
799 }
Ingo Molnarfbf94822009-09-11 12:12:54 +0200800
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300801 pr_debug(" ... switch from %s/%d to %s/%d [ran %" PRIu64 " nsecs]\n",
802 prev_comm, prev_pid, next_comm, next_pid, delta);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200803
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300804 prev = register_pid(sched, prev_pid, prev_comm);
805 next = register_pid(sched, next_pid, next_comm);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200806
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300807 sched->cpu_last_switched[cpu] = timestamp;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200808
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300809 add_sched_event_run(sched, prev, timestamp, delta);
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300810 add_sched_event_sleep(sched, prev, timestamp, prev_state);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300811
812 return 0;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200813}
814
David Aherncb627502013-08-07 22:50:47 -0400815static int replay_fork_event(struct perf_sched *sched,
816 union perf_event *event,
817 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200818{
David Aherncb627502013-08-07 22:50:47 -0400819 struct thread *child, *parent;
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300820
Adrian Hunter314add62013-08-27 11:23:03 +0300821 child = machine__findnew_thread(machine, event->fork.pid,
822 event->fork.tid);
823 parent = machine__findnew_thread(machine, event->fork.ppid,
824 event->fork.ptid);
David Aherncb627502013-08-07 22:50:47 -0400825
826 if (child == NULL || parent == NULL) {
827 pr_debug("thread does not exist on fork event: child %p, parent %p\n",
828 child, parent);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300829 goto out_put;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200830 }
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300831
David Aherncb627502013-08-07 22:50:47 -0400832 if (verbose) {
833 printf("fork event\n");
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200834 printf("... parent: %s/%d\n", thread__comm_str(parent), parent->tid);
835 printf("... child: %s/%d\n", thread__comm_str(child), child->tid);
David Aherncb627502013-08-07 22:50:47 -0400836 }
837
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200838 register_pid(sched, parent->tid, thread__comm_str(parent));
839 register_pid(sched, child->tid, thread__comm_str(child));
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300840out_put:
841 thread__put(child);
842 thread__put(parent);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300843 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200844}
845
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200846struct sort_dimension {
847 const char *name;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200848 sort_fn_t cmp;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200849 struct list_head list;
850};
851
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200852static int
mingo39aeb522009-09-14 20:04:48 +0200853thread_lat_cmp(struct list_head *list, struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200854{
855 struct sort_dimension *sort;
856 int ret = 0;
857
Ingo Molnarb5fae122009-09-11 12:12:54 +0200858 BUG_ON(list_empty(list));
859
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200860 list_for_each_entry(sort, list, list) {
861 ret = sort->cmp(l, r);
862 if (ret)
863 return ret;
864 }
865
866 return ret;
867}
868
mingo39aeb522009-09-14 20:04:48 +0200869static struct work_atoms *
Ingo Molnarb5fae122009-09-11 12:12:54 +0200870thread_atoms_search(struct rb_root *root, struct thread *thread,
871 struct list_head *sort_list)
872{
873 struct rb_node *node = root->rb_node;
mingo39aeb522009-09-14 20:04:48 +0200874 struct work_atoms key = { .thread = thread };
Ingo Molnarb5fae122009-09-11 12:12:54 +0200875
876 while (node) {
mingo39aeb522009-09-14 20:04:48 +0200877 struct work_atoms *atoms;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200878 int cmp;
879
mingo39aeb522009-09-14 20:04:48 +0200880 atoms = container_of(node, struct work_atoms, node);
Ingo Molnarb5fae122009-09-11 12:12:54 +0200881
882 cmp = thread_lat_cmp(sort_list, &key, atoms);
883 if (cmp > 0)
884 node = node->rb_left;
885 else if (cmp < 0)
886 node = node->rb_right;
887 else {
888 BUG_ON(thread != atoms->thread);
889 return atoms;
890 }
891 }
892 return NULL;
893}
894
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200895static void
mingo39aeb522009-09-14 20:04:48 +0200896__thread_latency_insert(struct rb_root *root, struct work_atoms *data,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200897 struct list_head *sort_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200898{
899 struct rb_node **new = &(root->rb_node), *parent = NULL;
900
901 while (*new) {
mingo39aeb522009-09-14 20:04:48 +0200902 struct work_atoms *this;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200903 int cmp;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200904
mingo39aeb522009-09-14 20:04:48 +0200905 this = container_of(*new, struct work_atoms, node);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200906 parent = *new;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200907
908 cmp = thread_lat_cmp(sort_list, data, this);
909
910 if (cmp > 0)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200911 new = &((*new)->rb_left);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200912 else
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200913 new = &((*new)->rb_right);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200914 }
915
916 rb_link_node(&data->node, parent, new);
917 rb_insert_color(&data->node, root);
918}
919
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300920static int thread_atoms_insert(struct perf_sched *sched, struct thread *thread)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200921{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200922 struct work_atoms *atoms = zalloc(sizeof(*atoms));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300923 if (!atoms) {
924 pr_err("No memory at %s\n", __func__);
925 return -1;
926 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200927
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300928 atoms->thread = thread__get(thread);
mingo39aeb522009-09-14 20:04:48 +0200929 INIT_LIST_HEAD(&atoms->work_list);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300930 __thread_latency_insert(&sched->atom_root, atoms, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300931 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200932}
933
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300934static char sched_out_state(u64 prev_state)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200935{
936 const char *str = TASK_STATE_TO_CHAR_STR;
937
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300938 return str[prev_state];
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200939}
940
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300941static int
mingo39aeb522009-09-14 20:04:48 +0200942add_sched_out_event(struct work_atoms *atoms,
943 char run_state,
944 u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200945{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200946 struct work_atom *atom = zalloc(sizeof(*atom));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300947 if (!atom) {
948 pr_err("Non memory at %s", __func__);
949 return -1;
950 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200951
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200952 atom->sched_out_time = timestamp;
953
mingo39aeb522009-09-14 20:04:48 +0200954 if (run_state == 'R') {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200955 atom->state = THREAD_WAIT_CPU;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200956 atom->wake_up_time = atom->sched_out_time;
Frederic Weisbeckerc6ced612009-09-13 00:46:19 +0200957 }
958
mingo39aeb522009-09-14 20:04:48 +0200959 list_add_tail(&atom->list, &atoms->work_list);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300960 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200961}
962
963static void
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300964add_runtime_event(struct work_atoms *atoms, u64 delta,
965 u64 timestamp __maybe_unused)
mingo39aeb522009-09-14 20:04:48 +0200966{
967 struct work_atom *atom;
968
969 BUG_ON(list_empty(&atoms->work_list));
970
971 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
972
973 atom->runtime += delta;
974 atoms->total_runtime += delta;
975}
976
977static void
978add_sched_in_event(struct work_atoms *atoms, u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200979{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200980 struct work_atom *atom;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200981 u64 delta;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200982
mingo39aeb522009-09-14 20:04:48 +0200983 if (list_empty(&atoms->work_list))
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200984 return;
985
mingo39aeb522009-09-14 20:04:48 +0200986 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200987
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200988 if (atom->state != THREAD_WAIT_CPU)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200989 return;
990
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200991 if (timestamp < atom->wake_up_time) {
992 atom->state = THREAD_IGNORE;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200993 return;
994 }
995
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200996 atom->state = THREAD_SCHED_IN;
997 atom->sched_in_time = timestamp;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200998
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200999 delta = atom->sched_in_time - atom->wake_up_time;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001000 atoms->total_lat += delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001001 if (delta > atoms->max_lat) {
Frederic Weisbecker66685672009-09-13 01:56:25 +02001002 atoms->max_lat = delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001003 atoms->max_lat_at = timestamp;
1004 }
Frederic Weisbecker66685672009-09-13 01:56:25 +02001005 atoms->nb_atoms++;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001006}
1007
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001008static int latency_switch_event(struct perf_sched *sched,
1009 struct perf_evsel *evsel,
1010 struct perf_sample *sample,
1011 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001012{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001013 const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
1014 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
1015 const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state");
mingo39aeb522009-09-14 20:04:48 +02001016 struct work_atoms *out_events, *in_events;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001017 struct thread *sched_out, *sched_in;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001018 u64 timestamp0, timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001019 int cpu = sample->cpu, err = -1;
Ingo Molnarea92ed52009-09-12 10:08:34 +02001020 s64 delta;
1021
mingo39aeb522009-09-14 20:04:48 +02001022 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
Ingo Molnarea92ed52009-09-12 10:08:34 +02001023
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001024 timestamp0 = sched->cpu_last_switched[cpu];
1025 sched->cpu_last_switched[cpu] = timestamp;
Ingo Molnarea92ed52009-09-12 10:08:34 +02001026 if (timestamp0)
1027 delta = timestamp - timestamp0;
1028 else
1029 delta = 0;
1030
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001031 if (delta < 0) {
1032 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
1033 return -1;
1034 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001035
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001036 sched_out = machine__findnew_thread(machine, -1, prev_pid);
1037 sched_in = machine__findnew_thread(machine, -1, next_pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001038 if (sched_out == NULL || sched_in == NULL)
1039 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001040
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001041 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +02001042 if (!out_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001043 if (thread_atoms_insert(sched, sched_out))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001044 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001045 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001046 if (!out_events) {
1047 pr_err("out-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001048 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001049 }
mingo39aeb522009-09-14 20:04:48 +02001050 }
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001051 if (add_sched_out_event(out_events, sched_out_state(prev_state), timestamp))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001052 return -1;
mingo39aeb522009-09-14 20:04:48 +02001053
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001054 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +02001055 if (!in_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001056 if (thread_atoms_insert(sched, sched_in))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001057 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001058 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001059 if (!in_events) {
1060 pr_err("in-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001061 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001062 }
mingo39aeb522009-09-14 20:04:48 +02001063 /*
1064 * Take came in we have not heard about yet,
1065 * add in an initial atom in runnable state:
1066 */
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001067 if (add_sched_out_event(in_events, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001068 goto out_put;
mingo39aeb522009-09-14 20:04:48 +02001069 }
1070 add_sched_in_event(in_events, timestamp);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001071 err = 0;
1072out_put:
1073 thread__put(sched_out);
1074 thread__put(sched_in);
1075 return err;
mingo39aeb522009-09-14 20:04:48 +02001076}
1077
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001078static int latency_runtime_event(struct perf_sched *sched,
1079 struct perf_evsel *evsel,
1080 struct perf_sample *sample,
1081 struct machine *machine)
mingo39aeb522009-09-14 20:04:48 +02001082{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001083 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
1084 const u64 runtime = perf_evsel__intval(evsel, sample, "runtime");
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001085 struct thread *thread = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001086 struct work_atoms *atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001087 u64 timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001088 int cpu = sample->cpu, err = -1;
1089
1090 if (thread == NULL)
1091 return -1;
mingo39aeb522009-09-14 20:04:48 +02001092
1093 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
mingo39aeb522009-09-14 20:04:48 +02001094 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001095 if (thread_atoms_insert(sched, thread))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001096 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001097 atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001098 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001099 pr_err("in-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001100 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001101 }
1102 if (add_sched_out_event(atoms, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001103 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001104 }
1105
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001106 add_runtime_event(atoms, runtime, timestamp);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001107 err = 0;
1108out_put:
1109 thread__put(thread);
1110 return err;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001111}
1112
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001113static int latency_wakeup_event(struct perf_sched *sched,
1114 struct perf_evsel *evsel,
1115 struct perf_sample *sample,
1116 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001117{
Peter Zijlstra0680ee72014-05-12 20:19:46 +02001118 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
mingo39aeb522009-09-14 20:04:48 +02001119 struct work_atoms *atoms;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001120 struct work_atom *atom;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001121 struct thread *wakee;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001122 u64 timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001123 int err = -1;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001124
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001125 wakee = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001126 if (wakee == NULL)
1127 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001128 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Frederic Weisbecker17562202009-09-12 23:11:32 +02001129 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001130 if (thread_atoms_insert(sched, wakee))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001131 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001132 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001133 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001134 pr_err("wakeup-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001135 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001136 }
1137 if (add_sched_out_event(atoms, 'S', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001138 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001139 }
1140
mingo39aeb522009-09-14 20:04:48 +02001141 BUG_ON(list_empty(&atoms->work_list));
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001142
mingo39aeb522009-09-14 20:04:48 +02001143 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001144
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001145 /*
Dongsheng Yang67d62592014-05-13 10:38:21 +09001146 * As we do not guarantee the wakeup event happens when
1147 * task is out of run queue, also may happen when task is
1148 * on run queue and wakeup only change ->state to TASK_RUNNING,
1149 * then we should not set the ->wake_up_time when wake up a
1150 * task which is on run queue.
1151 *
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001152 * You WILL be missing events if you've recorded only
1153 * one CPU, or are only looking at only one, so don't
Dongsheng Yang67d62592014-05-13 10:38:21 +09001154 * skip in this case.
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001155 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001156 if (sched->profile_cpu == -1 && atom->state != THREAD_SLEEPING)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001157 goto out_ok;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001158
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001159 sched->nr_timestamps++;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001160 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 goto out_ok;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001163 }
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001164
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001165 atom->state = THREAD_WAIT_CPU;
1166 atom->wake_up_time = timestamp;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001167out_ok:
1168 err = 0;
1169out_put:
1170 thread__put(wakee);
1171 return err;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001172}
1173
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001174static int latency_migrate_task_event(struct perf_sched *sched,
1175 struct perf_evsel *evsel,
1176 struct perf_sample *sample,
1177 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001178{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001179 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001180 u64 timestamp = sample->time;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001181 struct work_atoms *atoms;
1182 struct work_atom *atom;
1183 struct thread *migrant;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001184 int err = -1;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001185
1186 /*
1187 * Only need to worry about migration when profiling one CPU.
1188 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001189 if (sched->profile_cpu == -1)
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001190 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001191
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001192 migrant = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001193 if (migrant == NULL)
1194 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001195 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001196 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001197 if (thread_atoms_insert(sched, migrant))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001198 goto out_put;
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001199 register_pid(sched, migrant->tid, thread__comm_str(migrant));
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001200 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001201 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001202 pr_err("migration-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001203 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001204 }
1205 if (add_sched_out_event(atoms, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001206 goto out_put;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001207 }
1208
1209 BUG_ON(list_empty(&atoms->work_list));
1210
1211 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1212 atom->sched_in_time = atom->sched_out_time = atom->wake_up_time = timestamp;
1213
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001214 sched->nr_timestamps++;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001215
1216 if (atom->sched_out_time > timestamp)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001217 sched->nr_unordered_timestamps++;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001218 err = 0;
1219out_put:
1220 thread__put(migrant);
1221 return err;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001222}
1223
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001224static void output_lat_thread(struct perf_sched *sched, struct work_atoms *work_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001225{
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001226 int i;
1227 int ret;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001228 u64 avg;
Namhyung Kim99620a52016-10-24 11:02:45 +09001229 char max_lat_at[32];
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001230
mingo39aeb522009-09-14 20:04:48 +02001231 if (!work_list->nb_atoms)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001232 return;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001233 /*
1234 * Ignore idle threads:
1235 */
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001236 if (!strcmp(thread__comm_str(work_list->thread), "swapper"))
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001237 return;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001238
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001239 sched->all_runtime += work_list->total_runtime;
1240 sched->all_count += work_list->nb_atoms;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001241
Josef Bacik2f80dd42015-05-22 09:18:40 -04001242 if (work_list->num_merged > 1)
1243 ret = printf(" %s:(%d) ", thread__comm_str(work_list->thread), work_list->num_merged);
1244 else
1245 ret = printf(" %s:%d ", thread__comm_str(work_list->thread), work_list->thread->tid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001246
mingo08f69e62009-09-14 18:30:44 +02001247 for (i = 0; i < 24 - ret; i++)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001248 printf(" ");
1249
mingo39aeb522009-09-14 20:04:48 +02001250 avg = work_list->total_lat / work_list->nb_atoms;
Namhyung Kim99620a52016-10-24 11:02:45 +09001251 timestamp__scnprintf_usec(work_list->max_lat_at, max_lat_at, sizeof(max_lat_at));
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001252
Namhyung Kim99620a52016-10-24 11:02:45 +09001253 printf("|%11.3f ms |%9" PRIu64 " | avg:%9.3f ms | max:%9.3f ms | max at: %13s s\n",
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -03001254 (double)work_list->total_runtime / NSEC_PER_MSEC,
1255 work_list->nb_atoms, (double)avg / NSEC_PER_MSEC,
1256 (double)work_list->max_lat / NSEC_PER_MSEC,
Namhyung Kim99620a52016-10-24 11:02:45 +09001257 max_lat_at);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001258}
1259
mingo39aeb522009-09-14 20:04:48 +02001260static int pid_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001261{
Jiri Olsa0014de12015-11-02 12:10:25 +01001262 if (l->thread == r->thread)
1263 return 0;
Adrian Hunter38051232013-07-04 16:20:31 +03001264 if (l->thread->tid < r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001265 return -1;
Adrian Hunter38051232013-07-04 16:20:31 +03001266 if (l->thread->tid > r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001267 return 1;
Jiri Olsa0014de12015-11-02 12:10:25 +01001268 return (int)(l->thread - r->thread);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001269}
1270
mingo39aeb522009-09-14 20:04:48 +02001271static int avg_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001272{
1273 u64 avgl, avgr;
1274
1275 if (!l->nb_atoms)
1276 return -1;
1277
1278 if (!r->nb_atoms)
1279 return 1;
1280
1281 avgl = l->total_lat / l->nb_atoms;
1282 avgr = r->total_lat / r->nb_atoms;
1283
1284 if (avgl < avgr)
1285 return -1;
1286 if (avgl > avgr)
1287 return 1;
1288
1289 return 0;
1290}
1291
mingo39aeb522009-09-14 20:04:48 +02001292static int max_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001293{
1294 if (l->max_lat < r->max_lat)
1295 return -1;
1296 if (l->max_lat > r->max_lat)
1297 return 1;
1298
1299 return 0;
1300}
1301
mingo39aeb522009-09-14 20:04:48 +02001302static int switch_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001303{
1304 if (l->nb_atoms < r->nb_atoms)
1305 return -1;
1306 if (l->nb_atoms > r->nb_atoms)
1307 return 1;
1308
1309 return 0;
1310}
1311
mingo39aeb522009-09-14 20:04:48 +02001312static int runtime_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001313{
1314 if (l->total_runtime < r->total_runtime)
1315 return -1;
1316 if (l->total_runtime > r->total_runtime)
1317 return 1;
1318
1319 return 0;
1320}
1321
Randy Dunlapcbef79a2009-10-05 13:17:29 -07001322static int sort_dimension__add(const char *tok, struct list_head *list)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001323{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001324 size_t i;
1325 static struct sort_dimension avg_sort_dimension = {
1326 .name = "avg",
1327 .cmp = avg_cmp,
1328 };
1329 static struct sort_dimension max_sort_dimension = {
1330 .name = "max",
1331 .cmp = max_cmp,
1332 };
1333 static struct sort_dimension pid_sort_dimension = {
1334 .name = "pid",
1335 .cmp = pid_cmp,
1336 };
1337 static struct sort_dimension runtime_sort_dimension = {
1338 .name = "runtime",
1339 .cmp = runtime_cmp,
1340 };
1341 static struct sort_dimension switch_sort_dimension = {
1342 .name = "switch",
1343 .cmp = switch_cmp,
1344 };
1345 struct sort_dimension *available_sorts[] = {
1346 &pid_sort_dimension,
1347 &avg_sort_dimension,
1348 &max_sort_dimension,
1349 &switch_sort_dimension,
1350 &runtime_sort_dimension,
1351 };
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001352
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001353 for (i = 0; i < ARRAY_SIZE(available_sorts); i++) {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001354 if (!strcmp(available_sorts[i]->name, tok)) {
1355 list_add_tail(&available_sorts[i]->list, list);
1356
1357 return 0;
1358 }
1359 }
1360
1361 return -1;
1362}
1363
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001364static void perf_sched__sort_lat(struct perf_sched *sched)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001365{
1366 struct rb_node *node;
Josef Bacik2f80dd42015-05-22 09:18:40 -04001367 struct rb_root *root = &sched->atom_root;
1368again:
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001369 for (;;) {
mingo39aeb522009-09-14 20:04:48 +02001370 struct work_atoms *data;
Josef Bacik2f80dd42015-05-22 09:18:40 -04001371 node = rb_first(root);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001372 if (!node)
1373 break;
1374
Josef Bacik2f80dd42015-05-22 09:18:40 -04001375 rb_erase(node, root);
mingo39aeb522009-09-14 20:04:48 +02001376 data = rb_entry(node, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001377 __thread_latency_insert(&sched->sorted_atom_root, data, &sched->sort_list);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001378 }
Josef Bacik2f80dd42015-05-22 09:18:40 -04001379 if (root == &sched->atom_root) {
1380 root = &sched->merged_atom_root;
1381 goto again;
1382 }
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001383}
1384
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001385static int process_sched_wakeup_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001386 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001387 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001388 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001389{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001390 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001391
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001392 if (sched->tp_handler->wakeup_event)
1393 return sched->tp_handler->wakeup_event(sched, evsel, sample, machine);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001394
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001395 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001396}
1397
Jiri Olsaa151a372016-04-12 15:29:29 +02001398union map_priv {
1399 void *ptr;
1400 bool color;
1401};
1402
1403static bool thread__has_color(struct thread *thread)
1404{
1405 union map_priv priv = {
1406 .ptr = thread__priv(thread),
1407 };
1408
1409 return priv.color;
1410}
1411
1412static struct thread*
1413map__findnew_thread(struct perf_sched *sched, struct machine *machine, pid_t pid, pid_t tid)
1414{
1415 struct thread *thread = machine__findnew_thread(machine, pid, tid);
1416 union map_priv priv = {
1417 .color = false,
1418 };
1419
1420 if (!sched->map.color_pids || !thread || thread__priv(thread))
1421 return thread;
1422
1423 if (thread_map__has(sched->map.color_pids, tid))
1424 priv.color = true;
1425
1426 thread__set_priv(thread, priv.ptr);
1427 return thread;
1428}
1429
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001430static int map_switch_event(struct perf_sched *sched, struct perf_evsel *evsel,
1431 struct perf_sample *sample, struct machine *machine)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001432{
Dongsheng Yang9d372ca2014-05-16 14:37:05 +09001433 const u32 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
1434 struct thread *sched_in;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001435 int new_shortname;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001436 u64 timestamp0, timestamp = sample->time;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001437 s64 delta;
Jiri Olsa99623c62016-04-12 15:29:26 +02001438 int i, this_cpu = sample->cpu;
1439 int cpus_nr;
1440 bool new_cpu = false;
Jiri Olsa8cd91192016-04-12 15:29:27 +02001441 const char *color = PERF_COLOR_NORMAL;
Namhyung Kim99620a52016-10-24 11:02:45 +09001442 char stimestamp[32];
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001443
1444 BUG_ON(this_cpu >= MAX_CPUS || this_cpu < 0);
1445
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001446 if (this_cpu > sched->max_cpu)
1447 sched->max_cpu = this_cpu;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001448
Jiri Olsa99623c62016-04-12 15:29:26 +02001449 if (sched->map.comp) {
1450 cpus_nr = bitmap_weight(sched->map.comp_cpus_mask, MAX_CPUS);
1451 if (!test_and_set_bit(this_cpu, sched->map.comp_cpus_mask)) {
1452 sched->map.comp_cpus[cpus_nr++] = this_cpu;
1453 new_cpu = true;
1454 }
1455 } else
1456 cpus_nr = sched->max_cpu;
1457
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001458 timestamp0 = sched->cpu_last_switched[this_cpu];
1459 sched->cpu_last_switched[this_cpu] = timestamp;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001460 if (timestamp0)
1461 delta = timestamp - timestamp0;
1462 else
1463 delta = 0;
1464
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001465 if (delta < 0) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001466 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001467 return -1;
1468 }
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001469
Jiri Olsaa151a372016-04-12 15:29:29 +02001470 sched_in = map__findnew_thread(sched, machine, -1, next_pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001471 if (sched_in == NULL)
1472 return -1;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001473
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001474 sched->curr_thread[this_cpu] = thread__get(sched_in);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001475
1476 printf(" ");
1477
1478 new_shortname = 0;
1479 if (!sched_in->shortname[0]) {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001480 if (!strcmp(thread__comm_str(sched_in), "swapper")) {
1481 /*
1482 * Don't allocate a letter-number for swapper:0
1483 * as a shortname. Instead, we use '.' for it.
1484 */
1485 sched_in->shortname[0] = '.';
1486 sched_in->shortname[1] = ' ';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001487 } else {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001488 sched_in->shortname[0] = sched->next_shortname1;
1489 sched_in->shortname[1] = sched->next_shortname2;
1490
1491 if (sched->next_shortname1 < 'Z') {
1492 sched->next_shortname1++;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001493 } else {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001494 sched->next_shortname1 = 'A';
1495 if (sched->next_shortname2 < '9')
1496 sched->next_shortname2++;
1497 else
1498 sched->next_shortname2 = '0';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001499 }
1500 }
1501 new_shortname = 1;
1502 }
1503
Jiri Olsa99623c62016-04-12 15:29:26 +02001504 for (i = 0; i < cpus_nr; i++) {
1505 int cpu = sched->map.comp ? sched->map.comp_cpus[i] : i;
Jiri Olsaa151a372016-04-12 15:29:29 +02001506 struct thread *curr_thread = sched->curr_thread[cpu];
1507 const char *pid_color = color;
Jiri Olsacf294f22016-04-12 15:29:30 +02001508 const char *cpu_color = color;
Jiri Olsaa151a372016-04-12 15:29:29 +02001509
1510 if (curr_thread && thread__has_color(curr_thread))
1511 pid_color = COLOR_PIDS;
Jiri Olsa99623c62016-04-12 15:29:26 +02001512
Jiri Olsa73643bb2016-04-12 15:29:31 +02001513 if (sched->map.cpus && !cpu_map__has(sched->map.cpus, cpu))
1514 continue;
1515
Jiri Olsacf294f22016-04-12 15:29:30 +02001516 if (sched->map.color_cpus && cpu_map__has(sched->map.color_cpus, cpu))
1517 cpu_color = COLOR_CPUS;
1518
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001519 if (cpu != this_cpu)
Namhyung Kim1208bb22016-10-24 11:02:43 +09001520 color_fprintf(stdout, color, " ");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001521 else
Jiri Olsacf294f22016-04-12 15:29:30 +02001522 color_fprintf(stdout, cpu_color, "*");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001523
Dongsheng6bcab4e2014-05-06 14:39:01 +09001524 if (sched->curr_thread[cpu])
Jiri Olsaa151a372016-04-12 15:29:29 +02001525 color_fprintf(stdout, pid_color, "%2s ", sched->curr_thread[cpu]->shortname);
Dongsheng6bcab4e2014-05-06 14:39:01 +09001526 else
Jiri Olsa8cd91192016-04-12 15:29:27 +02001527 color_fprintf(stdout, color, " ");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001528 }
1529
Jiri Olsa73643bb2016-04-12 15:29:31 +02001530 if (sched->map.cpus && !cpu_map__has(sched->map.cpus, this_cpu))
1531 goto out;
1532
Namhyung Kim99620a52016-10-24 11:02:45 +09001533 timestamp__scnprintf_usec(timestamp, stimestamp, sizeof(stimestamp));
1534 color_fprintf(stdout, color, " %12s secs ", stimestamp);
Namhyung Kime107f122016-10-24 11:02:44 +09001535 if (new_shortname || (verbose && sched_in->tid)) {
Jiri Olsaa151a372016-04-12 15:29:29 +02001536 const char *pid_color = color;
1537
1538 if (thread__has_color(sched_in))
1539 pid_color = COLOR_PIDS;
1540
1541 color_fprintf(stdout, pid_color, "%s => %s:%d",
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001542 sched_in->shortname, thread__comm_str(sched_in), sched_in->tid);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001543 }
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001544
Jiri Olsa99623c62016-04-12 15:29:26 +02001545 if (sched->map.comp && new_cpu)
Jiri Olsa8cd91192016-04-12 15:29:27 +02001546 color_fprintf(stdout, color, " (CPU %d)", this_cpu);
Jiri Olsa99623c62016-04-12 15:29:26 +02001547
Jiri Olsa73643bb2016-04-12 15:29:31 +02001548out:
Jiri Olsa8cd91192016-04-12 15:29:27 +02001549 color_fprintf(stdout, color, "\n");
Jiri Olsa99623c62016-04-12 15:29:26 +02001550
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001551 thread__put(sched_in);
1552
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001553 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001554}
1555
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001556static int process_sched_switch_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001557 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001558 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001559 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001560{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001561 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001562 int this_cpu = sample->cpu, err = 0;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001563 u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
1564 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001565
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001566 if (sched->curr_pid[this_cpu] != (u32)-1) {
Ingo Molnarc8a37752009-09-16 14:07:00 +02001567 /*
1568 * Are we trying to switch away a PID that is
1569 * not current?
1570 */
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001571 if (sched->curr_pid[this_cpu] != prev_pid)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001572 sched->nr_context_switch_bugs++;
Ingo Molnarc8a37752009-09-16 14:07:00 +02001573 }
Ingo Molnarc8a37752009-09-16 14:07:00 +02001574
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001575 if (sched->tp_handler->switch_event)
1576 err = sched->tp_handler->switch_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001577
1578 sched->curr_pid[this_cpu] = next_pid;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001579 return err;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001580}
1581
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001582static int process_sched_runtime_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001583 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001584 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001585 struct machine *machine)
mingo39aeb522009-09-14 20:04:48 +02001586{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001587 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
mingo39aeb522009-09-14 20:04:48 +02001588
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001589 if (sched->tp_handler->runtime_event)
1590 return sched->tp_handler->runtime_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001591
1592 return 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001593}
1594
David Aherncb627502013-08-07 22:50:47 -04001595static int perf_sched__process_fork_event(struct perf_tool *tool,
1596 union perf_event *event,
1597 struct perf_sample *sample,
1598 struct machine *machine)
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001599{
1600 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
1601
David Aherncb627502013-08-07 22:50:47 -04001602 /* run the fork event through the perf machineruy */
1603 perf_event__process_fork(tool, event, sample, machine);
1604
1605 /* and then run additional processing needed for this command */
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001606 if (sched->tp_handler->fork_event)
David Aherncb627502013-08-07 22:50:47 -04001607 return sched->tp_handler->fork_event(sched, event, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001608
1609 return 0;
1610}
1611
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001612static int process_sched_migrate_task_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001613 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001614 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001615 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001616{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001617 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001618
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001619 if (sched->tp_handler->migrate_task_event)
1620 return sched->tp_handler->migrate_task_event(sched, evsel, sample, machine);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001621
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001622 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001623}
1624
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001625typedef int (*tracepoint_handler)(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001626 struct perf_evsel *evsel,
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001627 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001628 struct machine *machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001629
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001630static int perf_sched__process_tracepoint_sample(struct perf_tool *tool __maybe_unused,
1631 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001632 struct perf_sample *sample,
1633 struct perf_evsel *evsel,
1634 struct machine *machine)
Ingo Molnarec156762009-09-11 12:12:54 +02001635{
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001636 int err = 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001637
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001638 if (evsel->handler != NULL) {
1639 tracepoint_handler f = evsel->handler;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001640 err = f(tool, evsel, sample, machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001641 }
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001642
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001643 return err;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001644}
1645
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001646static int perf_sched__read_events(struct perf_sched *sched)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001647{
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001648 const struct perf_evsel_str_handler handlers[] = {
1649 { "sched:sched_switch", process_sched_switch_event, },
1650 { "sched:sched_stat_runtime", process_sched_runtime_event, },
1651 { "sched:sched_wakeup", process_sched_wakeup_event, },
1652 { "sched:sched_wakeup_new", process_sched_wakeup_event, },
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001653 { "sched:sched_migrate_task", process_sched_migrate_task_event, },
1654 };
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001655 struct perf_session *session;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001656 struct perf_data_file file = {
1657 .path = input_name,
1658 .mode = PERF_DATA_MODE_READ,
Yunlong Songf0dd3302015-03-31 21:46:35 +08001659 .force = sched->force,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001660 };
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001661 int rc = -1;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001662
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001663 session = perf_session__new(&file, false, &sched->tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001664 if (session == NULL) {
1665 pr_debug("No Memory for session\n");
1666 return -1;
1667 }
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02001668
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001669 symbol__init(&session->header.env);
Namhyung Kim04934102014-08-12 15:40:41 +09001670
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001671 if (perf_session__set_tracepoints_handlers(session, handlers))
1672 goto out_delete;
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001673
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001674 if (perf_session__has_traces(session, "record -R")) {
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001675 int err = perf_session__process_events(session);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001676 if (err) {
1677 pr_err("Failed to process events, error %d", err);
1678 goto out_delete;
1679 }
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001680
Arnaldo Carvalho de Melo75be9892015-02-14 14:50:11 -03001681 sched->nr_events = session->evlist->stats.nr_events[0];
1682 sched->nr_lost_events = session->evlist->stats.total_lost;
1683 sched->nr_lost_chunks = session->evlist->stats.nr_events[PERF_RECORD_LOST];
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001684 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -02001685
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001686 rc = 0;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001687out_delete:
1688 perf_session__delete(session);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001689 return rc;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001690}
1691
David Ahern49394a22016-11-16 15:06:29 +09001692/*
1693 * scheduling times are printed as msec.usec
1694 */
1695static inline void print_sched_time(unsigned long long nsecs, int width)
1696{
1697 unsigned long msecs;
1698 unsigned long usecs;
1699
1700 msecs = nsecs / NSEC_PER_MSEC;
1701 nsecs -= msecs * NSEC_PER_MSEC;
1702 usecs = nsecs / NSEC_PER_USEC;
1703 printf("%*lu.%03lu ", width, msecs, usecs);
1704}
1705
1706/*
1707 * returns runtime data for event, allocating memory for it the
1708 * first time it is used.
1709 */
1710static struct evsel_runtime *perf_evsel__get_runtime(struct perf_evsel *evsel)
1711{
1712 struct evsel_runtime *r = evsel->priv;
1713
1714 if (r == NULL) {
1715 r = zalloc(sizeof(struct evsel_runtime));
1716 evsel->priv = r;
1717 }
1718
1719 return r;
1720}
1721
1722/*
1723 * save last time event was seen per cpu
1724 */
1725static void perf_evsel__save_time(struct perf_evsel *evsel,
1726 u64 timestamp, u32 cpu)
1727{
1728 struct evsel_runtime *r = perf_evsel__get_runtime(evsel);
1729
1730 if (r == NULL)
1731 return;
1732
1733 if ((cpu >= r->ncpu) || (r->last_time == NULL)) {
1734 int i, n = __roundup_pow_of_two(cpu+1);
1735 void *p = r->last_time;
1736
1737 p = realloc(r->last_time, n * sizeof(u64));
1738 if (!p)
1739 return;
1740
1741 r->last_time = p;
1742 for (i = r->ncpu; i < n; ++i)
1743 r->last_time[i] = (u64) 0;
1744
1745 r->ncpu = n;
1746 }
1747
1748 r->last_time[cpu] = timestamp;
1749}
1750
1751/* returns last time this event was seen on the given cpu */
1752static u64 perf_evsel__get_time(struct perf_evsel *evsel, u32 cpu)
1753{
1754 struct evsel_runtime *r = perf_evsel__get_runtime(evsel);
1755
1756 if ((r == NULL) || (r->last_time == NULL) || (cpu >= r->ncpu))
1757 return 0;
1758
1759 return r->last_time[cpu];
1760}
1761
1762static int comm_width = 20;
1763
1764static char *timehist_get_commstr(struct thread *thread)
1765{
1766 static char str[32];
1767 const char *comm = thread__comm_str(thread);
1768 pid_t tid = thread->tid;
1769 pid_t pid = thread->pid_;
1770 int n;
1771
1772 if (pid == 0)
1773 n = scnprintf(str, sizeof(str), "%s", comm);
1774
1775 else if (tid != pid)
1776 n = scnprintf(str, sizeof(str), "%s[%d/%d]", comm, tid, pid);
1777
1778 else
1779 n = scnprintf(str, sizeof(str), "%s[%d]", comm, tid);
1780
1781 if (n > comm_width)
1782 comm_width = n;
1783
1784 return str;
1785}
1786
David Aherna407b062016-11-16 15:06:33 +09001787static void timehist_header(struct perf_sched *sched)
David Ahern49394a22016-11-16 15:06:29 +09001788{
David Aherna407b062016-11-16 15:06:33 +09001789 u32 ncpus = sched->max_cpu + 1;
1790 u32 i, j;
1791
David Ahern49394a22016-11-16 15:06:29 +09001792 printf("%15s %6s ", "time", "cpu");
1793
David Aherna407b062016-11-16 15:06:33 +09001794 if (sched->show_cpu_visual) {
1795 printf(" ");
1796 for (i = 0, j = 0; i < ncpus; ++i) {
1797 printf("%x", j++);
1798 if (j > 15)
1799 j = 0;
1800 }
1801 printf(" ");
1802 }
1803
David Ahern49394a22016-11-16 15:06:29 +09001804 printf(" %-20s %9s %9s %9s",
1805 "task name", "wait time", "sch delay", "run time");
1806
1807 printf("\n");
1808
1809 /*
1810 * units row
1811 */
1812 printf("%15s %-6s ", "", "");
1813
David Aherna407b062016-11-16 15:06:33 +09001814 if (sched->show_cpu_visual)
1815 printf(" %*s ", ncpus, "");
1816
David Ahern49394a22016-11-16 15:06:29 +09001817 printf(" %-20s %9s %9s %9s\n", "[tid/pid]", "(msec)", "(msec)", "(msec)");
1818
1819 /*
1820 * separator
1821 */
1822 printf("%.15s %.6s ", graph_dotted_line, graph_dotted_line);
1823
David Aherna407b062016-11-16 15:06:33 +09001824 if (sched->show_cpu_visual)
1825 printf(" %.*s ", ncpus, graph_dotted_line);
1826
David Ahern49394a22016-11-16 15:06:29 +09001827 printf(" %.20s %.9s %.9s %.9s",
1828 graph_dotted_line, graph_dotted_line, graph_dotted_line,
1829 graph_dotted_line);
1830
1831 printf("\n");
1832}
1833
David Ahernfc1469f2016-11-16 15:06:31 +09001834static void timehist_print_sample(struct perf_sched *sched,
1835 struct perf_sample *sample,
David Ahern6c973c92016-11-16 15:06:32 +09001836 struct addr_location *al,
David Ahern49394a22016-11-16 15:06:29 +09001837 struct thread *thread)
1838{
1839 struct thread_runtime *tr = thread__priv(thread);
David Aherna407b062016-11-16 15:06:33 +09001840 u32 max_cpus = sched->max_cpu + 1;
David Ahern49394a22016-11-16 15:06:29 +09001841 char tstr[64];
1842
1843 timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr));
1844 printf("%15s [%04d] ", tstr, sample->cpu);
1845
David Aherna407b062016-11-16 15:06:33 +09001846 if (sched->show_cpu_visual) {
1847 u32 i;
1848 char c;
1849
1850 printf(" ");
1851 for (i = 0; i < max_cpus; ++i) {
1852 /* flag idle times with 'i'; others are sched events */
1853 if (i == sample->cpu)
1854 c = (thread->tid == 0) ? 'i' : 's';
1855 else
1856 c = ' ';
1857 printf("%c", c);
1858 }
1859 printf(" ");
1860 }
1861
David Ahern49394a22016-11-16 15:06:29 +09001862 printf(" %-*s ", comm_width, timehist_get_commstr(thread));
1863
1864 print_sched_time(tr->dt_wait, 6);
1865 print_sched_time(tr->dt_delay, 6);
1866 print_sched_time(tr->dt_run, 6);
David Ahernfc1469f2016-11-16 15:06:31 +09001867
1868 if (sched->show_wakeups)
1869 printf(" %-*s", comm_width, "");
1870
David Ahern6c973c92016-11-16 15:06:32 +09001871 if (thread->tid == 0)
1872 goto out;
1873
1874 if (sched->show_callchain)
1875 printf(" ");
1876
1877 sample__fprintf_sym(sample, al, 0,
1878 EVSEL__PRINT_SYM | EVSEL__PRINT_ONELINE |
Namhyung Kim2d9bbf62016-11-24 10:11:13 +09001879 EVSEL__PRINT_CALLCHAIN_ARROW |
1880 EVSEL__PRINT_SKIP_IGNORED,
David Ahern6c973c92016-11-16 15:06:32 +09001881 &callchain_cursor, stdout);
1882
1883out:
David Ahern49394a22016-11-16 15:06:29 +09001884 printf("\n");
1885}
1886
1887/*
1888 * Explanation of delta-time stats:
1889 *
1890 * t = time of current schedule out event
1891 * tprev = time of previous sched out event
1892 * also time of schedule-in event for current task
1893 * last_time = time of last sched change event for current task
1894 * (i.e, time process was last scheduled out)
1895 * ready_to_run = time of wakeup for current task
1896 *
1897 * -----|------------|------------|------------|------
1898 * last ready tprev t
1899 * time to run
1900 *
1901 * |-------- dt_wait --------|
1902 * |- dt_delay -|-- dt_run --|
1903 *
1904 * dt_run = run time of current task
1905 * dt_wait = time between last schedule out event for task and tprev
1906 * represents time spent off the cpu
1907 * dt_delay = time between wakeup and schedule-in of task
1908 */
1909
1910static void timehist_update_runtime_stats(struct thread_runtime *r,
1911 u64 t, u64 tprev)
1912{
1913 r->dt_delay = 0;
1914 r->dt_wait = 0;
1915 r->dt_run = 0;
1916 if (tprev) {
1917 r->dt_run = t - tprev;
1918 if (r->ready_to_run) {
1919 if (r->ready_to_run > tprev)
1920 pr_debug("time travel: wakeup time for task > previous sched_switch event\n");
1921 else
1922 r->dt_delay = tprev - r->ready_to_run;
1923 }
1924
1925 if (r->last_time > tprev)
1926 pr_debug("time travel: last sched out time for task > previous sched_switch event\n");
1927 else if (r->last_time)
1928 r->dt_wait = tprev - r->last_time;
1929 }
1930
1931 update_stats(&r->run_stats, r->dt_run);
1932 r->total_run_time += r->dt_run;
1933}
1934
David Ahern6c973c92016-11-16 15:06:32 +09001935static bool is_idle_sample(struct perf_sched *sched,
1936 struct perf_sample *sample,
1937 struct perf_evsel *evsel,
1938 struct machine *machine)
David Ahern49394a22016-11-16 15:06:29 +09001939{
David Ahern6c973c92016-11-16 15:06:32 +09001940 struct thread *thread;
1941 struct callchain_cursor *cursor = &callchain_cursor;
1942
David Ahern49394a22016-11-16 15:06:29 +09001943 /* pid 0 == swapper == idle task */
1944 if (sample->pid == 0)
1945 return true;
1946
1947 if (strcmp(perf_evsel__name(evsel), "sched:sched_switch") == 0) {
1948 if (perf_evsel__intval(evsel, sample, "prev_pid") == 0)
1949 return true;
1950 }
David Ahern6c973c92016-11-16 15:06:32 +09001951
1952 /* want main thread for process - has maps */
1953 thread = machine__findnew_thread(machine, sample->pid, sample->pid);
1954 if (thread == NULL) {
1955 pr_debug("Failed to get thread for pid %d.\n", sample->pid);
1956 return false;
1957 }
1958
1959 if (!symbol_conf.use_callchain || sample->callchain == NULL)
1960 return false;
1961
1962 if (thread__resolve_callchain(thread, cursor, evsel, sample,
1963 NULL, NULL, sched->max_stack) != 0) {
1964 if (verbose)
1965 error("Failed to resolve callchain. Skipping\n");
1966
1967 return false;
1968 }
Namhyung Kimcdeb01b2016-11-24 10:11:12 +09001969
David Ahern6c973c92016-11-16 15:06:32 +09001970 callchain_cursor_commit(cursor);
Namhyung Kimcdeb01b2016-11-24 10:11:12 +09001971
1972 while (true) {
1973 struct callchain_cursor_node *node;
1974 struct symbol *sym;
1975
1976 node = callchain_cursor_current(cursor);
1977 if (node == NULL)
1978 break;
1979
1980 sym = node->sym;
1981 if (sym && sym->name) {
1982 if (!strcmp(sym->name, "schedule") ||
1983 !strcmp(sym->name, "__schedule") ||
1984 !strcmp(sym->name, "preempt_schedule"))
1985 sym->ignore = 1;
1986 }
1987
1988 callchain_cursor_advance(cursor);
1989 }
1990
David Ahern49394a22016-11-16 15:06:29 +09001991 return false;
1992}
1993
1994/*
1995 * Track idle stats per cpu by maintaining a local thread
1996 * struct for the idle task on each cpu.
1997 */
1998static int init_idle_threads(int ncpu)
1999{
2000 int i;
2001
2002 idle_threads = zalloc(ncpu * sizeof(struct thread *));
2003 if (!idle_threads)
2004 return -ENOMEM;
2005
2006 idle_max_cpu = ncpu - 1;
2007
2008 /* allocate the actual thread struct if needed */
2009 for (i = 0; i < ncpu; ++i) {
2010 idle_threads[i] = thread__new(0, 0);
2011 if (idle_threads[i] == NULL)
2012 return -ENOMEM;
2013
2014 thread__set_comm(idle_threads[i], idle_comm, 0);
2015 }
2016
2017 return 0;
2018}
2019
2020static void free_idle_threads(void)
2021{
2022 int i;
2023
2024 if (idle_threads == NULL)
2025 return;
2026
2027 for (i = 0; i <= idle_max_cpu; ++i) {
2028 if ((idle_threads[i]))
2029 thread__delete(idle_threads[i]);
2030 }
2031
2032 free(idle_threads);
2033}
2034
2035static struct thread *get_idle_thread(int cpu)
2036{
2037 /*
2038 * expand/allocate array of pointers to local thread
2039 * structs if needed
2040 */
2041 if ((cpu >= idle_max_cpu) || (idle_threads == NULL)) {
2042 int i, j = __roundup_pow_of_two(cpu+1);
2043 void *p;
2044
2045 p = realloc(idle_threads, j * sizeof(struct thread *));
2046 if (!p)
2047 return NULL;
2048
2049 idle_threads = (struct thread **) p;
2050 i = idle_max_cpu ? idle_max_cpu + 1 : 0;
2051 for (; i < j; ++i)
2052 idle_threads[i] = NULL;
2053
2054 idle_max_cpu = j;
2055 }
2056
2057 /* allocate a new thread struct if needed */
2058 if (idle_threads[cpu] == NULL) {
2059 idle_threads[cpu] = thread__new(0, 0);
2060
2061 if (idle_threads[cpu]) {
2062 idle_threads[cpu]->tid = 0;
2063 thread__set_comm(idle_threads[cpu], idle_comm, 0);
2064 }
2065 }
2066
2067 return idle_threads[cpu];
2068}
2069
2070/*
2071 * handle runtime stats saved per thread
2072 */
2073static struct thread_runtime *thread__init_runtime(struct thread *thread)
2074{
2075 struct thread_runtime *r;
2076
2077 r = zalloc(sizeof(struct thread_runtime));
2078 if (!r)
2079 return NULL;
2080
2081 init_stats(&r->run_stats);
2082 thread__set_priv(thread, r);
2083
2084 return r;
2085}
2086
2087static struct thread_runtime *thread__get_runtime(struct thread *thread)
2088{
2089 struct thread_runtime *tr;
2090
2091 tr = thread__priv(thread);
2092 if (tr == NULL) {
2093 tr = thread__init_runtime(thread);
2094 if (tr == NULL)
2095 pr_debug("Failed to malloc memory for runtime data.\n");
2096 }
2097
2098 return tr;
2099}
2100
David Ahern6c973c92016-11-16 15:06:32 +09002101static struct thread *timehist_get_thread(struct perf_sched *sched,
2102 struct perf_sample *sample,
David Ahern49394a22016-11-16 15:06:29 +09002103 struct machine *machine,
2104 struct perf_evsel *evsel)
2105{
2106 struct thread *thread;
2107
David Ahern6c973c92016-11-16 15:06:32 +09002108 if (is_idle_sample(sched, sample, evsel, machine)) {
David Ahern49394a22016-11-16 15:06:29 +09002109 thread = get_idle_thread(sample->cpu);
2110 if (thread == NULL)
2111 pr_err("Failed to get idle thread for cpu %d.\n", sample->cpu);
2112
2113 } else {
2114 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
2115 if (thread == NULL) {
2116 pr_debug("Failed to get thread for tid %d. skipping sample.\n",
2117 sample->tid);
2118 }
2119 }
2120
2121 return thread;
2122}
2123
David Ahern52df1382016-11-16 15:06:30 +09002124static bool timehist_skip_sample(struct perf_sched *sched,
2125 struct thread *thread)
David Ahern49394a22016-11-16 15:06:29 +09002126{
2127 bool rc = false;
2128
David Ahern52df1382016-11-16 15:06:30 +09002129 if (thread__is_filtered(thread)) {
David Ahern49394a22016-11-16 15:06:29 +09002130 rc = true;
David Ahern52df1382016-11-16 15:06:30 +09002131 sched->skipped_samples++;
2132 }
David Ahern49394a22016-11-16 15:06:29 +09002133
2134 return rc;
2135}
2136
David Ahernfc1469f2016-11-16 15:06:31 +09002137static void timehist_print_wakeup_event(struct perf_sched *sched,
2138 struct perf_sample *sample,
2139 struct machine *machine,
2140 struct thread *awakened)
2141{
2142 struct thread *thread;
2143 char tstr[64];
2144
2145 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
2146 if (thread == NULL)
2147 return;
2148
2149 /* show wakeup unless both awakee and awaker are filtered */
2150 if (timehist_skip_sample(sched, thread) &&
2151 timehist_skip_sample(sched, awakened)) {
2152 return;
2153 }
2154
2155 timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr));
2156 printf("%15s [%04d] ", tstr, sample->cpu);
David Aherna407b062016-11-16 15:06:33 +09002157 if (sched->show_cpu_visual)
2158 printf(" %*s ", sched->max_cpu + 1, "");
David Ahernfc1469f2016-11-16 15:06:31 +09002159
2160 printf(" %-*s ", comm_width, timehist_get_commstr(thread));
2161
2162 /* dt spacer */
2163 printf(" %9s %9s %9s ", "", "", "");
2164
2165 printf("awakened: %s", timehist_get_commstr(awakened));
2166
2167 printf("\n");
2168}
2169
2170static int timehist_sched_wakeup_event(struct perf_tool *tool,
David Ahern49394a22016-11-16 15:06:29 +09002171 union perf_event *event __maybe_unused,
2172 struct perf_evsel *evsel,
2173 struct perf_sample *sample,
2174 struct machine *machine)
2175{
David Ahernfc1469f2016-11-16 15:06:31 +09002176 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
David Ahern49394a22016-11-16 15:06:29 +09002177 struct thread *thread;
2178 struct thread_runtime *tr = NULL;
2179 /* want pid of awakened task not pid in sample */
2180 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
2181
2182 thread = machine__findnew_thread(machine, 0, pid);
2183 if (thread == NULL)
2184 return -1;
2185
2186 tr = thread__get_runtime(thread);
2187 if (tr == NULL)
2188 return -1;
2189
2190 if (tr->ready_to_run == 0)
2191 tr->ready_to_run = sample->time;
2192
David Ahernfc1469f2016-11-16 15:06:31 +09002193 /* show wakeups if requested */
2194 if (sched->show_wakeups)
2195 timehist_print_wakeup_event(sched, sample, machine, thread);
2196
David Ahern49394a22016-11-16 15:06:29 +09002197 return 0;
2198}
2199
David Ahern52df1382016-11-16 15:06:30 +09002200static int timehist_sched_change_event(struct perf_tool *tool,
David Ahern49394a22016-11-16 15:06:29 +09002201 union perf_event *event,
2202 struct perf_evsel *evsel,
2203 struct perf_sample *sample,
2204 struct machine *machine)
2205{
David Ahernfc1469f2016-11-16 15:06:31 +09002206 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
David Ahern49394a22016-11-16 15:06:29 +09002207 struct addr_location al;
2208 struct thread *thread;
2209 struct thread_runtime *tr = NULL;
2210 u64 tprev;
2211 int rc = 0;
2212
2213 if (machine__resolve(machine, &al, sample) < 0) {
2214 pr_err("problem processing %d event. skipping it\n",
2215 event->header.type);
2216 rc = -1;
2217 goto out;
2218 }
2219
David Ahern6c973c92016-11-16 15:06:32 +09002220 thread = timehist_get_thread(sched, sample, machine, evsel);
David Ahern49394a22016-11-16 15:06:29 +09002221 if (thread == NULL) {
2222 rc = -1;
2223 goto out;
2224 }
2225
David Ahern52df1382016-11-16 15:06:30 +09002226 if (timehist_skip_sample(sched, thread))
David Ahern49394a22016-11-16 15:06:29 +09002227 goto out;
2228
2229 tr = thread__get_runtime(thread);
2230 if (tr == NULL) {
2231 rc = -1;
2232 goto out;
2233 }
2234
2235 tprev = perf_evsel__get_time(evsel, sample->cpu);
2236
2237 timehist_update_runtime_stats(tr, sample->time, tprev);
David Ahern52df1382016-11-16 15:06:30 +09002238 if (!sched->summary_only)
David Ahern6c973c92016-11-16 15:06:32 +09002239 timehist_print_sample(sched, sample, &al, thread);
David Ahern49394a22016-11-16 15:06:29 +09002240
2241out:
2242 if (tr) {
2243 /* time of this sched_switch event becomes last time task seen */
2244 tr->last_time = sample->time;
2245
2246 /* sched out event for task so reset ready to run time */
2247 tr->ready_to_run = 0;
2248 }
2249
2250 perf_evsel__save_time(evsel, sample->time, sample->cpu);
2251
2252 return rc;
2253}
2254
2255static int timehist_sched_switch_event(struct perf_tool *tool,
2256 union perf_event *event,
2257 struct perf_evsel *evsel,
2258 struct perf_sample *sample,
2259 struct machine *machine __maybe_unused)
2260{
2261 return timehist_sched_change_event(tool, event, evsel, sample, machine);
2262}
2263
2264static int process_lost(struct perf_tool *tool __maybe_unused,
2265 union perf_event *event,
2266 struct perf_sample *sample,
2267 struct machine *machine __maybe_unused)
2268{
2269 char tstr[64];
2270
2271 timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr));
2272 printf("%15s ", tstr);
2273 printf("lost %" PRIu64 " events on cpu %d\n", event->lost.lost, sample->cpu);
2274
2275 return 0;
2276}
2277
2278
David Ahern52df1382016-11-16 15:06:30 +09002279static void print_thread_runtime(struct thread *t,
2280 struct thread_runtime *r)
2281{
2282 double mean = avg_stats(&r->run_stats);
2283 float stddev;
2284
2285 printf("%*s %5d %9" PRIu64 " ",
2286 comm_width, timehist_get_commstr(t), t->ppid,
2287 (u64) r->run_stats.n);
2288
2289 print_sched_time(r->total_run_time, 8);
2290 stddev = rel_stddev_stats(stddev_stats(&r->run_stats), mean);
2291 print_sched_time(r->run_stats.min, 6);
2292 printf(" ");
2293 print_sched_time((u64) mean, 6);
2294 printf(" ");
2295 print_sched_time(r->run_stats.max, 6);
2296 printf(" ");
2297 printf("%5.2f", stddev);
2298 printf("\n");
2299}
2300
2301struct total_run_stats {
2302 u64 sched_count;
2303 u64 task_count;
2304 u64 total_run_time;
2305};
2306
2307static int __show_thread_runtime(struct thread *t, void *priv)
2308{
2309 struct total_run_stats *stats = priv;
2310 struct thread_runtime *r;
2311
2312 if (thread__is_filtered(t))
2313 return 0;
2314
2315 r = thread__priv(t);
2316 if (r && r->run_stats.n) {
2317 stats->task_count++;
2318 stats->sched_count += r->run_stats.n;
2319 stats->total_run_time += r->total_run_time;
2320 print_thread_runtime(t, r);
2321 }
2322
2323 return 0;
2324}
2325
2326static int show_thread_runtime(struct thread *t, void *priv)
2327{
2328 if (t->dead)
2329 return 0;
2330
2331 return __show_thread_runtime(t, priv);
2332}
2333
2334static int show_deadthread_runtime(struct thread *t, void *priv)
2335{
2336 if (!t->dead)
2337 return 0;
2338
2339 return __show_thread_runtime(t, priv);
2340}
2341
2342static void timehist_print_summary(struct perf_sched *sched,
2343 struct perf_session *session)
2344{
2345 struct machine *m = &session->machines.host;
2346 struct total_run_stats totals;
2347 u64 task_count;
2348 struct thread *t;
2349 struct thread_runtime *r;
2350 int i;
2351
2352 memset(&totals, 0, sizeof(totals));
2353
2354 if (comm_width < 30)
2355 comm_width = 30;
2356
2357 printf("\nRuntime summary\n");
2358 printf("%*s parent sched-in ", comm_width, "comm");
2359 printf(" run-time min-run avg-run max-run stddev\n");
2360 printf("%*s (count) ", comm_width, "");
2361 printf(" (msec) (msec) (msec) (msec) %%\n");
2362 printf("%.105s\n", graph_dotted_line);
2363
2364 machine__for_each_thread(m, show_thread_runtime, &totals);
2365 task_count = totals.task_count;
2366 if (!task_count)
2367 printf("<no still running tasks>\n");
2368
2369 printf("\nTerminated tasks:\n");
2370 machine__for_each_thread(m, show_deadthread_runtime, &totals);
2371 if (task_count == totals.task_count)
2372 printf("<no terminated tasks>\n");
2373
2374 /* CPU idle stats not tracked when samples were skipped */
2375 if (sched->skipped_samples)
2376 return;
2377
2378 printf("\nIdle stats:\n");
2379 for (i = 0; i <= idle_max_cpu; ++i) {
2380 t = idle_threads[i];
2381 if (!t)
2382 continue;
2383
2384 r = thread__priv(t);
2385 if (r && r->run_stats.n) {
2386 totals.sched_count += r->run_stats.n;
2387 printf(" CPU %2d idle for ", i);
2388 print_sched_time(r->total_run_time, 6);
2389 printf(" msec\n");
2390 } else
2391 printf(" CPU %2d idle entire time window\n", i);
2392 }
2393
2394 printf("\n"
2395 " Total number of unique tasks: %" PRIu64 "\n"
2396 "Total number of context switches: %" PRIu64 "\n"
2397 " Total run time (msec): ",
2398 totals.task_count, totals.sched_count);
2399
2400 print_sched_time(totals.total_run_time, 2);
2401 printf("\n");
2402}
2403
David Ahern49394a22016-11-16 15:06:29 +09002404typedef int (*sched_handler)(struct perf_tool *tool,
2405 union perf_event *event,
2406 struct perf_evsel *evsel,
2407 struct perf_sample *sample,
2408 struct machine *machine);
2409
2410static int perf_timehist__process_sample(struct perf_tool *tool,
2411 union perf_event *event,
2412 struct perf_sample *sample,
2413 struct perf_evsel *evsel,
2414 struct machine *machine)
2415{
2416 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
2417 int err = 0;
2418 int this_cpu = sample->cpu;
2419
2420 if (this_cpu > sched->max_cpu)
2421 sched->max_cpu = this_cpu;
2422
2423 if (evsel->handler != NULL) {
2424 sched_handler f = evsel->handler;
2425
2426 err = f(tool, event, evsel, sample, machine);
2427 }
2428
2429 return err;
2430}
2431
David Ahern6c973c92016-11-16 15:06:32 +09002432static int timehist_check_attr(struct perf_sched *sched,
2433 struct perf_evlist *evlist)
2434{
2435 struct perf_evsel *evsel;
2436 struct evsel_runtime *er;
2437
2438 list_for_each_entry(evsel, &evlist->entries, node) {
2439 er = perf_evsel__get_runtime(evsel);
2440 if (er == NULL) {
2441 pr_err("Failed to allocate memory for evsel runtime data\n");
2442 return -1;
2443 }
2444
2445 if (sched->show_callchain &&
2446 !(evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN)) {
2447 pr_info("Samples do not have callchains.\n");
2448 sched->show_callchain = 0;
2449 symbol_conf.use_callchain = 0;
2450 }
2451 }
2452
2453 return 0;
2454}
2455
David Ahern49394a22016-11-16 15:06:29 +09002456static int perf_sched__timehist(struct perf_sched *sched)
2457{
2458 const struct perf_evsel_str_handler handlers[] = {
2459 { "sched:sched_switch", timehist_sched_switch_event, },
2460 { "sched:sched_wakeup", timehist_sched_wakeup_event, },
2461 { "sched:sched_wakeup_new", timehist_sched_wakeup_event, },
2462 };
2463 struct perf_data_file file = {
2464 .path = input_name,
2465 .mode = PERF_DATA_MODE_READ,
2466 };
2467
2468 struct perf_session *session;
David Ahern52df1382016-11-16 15:06:30 +09002469 struct perf_evlist *evlist;
David Ahern49394a22016-11-16 15:06:29 +09002470 int err = -1;
2471
2472 /*
2473 * event handlers for timehist option
2474 */
2475 sched->tool.sample = perf_timehist__process_sample;
2476 sched->tool.mmap = perf_event__process_mmap;
2477 sched->tool.comm = perf_event__process_comm;
2478 sched->tool.exit = perf_event__process_exit;
2479 sched->tool.fork = perf_event__process_fork;
2480 sched->tool.lost = process_lost;
2481 sched->tool.attr = perf_event__process_attr;
2482 sched->tool.tracing_data = perf_event__process_tracing_data;
2483 sched->tool.build_id = perf_event__process_build_id;
2484
2485 sched->tool.ordered_events = true;
2486 sched->tool.ordering_requires_timestamps = true;
2487
David Ahern6c973c92016-11-16 15:06:32 +09002488 symbol_conf.use_callchain = sched->show_callchain;
2489
David Ahern49394a22016-11-16 15:06:29 +09002490 session = perf_session__new(&file, false, &sched->tool);
2491 if (session == NULL)
2492 return -ENOMEM;
2493
David Ahern52df1382016-11-16 15:06:30 +09002494 evlist = session->evlist;
2495
David Ahern49394a22016-11-16 15:06:29 +09002496 symbol__init(&session->header.env);
2497
David Ahern6c973c92016-11-16 15:06:32 +09002498 if (timehist_check_attr(sched, evlist) != 0)
2499 goto out;
2500
David Ahern49394a22016-11-16 15:06:29 +09002501 setup_pager();
2502
2503 /* setup per-evsel handlers */
2504 if (perf_session__set_tracepoints_handlers(session, handlers))
2505 goto out;
2506
2507 if (!perf_session__has_traces(session, "record -R"))
2508 goto out;
2509
2510 /* pre-allocate struct for per-CPU idle stats */
2511 sched->max_cpu = session->header.env.nr_cpus_online;
2512 if (sched->max_cpu == 0)
2513 sched->max_cpu = 4;
2514 if (init_idle_threads(sched->max_cpu))
2515 goto out;
2516
David Ahern52df1382016-11-16 15:06:30 +09002517 /* summary_only implies summary option, but don't overwrite summary if set */
2518 if (sched->summary_only)
2519 sched->summary = sched->summary_only;
2520
2521 if (!sched->summary_only)
David Aherna407b062016-11-16 15:06:33 +09002522 timehist_header(sched);
David Ahern49394a22016-11-16 15:06:29 +09002523
2524 err = perf_session__process_events(session);
2525 if (err) {
2526 pr_err("Failed to process events, error %d", err);
2527 goto out;
2528 }
2529
David Ahern52df1382016-11-16 15:06:30 +09002530 sched->nr_events = evlist->stats.nr_events[0];
2531 sched->nr_lost_events = evlist->stats.total_lost;
2532 sched->nr_lost_chunks = evlist->stats.nr_events[PERF_RECORD_LOST];
2533
2534 if (sched->summary)
2535 timehist_print_summary(sched, session);
2536
David Ahern49394a22016-11-16 15:06:29 +09002537out:
2538 free_idle_threads();
2539 perf_session__delete(session);
2540
2541 return err;
2542}
2543
2544
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002545static void print_bad_events(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002546{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002547 if (sched->nr_unordered_timestamps && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002548 printf(" INFO: %.3f%% unordered timestamps (%ld out of %ld)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002549 (double)sched->nr_unordered_timestamps/(double)sched->nr_timestamps*100.0,
2550 sched->nr_unordered_timestamps, sched->nr_timestamps);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002551 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002552 if (sched->nr_lost_events && sched->nr_events) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002553 printf(" INFO: %.3f%% lost events (%ld out of %ld, in %ld chunks)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002554 (double)sched->nr_lost_events/(double)sched->nr_events * 100.0,
2555 sched->nr_lost_events, sched->nr_events, sched->nr_lost_chunks);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002556 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002557 if (sched->nr_context_switch_bugs && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002558 printf(" INFO: %.3f%% context switch bugs (%ld out of %ld)",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002559 (double)sched->nr_context_switch_bugs/(double)sched->nr_timestamps*100.0,
2560 sched->nr_context_switch_bugs, sched->nr_timestamps);
2561 if (sched->nr_lost_events)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002562 printf(" (due to lost events?)");
2563 printf("\n");
2564 }
2565}
2566
Josef Bacik2f80dd42015-05-22 09:18:40 -04002567static void __merge_work_atoms(struct rb_root *root, struct work_atoms *data)
2568{
2569 struct rb_node **new = &(root->rb_node), *parent = NULL;
2570 struct work_atoms *this;
2571 const char *comm = thread__comm_str(data->thread), *this_comm;
2572
2573 while (*new) {
2574 int cmp;
2575
2576 this = container_of(*new, struct work_atoms, node);
2577 parent = *new;
2578
2579 this_comm = thread__comm_str(this->thread);
2580 cmp = strcmp(comm, this_comm);
2581 if (cmp > 0) {
2582 new = &((*new)->rb_left);
2583 } else if (cmp < 0) {
2584 new = &((*new)->rb_right);
2585 } else {
2586 this->num_merged++;
2587 this->total_runtime += data->total_runtime;
2588 this->nb_atoms += data->nb_atoms;
2589 this->total_lat += data->total_lat;
2590 list_splice(&data->work_list, &this->work_list);
2591 if (this->max_lat < data->max_lat) {
2592 this->max_lat = data->max_lat;
2593 this->max_lat_at = data->max_lat_at;
2594 }
2595 zfree(&data);
2596 return;
2597 }
2598 }
2599
2600 data->num_merged++;
2601 rb_link_node(&data->node, parent, new);
2602 rb_insert_color(&data->node, root);
2603}
2604
2605static void perf_sched__merge_lat(struct perf_sched *sched)
2606{
2607 struct work_atoms *data;
2608 struct rb_node *node;
2609
2610 if (sched->skip_merge)
2611 return;
2612
2613 while ((node = rb_first(&sched->atom_root))) {
2614 rb_erase(node, &sched->atom_root);
2615 data = rb_entry(node, struct work_atoms, node);
2616 __merge_work_atoms(&sched->merged_atom_root, data);
2617 }
2618}
2619
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002620static int perf_sched__lat(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002621{
2622 struct rb_node *next;
2623
2624 setup_pager();
David Ahernad9def72013-08-07 22:50:44 -04002625
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03002626 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002627 return -1;
David Ahernad9def72013-08-07 22:50:44 -04002628
Josef Bacik2f80dd42015-05-22 09:18:40 -04002629 perf_sched__merge_lat(sched);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002630 perf_sched__sort_lat(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002631
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04002632 printf("\n -----------------------------------------------------------------------------------------------------------------\n");
2633 printf(" Task | Runtime ms | Switches | Average delay ms | Maximum delay ms | Maximum delay at |\n");
2634 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002635
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002636 next = rb_first(&sched->sorted_atom_root);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002637
2638 while (next) {
2639 struct work_atoms *work_list;
2640
2641 work_list = rb_entry(next, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002642 output_lat_thread(sched, work_list);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002643 next = rb_next(next);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03002644 thread__zput(work_list->thread);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002645 }
2646
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04002647 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002648 printf(" TOTAL: |%11.3f ms |%9" PRIu64 " |\n",
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -03002649 (double)sched->all_runtime / NSEC_PER_MSEC, sched->all_count);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002650
2651 printf(" ---------------------------------------------------\n");
2652
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002653 print_bad_events(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002654 printf("\n");
2655
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002656 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002657}
2658
Jiri Olsa99623c62016-04-12 15:29:26 +02002659static int setup_map_cpus(struct perf_sched *sched)
2660{
Jiri Olsa73643bb2016-04-12 15:29:31 +02002661 struct cpu_map *map;
2662
Jiri Olsa99623c62016-04-12 15:29:26 +02002663 sched->max_cpu = sysconf(_SC_NPROCESSORS_CONF);
2664
2665 if (sched->map.comp) {
2666 sched->map.comp_cpus = zalloc(sched->max_cpu * sizeof(int));
Jiri Olsacf294f22016-04-12 15:29:30 +02002667 if (!sched->map.comp_cpus)
2668 return -1;
Jiri Olsa99623c62016-04-12 15:29:26 +02002669 }
2670
Jiri Olsa73643bb2016-04-12 15:29:31 +02002671 if (!sched->map.cpus_str)
2672 return 0;
2673
2674 map = cpu_map__new(sched->map.cpus_str);
2675 if (!map) {
2676 pr_err("failed to get cpus map from %s\n", sched->map.cpus_str);
2677 return -1;
2678 }
2679
2680 sched->map.cpus = map;
Jiri Olsa99623c62016-04-12 15:29:26 +02002681 return 0;
2682}
2683
Jiri Olsaa151a372016-04-12 15:29:29 +02002684static int setup_color_pids(struct perf_sched *sched)
2685{
2686 struct thread_map *map;
2687
2688 if (!sched->map.color_pids_str)
2689 return 0;
2690
2691 map = thread_map__new_by_tid_str(sched->map.color_pids_str);
2692 if (!map) {
2693 pr_err("failed to get thread map from %s\n", sched->map.color_pids_str);
2694 return -1;
2695 }
2696
2697 sched->map.color_pids = map;
2698 return 0;
2699}
2700
Jiri Olsacf294f22016-04-12 15:29:30 +02002701static int setup_color_cpus(struct perf_sched *sched)
2702{
2703 struct cpu_map *map;
2704
2705 if (!sched->map.color_cpus_str)
2706 return 0;
2707
2708 map = cpu_map__new(sched->map.color_cpus_str);
2709 if (!map) {
2710 pr_err("failed to get thread map from %s\n", sched->map.color_cpus_str);
2711 return -1;
2712 }
2713
2714 sched->map.color_cpus = map;
2715 return 0;
2716}
2717
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002718static int perf_sched__map(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002719{
Jiri Olsa99623c62016-04-12 15:29:26 +02002720 if (setup_map_cpus(sched))
2721 return -1;
Ingo Molnar40749d02009-09-17 18:24:55 +02002722
Jiri Olsaa151a372016-04-12 15:29:29 +02002723 if (setup_color_pids(sched))
2724 return -1;
2725
Jiri Olsacf294f22016-04-12 15:29:30 +02002726 if (setup_color_cpus(sched))
2727 return -1;
2728
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002729 setup_pager();
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03002730 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002731 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002732 print_bad_events(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002733 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002734}
2735
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002736static int perf_sched__replay(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002737{
2738 unsigned long i;
2739
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002740 calibrate_run_measurement_overhead(sched);
2741 calibrate_sleep_measurement_overhead(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002742
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002743 test_calibrations(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002744
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03002745 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002746 return -1;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002747
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002748 printf("nr_run_events: %ld\n", sched->nr_run_events);
2749 printf("nr_sleep_events: %ld\n", sched->nr_sleep_events);
2750 printf("nr_wakeup_events: %ld\n", sched->nr_wakeup_events);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002751
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002752 if (sched->targetless_wakeups)
2753 printf("target-less wakeups: %ld\n", sched->targetless_wakeups);
2754 if (sched->multitarget_wakeups)
2755 printf("multi-target wakeups: %ld\n", sched->multitarget_wakeups);
2756 if (sched->nr_run_events_optimized)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002757 printf("run atoms optimized: %ld\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002758 sched->nr_run_events_optimized);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002759
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002760 print_task_traces(sched);
2761 add_cross_task_wakeups(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002762
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002763 create_tasks(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002764 printf("------------------------------------------------------------\n");
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002765 for (i = 0; i < sched->replay_repeat; i++)
2766 run_one_test(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002767
2768 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002769}
2770
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002771static void setup_sorting(struct perf_sched *sched, const struct option *options,
2772 const char * const usage_msg[])
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02002773{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002774 char *tmp, *tok, *str = strdup(sched->sort_order);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02002775
2776 for (tok = strtok_r(str, ", ", &tmp);
2777 tok; tok = strtok_r(NULL, ", ", &tmp)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002778 if (sort_dimension__add(tok, &sched->sort_list) < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002779 usage_with_options_msg(usage_msg, options,
2780 "Unknown --sort key: `%s'", tok);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02002781 }
2782 }
2783
2784 free(str);
2785
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002786 sort_dimension__add("pid", &sched->cmp_pid);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02002787}
2788
Ingo Molnar1fc35b22009-09-13 09:44:29 +02002789static int __cmd_record(int argc, const char **argv)
2790{
2791 unsigned int rec_argc, i, j;
2792 const char **rec_argv;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002793 const char * const record_args[] = {
2794 "record",
2795 "-a",
2796 "-R",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002797 "-m", "1024",
2798 "-c", "1",
2799 "-e", "sched:sched_switch",
2800 "-e", "sched:sched_stat_wait",
2801 "-e", "sched:sched_stat_sleep",
2802 "-e", "sched:sched_stat_iowait",
2803 "-e", "sched:sched_stat_runtime",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002804 "-e", "sched:sched_process_fork",
2805 "-e", "sched:sched_wakeup",
Dongsheng7fff9592014-05-05 16:05:53 +09002806 "-e", "sched:sched_wakeup_new",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002807 "-e", "sched:sched_migrate_task",
2808 };
Ingo Molnar1fc35b22009-09-13 09:44:29 +02002809
2810 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
2811 rec_argv = calloc(rec_argc + 1, sizeof(char *));
2812
Arnaldo Carvalho de Meloe462dc52011-01-10 10:48:47 -02002813 if (rec_argv == NULL)
Chris Samuelce47dc52010-11-13 13:35:06 +11002814 return -ENOMEM;
2815
Ingo Molnar1fc35b22009-09-13 09:44:29 +02002816 for (i = 0; i < ARRAY_SIZE(record_args); i++)
2817 rec_argv[i] = strdup(record_args[i]);
2818
2819 for (j = 1; j < (unsigned int)argc; j++, i++)
2820 rec_argv[i] = argv[j];
2821
2822 BUG_ON(i != rec_argc);
2823
2824 return cmd_record(i, rec_argv, NULL);
2825}
2826
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002827int cmd_sched(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02002828{
Adrian Hunter8a39df82013-10-22 10:34:15 +03002829 const char default_sort_order[] = "avg, max, switch, runtime";
2830 struct perf_sched sched = {
2831 .tool = {
2832 .sample = perf_sched__process_tracepoint_sample,
2833 .comm = perf_event__process_comm,
2834 .lost = perf_event__process_lost,
2835 .fork = perf_sched__process_fork_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02002836 .ordered_events = true,
Adrian Hunter8a39df82013-10-22 10:34:15 +03002837 },
2838 .cmp_pid = LIST_HEAD_INIT(sched.cmp_pid),
2839 .sort_list = LIST_HEAD_INIT(sched.sort_list),
2840 .start_work_mutex = PTHREAD_MUTEX_INITIALIZER,
2841 .work_done_wait_mutex = PTHREAD_MUTEX_INITIALIZER,
Adrian Hunter8a39df82013-10-22 10:34:15 +03002842 .sort_order = default_sort_order,
2843 .replay_repeat = 10,
2844 .profile_cpu = -1,
2845 .next_shortname1 = 'A',
2846 .next_shortname2 = '0',
Josef Bacik2f80dd42015-05-22 09:18:40 -04002847 .skip_merge = 0,
David Ahern6c973c92016-11-16 15:06:32 +09002848 .show_callchain = 1,
2849 .max_stack = 5,
Adrian Hunter8a39df82013-10-22 10:34:15 +03002850 };
Namhyung Kim77f02f42016-10-24 12:00:03 +09002851 const struct option sched_options[] = {
2852 OPT_STRING('i', "input", &input_name, "file",
2853 "input file name"),
2854 OPT_INCR('v', "verbose", &verbose,
2855 "be more verbose (show symbol address, etc)"),
2856 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
2857 "dump raw trace in ASCII"),
2858 OPT_END()
2859 };
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002860 const struct option latency_options[] = {
2861 OPT_STRING('s', "sort", &sched.sort_order, "key[,key2...]",
2862 "sort by key(s): runtime, switch, avg, max"),
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002863 OPT_INTEGER('C', "CPU", &sched.profile_cpu,
2864 "CPU to profile on"),
2865 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
2866 "dump raw trace in ASCII"),
Josef Bacik2f80dd42015-05-22 09:18:40 -04002867 OPT_BOOLEAN('p', "pids", &sched.skip_merge,
2868 "latency stats per pid instead of per comm"),
Namhyung Kim77f02f42016-10-24 12:00:03 +09002869 OPT_PARENT(sched_options)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002870 };
2871 const struct option replay_options[] = {
2872 OPT_UINTEGER('r', "repeat", &sched.replay_repeat,
2873 "repeat the workload replay N times (-1: infinite)"),
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002874 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
2875 "dump raw trace in ASCII"),
Yunlong Song939cda52015-03-31 21:46:34 +08002876 OPT_BOOLEAN('f', "force", &sched.force, "don't complain, do it"),
Namhyung Kim77f02f42016-10-24 12:00:03 +09002877 OPT_PARENT(sched_options)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002878 };
Jiri Olsa99623c62016-04-12 15:29:26 +02002879 const struct option map_options[] = {
2880 OPT_BOOLEAN(0, "compact", &sched.map.comp,
2881 "map output in compact mode"),
Jiri Olsaa151a372016-04-12 15:29:29 +02002882 OPT_STRING(0, "color-pids", &sched.map.color_pids_str, "pids",
2883 "highlight given pids in map"),
Jiri Olsacf294f22016-04-12 15:29:30 +02002884 OPT_STRING(0, "color-cpus", &sched.map.color_cpus_str, "cpus",
2885 "highlight given CPUs in map"),
Jiri Olsa73643bb2016-04-12 15:29:31 +02002886 OPT_STRING(0, "cpus", &sched.map.cpus_str, "cpus",
2887 "display given CPUs in map"),
Namhyung Kim77f02f42016-10-24 12:00:03 +09002888 OPT_PARENT(sched_options)
Jiri Olsa99623c62016-04-12 15:29:26 +02002889 };
David Ahern49394a22016-11-16 15:06:29 +09002890 const struct option timehist_options[] = {
2891 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
2892 "file", "vmlinux pathname"),
2893 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
2894 "file", "kallsyms pathname"),
David Ahern6c973c92016-11-16 15:06:32 +09002895 OPT_BOOLEAN('g', "call-graph", &sched.show_callchain,
2896 "Display call chains if present (default on)"),
2897 OPT_UINTEGER(0, "max-stack", &sched.max_stack,
2898 "Maximum number of functions to display backtrace."),
David Ahern49394a22016-11-16 15:06:29 +09002899 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
2900 "Look for files with symbols relative to this directory"),
David Ahern52df1382016-11-16 15:06:30 +09002901 OPT_BOOLEAN('s', "summary", &sched.summary_only,
2902 "Show only syscall summary with statistics"),
2903 OPT_BOOLEAN('S', "with-summary", &sched.summary,
2904 "Show all syscalls and summary with statistics"),
David Ahernfc1469f2016-11-16 15:06:31 +09002905 OPT_BOOLEAN('w', "wakeups", &sched.show_wakeups, "Show wakeup events"),
David Aherna407b062016-11-16 15:06:33 +09002906 OPT_BOOLEAN('V', "cpu-visual", &sched.show_cpu_visual, "Add CPU visual"),
David Ahern49394a22016-11-16 15:06:29 +09002907 OPT_PARENT(sched_options)
2908 };
2909
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002910 const char * const latency_usage[] = {
2911 "perf sched latency [<options>]",
2912 NULL
2913 };
2914 const char * const replay_usage[] = {
2915 "perf sched replay [<options>]",
2916 NULL
2917 };
Jiri Olsa99623c62016-04-12 15:29:26 +02002918 const char * const map_usage[] = {
2919 "perf sched map [<options>]",
2920 NULL
2921 };
David Ahern49394a22016-11-16 15:06:29 +09002922 const char * const timehist_usage[] = {
2923 "perf sched timehist [<options>]",
2924 NULL
2925 };
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04002926 const char *const sched_subcommands[] = { "record", "latency", "map",
David Ahern49394a22016-11-16 15:06:29 +09002927 "replay", "script",
2928 "timehist", NULL };
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04002929 const char *sched_usage[] = {
2930 NULL,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002931 NULL
2932 };
2933 struct trace_sched_handler lat_ops = {
2934 .wakeup_event = latency_wakeup_event,
2935 .switch_event = latency_switch_event,
2936 .runtime_event = latency_runtime_event,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002937 .migrate_task_event = latency_migrate_task_event,
2938 };
2939 struct trace_sched_handler map_ops = {
2940 .switch_event = map_switch_event,
2941 };
2942 struct trace_sched_handler replay_ops = {
2943 .wakeup_event = replay_wakeup_event,
2944 .switch_event = replay_switch_event,
2945 .fork_event = replay_fork_event,
2946 };
Adrian Hunter156a2b02013-10-22 10:34:16 +03002947 unsigned int i;
2948
2949 for (i = 0; i < ARRAY_SIZE(sched.curr_pid); i++)
2950 sched.curr_pid[i] = -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002951
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04002952 argc = parse_options_subcommand(argc, argv, sched_options, sched_subcommands,
2953 sched_usage, PARSE_OPT_STOP_AT_NON_OPTION);
Ingo Molnarf2858d82009-09-11 12:12:54 +02002954 if (!argc)
2955 usage_with_options(sched_usage, sched_options);
2956
Xiao Guangrongc0777c52009-12-07 12:04:49 +08002957 /*
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002958 * Aliased to 'perf script' for now:
Xiao Guangrongc0777c52009-12-07 12:04:49 +08002959 */
Ingo Molnar133dc4c2010-11-16 18:45:39 +01002960 if (!strcmp(argv[0], "script"))
2961 return cmd_script(argc, argv, prefix);
Xiao Guangrongc0777c52009-12-07 12:04:49 +08002962
Ingo Molnar1fc35b22009-09-13 09:44:29 +02002963 if (!strncmp(argv[0], "rec", 3)) {
2964 return __cmd_record(argc, argv);
2965 } else if (!strncmp(argv[0], "lat", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002966 sched.tp_handler = &lat_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02002967 if (argc > 1) {
2968 argc = parse_options(argc, argv, latency_options, latency_usage, 0);
2969 if (argc)
2970 usage_with_options(latency_usage, latency_options);
Ingo Molnarf2858d82009-09-11 12:12:54 +02002971 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002972 setup_sorting(&sched, latency_options, latency_usage);
2973 return perf_sched__lat(&sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002974 } else if (!strcmp(argv[0], "map")) {
Jiri Olsa99623c62016-04-12 15:29:26 +02002975 if (argc) {
Jiri Olsaa151a372016-04-12 15:29:29 +02002976 argc = parse_options(argc, argv, map_options, map_usage, 0);
Jiri Olsa99623c62016-04-12 15:29:26 +02002977 if (argc)
2978 usage_with_options(map_usage, map_options);
2979 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002980 sched.tp_handler = &map_ops;
2981 setup_sorting(&sched, latency_options, latency_usage);
2982 return perf_sched__map(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02002983 } else if (!strncmp(argv[0], "rep", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002984 sched.tp_handler = &replay_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02002985 if (argc) {
2986 argc = parse_options(argc, argv, replay_options, replay_usage, 0);
2987 if (argc)
2988 usage_with_options(replay_usage, replay_options);
2989 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002990 return perf_sched__replay(&sched);
David Ahern49394a22016-11-16 15:06:29 +09002991 } else if (!strcmp(argv[0], "timehist")) {
2992 if (argc) {
2993 argc = parse_options(argc, argv, timehist_options,
2994 timehist_usage, 0);
2995 if (argc)
2996 usage_with_options(timehist_usage, timehist_options);
2997 }
David Ahernfc1469f2016-11-16 15:06:31 +09002998 if (sched.show_wakeups && sched.summary_only) {
2999 pr_err(" Error: -s and -w are mutually exclusive.\n");
3000 parse_options_usage(timehist_usage, timehist_options, "s", true);
3001 parse_options_usage(NULL, timehist_options, "w", true);
3002 return -EINVAL;
3003 }
3004
David Ahern49394a22016-11-16 15:06:29 +09003005 return perf_sched__timehist(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02003006 } else {
3007 usage_with_options(sched_usage, sched_options);
Ingo Molnar0a02ad92009-09-11 12:12:54 +02003008 }
3009
Ingo Molnarec156762009-09-11 12:12:54 +02003010 return 0;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02003011}