blob: e108b0f6a246a3b27adfdf2535edfb3232ef4700 [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"
David Ahern853b7402016-11-29 10:15:44 -070018#include "util/time-utils.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020019
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060020#include <subcmd/parse-options.h>
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020021#include "util/trace-event.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020022
Ingo Molnar0a02ad92009-09-11 12:12:54 +020023#include "util/debug.h"
24
David Ahern49394a22016-11-16 15:06:29 +090025#include <linux/log2.h>
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020026#include <sys/prctl.h>
Markus Trippelsdorf7b78f132012-04-04 10:45:27 +020027#include <sys/resource.h>
Ingo Molnar0a02ad92009-09-11 12:12:54 +020028
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020029#include <semaphore.h>
30#include <pthread.h>
31#include <math.h>
Yunlong Songcb06ac22015-03-31 21:46:30 +080032#include <api/fs/fs.h>
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -030033#include <linux/time64.h>
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +020034
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020035#define PR_SET_NAME 15 /* Set process name */
36#define MAX_CPUS 4096
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020037#define COMM_LEN 20
38#define SYM_LEN 129
Yunlong Songa35e27d2015-03-31 21:46:29 +080039#define MAX_PID 1024000
Ingo Molnarec156762009-09-11 12:12:54 +020040
mingo39aeb522009-09-14 20:04:48 +020041struct sched_atom;
Ingo Molnarec156762009-09-11 12:12:54 +020042
43struct task_desc {
44 unsigned long nr;
45 unsigned long pid;
46 char comm[COMM_LEN];
47
48 unsigned long nr_events;
49 unsigned long curr_event;
mingo39aeb522009-09-14 20:04:48 +020050 struct sched_atom **atoms;
Ingo Molnarec156762009-09-11 12:12:54 +020051
52 pthread_t thread;
53 sem_t sleep_sem;
54
55 sem_t ready_for_work;
56 sem_t work_done_sem;
57
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020058 u64 cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +020059};
60
61enum sched_event_type {
62 SCHED_EVENT_RUN,
63 SCHED_EVENT_SLEEP,
64 SCHED_EVENT_WAKEUP,
Mike Galbraith55ffb7a2009-10-10 14:46:04 +020065 SCHED_EVENT_MIGRATION,
Ingo Molnarec156762009-09-11 12:12:54 +020066};
67
mingo39aeb522009-09-14 20:04:48 +020068struct sched_atom {
Ingo Molnarec156762009-09-11 12:12:54 +020069 enum sched_event_type type;
Arnaldo Carvalho de Meloeed05fe2010-04-05 12:53:45 -030070 int specific_wait;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020071 u64 timestamp;
72 u64 duration;
Ingo Molnarec156762009-09-11 12:12:54 +020073 unsigned long nr;
Ingo Molnarec156762009-09-11 12:12:54 +020074 sem_t *wait_sem;
75 struct task_desc *wakee;
76};
77
Dongshenge936e8e2014-05-05 16:05:54 +090078#define TASK_STATE_TO_CHAR_STR "RSDTtZXxKWP"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020079
80enum thread_state {
81 THREAD_SLEEPING = 0,
82 THREAD_WAIT_CPU,
83 THREAD_SCHED_IN,
84 THREAD_IGNORE
85};
86
87struct work_atom {
88 struct list_head list;
89 enum thread_state state;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +020090 u64 sched_out_time;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020091 u64 wake_up_time;
92 u64 sched_in_time;
93 u64 runtime;
94};
95
mingo39aeb522009-09-14 20:04:48 +020096struct work_atoms {
97 struct list_head work_list;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020098 struct thread *thread;
99 struct rb_node node;
100 u64 max_lat;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +0100101 u64 max_lat_at;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200102 u64 total_lat;
103 u64 nb_atoms;
104 u64 total_runtime;
Josef Bacik2f80dd42015-05-22 09:18:40 -0400105 int num_merged;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200106};
107
mingo39aeb522009-09-14 20:04:48 +0200108typedef int (*sort_fn_t)(struct work_atoms *, struct work_atoms *);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200109
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300110struct perf_sched;
111
112struct trace_sched_handler {
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300113 int (*switch_event)(struct perf_sched *sched, struct perf_evsel *evsel,
114 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300115
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300116 int (*runtime_event)(struct perf_sched *sched, struct perf_evsel *evsel,
117 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300118
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300119 int (*wakeup_event)(struct perf_sched *sched, struct perf_evsel *evsel,
120 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300121
David Aherncb627502013-08-07 22:50:47 -0400122 /* PERF_RECORD_FORK event, not sched_process_fork tracepoint */
123 int (*fork_event)(struct perf_sched *sched, union perf_event *event,
124 struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300125
126 int (*migrate_task_event)(struct perf_sched *sched,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300127 struct perf_evsel *evsel,
128 struct perf_sample *sample,
129 struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300130};
131
Jiri Olsaa151a372016-04-12 15:29:29 +0200132#define COLOR_PIDS PERF_COLOR_BLUE
Jiri Olsacf294f22016-04-12 15:29:30 +0200133#define COLOR_CPUS PERF_COLOR_BG_RED
Jiri Olsaa151a372016-04-12 15:29:29 +0200134
Jiri Olsa99623c62016-04-12 15:29:26 +0200135struct perf_sched_map {
136 DECLARE_BITMAP(comp_cpus_mask, MAX_CPUS);
137 int *comp_cpus;
138 bool comp;
Jiri Olsaa151a372016-04-12 15:29:29 +0200139 struct thread_map *color_pids;
140 const char *color_pids_str;
Jiri Olsacf294f22016-04-12 15:29:30 +0200141 struct cpu_map *color_cpus;
142 const char *color_cpus_str;
Jiri Olsa73643bb2016-04-12 15:29:31 +0200143 struct cpu_map *cpus;
144 const char *cpus_str;
Jiri Olsa99623c62016-04-12 15:29:26 +0200145};
146
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300147struct perf_sched {
148 struct perf_tool tool;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300149 const char *sort_order;
150 unsigned long nr_tasks;
Yunlong Songcb06ac22015-03-31 21:46:30 +0800151 struct task_desc **pid_to_task;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300152 struct task_desc **tasks;
153 const struct trace_sched_handler *tp_handler;
154 pthread_mutex_t start_work_mutex;
155 pthread_mutex_t work_done_wait_mutex;
156 int profile_cpu;
157/*
158 * Track the current task - that way we can know whether there's any
159 * weird events, such as a task being switched away that is not current.
160 */
161 int max_cpu;
162 u32 curr_pid[MAX_CPUS];
163 struct thread *curr_thread[MAX_CPUS];
164 char next_shortname1;
165 char next_shortname2;
166 unsigned int replay_repeat;
167 unsigned long nr_run_events;
168 unsigned long nr_sleep_events;
169 unsigned long nr_wakeup_events;
170 unsigned long nr_sleep_corrections;
171 unsigned long nr_run_events_optimized;
172 unsigned long targetless_wakeups;
173 unsigned long multitarget_wakeups;
174 unsigned long nr_runs;
175 unsigned long nr_timestamps;
176 unsigned long nr_unordered_timestamps;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300177 unsigned long nr_context_switch_bugs;
178 unsigned long nr_events;
179 unsigned long nr_lost_chunks;
180 unsigned long nr_lost_events;
181 u64 run_measurement_overhead;
182 u64 sleep_measurement_overhead;
183 u64 start_time;
184 u64 cpu_usage;
185 u64 runavg_cpu_usage;
186 u64 parent_cpu_usage;
187 u64 runavg_parent_cpu_usage;
188 u64 sum_runtime;
189 u64 sum_fluct;
190 u64 run_avg;
191 u64 all_runtime;
192 u64 all_count;
193 u64 cpu_last_switched[MAX_CPUS];
Josef Bacik2f80dd42015-05-22 09:18:40 -0400194 struct rb_root atom_root, sorted_atom_root, merged_atom_root;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300195 struct list_head sort_list, cmp_pid;
Yunlong Song939cda52015-03-31 21:46:34 +0800196 bool force;
Josef Bacik2f80dd42015-05-22 09:18:40 -0400197 bool skip_merge;
Jiri Olsa99623c62016-04-12 15:29:26 +0200198 struct perf_sched_map map;
David Ahern52df1382016-11-16 15:06:30 +0900199
200 /* options for timehist command */
201 bool summary;
202 bool summary_only;
David Ahern6c973c92016-11-16 15:06:32 +0900203 bool show_callchain;
204 unsigned int max_stack;
David Aherna407b062016-11-16 15:06:33 +0900205 bool show_cpu_visual;
David Ahernfc1469f2016-11-16 15:06:31 +0900206 bool show_wakeups;
David Ahern350f54f2016-11-25 09:28:41 -0700207 bool show_migrations;
David Ahern52df1382016-11-16 15:06:30 +0900208 u64 skipped_samples;
David Ahern853b7402016-11-29 10:15:44 -0700209 const char *time_str;
210 struct perf_time_interval ptime;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300211};
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200212
David Ahern49394a22016-11-16 15:06:29 +0900213/* per thread run time data */
214struct thread_runtime {
215 u64 last_time; /* time of previous sched in/out event */
216 u64 dt_run; /* run time */
217 u64 dt_wait; /* time between CPU access (off cpu) */
218 u64 dt_delay; /* time between wakeup and sched-in */
219 u64 ready_to_run; /* time of wakeup */
220
221 struct stats run_stats;
222 u64 total_run_time;
David Ahern350f54f2016-11-25 09:28:41 -0700223
224 u64 migrations;
David Ahern49394a22016-11-16 15:06:29 +0900225};
226
227/* per event run time data */
228struct evsel_runtime {
229 u64 *last_time; /* time this event was last seen per cpu */
230 u32 ncpu; /* highest cpu slot allocated */
231};
232
Namhyung Kim3bc2fa92016-12-08 23:47:51 +0900233/* per cpu idle time data */
234struct idle_thread_runtime {
235 struct thread_runtime tr;
236 struct thread *last_thread;
237 struct rb_root sorted_root;
238 struct callchain_root callchain;
239 struct callchain_cursor cursor;
240};
241
David Ahern49394a22016-11-16 15:06:29 +0900242/* track idle times per cpu */
243static struct thread **idle_threads;
244static int idle_max_cpu;
245static char idle_comm[] = "<idle>";
246
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200247static u64 get_nsecs(void)
248{
249 struct timespec ts;
250
251 clock_gettime(CLOCK_MONOTONIC, &ts);
252
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300253 return ts.tv_sec * NSEC_PER_SEC + ts.tv_nsec;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200254}
255
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300256static void burn_nsecs(struct perf_sched *sched, u64 nsecs)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200257{
258 u64 T0 = get_nsecs(), T1;
259
260 do {
261 T1 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300262 } while (T1 + sched->run_measurement_overhead < T0 + nsecs);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200263}
264
265static void sleep_nsecs(u64 nsecs)
266{
267 struct timespec ts;
268
269 ts.tv_nsec = nsecs % 999999999;
270 ts.tv_sec = nsecs / 999999999;
271
272 nanosleep(&ts, NULL);
273}
274
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300275static void calibrate_run_measurement_overhead(struct perf_sched *sched)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200276{
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300277 u64 T0, T1, delta, min_delta = NSEC_PER_SEC;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200278 int i;
279
280 for (i = 0; i < 10; i++) {
281 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300282 burn_nsecs(sched, 0);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200283 T1 = get_nsecs();
284 delta = T1-T0;
285 min_delta = min(min_delta, delta);
286 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300287 sched->run_measurement_overhead = min_delta;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200288
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200289 printf("run measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200290}
291
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300292static void calibrate_sleep_measurement_overhead(struct perf_sched *sched)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200293{
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300294 u64 T0, T1, delta, min_delta = NSEC_PER_SEC;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200295 int i;
296
297 for (i = 0; i < 10; i++) {
298 T0 = get_nsecs();
299 sleep_nsecs(10000);
300 T1 = get_nsecs();
301 delta = T1-T0;
302 min_delta = min(min_delta, delta);
303 }
304 min_delta -= 10000;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300305 sched->sleep_measurement_overhead = min_delta;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200306
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200307 printf("sleep measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200308}
309
mingo39aeb522009-09-14 20:04:48 +0200310static struct sched_atom *
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200311get_new_event(struct task_desc *task, u64 timestamp)
Ingo Molnarec156762009-09-11 12:12:54 +0200312{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200313 struct sched_atom *event = zalloc(sizeof(*event));
Ingo Molnarec156762009-09-11 12:12:54 +0200314 unsigned long idx = task->nr_events;
315 size_t size;
316
317 event->timestamp = timestamp;
318 event->nr = idx;
319
320 task->nr_events++;
mingo39aeb522009-09-14 20:04:48 +0200321 size = sizeof(struct sched_atom *) * task->nr_events;
322 task->atoms = realloc(task->atoms, size);
323 BUG_ON(!task->atoms);
Ingo Molnarec156762009-09-11 12:12:54 +0200324
mingo39aeb522009-09-14 20:04:48 +0200325 task->atoms[idx] = event;
Ingo Molnarec156762009-09-11 12:12:54 +0200326
327 return event;
328}
329
mingo39aeb522009-09-14 20:04:48 +0200330static struct sched_atom *last_event(struct task_desc *task)
Ingo Molnarec156762009-09-11 12:12:54 +0200331{
332 if (!task->nr_events)
333 return NULL;
334
mingo39aeb522009-09-14 20:04:48 +0200335 return task->atoms[task->nr_events - 1];
Ingo Molnarec156762009-09-11 12:12:54 +0200336}
337
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300338static void add_sched_event_run(struct perf_sched *sched, struct task_desc *task,
339 u64 timestamp, u64 duration)
Ingo Molnarec156762009-09-11 12:12:54 +0200340{
mingo39aeb522009-09-14 20:04:48 +0200341 struct sched_atom *event, *curr_event = last_event(task);
Ingo Molnarec156762009-09-11 12:12:54 +0200342
343 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200344 * optimize an existing RUN event by merging this one
345 * to it:
346 */
Ingo Molnarec156762009-09-11 12:12:54 +0200347 if (curr_event && curr_event->type == SCHED_EVENT_RUN) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300348 sched->nr_run_events_optimized++;
Ingo Molnarec156762009-09-11 12:12:54 +0200349 curr_event->duration += duration;
350 return;
351 }
352
353 event = get_new_event(task, timestamp);
354
355 event->type = SCHED_EVENT_RUN;
356 event->duration = duration;
357
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300358 sched->nr_run_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200359}
360
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300361static void add_sched_event_wakeup(struct perf_sched *sched, struct task_desc *task,
362 u64 timestamp, struct task_desc *wakee)
Ingo Molnarec156762009-09-11 12:12:54 +0200363{
mingo39aeb522009-09-14 20:04:48 +0200364 struct sched_atom *event, *wakee_event;
Ingo Molnarec156762009-09-11 12:12:54 +0200365
366 event = get_new_event(task, timestamp);
367 event->type = SCHED_EVENT_WAKEUP;
368 event->wakee = wakee;
369
370 wakee_event = last_event(wakee);
371 if (!wakee_event || wakee_event->type != SCHED_EVENT_SLEEP) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300372 sched->targetless_wakeups++;
Ingo Molnarec156762009-09-11 12:12:54 +0200373 return;
374 }
375 if (wakee_event->wait_sem) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300376 sched->multitarget_wakeups++;
Ingo Molnarec156762009-09-11 12:12:54 +0200377 return;
378 }
379
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200380 wakee_event->wait_sem = zalloc(sizeof(*wakee_event->wait_sem));
Ingo Molnarec156762009-09-11 12:12:54 +0200381 sem_init(wakee_event->wait_sem, 0, 0);
382 wakee_event->specific_wait = 1;
383 event->wait_sem = wakee_event->wait_sem;
384
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300385 sched->nr_wakeup_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200386}
387
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300388static void add_sched_event_sleep(struct perf_sched *sched, struct task_desc *task,
389 u64 timestamp, u64 task_state __maybe_unused)
Ingo Molnarec156762009-09-11 12:12:54 +0200390{
mingo39aeb522009-09-14 20:04:48 +0200391 struct sched_atom *event = get_new_event(task, timestamp);
Ingo Molnarec156762009-09-11 12:12:54 +0200392
393 event->type = SCHED_EVENT_SLEEP;
394
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300395 sched->nr_sleep_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200396}
397
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300398static struct task_desc *register_pid(struct perf_sched *sched,
399 unsigned long pid, const char *comm)
Ingo Molnarec156762009-09-11 12:12:54 +0200400{
401 struct task_desc *task;
Yunlong Songcb06ac22015-03-31 21:46:30 +0800402 static int pid_max;
Ingo Molnarec156762009-09-11 12:12:54 +0200403
Yunlong Songcb06ac22015-03-31 21:46:30 +0800404 if (sched->pid_to_task == NULL) {
405 if (sysctl__read_int("kernel/pid_max", &pid_max) < 0)
406 pid_max = MAX_PID;
407 BUG_ON((sched->pid_to_task = calloc(pid_max, sizeof(struct task_desc *))) == NULL);
408 }
Yunlong Song3a423a52015-03-31 21:46:31 +0800409 if (pid >= (unsigned long)pid_max) {
410 BUG_ON((sched->pid_to_task = realloc(sched->pid_to_task, (pid + 1) *
411 sizeof(struct task_desc *))) == NULL);
412 while (pid >= (unsigned long)pid_max)
413 sched->pid_to_task[pid_max++] = NULL;
414 }
Ingo Molnarec156762009-09-11 12:12:54 +0200415
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300416 task = sched->pid_to_task[pid];
Ingo Molnarec156762009-09-11 12:12:54 +0200417
418 if (task)
419 return task;
420
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200421 task = zalloc(sizeof(*task));
Ingo Molnarec156762009-09-11 12:12:54 +0200422 task->pid = pid;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300423 task->nr = sched->nr_tasks;
Ingo Molnarec156762009-09-11 12:12:54 +0200424 strcpy(task->comm, comm);
425 /*
426 * every task starts in sleeping state - this gets ignored
427 * if there's no wakeup pointing to this sleep state:
428 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300429 add_sched_event_sleep(sched, task, 0, 0);
Ingo Molnarec156762009-09-11 12:12:54 +0200430
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300431 sched->pid_to_task[pid] = task;
432 sched->nr_tasks++;
Yunlong Song0755bc42015-03-31 21:46:28 +0800433 sched->tasks = realloc(sched->tasks, sched->nr_tasks * sizeof(struct task_desc *));
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300434 BUG_ON(!sched->tasks);
435 sched->tasks[task->nr] = task;
Ingo Molnarec156762009-09-11 12:12:54 +0200436
Ingo Molnarad236fd2009-09-11 12:12:54 +0200437 if (verbose)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300438 printf("registered task #%ld, PID %ld (%s)\n", sched->nr_tasks, pid, comm);
Ingo Molnarec156762009-09-11 12:12:54 +0200439
440 return task;
441}
442
443
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300444static void print_task_traces(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200445{
446 struct task_desc *task;
447 unsigned long i;
448
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300449 for (i = 0; i < sched->nr_tasks; i++) {
450 task = sched->tasks[i];
Ingo Molnarad236fd2009-09-11 12:12:54 +0200451 printf("task %6ld (%20s:%10ld), nr_events: %ld\n",
Ingo Molnarec156762009-09-11 12:12:54 +0200452 task->nr, task->comm, task->pid, task->nr_events);
453 }
454}
455
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300456static void add_cross_task_wakeups(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200457{
458 struct task_desc *task1, *task2;
459 unsigned long i, j;
460
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300461 for (i = 0; i < sched->nr_tasks; i++) {
462 task1 = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200463 j = i + 1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300464 if (j == sched->nr_tasks)
Ingo Molnarec156762009-09-11 12:12:54 +0200465 j = 0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300466 task2 = sched->tasks[j];
467 add_sched_event_wakeup(sched, task1, 0, task2);
Ingo Molnarec156762009-09-11 12:12:54 +0200468 }
469}
470
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300471static void perf_sched__process_event(struct perf_sched *sched,
472 struct sched_atom *atom)
Ingo Molnarec156762009-09-11 12:12:54 +0200473{
474 int ret = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200475
mingo39aeb522009-09-14 20:04:48 +0200476 switch (atom->type) {
Ingo Molnarec156762009-09-11 12:12:54 +0200477 case SCHED_EVENT_RUN:
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300478 burn_nsecs(sched, atom->duration);
Ingo Molnarec156762009-09-11 12:12:54 +0200479 break;
480 case SCHED_EVENT_SLEEP:
mingo39aeb522009-09-14 20:04:48 +0200481 if (atom->wait_sem)
482 ret = sem_wait(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200483 BUG_ON(ret);
484 break;
485 case SCHED_EVENT_WAKEUP:
mingo39aeb522009-09-14 20:04:48 +0200486 if (atom->wait_sem)
487 ret = sem_post(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200488 BUG_ON(ret);
489 break;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +0200490 case SCHED_EVENT_MIGRATION:
491 break;
Ingo Molnarec156762009-09-11 12:12:54 +0200492 default:
493 BUG_ON(1);
494 }
495}
496
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200497static u64 get_cpu_usage_nsec_parent(void)
Ingo Molnarec156762009-09-11 12:12:54 +0200498{
499 struct rusage ru;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200500 u64 sum;
Ingo Molnarec156762009-09-11 12:12:54 +0200501 int err;
502
503 err = getrusage(RUSAGE_SELF, &ru);
504 BUG_ON(err);
505
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300506 sum = ru.ru_utime.tv_sec * NSEC_PER_SEC + ru.ru_utime.tv_usec * NSEC_PER_USEC;
507 sum += ru.ru_stime.tv_sec * NSEC_PER_SEC + ru.ru_stime.tv_usec * NSEC_PER_USEC;
Ingo Molnarec156762009-09-11 12:12:54 +0200508
509 return sum;
510}
511
Yunlong Song939cda52015-03-31 21:46:34 +0800512static int self_open_counters(struct perf_sched *sched, unsigned long cur_task)
Ingo Molnarec156762009-09-11 12:12:54 +0200513{
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800514 struct perf_event_attr attr;
Yunlong Song939cda52015-03-31 21:46:34 +0800515 char sbuf[STRERR_BUFSIZE], info[STRERR_BUFSIZE];
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800516 int fd;
Yunlong Song939cda52015-03-31 21:46:34 +0800517 struct rlimit limit;
518 bool need_privilege = false;
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800519
520 memset(&attr, 0, sizeof(attr));
521
522 attr.type = PERF_TYPE_SOFTWARE;
523 attr.config = PERF_COUNT_SW_TASK_CLOCK;
524
Yunlong Song939cda52015-03-31 21:46:34 +0800525force_again:
Yann Droneaud57480d22014-06-30 22:28:47 +0200526 fd = sys_perf_event_open(&attr, 0, -1, -1,
527 perf_event_open_cloexec_flag());
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800528
Yunlong Song1aff59b2015-03-31 21:46:33 +0800529 if (fd < 0) {
Yunlong Song939cda52015-03-31 21:46:34 +0800530 if (errno == EMFILE) {
531 if (sched->force) {
532 BUG_ON(getrlimit(RLIMIT_NOFILE, &limit) == -1);
533 limit.rlim_cur += sched->nr_tasks - cur_task;
534 if (limit.rlim_cur > limit.rlim_max) {
535 limit.rlim_max = limit.rlim_cur;
536 need_privilege = true;
537 }
538 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
539 if (need_privilege && errno == EPERM)
540 strcpy(info, "Need privilege\n");
541 } else
542 goto force_again;
543 } else
544 strcpy(info, "Have a try with -f option\n");
545 }
Namhyung Kim60b7d142012-09-12 11:11:06 +0900546 pr_err("Error: sys_perf_event_open() syscall returned "
Yunlong Song939cda52015-03-31 21:46:34 +0800547 "with %d (%s)\n%s", fd,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300548 str_error_r(errno, sbuf, sizeof(sbuf)), info);
Yunlong Song1aff59b2015-03-31 21:46:33 +0800549 exit(EXIT_FAILURE);
550 }
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800551 return fd;
552}
553
554static u64 get_cpu_usage_nsec_self(int fd)
555{
556 u64 runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200557 int ret;
558
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800559 ret = read(fd, &runtime, sizeof(runtime));
560 BUG_ON(ret != sizeof(runtime));
Ingo Molnarec156762009-09-11 12:12:54 +0200561
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800562 return runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200563}
564
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300565struct sched_thread_parms {
566 struct task_desc *task;
567 struct perf_sched *sched;
Yunlong Song08097ab2015-03-31 21:46:32 +0800568 int fd;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300569};
570
Ingo Molnarec156762009-09-11 12:12:54 +0200571static void *thread_func(void *ctx)
572{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300573 struct sched_thread_parms *parms = ctx;
574 struct task_desc *this_task = parms->task;
575 struct perf_sched *sched = parms->sched;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200576 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200577 unsigned long i, ret;
578 char comm2[22];
Yunlong Song08097ab2015-03-31 21:46:32 +0800579 int fd = parms->fd;
Ingo Molnarec156762009-09-11 12:12:54 +0200580
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300581 zfree(&parms);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300582
Ingo Molnarec156762009-09-11 12:12:54 +0200583 sprintf(comm2, ":%s", this_task->comm);
584 prctl(PR_SET_NAME, comm2);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300585 if (fd < 0)
586 return NULL;
Ingo Molnarec156762009-09-11 12:12:54 +0200587again:
588 ret = sem_post(&this_task->ready_for_work);
589 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300590 ret = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200591 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300592 ret = pthread_mutex_unlock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200593 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200594
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800595 cpu_usage_0 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200596
597 for (i = 0; i < this_task->nr_events; i++) {
598 this_task->curr_event = i;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300599 perf_sched__process_event(sched, this_task->atoms[i]);
Ingo Molnarec156762009-09-11 12:12:54 +0200600 }
601
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800602 cpu_usage_1 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200603 this_task->cpu_usage = cpu_usage_1 - cpu_usage_0;
Ingo Molnarec156762009-09-11 12:12:54 +0200604 ret = sem_post(&this_task->work_done_sem);
605 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200606
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300607 ret = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200608 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300609 ret = pthread_mutex_unlock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200610 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200611
612 goto again;
613}
614
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300615static void create_tasks(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200616{
617 struct task_desc *task;
618 pthread_attr_t attr;
619 unsigned long i;
620 int err;
621
622 err = pthread_attr_init(&attr);
623 BUG_ON(err);
Jiri Pirko12f7e032011-01-10 14:14:23 -0200624 err = pthread_attr_setstacksize(&attr,
625 (size_t) max(16 * 1024, PTHREAD_STACK_MIN));
Ingo Molnarec156762009-09-11 12:12:54 +0200626 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300627 err = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200628 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300629 err = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200630 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300631 for (i = 0; i < sched->nr_tasks; i++) {
632 struct sched_thread_parms *parms = malloc(sizeof(*parms));
633 BUG_ON(parms == NULL);
634 parms->task = task = sched->tasks[i];
635 parms->sched = sched;
Yunlong Song939cda52015-03-31 21:46:34 +0800636 parms->fd = self_open_counters(sched, i);
Ingo Molnarec156762009-09-11 12:12:54 +0200637 sem_init(&task->sleep_sem, 0, 0);
638 sem_init(&task->ready_for_work, 0, 0);
639 sem_init(&task->work_done_sem, 0, 0);
640 task->curr_event = 0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300641 err = pthread_create(&task->thread, &attr, thread_func, parms);
Ingo Molnarec156762009-09-11 12:12:54 +0200642 BUG_ON(err);
643 }
644}
645
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300646static void wait_for_tasks(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200647{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200648 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200649 struct task_desc *task;
650 unsigned long i, ret;
651
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300652 sched->start_time = get_nsecs();
653 sched->cpu_usage = 0;
654 pthread_mutex_unlock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200655
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300656 for (i = 0; i < sched->nr_tasks; i++) {
657 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200658 ret = sem_wait(&task->ready_for_work);
659 BUG_ON(ret);
660 sem_init(&task->ready_for_work, 0, 0);
661 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300662 ret = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200663 BUG_ON(ret);
664
665 cpu_usage_0 = get_cpu_usage_nsec_parent();
666
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300667 pthread_mutex_unlock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200668
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300669 for (i = 0; i < sched->nr_tasks; i++) {
670 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200671 ret = sem_wait(&task->work_done_sem);
672 BUG_ON(ret);
673 sem_init(&task->work_done_sem, 0, 0);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300674 sched->cpu_usage += task->cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +0200675 task->cpu_usage = 0;
676 }
677
678 cpu_usage_1 = get_cpu_usage_nsec_parent();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300679 if (!sched->runavg_cpu_usage)
680 sched->runavg_cpu_usage = sched->cpu_usage;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800681 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 +0200682
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300683 sched->parent_cpu_usage = cpu_usage_1 - cpu_usage_0;
684 if (!sched->runavg_parent_cpu_usage)
685 sched->runavg_parent_cpu_usage = sched->parent_cpu_usage;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800686 sched->runavg_parent_cpu_usage = (sched->runavg_parent_cpu_usage * (sched->replay_repeat - 1) +
687 sched->parent_cpu_usage)/sched->replay_repeat;
Ingo Molnarec156762009-09-11 12:12:54 +0200688
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300689 ret = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200690 BUG_ON(ret);
691
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300692 for (i = 0; i < sched->nr_tasks; i++) {
693 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200694 sem_init(&task->sleep_sem, 0, 0);
695 task->curr_event = 0;
696 }
697}
698
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300699static void run_one_test(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200700{
Kyle McMartinfb7d0b32011-01-24 11:13:04 -0500701 u64 T0, T1, delta, avg_delta, fluct;
Ingo Molnarec156762009-09-11 12:12:54 +0200702
703 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300704 wait_for_tasks(sched);
Ingo Molnarec156762009-09-11 12:12:54 +0200705 T1 = get_nsecs();
706
707 delta = T1 - T0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300708 sched->sum_runtime += delta;
709 sched->nr_runs++;
Ingo Molnarec156762009-09-11 12:12:54 +0200710
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300711 avg_delta = sched->sum_runtime / sched->nr_runs;
Ingo Molnarec156762009-09-11 12:12:54 +0200712 if (delta < avg_delta)
713 fluct = avg_delta - delta;
714 else
715 fluct = delta - avg_delta;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300716 sched->sum_fluct += fluct;
717 if (!sched->run_avg)
718 sched->run_avg = delta;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800719 sched->run_avg = (sched->run_avg * (sched->replay_repeat - 1) + delta) / sched->replay_repeat;
Ingo Molnarec156762009-09-11 12:12:54 +0200720
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300721 printf("#%-3ld: %0.3f, ", sched->nr_runs, (double)delta / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200722
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300723 printf("ravg: %0.2f, ", (double)sched->run_avg / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200724
Ingo Molnarad236fd2009-09-11 12:12:54 +0200725 printf("cpu: %0.2f / %0.2f",
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300726 (double)sched->cpu_usage / NSEC_PER_MSEC, (double)sched->runavg_cpu_usage / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200727
728#if 0
729 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200730 * rusage statistics done by the parent, these are less
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300731 * accurate than the sched->sum_exec_runtime based statistics:
Ingo Molnarfbf94822009-09-11 12:12:54 +0200732 */
Ingo Molnarad236fd2009-09-11 12:12:54 +0200733 printf(" [%0.2f / %0.2f]",
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300734 (double)sched->parent_cpu_usage / NSEC_PER_MSEC,
735 (double)sched->runavg_parent_cpu_usage / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200736#endif
737
Ingo Molnarad236fd2009-09-11 12:12:54 +0200738 printf("\n");
Ingo Molnarec156762009-09-11 12:12:54 +0200739
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300740 if (sched->nr_sleep_corrections)
741 printf(" (%ld sleep corrections)\n", sched->nr_sleep_corrections);
742 sched->nr_sleep_corrections = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200743}
744
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300745static void test_calibrations(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200746{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200747 u64 T0, T1;
Ingo Molnarec156762009-09-11 12:12:54 +0200748
749 T0 = get_nsecs();
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300750 burn_nsecs(sched, NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200751 T1 = get_nsecs();
752
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200753 printf("the run test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200754
755 T0 = get_nsecs();
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300756 sleep_nsecs(NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200757 T1 = get_nsecs();
758
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200759 printf("the sleep test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200760}
761
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300762static int
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300763replay_wakeup_event(struct perf_sched *sched,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300764 struct perf_evsel *evsel, struct perf_sample *sample,
765 struct machine *machine __maybe_unused)
Ingo Molnarec156762009-09-11 12:12:54 +0200766{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300767 const char *comm = perf_evsel__strval(evsel, sample, "comm");
768 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200769 struct task_desc *waker, *wakee;
770
771 if (verbose) {
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300772 printf("sched_wakeup event %p\n", evsel);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200773
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300774 printf(" ... pid %d woke up %s/%d\n", sample->tid, comm, pid);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200775 }
776
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300777 waker = register_pid(sched, sample->tid, "<unknown>");
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300778 wakee = register_pid(sched, pid, comm);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200779
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300780 add_sched_event_wakeup(sched, waker, sample->time, wakee);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300781 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200782}
783
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300784static int replay_switch_event(struct perf_sched *sched,
785 struct perf_evsel *evsel,
786 struct perf_sample *sample,
787 struct machine *machine __maybe_unused)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200788{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300789 const char *prev_comm = perf_evsel__strval(evsel, sample, "prev_comm"),
790 *next_comm = perf_evsel__strval(evsel, sample, "next_comm");
791 const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
792 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
793 const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state");
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300794 struct task_desc *prev, __maybe_unused *next;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -0300795 u64 timestamp0, timestamp = sample->time;
796 int cpu = sample->cpu;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200797 s64 delta;
798
Ingo Molnarad236fd2009-09-11 12:12:54 +0200799 if (verbose)
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300800 printf("sched_switch event %p\n", evsel);
Ingo Molnarad236fd2009-09-11 12:12:54 +0200801
Ingo Molnarfbf94822009-09-11 12:12:54 +0200802 if (cpu >= MAX_CPUS || cpu < 0)
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300803 return 0;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200804
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300805 timestamp0 = sched->cpu_last_switched[cpu];
Ingo Molnarfbf94822009-09-11 12:12:54 +0200806 if (timestamp0)
807 delta = timestamp - timestamp0;
808 else
809 delta = 0;
810
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300811 if (delta < 0) {
Namhyung Kim60b7d142012-09-12 11:11:06 +0900812 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300813 return -1;
814 }
Ingo Molnarfbf94822009-09-11 12:12:54 +0200815
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300816 pr_debug(" ... switch from %s/%d to %s/%d [ran %" PRIu64 " nsecs]\n",
817 prev_comm, prev_pid, next_comm, next_pid, delta);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200818
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300819 prev = register_pid(sched, prev_pid, prev_comm);
820 next = register_pid(sched, next_pid, next_comm);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200821
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300822 sched->cpu_last_switched[cpu] = timestamp;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200823
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300824 add_sched_event_run(sched, prev, timestamp, delta);
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300825 add_sched_event_sleep(sched, prev, timestamp, prev_state);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300826
827 return 0;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200828}
829
David Aherncb627502013-08-07 22:50:47 -0400830static int replay_fork_event(struct perf_sched *sched,
831 union perf_event *event,
832 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200833{
David Aherncb627502013-08-07 22:50:47 -0400834 struct thread *child, *parent;
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300835
Adrian Hunter314add62013-08-27 11:23:03 +0300836 child = machine__findnew_thread(machine, event->fork.pid,
837 event->fork.tid);
838 parent = machine__findnew_thread(machine, event->fork.ppid,
839 event->fork.ptid);
David Aherncb627502013-08-07 22:50:47 -0400840
841 if (child == NULL || parent == NULL) {
842 pr_debug("thread does not exist on fork event: child %p, parent %p\n",
843 child, parent);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300844 goto out_put;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200845 }
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300846
David Aherncb627502013-08-07 22:50:47 -0400847 if (verbose) {
848 printf("fork event\n");
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200849 printf("... parent: %s/%d\n", thread__comm_str(parent), parent->tid);
850 printf("... child: %s/%d\n", thread__comm_str(child), child->tid);
David Aherncb627502013-08-07 22:50:47 -0400851 }
852
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200853 register_pid(sched, parent->tid, thread__comm_str(parent));
854 register_pid(sched, child->tid, thread__comm_str(child));
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300855out_put:
856 thread__put(child);
857 thread__put(parent);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300858 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200859}
860
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200861struct sort_dimension {
862 const char *name;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200863 sort_fn_t cmp;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200864 struct list_head list;
865};
866
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200867static int
mingo39aeb522009-09-14 20:04:48 +0200868thread_lat_cmp(struct list_head *list, struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200869{
870 struct sort_dimension *sort;
871 int ret = 0;
872
Ingo Molnarb5fae122009-09-11 12:12:54 +0200873 BUG_ON(list_empty(list));
874
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200875 list_for_each_entry(sort, list, list) {
876 ret = sort->cmp(l, r);
877 if (ret)
878 return ret;
879 }
880
881 return ret;
882}
883
mingo39aeb522009-09-14 20:04:48 +0200884static struct work_atoms *
Ingo Molnarb5fae122009-09-11 12:12:54 +0200885thread_atoms_search(struct rb_root *root, struct thread *thread,
886 struct list_head *sort_list)
887{
888 struct rb_node *node = root->rb_node;
mingo39aeb522009-09-14 20:04:48 +0200889 struct work_atoms key = { .thread = thread };
Ingo Molnarb5fae122009-09-11 12:12:54 +0200890
891 while (node) {
mingo39aeb522009-09-14 20:04:48 +0200892 struct work_atoms *atoms;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200893 int cmp;
894
mingo39aeb522009-09-14 20:04:48 +0200895 atoms = container_of(node, struct work_atoms, node);
Ingo Molnarb5fae122009-09-11 12:12:54 +0200896
897 cmp = thread_lat_cmp(sort_list, &key, atoms);
898 if (cmp > 0)
899 node = node->rb_left;
900 else if (cmp < 0)
901 node = node->rb_right;
902 else {
903 BUG_ON(thread != atoms->thread);
904 return atoms;
905 }
906 }
907 return NULL;
908}
909
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200910static void
mingo39aeb522009-09-14 20:04:48 +0200911__thread_latency_insert(struct rb_root *root, struct work_atoms *data,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200912 struct list_head *sort_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200913{
914 struct rb_node **new = &(root->rb_node), *parent = NULL;
915
916 while (*new) {
mingo39aeb522009-09-14 20:04:48 +0200917 struct work_atoms *this;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200918 int cmp;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200919
mingo39aeb522009-09-14 20:04:48 +0200920 this = container_of(*new, struct work_atoms, node);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200921 parent = *new;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200922
923 cmp = thread_lat_cmp(sort_list, data, this);
924
925 if (cmp > 0)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200926 new = &((*new)->rb_left);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200927 else
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200928 new = &((*new)->rb_right);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200929 }
930
931 rb_link_node(&data->node, parent, new);
932 rb_insert_color(&data->node, root);
933}
934
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300935static int thread_atoms_insert(struct perf_sched *sched, struct thread *thread)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200936{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200937 struct work_atoms *atoms = zalloc(sizeof(*atoms));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300938 if (!atoms) {
939 pr_err("No memory at %s\n", __func__);
940 return -1;
941 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200942
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -0300943 atoms->thread = thread__get(thread);
mingo39aeb522009-09-14 20:04:48 +0200944 INIT_LIST_HEAD(&atoms->work_list);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300945 __thread_latency_insert(&sched->atom_root, atoms, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300946 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200947}
948
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300949static char sched_out_state(u64 prev_state)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200950{
951 const char *str = TASK_STATE_TO_CHAR_STR;
952
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300953 return str[prev_state];
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200954}
955
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300956static int
mingo39aeb522009-09-14 20:04:48 +0200957add_sched_out_event(struct work_atoms *atoms,
958 char run_state,
959 u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200960{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200961 struct work_atom *atom = zalloc(sizeof(*atom));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300962 if (!atom) {
963 pr_err("Non memory at %s", __func__);
964 return -1;
965 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200966
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200967 atom->sched_out_time = timestamp;
968
mingo39aeb522009-09-14 20:04:48 +0200969 if (run_state == 'R') {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200970 atom->state = THREAD_WAIT_CPU;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200971 atom->wake_up_time = atom->sched_out_time;
Frederic Weisbeckerc6ced612009-09-13 00:46:19 +0200972 }
973
mingo39aeb522009-09-14 20:04:48 +0200974 list_add_tail(&atom->list, &atoms->work_list);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300975 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200976}
977
978static void
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300979add_runtime_event(struct work_atoms *atoms, u64 delta,
980 u64 timestamp __maybe_unused)
mingo39aeb522009-09-14 20:04:48 +0200981{
982 struct work_atom *atom;
983
984 BUG_ON(list_empty(&atoms->work_list));
985
986 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
987
988 atom->runtime += delta;
989 atoms->total_runtime += delta;
990}
991
992static void
993add_sched_in_event(struct work_atoms *atoms, u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200994{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200995 struct work_atom *atom;
Frederic Weisbecker66685672009-09-13 01:56:25 +0200996 u64 delta;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200997
mingo39aeb522009-09-14 20:04:48 +0200998 if (list_empty(&atoms->work_list))
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200999 return;
1000
mingo39aeb522009-09-14 20:04:48 +02001001 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001002
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001003 if (atom->state != THREAD_WAIT_CPU)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001004 return;
1005
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001006 if (timestamp < atom->wake_up_time) {
1007 atom->state = THREAD_IGNORE;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001008 return;
1009 }
1010
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001011 atom->state = THREAD_SCHED_IN;
1012 atom->sched_in_time = timestamp;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001013
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001014 delta = atom->sched_in_time - atom->wake_up_time;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001015 atoms->total_lat += delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001016 if (delta > atoms->max_lat) {
Frederic Weisbecker66685672009-09-13 01:56:25 +02001017 atoms->max_lat = delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001018 atoms->max_lat_at = timestamp;
1019 }
Frederic Weisbecker66685672009-09-13 01:56:25 +02001020 atoms->nb_atoms++;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001021}
1022
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001023static int latency_switch_event(struct perf_sched *sched,
1024 struct perf_evsel *evsel,
1025 struct perf_sample *sample,
1026 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001027{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001028 const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
1029 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
1030 const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state");
mingo39aeb522009-09-14 20:04:48 +02001031 struct work_atoms *out_events, *in_events;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001032 struct thread *sched_out, *sched_in;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001033 u64 timestamp0, timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001034 int cpu = sample->cpu, err = -1;
Ingo Molnarea92ed52009-09-12 10:08:34 +02001035 s64 delta;
1036
mingo39aeb522009-09-14 20:04:48 +02001037 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
Ingo Molnarea92ed52009-09-12 10:08:34 +02001038
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001039 timestamp0 = sched->cpu_last_switched[cpu];
1040 sched->cpu_last_switched[cpu] = timestamp;
Ingo Molnarea92ed52009-09-12 10:08:34 +02001041 if (timestamp0)
1042 delta = timestamp - timestamp0;
1043 else
1044 delta = 0;
1045
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001046 if (delta < 0) {
1047 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
1048 return -1;
1049 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001050
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001051 sched_out = machine__findnew_thread(machine, -1, prev_pid);
1052 sched_in = machine__findnew_thread(machine, -1, next_pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001053 if (sched_out == NULL || sched_in == NULL)
1054 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001055
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001056 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +02001057 if (!out_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001058 if (thread_atoms_insert(sched, sched_out))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001059 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001060 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001061 if (!out_events) {
1062 pr_err("out-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001063 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001064 }
mingo39aeb522009-09-14 20:04:48 +02001065 }
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001066 if (add_sched_out_event(out_events, sched_out_state(prev_state), timestamp))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001067 return -1;
mingo39aeb522009-09-14 20:04:48 +02001068
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001069 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +02001070 if (!in_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001071 if (thread_atoms_insert(sched, sched_in))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001072 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001073 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001074 if (!in_events) {
1075 pr_err("in-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001076 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001077 }
mingo39aeb522009-09-14 20:04:48 +02001078 /*
1079 * Take came in we have not heard about yet,
1080 * add in an initial atom in runnable state:
1081 */
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001082 if (add_sched_out_event(in_events, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001083 goto out_put;
mingo39aeb522009-09-14 20:04:48 +02001084 }
1085 add_sched_in_event(in_events, timestamp);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001086 err = 0;
1087out_put:
1088 thread__put(sched_out);
1089 thread__put(sched_in);
1090 return err;
mingo39aeb522009-09-14 20:04:48 +02001091}
1092
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001093static int latency_runtime_event(struct perf_sched *sched,
1094 struct perf_evsel *evsel,
1095 struct perf_sample *sample,
1096 struct machine *machine)
mingo39aeb522009-09-14 20:04:48 +02001097{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001098 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
1099 const u64 runtime = perf_evsel__intval(evsel, sample, "runtime");
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001100 struct thread *thread = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001101 struct work_atoms *atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001102 u64 timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001103 int cpu = sample->cpu, err = -1;
1104
1105 if (thread == NULL)
1106 return -1;
mingo39aeb522009-09-14 20:04:48 +02001107
1108 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
mingo39aeb522009-09-14 20:04:48 +02001109 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001110 if (thread_atoms_insert(sched, thread))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001111 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001112 atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001113 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001114 pr_err("in-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001115 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001116 }
1117 if (add_sched_out_event(atoms, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001118 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001119 }
1120
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001121 add_runtime_event(atoms, runtime, timestamp);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001122 err = 0;
1123out_put:
1124 thread__put(thread);
1125 return err;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001126}
1127
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001128static int latency_wakeup_event(struct perf_sched *sched,
1129 struct perf_evsel *evsel,
1130 struct perf_sample *sample,
1131 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001132{
Peter Zijlstra0680ee72014-05-12 20:19:46 +02001133 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
mingo39aeb522009-09-14 20:04:48 +02001134 struct work_atoms *atoms;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001135 struct work_atom *atom;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001136 struct thread *wakee;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001137 u64 timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001138 int err = -1;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001139
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001140 wakee = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001141 if (wakee == NULL)
1142 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001143 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Frederic Weisbecker17562202009-09-12 23:11:32 +02001144 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001145 if (thread_atoms_insert(sched, wakee))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001146 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001147 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001148 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001149 pr_err("wakeup-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001150 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001151 }
1152 if (add_sched_out_event(atoms, 'S', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001153 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001154 }
1155
mingo39aeb522009-09-14 20:04:48 +02001156 BUG_ON(list_empty(&atoms->work_list));
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001157
mingo39aeb522009-09-14 20:04:48 +02001158 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001159
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001160 /*
Dongsheng Yang67d62592014-05-13 10:38:21 +09001161 * As we do not guarantee the wakeup event happens when
1162 * task is out of run queue, also may happen when task is
1163 * on run queue and wakeup only change ->state to TASK_RUNNING,
1164 * then we should not set the ->wake_up_time when wake up a
1165 * task which is on run queue.
1166 *
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001167 * You WILL be missing events if you've recorded only
1168 * one CPU, or are only looking at only one, so don't
Dongsheng Yang67d62592014-05-13 10:38:21 +09001169 * skip in this case.
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001170 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001171 if (sched->profile_cpu == -1 && atom->state != THREAD_SLEEPING)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001172 goto out_ok;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001173
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001174 sched->nr_timestamps++;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001175 if (atom->sched_out_time > timestamp) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001176 sched->nr_unordered_timestamps++;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001177 goto out_ok;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001178 }
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001179
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001180 atom->state = THREAD_WAIT_CPU;
1181 atom->wake_up_time = timestamp;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001182out_ok:
1183 err = 0;
1184out_put:
1185 thread__put(wakee);
1186 return err;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001187}
1188
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001189static int latency_migrate_task_event(struct perf_sched *sched,
1190 struct perf_evsel *evsel,
1191 struct perf_sample *sample,
1192 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001193{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001194 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001195 u64 timestamp = sample->time;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001196 struct work_atoms *atoms;
1197 struct work_atom *atom;
1198 struct thread *migrant;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001199 int err = -1;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001200
1201 /*
1202 * Only need to worry about migration when profiling one CPU.
1203 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001204 if (sched->profile_cpu == -1)
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001205 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001206
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001207 migrant = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001208 if (migrant == NULL)
1209 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001210 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001211 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001212 if (thread_atoms_insert(sched, migrant))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001213 goto out_put;
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001214 register_pid(sched, migrant->tid, thread__comm_str(migrant));
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001215 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001216 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001217 pr_err("migration-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001218 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001219 }
1220 if (add_sched_out_event(atoms, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001221 goto out_put;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001222 }
1223
1224 BUG_ON(list_empty(&atoms->work_list));
1225
1226 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1227 atom->sched_in_time = atom->sched_out_time = atom->wake_up_time = timestamp;
1228
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001229 sched->nr_timestamps++;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001230
1231 if (atom->sched_out_time > timestamp)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001232 sched->nr_unordered_timestamps++;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001233 err = 0;
1234out_put:
1235 thread__put(migrant);
1236 return err;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001237}
1238
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001239static void output_lat_thread(struct perf_sched *sched, struct work_atoms *work_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001240{
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001241 int i;
1242 int ret;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001243 u64 avg;
Namhyung Kim99620a52016-10-24 11:02:45 +09001244 char max_lat_at[32];
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001245
mingo39aeb522009-09-14 20:04:48 +02001246 if (!work_list->nb_atoms)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001247 return;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001248 /*
1249 * Ignore idle threads:
1250 */
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001251 if (!strcmp(thread__comm_str(work_list->thread), "swapper"))
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001252 return;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001253
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001254 sched->all_runtime += work_list->total_runtime;
1255 sched->all_count += work_list->nb_atoms;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001256
Josef Bacik2f80dd42015-05-22 09:18:40 -04001257 if (work_list->num_merged > 1)
1258 ret = printf(" %s:(%d) ", thread__comm_str(work_list->thread), work_list->num_merged);
1259 else
1260 ret = printf(" %s:%d ", thread__comm_str(work_list->thread), work_list->thread->tid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001261
mingo08f69e62009-09-14 18:30:44 +02001262 for (i = 0; i < 24 - ret; i++)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001263 printf(" ");
1264
mingo39aeb522009-09-14 20:04:48 +02001265 avg = work_list->total_lat / work_list->nb_atoms;
Namhyung Kim99620a52016-10-24 11:02:45 +09001266 timestamp__scnprintf_usec(work_list->max_lat_at, max_lat_at, sizeof(max_lat_at));
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001267
Namhyung Kim99620a52016-10-24 11:02:45 +09001268 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 -03001269 (double)work_list->total_runtime / NSEC_PER_MSEC,
1270 work_list->nb_atoms, (double)avg / NSEC_PER_MSEC,
1271 (double)work_list->max_lat / NSEC_PER_MSEC,
Namhyung Kim99620a52016-10-24 11:02:45 +09001272 max_lat_at);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001273}
1274
mingo39aeb522009-09-14 20:04:48 +02001275static int pid_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001276{
Jiri Olsa0014de12015-11-02 12:10:25 +01001277 if (l->thread == r->thread)
1278 return 0;
Adrian Hunter38051232013-07-04 16:20:31 +03001279 if (l->thread->tid < r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001280 return -1;
Adrian Hunter38051232013-07-04 16:20:31 +03001281 if (l->thread->tid > r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001282 return 1;
Jiri Olsa0014de12015-11-02 12:10:25 +01001283 return (int)(l->thread - r->thread);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001284}
1285
mingo39aeb522009-09-14 20:04:48 +02001286static int avg_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001287{
1288 u64 avgl, avgr;
1289
1290 if (!l->nb_atoms)
1291 return -1;
1292
1293 if (!r->nb_atoms)
1294 return 1;
1295
1296 avgl = l->total_lat / l->nb_atoms;
1297 avgr = r->total_lat / r->nb_atoms;
1298
1299 if (avgl < avgr)
1300 return -1;
1301 if (avgl > avgr)
1302 return 1;
1303
1304 return 0;
1305}
1306
mingo39aeb522009-09-14 20:04:48 +02001307static int max_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001308{
1309 if (l->max_lat < r->max_lat)
1310 return -1;
1311 if (l->max_lat > r->max_lat)
1312 return 1;
1313
1314 return 0;
1315}
1316
mingo39aeb522009-09-14 20:04:48 +02001317static int switch_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001318{
1319 if (l->nb_atoms < r->nb_atoms)
1320 return -1;
1321 if (l->nb_atoms > r->nb_atoms)
1322 return 1;
1323
1324 return 0;
1325}
1326
mingo39aeb522009-09-14 20:04:48 +02001327static int runtime_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001328{
1329 if (l->total_runtime < r->total_runtime)
1330 return -1;
1331 if (l->total_runtime > r->total_runtime)
1332 return 1;
1333
1334 return 0;
1335}
1336
Randy Dunlapcbef79a2009-10-05 13:17:29 -07001337static int sort_dimension__add(const char *tok, struct list_head *list)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001338{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001339 size_t i;
1340 static struct sort_dimension avg_sort_dimension = {
1341 .name = "avg",
1342 .cmp = avg_cmp,
1343 };
1344 static struct sort_dimension max_sort_dimension = {
1345 .name = "max",
1346 .cmp = max_cmp,
1347 };
1348 static struct sort_dimension pid_sort_dimension = {
1349 .name = "pid",
1350 .cmp = pid_cmp,
1351 };
1352 static struct sort_dimension runtime_sort_dimension = {
1353 .name = "runtime",
1354 .cmp = runtime_cmp,
1355 };
1356 static struct sort_dimension switch_sort_dimension = {
1357 .name = "switch",
1358 .cmp = switch_cmp,
1359 };
1360 struct sort_dimension *available_sorts[] = {
1361 &pid_sort_dimension,
1362 &avg_sort_dimension,
1363 &max_sort_dimension,
1364 &switch_sort_dimension,
1365 &runtime_sort_dimension,
1366 };
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001367
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001368 for (i = 0; i < ARRAY_SIZE(available_sorts); i++) {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001369 if (!strcmp(available_sorts[i]->name, tok)) {
1370 list_add_tail(&available_sorts[i]->list, list);
1371
1372 return 0;
1373 }
1374 }
1375
1376 return -1;
1377}
1378
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001379static void perf_sched__sort_lat(struct perf_sched *sched)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001380{
1381 struct rb_node *node;
Josef Bacik2f80dd42015-05-22 09:18:40 -04001382 struct rb_root *root = &sched->atom_root;
1383again:
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001384 for (;;) {
mingo39aeb522009-09-14 20:04:48 +02001385 struct work_atoms *data;
Josef Bacik2f80dd42015-05-22 09:18:40 -04001386 node = rb_first(root);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001387 if (!node)
1388 break;
1389
Josef Bacik2f80dd42015-05-22 09:18:40 -04001390 rb_erase(node, root);
mingo39aeb522009-09-14 20:04:48 +02001391 data = rb_entry(node, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001392 __thread_latency_insert(&sched->sorted_atom_root, data, &sched->sort_list);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001393 }
Josef Bacik2f80dd42015-05-22 09:18:40 -04001394 if (root == &sched->atom_root) {
1395 root = &sched->merged_atom_root;
1396 goto again;
1397 }
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001398}
1399
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001400static int process_sched_wakeup_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001401 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001402 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001403 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001404{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001405 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001406
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001407 if (sched->tp_handler->wakeup_event)
1408 return sched->tp_handler->wakeup_event(sched, evsel, sample, machine);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001409
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001410 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001411}
1412
Jiri Olsaa151a372016-04-12 15:29:29 +02001413union map_priv {
1414 void *ptr;
1415 bool color;
1416};
1417
1418static bool thread__has_color(struct thread *thread)
1419{
1420 union map_priv priv = {
1421 .ptr = thread__priv(thread),
1422 };
1423
1424 return priv.color;
1425}
1426
1427static struct thread*
1428map__findnew_thread(struct perf_sched *sched, struct machine *machine, pid_t pid, pid_t tid)
1429{
1430 struct thread *thread = machine__findnew_thread(machine, pid, tid);
1431 union map_priv priv = {
1432 .color = false,
1433 };
1434
1435 if (!sched->map.color_pids || !thread || thread__priv(thread))
1436 return thread;
1437
1438 if (thread_map__has(sched->map.color_pids, tid))
1439 priv.color = true;
1440
1441 thread__set_priv(thread, priv.ptr);
1442 return thread;
1443}
1444
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001445static int map_switch_event(struct perf_sched *sched, struct perf_evsel *evsel,
1446 struct perf_sample *sample, struct machine *machine)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001447{
Dongsheng Yang9d372ca2014-05-16 14:37:05 +09001448 const u32 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
1449 struct thread *sched_in;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001450 int new_shortname;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001451 u64 timestamp0, timestamp = sample->time;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001452 s64 delta;
Jiri Olsa99623c62016-04-12 15:29:26 +02001453 int i, this_cpu = sample->cpu;
1454 int cpus_nr;
1455 bool new_cpu = false;
Jiri Olsa8cd91192016-04-12 15:29:27 +02001456 const char *color = PERF_COLOR_NORMAL;
Namhyung Kim99620a52016-10-24 11:02:45 +09001457 char stimestamp[32];
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001458
1459 BUG_ON(this_cpu >= MAX_CPUS || this_cpu < 0);
1460
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001461 if (this_cpu > sched->max_cpu)
1462 sched->max_cpu = this_cpu;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001463
Jiri Olsa99623c62016-04-12 15:29:26 +02001464 if (sched->map.comp) {
1465 cpus_nr = bitmap_weight(sched->map.comp_cpus_mask, MAX_CPUS);
1466 if (!test_and_set_bit(this_cpu, sched->map.comp_cpus_mask)) {
1467 sched->map.comp_cpus[cpus_nr++] = this_cpu;
1468 new_cpu = true;
1469 }
1470 } else
1471 cpus_nr = sched->max_cpu;
1472
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001473 timestamp0 = sched->cpu_last_switched[this_cpu];
1474 sched->cpu_last_switched[this_cpu] = timestamp;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001475 if (timestamp0)
1476 delta = timestamp - timestamp0;
1477 else
1478 delta = 0;
1479
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001480 if (delta < 0) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001481 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001482 return -1;
1483 }
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001484
Jiri Olsaa151a372016-04-12 15:29:29 +02001485 sched_in = map__findnew_thread(sched, machine, -1, next_pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001486 if (sched_in == NULL)
1487 return -1;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001488
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001489 sched->curr_thread[this_cpu] = thread__get(sched_in);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001490
1491 printf(" ");
1492
1493 new_shortname = 0;
1494 if (!sched_in->shortname[0]) {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001495 if (!strcmp(thread__comm_str(sched_in), "swapper")) {
1496 /*
1497 * Don't allocate a letter-number for swapper:0
1498 * as a shortname. Instead, we use '.' for it.
1499 */
1500 sched_in->shortname[0] = '.';
1501 sched_in->shortname[1] = ' ';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001502 } else {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001503 sched_in->shortname[0] = sched->next_shortname1;
1504 sched_in->shortname[1] = sched->next_shortname2;
1505
1506 if (sched->next_shortname1 < 'Z') {
1507 sched->next_shortname1++;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001508 } else {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001509 sched->next_shortname1 = 'A';
1510 if (sched->next_shortname2 < '9')
1511 sched->next_shortname2++;
1512 else
1513 sched->next_shortname2 = '0';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001514 }
1515 }
1516 new_shortname = 1;
1517 }
1518
Jiri Olsa99623c62016-04-12 15:29:26 +02001519 for (i = 0; i < cpus_nr; i++) {
1520 int cpu = sched->map.comp ? sched->map.comp_cpus[i] : i;
Jiri Olsaa151a372016-04-12 15:29:29 +02001521 struct thread *curr_thread = sched->curr_thread[cpu];
1522 const char *pid_color = color;
Jiri Olsacf294f22016-04-12 15:29:30 +02001523 const char *cpu_color = color;
Jiri Olsaa151a372016-04-12 15:29:29 +02001524
1525 if (curr_thread && thread__has_color(curr_thread))
1526 pid_color = COLOR_PIDS;
Jiri Olsa99623c62016-04-12 15:29:26 +02001527
Jiri Olsa73643bb2016-04-12 15:29:31 +02001528 if (sched->map.cpus && !cpu_map__has(sched->map.cpus, cpu))
1529 continue;
1530
Jiri Olsacf294f22016-04-12 15:29:30 +02001531 if (sched->map.color_cpus && cpu_map__has(sched->map.color_cpus, cpu))
1532 cpu_color = COLOR_CPUS;
1533
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001534 if (cpu != this_cpu)
Namhyung Kim1208bb22016-10-24 11:02:43 +09001535 color_fprintf(stdout, color, " ");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001536 else
Jiri Olsacf294f22016-04-12 15:29:30 +02001537 color_fprintf(stdout, cpu_color, "*");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001538
Dongsheng6bcab4e2014-05-06 14:39:01 +09001539 if (sched->curr_thread[cpu])
Jiri Olsaa151a372016-04-12 15:29:29 +02001540 color_fprintf(stdout, pid_color, "%2s ", sched->curr_thread[cpu]->shortname);
Dongsheng6bcab4e2014-05-06 14:39:01 +09001541 else
Jiri Olsa8cd91192016-04-12 15:29:27 +02001542 color_fprintf(stdout, color, " ");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001543 }
1544
Jiri Olsa73643bb2016-04-12 15:29:31 +02001545 if (sched->map.cpus && !cpu_map__has(sched->map.cpus, this_cpu))
1546 goto out;
1547
Namhyung Kim99620a52016-10-24 11:02:45 +09001548 timestamp__scnprintf_usec(timestamp, stimestamp, sizeof(stimestamp));
1549 color_fprintf(stdout, color, " %12s secs ", stimestamp);
Namhyung Kime107f122016-10-24 11:02:44 +09001550 if (new_shortname || (verbose && sched_in->tid)) {
Jiri Olsaa151a372016-04-12 15:29:29 +02001551 const char *pid_color = color;
1552
1553 if (thread__has_color(sched_in))
1554 pid_color = COLOR_PIDS;
1555
1556 color_fprintf(stdout, pid_color, "%s => %s:%d",
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001557 sched_in->shortname, thread__comm_str(sched_in), sched_in->tid);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001558 }
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001559
Jiri Olsa99623c62016-04-12 15:29:26 +02001560 if (sched->map.comp && new_cpu)
Jiri Olsa8cd91192016-04-12 15:29:27 +02001561 color_fprintf(stdout, color, " (CPU %d)", this_cpu);
Jiri Olsa99623c62016-04-12 15:29:26 +02001562
Jiri Olsa73643bb2016-04-12 15:29:31 +02001563out:
Jiri Olsa8cd91192016-04-12 15:29:27 +02001564 color_fprintf(stdout, color, "\n");
Jiri Olsa99623c62016-04-12 15:29:26 +02001565
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001566 thread__put(sched_in);
1567
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001568 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001569}
1570
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001571static int process_sched_switch_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001572 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001573 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001574 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001575{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001576 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001577 int this_cpu = sample->cpu, err = 0;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001578 u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
1579 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001580
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001581 if (sched->curr_pid[this_cpu] != (u32)-1) {
Ingo Molnarc8a37752009-09-16 14:07:00 +02001582 /*
1583 * Are we trying to switch away a PID that is
1584 * not current?
1585 */
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001586 if (sched->curr_pid[this_cpu] != prev_pid)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001587 sched->nr_context_switch_bugs++;
Ingo Molnarc8a37752009-09-16 14:07:00 +02001588 }
Ingo Molnarc8a37752009-09-16 14:07:00 +02001589
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001590 if (sched->tp_handler->switch_event)
1591 err = sched->tp_handler->switch_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001592
1593 sched->curr_pid[this_cpu] = next_pid;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001594 return err;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001595}
1596
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001597static int process_sched_runtime_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001598 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001599 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001600 struct machine *machine)
mingo39aeb522009-09-14 20:04:48 +02001601{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001602 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
mingo39aeb522009-09-14 20:04:48 +02001603
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001604 if (sched->tp_handler->runtime_event)
1605 return sched->tp_handler->runtime_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001606
1607 return 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001608}
1609
David Aherncb627502013-08-07 22:50:47 -04001610static int perf_sched__process_fork_event(struct perf_tool *tool,
1611 union perf_event *event,
1612 struct perf_sample *sample,
1613 struct machine *machine)
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001614{
1615 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
1616
David Aherncb627502013-08-07 22:50:47 -04001617 /* run the fork event through the perf machineruy */
1618 perf_event__process_fork(tool, event, sample, machine);
1619
1620 /* and then run additional processing needed for this command */
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001621 if (sched->tp_handler->fork_event)
David Aherncb627502013-08-07 22:50:47 -04001622 return sched->tp_handler->fork_event(sched, event, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001623
1624 return 0;
1625}
1626
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001627static int process_sched_migrate_task_event(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001628 struct perf_evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001629 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001630 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001631{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001632 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001633
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001634 if (sched->tp_handler->migrate_task_event)
1635 return sched->tp_handler->migrate_task_event(sched, evsel, sample, machine);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001636
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001637 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001638}
1639
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001640typedef int (*tracepoint_handler)(struct perf_tool *tool,
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001641 struct perf_evsel *evsel,
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001642 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001643 struct machine *machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001644
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001645static int perf_sched__process_tracepoint_sample(struct perf_tool *tool __maybe_unused,
1646 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001647 struct perf_sample *sample,
1648 struct perf_evsel *evsel,
1649 struct machine *machine)
Ingo Molnarec156762009-09-11 12:12:54 +02001650{
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001651 int err = 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001652
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001653 if (evsel->handler != NULL) {
1654 tracepoint_handler f = evsel->handler;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001655 err = f(tool, evsel, sample, machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001656 }
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001657
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001658 return err;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001659}
1660
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001661static int perf_sched__read_events(struct perf_sched *sched)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001662{
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001663 const struct perf_evsel_str_handler handlers[] = {
1664 { "sched:sched_switch", process_sched_switch_event, },
1665 { "sched:sched_stat_runtime", process_sched_runtime_event, },
1666 { "sched:sched_wakeup", process_sched_wakeup_event, },
1667 { "sched:sched_wakeup_new", process_sched_wakeup_event, },
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001668 { "sched:sched_migrate_task", process_sched_migrate_task_event, },
1669 };
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001670 struct perf_session *session;
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001671 struct perf_data_file file = {
1672 .path = input_name,
1673 .mode = PERF_DATA_MODE_READ,
Yunlong Songf0dd3302015-03-31 21:46:35 +08001674 .force = sched->force,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001675 };
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001676 int rc = -1;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001677
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001678 session = perf_session__new(&file, false, &sched->tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001679 if (session == NULL) {
1680 pr_debug("No Memory for session\n");
1681 return -1;
1682 }
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02001683
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001684 symbol__init(&session->header.env);
Namhyung Kim04934102014-08-12 15:40:41 +09001685
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001686 if (perf_session__set_tracepoints_handlers(session, handlers))
1687 goto out_delete;
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001688
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001689 if (perf_session__has_traces(session, "record -R")) {
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001690 int err = perf_session__process_events(session);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001691 if (err) {
1692 pr_err("Failed to process events, error %d", err);
1693 goto out_delete;
1694 }
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001695
Arnaldo Carvalho de Melo75be9892015-02-14 14:50:11 -03001696 sched->nr_events = session->evlist->stats.nr_events[0];
1697 sched->nr_lost_events = session->evlist->stats.total_lost;
1698 sched->nr_lost_chunks = session->evlist->stats.nr_events[PERF_RECORD_LOST];
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001699 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -02001700
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001701 rc = 0;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001702out_delete:
1703 perf_session__delete(session);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001704 return rc;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001705}
1706
David Ahern49394a22016-11-16 15:06:29 +09001707/*
1708 * scheduling times are printed as msec.usec
1709 */
1710static inline void print_sched_time(unsigned long long nsecs, int width)
1711{
1712 unsigned long msecs;
1713 unsigned long usecs;
1714
1715 msecs = nsecs / NSEC_PER_MSEC;
1716 nsecs -= msecs * NSEC_PER_MSEC;
1717 usecs = nsecs / NSEC_PER_USEC;
1718 printf("%*lu.%03lu ", width, msecs, usecs);
1719}
1720
1721/*
1722 * returns runtime data for event, allocating memory for it the
1723 * first time it is used.
1724 */
1725static struct evsel_runtime *perf_evsel__get_runtime(struct perf_evsel *evsel)
1726{
1727 struct evsel_runtime *r = evsel->priv;
1728
1729 if (r == NULL) {
1730 r = zalloc(sizeof(struct evsel_runtime));
1731 evsel->priv = r;
1732 }
1733
1734 return r;
1735}
1736
1737/*
1738 * save last time event was seen per cpu
1739 */
1740static void perf_evsel__save_time(struct perf_evsel *evsel,
1741 u64 timestamp, u32 cpu)
1742{
1743 struct evsel_runtime *r = perf_evsel__get_runtime(evsel);
1744
1745 if (r == NULL)
1746 return;
1747
1748 if ((cpu >= r->ncpu) || (r->last_time == NULL)) {
1749 int i, n = __roundup_pow_of_two(cpu+1);
1750 void *p = r->last_time;
1751
1752 p = realloc(r->last_time, n * sizeof(u64));
1753 if (!p)
1754 return;
1755
1756 r->last_time = p;
1757 for (i = r->ncpu; i < n; ++i)
1758 r->last_time[i] = (u64) 0;
1759
1760 r->ncpu = n;
1761 }
1762
1763 r->last_time[cpu] = timestamp;
1764}
1765
1766/* returns last time this event was seen on the given cpu */
1767static u64 perf_evsel__get_time(struct perf_evsel *evsel, u32 cpu)
1768{
1769 struct evsel_runtime *r = perf_evsel__get_runtime(evsel);
1770
1771 if ((r == NULL) || (r->last_time == NULL) || (cpu >= r->ncpu))
1772 return 0;
1773
1774 return r->last_time[cpu];
1775}
1776
1777static int comm_width = 20;
1778
1779static char *timehist_get_commstr(struct thread *thread)
1780{
1781 static char str[32];
1782 const char *comm = thread__comm_str(thread);
1783 pid_t tid = thread->tid;
1784 pid_t pid = thread->pid_;
1785 int n;
1786
1787 if (pid == 0)
1788 n = scnprintf(str, sizeof(str), "%s", comm);
1789
1790 else if (tid != pid)
1791 n = scnprintf(str, sizeof(str), "%s[%d/%d]", comm, tid, pid);
1792
1793 else
1794 n = scnprintf(str, sizeof(str), "%s[%d]", comm, tid);
1795
1796 if (n > comm_width)
1797 comm_width = n;
1798
1799 return str;
1800}
1801
David Aherna407b062016-11-16 15:06:33 +09001802static void timehist_header(struct perf_sched *sched)
David Ahern49394a22016-11-16 15:06:29 +09001803{
David Aherna407b062016-11-16 15:06:33 +09001804 u32 ncpus = sched->max_cpu + 1;
1805 u32 i, j;
1806
David Ahern49394a22016-11-16 15:06:29 +09001807 printf("%15s %6s ", "time", "cpu");
1808
David Aherna407b062016-11-16 15:06:33 +09001809 if (sched->show_cpu_visual) {
1810 printf(" ");
1811 for (i = 0, j = 0; i < ncpus; ++i) {
1812 printf("%x", j++);
1813 if (j > 15)
1814 j = 0;
1815 }
1816 printf(" ");
1817 }
1818
David Ahern49394a22016-11-16 15:06:29 +09001819 printf(" %-20s %9s %9s %9s",
1820 "task name", "wait time", "sch delay", "run time");
1821
1822 printf("\n");
1823
1824 /*
1825 * units row
1826 */
1827 printf("%15s %-6s ", "", "");
1828
David Aherna407b062016-11-16 15:06:33 +09001829 if (sched->show_cpu_visual)
1830 printf(" %*s ", ncpus, "");
1831
David Ahern49394a22016-11-16 15:06:29 +09001832 printf(" %-20s %9s %9s %9s\n", "[tid/pid]", "(msec)", "(msec)", "(msec)");
1833
1834 /*
1835 * separator
1836 */
1837 printf("%.15s %.6s ", graph_dotted_line, graph_dotted_line);
1838
David Aherna407b062016-11-16 15:06:33 +09001839 if (sched->show_cpu_visual)
1840 printf(" %.*s ", ncpus, graph_dotted_line);
1841
David Ahern49394a22016-11-16 15:06:29 +09001842 printf(" %.20s %.9s %.9s %.9s",
1843 graph_dotted_line, graph_dotted_line, graph_dotted_line,
1844 graph_dotted_line);
1845
1846 printf("\n");
1847}
1848
David Ahernfc1469f2016-11-16 15:06:31 +09001849static void timehist_print_sample(struct perf_sched *sched,
1850 struct perf_sample *sample,
David Ahern6c973c92016-11-16 15:06:32 +09001851 struct addr_location *al,
David Ahern853b7402016-11-29 10:15:44 -07001852 struct thread *thread,
1853 u64 t)
David Ahern49394a22016-11-16 15:06:29 +09001854{
1855 struct thread_runtime *tr = thread__priv(thread);
David Aherna407b062016-11-16 15:06:33 +09001856 u32 max_cpus = sched->max_cpu + 1;
David Ahern49394a22016-11-16 15:06:29 +09001857 char tstr[64];
1858
David Ahern853b7402016-11-29 10:15:44 -07001859 timestamp__scnprintf_usec(t, tstr, sizeof(tstr));
David Ahern49394a22016-11-16 15:06:29 +09001860 printf("%15s [%04d] ", tstr, sample->cpu);
1861
David Aherna407b062016-11-16 15:06:33 +09001862 if (sched->show_cpu_visual) {
1863 u32 i;
1864 char c;
1865
1866 printf(" ");
1867 for (i = 0; i < max_cpus; ++i) {
1868 /* flag idle times with 'i'; others are sched events */
1869 if (i == sample->cpu)
1870 c = (thread->tid == 0) ? 'i' : 's';
1871 else
1872 c = ' ';
1873 printf("%c", c);
1874 }
1875 printf(" ");
1876 }
1877
David Ahern49394a22016-11-16 15:06:29 +09001878 printf(" %-*s ", comm_width, timehist_get_commstr(thread));
1879
1880 print_sched_time(tr->dt_wait, 6);
1881 print_sched_time(tr->dt_delay, 6);
1882 print_sched_time(tr->dt_run, 6);
David Ahernfc1469f2016-11-16 15:06:31 +09001883
1884 if (sched->show_wakeups)
1885 printf(" %-*s", comm_width, "");
1886
David Ahern6c973c92016-11-16 15:06:32 +09001887 if (thread->tid == 0)
1888 goto out;
1889
1890 if (sched->show_callchain)
1891 printf(" ");
1892
1893 sample__fprintf_sym(sample, al, 0,
1894 EVSEL__PRINT_SYM | EVSEL__PRINT_ONELINE |
Namhyung Kim2d9bbf62016-11-24 10:11:13 +09001895 EVSEL__PRINT_CALLCHAIN_ARROW |
1896 EVSEL__PRINT_SKIP_IGNORED,
David Ahern6c973c92016-11-16 15:06:32 +09001897 &callchain_cursor, stdout);
1898
1899out:
David Ahern49394a22016-11-16 15:06:29 +09001900 printf("\n");
1901}
1902
1903/*
1904 * Explanation of delta-time stats:
1905 *
1906 * t = time of current schedule out event
1907 * tprev = time of previous sched out event
1908 * also time of schedule-in event for current task
1909 * last_time = time of last sched change event for current task
1910 * (i.e, time process was last scheduled out)
1911 * ready_to_run = time of wakeup for current task
1912 *
1913 * -----|------------|------------|------------|------
1914 * last ready tprev t
1915 * time to run
1916 *
1917 * |-------- dt_wait --------|
1918 * |- dt_delay -|-- dt_run --|
1919 *
1920 * dt_run = run time of current task
1921 * dt_wait = time between last schedule out event for task and tprev
1922 * represents time spent off the cpu
1923 * dt_delay = time between wakeup and schedule-in of task
1924 */
1925
1926static void timehist_update_runtime_stats(struct thread_runtime *r,
1927 u64 t, u64 tprev)
1928{
1929 r->dt_delay = 0;
1930 r->dt_wait = 0;
1931 r->dt_run = 0;
1932 if (tprev) {
1933 r->dt_run = t - tprev;
1934 if (r->ready_to_run) {
1935 if (r->ready_to_run > tprev)
1936 pr_debug("time travel: wakeup time for task > previous sched_switch event\n");
1937 else
1938 r->dt_delay = tprev - r->ready_to_run;
1939 }
1940
1941 if (r->last_time > tprev)
1942 pr_debug("time travel: last sched out time for task > previous sched_switch event\n");
1943 else if (r->last_time)
1944 r->dt_wait = tprev - r->last_time;
1945 }
1946
1947 update_stats(&r->run_stats, r->dt_run);
1948 r->total_run_time += r->dt_run;
1949}
1950
Namhyung Kim96039c72016-12-08 23:47:50 +09001951static bool is_idle_sample(struct perf_sample *sample,
1952 struct perf_evsel *evsel)
David Ahern49394a22016-11-16 15:06:29 +09001953{
1954 /* pid 0 == swapper == idle task */
Namhyung Kim96039c72016-12-08 23:47:50 +09001955 if (strcmp(perf_evsel__name(evsel), "sched:sched_switch") == 0)
1956 return perf_evsel__intval(evsel, sample, "prev_pid") == 0;
David Ahern49394a22016-11-16 15:06:29 +09001957
Namhyung Kim96039c72016-12-08 23:47:50 +09001958 return sample->pid == 0;
1959}
1960
1961static void save_task_callchain(struct perf_sched *sched,
1962 struct perf_sample *sample,
1963 struct perf_evsel *evsel,
1964 struct machine *machine)
1965{
1966 struct callchain_cursor *cursor = &callchain_cursor;
1967 struct thread *thread;
David Ahern6c973c92016-11-16 15:06:32 +09001968
1969 /* want main thread for process - has maps */
1970 thread = machine__findnew_thread(machine, sample->pid, sample->pid);
1971 if (thread == NULL) {
1972 pr_debug("Failed to get thread for pid %d.\n", sample->pid);
Namhyung Kim96039c72016-12-08 23:47:50 +09001973 return;
David Ahern6c973c92016-11-16 15:06:32 +09001974 }
1975
1976 if (!symbol_conf.use_callchain || sample->callchain == NULL)
Namhyung Kim96039c72016-12-08 23:47:50 +09001977 return;
David Ahern6c973c92016-11-16 15:06:32 +09001978
1979 if (thread__resolve_callchain(thread, cursor, evsel, sample,
Namhyung Kim8388deb2016-11-24 10:11:14 +09001980 NULL, NULL, sched->max_stack + 2) != 0) {
David Ahern6c973c92016-11-16 15:06:32 +09001981 if (verbose)
1982 error("Failed to resolve callchain. Skipping\n");
1983
Namhyung Kim96039c72016-12-08 23:47:50 +09001984 return;
David Ahern6c973c92016-11-16 15:06:32 +09001985 }
Namhyung Kimcdeb01b2016-11-24 10:11:12 +09001986
David Ahern6c973c92016-11-16 15:06:32 +09001987 callchain_cursor_commit(cursor);
Namhyung Kimcdeb01b2016-11-24 10:11:12 +09001988
1989 while (true) {
1990 struct callchain_cursor_node *node;
1991 struct symbol *sym;
1992
1993 node = callchain_cursor_current(cursor);
1994 if (node == NULL)
1995 break;
1996
1997 sym = node->sym;
1998 if (sym && sym->name) {
1999 if (!strcmp(sym->name, "schedule") ||
2000 !strcmp(sym->name, "__schedule") ||
2001 !strcmp(sym->name, "preempt_schedule"))
2002 sym->ignore = 1;
2003 }
2004
2005 callchain_cursor_advance(cursor);
2006 }
David Ahern49394a22016-11-16 15:06:29 +09002007}
2008
Namhyung Kim3bc2fa92016-12-08 23:47:51 +09002009static int init_idle_thread(struct thread *thread)
2010{
2011 struct idle_thread_runtime *itr;
2012
2013 thread__set_comm(thread, idle_comm, 0);
2014
2015 itr = zalloc(sizeof(*itr));
2016 if (itr == NULL)
2017 return -ENOMEM;
2018
2019 init_stats(&itr->tr.run_stats);
2020 callchain_init(&itr->callchain);
2021 callchain_cursor_reset(&itr->cursor);
2022 thread__set_priv(thread, itr);
2023
2024 return 0;
2025}
2026
David Ahern49394a22016-11-16 15:06:29 +09002027/*
2028 * Track idle stats per cpu by maintaining a local thread
2029 * struct for the idle task on each cpu.
2030 */
2031static int init_idle_threads(int ncpu)
2032{
Namhyung Kim3bc2fa92016-12-08 23:47:51 +09002033 int i, ret;
David Ahern49394a22016-11-16 15:06:29 +09002034
2035 idle_threads = zalloc(ncpu * sizeof(struct thread *));
2036 if (!idle_threads)
2037 return -ENOMEM;
2038
Namhyung Kimb3363522016-12-06 12:40:05 +09002039 idle_max_cpu = ncpu;
David Ahern49394a22016-11-16 15:06:29 +09002040
2041 /* allocate the actual thread struct if needed */
2042 for (i = 0; i < ncpu; ++i) {
2043 idle_threads[i] = thread__new(0, 0);
2044 if (idle_threads[i] == NULL)
2045 return -ENOMEM;
2046
Namhyung Kim3bc2fa92016-12-08 23:47:51 +09002047 ret = init_idle_thread(idle_threads[i]);
2048 if (ret < 0)
2049 return ret;
David Ahern49394a22016-11-16 15:06:29 +09002050 }
2051
2052 return 0;
2053}
2054
2055static void free_idle_threads(void)
2056{
2057 int i;
2058
2059 if (idle_threads == NULL)
2060 return;
2061
Namhyung Kimb3363522016-12-06 12:40:05 +09002062 for (i = 0; i < idle_max_cpu; ++i) {
David Ahern49394a22016-11-16 15:06:29 +09002063 if ((idle_threads[i]))
2064 thread__delete(idle_threads[i]);
2065 }
2066
2067 free(idle_threads);
2068}
2069
2070static struct thread *get_idle_thread(int cpu)
2071{
2072 /*
2073 * expand/allocate array of pointers to local thread
2074 * structs if needed
2075 */
2076 if ((cpu >= idle_max_cpu) || (idle_threads == NULL)) {
2077 int i, j = __roundup_pow_of_two(cpu+1);
2078 void *p;
2079
2080 p = realloc(idle_threads, j * sizeof(struct thread *));
2081 if (!p)
2082 return NULL;
2083
2084 idle_threads = (struct thread **) p;
Namhyung Kimb3363522016-12-06 12:40:05 +09002085 for (i = idle_max_cpu; i < j; ++i)
David Ahern49394a22016-11-16 15:06:29 +09002086 idle_threads[i] = NULL;
2087
2088 idle_max_cpu = j;
2089 }
2090
2091 /* allocate a new thread struct if needed */
2092 if (idle_threads[cpu] == NULL) {
2093 idle_threads[cpu] = thread__new(0, 0);
2094
2095 if (idle_threads[cpu]) {
Namhyung Kim3bc2fa92016-12-08 23:47:51 +09002096 if (init_idle_thread(idle_threads[cpu]) < 0)
2097 return NULL;
David Ahern49394a22016-11-16 15:06:29 +09002098 }
2099 }
2100
2101 return idle_threads[cpu];
2102}
2103
2104/*
2105 * handle runtime stats saved per thread
2106 */
2107static struct thread_runtime *thread__init_runtime(struct thread *thread)
2108{
2109 struct thread_runtime *r;
2110
2111 r = zalloc(sizeof(struct thread_runtime));
2112 if (!r)
2113 return NULL;
2114
2115 init_stats(&r->run_stats);
2116 thread__set_priv(thread, r);
2117
2118 return r;
2119}
2120
2121static struct thread_runtime *thread__get_runtime(struct thread *thread)
2122{
2123 struct thread_runtime *tr;
2124
2125 tr = thread__priv(thread);
2126 if (tr == NULL) {
2127 tr = thread__init_runtime(thread);
2128 if (tr == NULL)
2129 pr_debug("Failed to malloc memory for runtime data.\n");
2130 }
2131
2132 return tr;
2133}
2134
David Ahern6c973c92016-11-16 15:06:32 +09002135static struct thread *timehist_get_thread(struct perf_sched *sched,
2136 struct perf_sample *sample,
David Ahern49394a22016-11-16 15:06:29 +09002137 struct machine *machine,
2138 struct perf_evsel *evsel)
2139{
2140 struct thread *thread;
2141
Namhyung Kim96039c72016-12-08 23:47:50 +09002142 if (is_idle_sample(sample, evsel)) {
David Ahern49394a22016-11-16 15:06:29 +09002143 thread = get_idle_thread(sample->cpu);
2144 if (thread == NULL)
2145 pr_err("Failed to get idle thread for cpu %d.\n", sample->cpu);
2146
2147 } else {
Namhyung Kim5d92d962016-12-06 12:40:03 +09002148 /* there were samples with tid 0 but non-zero pid */
2149 thread = machine__findnew_thread(machine, sample->pid,
2150 sample->tid ?: sample->pid);
David Ahern49394a22016-11-16 15:06:29 +09002151 if (thread == NULL) {
2152 pr_debug("Failed to get thread for tid %d. skipping sample.\n",
2153 sample->tid);
2154 }
Namhyung Kim96039c72016-12-08 23:47:50 +09002155
2156 save_task_callchain(sched, sample, evsel, machine);
David Ahern49394a22016-11-16 15:06:29 +09002157 }
2158
2159 return thread;
2160}
2161
David Ahern52df1382016-11-16 15:06:30 +09002162static bool timehist_skip_sample(struct perf_sched *sched,
2163 struct thread *thread)
David Ahern49394a22016-11-16 15:06:29 +09002164{
2165 bool rc = false;
2166
David Ahern52df1382016-11-16 15:06:30 +09002167 if (thread__is_filtered(thread)) {
David Ahern49394a22016-11-16 15:06:29 +09002168 rc = true;
David Ahern52df1382016-11-16 15:06:30 +09002169 sched->skipped_samples++;
2170 }
David Ahern49394a22016-11-16 15:06:29 +09002171
2172 return rc;
2173}
2174
David Ahernfc1469f2016-11-16 15:06:31 +09002175static void timehist_print_wakeup_event(struct perf_sched *sched,
2176 struct perf_sample *sample,
2177 struct machine *machine,
2178 struct thread *awakened)
2179{
2180 struct thread *thread;
2181 char tstr[64];
2182
2183 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
2184 if (thread == NULL)
2185 return;
2186
2187 /* show wakeup unless both awakee and awaker are filtered */
2188 if (timehist_skip_sample(sched, thread) &&
2189 timehist_skip_sample(sched, awakened)) {
2190 return;
2191 }
2192
2193 timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr));
2194 printf("%15s [%04d] ", tstr, sample->cpu);
David Aherna407b062016-11-16 15:06:33 +09002195 if (sched->show_cpu_visual)
2196 printf(" %*s ", sched->max_cpu + 1, "");
David Ahernfc1469f2016-11-16 15:06:31 +09002197
2198 printf(" %-*s ", comm_width, timehist_get_commstr(thread));
2199
2200 /* dt spacer */
2201 printf(" %9s %9s %9s ", "", "", "");
2202
2203 printf("awakened: %s", timehist_get_commstr(awakened));
2204
2205 printf("\n");
2206}
2207
2208static int timehist_sched_wakeup_event(struct perf_tool *tool,
David Ahern49394a22016-11-16 15:06:29 +09002209 union perf_event *event __maybe_unused,
2210 struct perf_evsel *evsel,
2211 struct perf_sample *sample,
2212 struct machine *machine)
2213{
David Ahernfc1469f2016-11-16 15:06:31 +09002214 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
David Ahern49394a22016-11-16 15:06:29 +09002215 struct thread *thread;
2216 struct thread_runtime *tr = NULL;
2217 /* want pid of awakened task not pid in sample */
2218 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
2219
2220 thread = machine__findnew_thread(machine, 0, pid);
2221 if (thread == NULL)
2222 return -1;
2223
2224 tr = thread__get_runtime(thread);
2225 if (tr == NULL)
2226 return -1;
2227
2228 if (tr->ready_to_run == 0)
2229 tr->ready_to_run = sample->time;
2230
David Ahernfc1469f2016-11-16 15:06:31 +09002231 /* show wakeups if requested */
David Ahern853b7402016-11-29 10:15:44 -07002232 if (sched->show_wakeups &&
2233 !perf_time__skip_sample(&sched->ptime, sample->time))
David Ahernfc1469f2016-11-16 15:06:31 +09002234 timehist_print_wakeup_event(sched, sample, machine, thread);
2235
David Ahern49394a22016-11-16 15:06:29 +09002236 return 0;
2237}
2238
David Ahern350f54f2016-11-25 09:28:41 -07002239static void timehist_print_migration_event(struct perf_sched *sched,
2240 struct perf_evsel *evsel,
2241 struct perf_sample *sample,
2242 struct machine *machine,
2243 struct thread *migrated)
2244{
2245 struct thread *thread;
2246 char tstr[64];
2247 u32 max_cpus = sched->max_cpu + 1;
2248 u32 ocpu, dcpu;
2249
2250 if (sched->summary_only)
2251 return;
2252
2253 max_cpus = sched->max_cpu + 1;
2254 ocpu = perf_evsel__intval(evsel, sample, "orig_cpu");
2255 dcpu = perf_evsel__intval(evsel, sample, "dest_cpu");
2256
2257 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
2258 if (thread == NULL)
2259 return;
2260
2261 if (timehist_skip_sample(sched, thread) &&
2262 timehist_skip_sample(sched, migrated)) {
2263 return;
2264 }
2265
2266 timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr));
2267 printf("%15s [%04d] ", tstr, sample->cpu);
2268
2269 if (sched->show_cpu_visual) {
2270 u32 i;
2271 char c;
2272
2273 printf(" ");
2274 for (i = 0; i < max_cpus; ++i) {
2275 c = (i == sample->cpu) ? 'm' : ' ';
2276 printf("%c", c);
2277 }
2278 printf(" ");
2279 }
2280
2281 printf(" %-*s ", comm_width, timehist_get_commstr(thread));
2282
2283 /* dt spacer */
2284 printf(" %9s %9s %9s ", "", "", "");
2285
2286 printf("migrated: %s", timehist_get_commstr(migrated));
2287 printf(" cpu %d => %d", ocpu, dcpu);
2288
2289 printf("\n");
2290}
2291
2292static int timehist_migrate_task_event(struct perf_tool *tool,
2293 union perf_event *event __maybe_unused,
2294 struct perf_evsel *evsel,
2295 struct perf_sample *sample,
2296 struct machine *machine)
2297{
2298 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
2299 struct thread *thread;
2300 struct thread_runtime *tr = NULL;
2301 /* want pid of migrated task not pid in sample */
2302 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
2303
2304 thread = machine__findnew_thread(machine, 0, pid);
2305 if (thread == NULL)
2306 return -1;
2307
2308 tr = thread__get_runtime(thread);
2309 if (tr == NULL)
2310 return -1;
2311
2312 tr->migrations++;
2313
2314 /* show migrations if requested */
2315 timehist_print_migration_event(sched, evsel, sample, machine, thread);
2316
2317 return 0;
2318}
2319
David Ahern52df1382016-11-16 15:06:30 +09002320static int timehist_sched_change_event(struct perf_tool *tool,
David Ahern49394a22016-11-16 15:06:29 +09002321 union perf_event *event,
2322 struct perf_evsel *evsel,
2323 struct perf_sample *sample,
2324 struct machine *machine)
2325{
David Ahernfc1469f2016-11-16 15:06:31 +09002326 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
David Ahern853b7402016-11-29 10:15:44 -07002327 struct perf_time_interval *ptime = &sched->ptime;
David Ahern49394a22016-11-16 15:06:29 +09002328 struct addr_location al;
2329 struct thread *thread;
2330 struct thread_runtime *tr = NULL;
David Ahern853b7402016-11-29 10:15:44 -07002331 u64 tprev, t = sample->time;
David Ahern49394a22016-11-16 15:06:29 +09002332 int rc = 0;
2333
2334 if (machine__resolve(machine, &al, sample) < 0) {
2335 pr_err("problem processing %d event. skipping it\n",
2336 event->header.type);
2337 rc = -1;
2338 goto out;
2339 }
2340
David Ahern6c973c92016-11-16 15:06:32 +09002341 thread = timehist_get_thread(sched, sample, machine, evsel);
David Ahern49394a22016-11-16 15:06:29 +09002342 if (thread == NULL) {
2343 rc = -1;
2344 goto out;
2345 }
2346
David Ahern52df1382016-11-16 15:06:30 +09002347 if (timehist_skip_sample(sched, thread))
David Ahern49394a22016-11-16 15:06:29 +09002348 goto out;
2349
2350 tr = thread__get_runtime(thread);
2351 if (tr == NULL) {
2352 rc = -1;
2353 goto out;
2354 }
2355
2356 tprev = perf_evsel__get_time(evsel, sample->cpu);
2357
David Ahern853b7402016-11-29 10:15:44 -07002358 /*
2359 * If start time given:
2360 * - sample time is under window user cares about - skip sample
2361 * - tprev is under window user cares about - reset to start of window
2362 */
2363 if (ptime->start && ptime->start > t)
2364 goto out;
2365
2366 if (ptime->start > tprev)
2367 tprev = ptime->start;
2368
2369 /*
2370 * If end time given:
2371 * - previous sched event is out of window - we are done
2372 * - sample time is beyond window user cares about - reset it
2373 * to close out stats for time window interest
2374 */
2375 if (ptime->end) {
2376 if (tprev > ptime->end)
2377 goto out;
2378
2379 if (t > ptime->end)
2380 t = ptime->end;
2381 }
2382
2383 timehist_update_runtime_stats(tr, t, tprev);
2384
David Ahern52df1382016-11-16 15:06:30 +09002385 if (!sched->summary_only)
David Ahern853b7402016-11-29 10:15:44 -07002386 timehist_print_sample(sched, sample, &al, thread, t);
David Ahern49394a22016-11-16 15:06:29 +09002387
2388out:
2389 if (tr) {
2390 /* time of this sched_switch event becomes last time task seen */
2391 tr->last_time = sample->time;
2392
2393 /* sched out event for task so reset ready to run time */
2394 tr->ready_to_run = 0;
2395 }
2396
2397 perf_evsel__save_time(evsel, sample->time, sample->cpu);
2398
2399 return rc;
2400}
2401
2402static int timehist_sched_switch_event(struct perf_tool *tool,
2403 union perf_event *event,
2404 struct perf_evsel *evsel,
2405 struct perf_sample *sample,
2406 struct machine *machine __maybe_unused)
2407{
2408 return timehist_sched_change_event(tool, event, evsel, sample, machine);
2409}
2410
2411static int process_lost(struct perf_tool *tool __maybe_unused,
2412 union perf_event *event,
2413 struct perf_sample *sample,
2414 struct machine *machine __maybe_unused)
2415{
2416 char tstr[64];
2417
2418 timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr));
2419 printf("%15s ", tstr);
2420 printf("lost %" PRIu64 " events on cpu %d\n", event->lost.lost, sample->cpu);
2421
2422 return 0;
2423}
2424
2425
David Ahern52df1382016-11-16 15:06:30 +09002426static void print_thread_runtime(struct thread *t,
2427 struct thread_runtime *r)
2428{
2429 double mean = avg_stats(&r->run_stats);
2430 float stddev;
2431
2432 printf("%*s %5d %9" PRIu64 " ",
2433 comm_width, timehist_get_commstr(t), t->ppid,
2434 (u64) r->run_stats.n);
2435
2436 print_sched_time(r->total_run_time, 8);
2437 stddev = rel_stddev_stats(stddev_stats(&r->run_stats), mean);
2438 print_sched_time(r->run_stats.min, 6);
2439 printf(" ");
2440 print_sched_time((u64) mean, 6);
2441 printf(" ");
2442 print_sched_time(r->run_stats.max, 6);
2443 printf(" ");
2444 printf("%5.2f", stddev);
David Ahern350f54f2016-11-25 09:28:41 -07002445 printf(" %5" PRIu64, r->migrations);
David Ahern52df1382016-11-16 15:06:30 +09002446 printf("\n");
2447}
2448
2449struct total_run_stats {
2450 u64 sched_count;
2451 u64 task_count;
2452 u64 total_run_time;
2453};
2454
2455static int __show_thread_runtime(struct thread *t, void *priv)
2456{
2457 struct total_run_stats *stats = priv;
2458 struct thread_runtime *r;
2459
2460 if (thread__is_filtered(t))
2461 return 0;
2462
2463 r = thread__priv(t);
2464 if (r && r->run_stats.n) {
2465 stats->task_count++;
2466 stats->sched_count += r->run_stats.n;
2467 stats->total_run_time += r->total_run_time;
2468 print_thread_runtime(t, r);
2469 }
2470
2471 return 0;
2472}
2473
2474static int show_thread_runtime(struct thread *t, void *priv)
2475{
2476 if (t->dead)
2477 return 0;
2478
2479 return __show_thread_runtime(t, priv);
2480}
2481
2482static int show_deadthread_runtime(struct thread *t, void *priv)
2483{
2484 if (!t->dead)
2485 return 0;
2486
2487 return __show_thread_runtime(t, priv);
2488}
2489
2490static void timehist_print_summary(struct perf_sched *sched,
2491 struct perf_session *session)
2492{
2493 struct machine *m = &session->machines.host;
2494 struct total_run_stats totals;
2495 u64 task_count;
2496 struct thread *t;
2497 struct thread_runtime *r;
2498 int i;
2499
2500 memset(&totals, 0, sizeof(totals));
2501
2502 if (comm_width < 30)
2503 comm_width = 30;
2504
2505 printf("\nRuntime summary\n");
2506 printf("%*s parent sched-in ", comm_width, "comm");
David Ahern350f54f2016-11-25 09:28:41 -07002507 printf(" run-time min-run avg-run max-run stddev migrations\n");
David Ahern52df1382016-11-16 15:06:30 +09002508 printf("%*s (count) ", comm_width, "");
2509 printf(" (msec) (msec) (msec) (msec) %%\n");
David Ahern350f54f2016-11-25 09:28:41 -07002510 printf("%.117s\n", graph_dotted_line);
David Ahern52df1382016-11-16 15:06:30 +09002511
2512 machine__for_each_thread(m, show_thread_runtime, &totals);
2513 task_count = totals.task_count;
2514 if (!task_count)
2515 printf("<no still running tasks>\n");
2516
2517 printf("\nTerminated tasks:\n");
2518 machine__for_each_thread(m, show_deadthread_runtime, &totals);
2519 if (task_count == totals.task_count)
2520 printf("<no terminated tasks>\n");
2521
2522 /* CPU idle stats not tracked when samples were skipped */
2523 if (sched->skipped_samples)
2524 return;
2525
2526 printf("\nIdle stats:\n");
Namhyung Kimb3363522016-12-06 12:40:05 +09002527 for (i = 0; i < idle_max_cpu; ++i) {
David Ahern52df1382016-11-16 15:06:30 +09002528 t = idle_threads[i];
2529 if (!t)
2530 continue;
2531
2532 r = thread__priv(t);
2533 if (r && r->run_stats.n) {
2534 totals.sched_count += r->run_stats.n;
2535 printf(" CPU %2d idle for ", i);
2536 print_sched_time(r->total_run_time, 6);
2537 printf(" msec\n");
2538 } else
2539 printf(" CPU %2d idle entire time window\n", i);
2540 }
2541
2542 printf("\n"
2543 " Total number of unique tasks: %" PRIu64 "\n"
2544 "Total number of context switches: %" PRIu64 "\n"
2545 " Total run time (msec): ",
2546 totals.task_count, totals.sched_count);
2547
2548 print_sched_time(totals.total_run_time, 2);
2549 printf("\n");
2550}
2551
David Ahern49394a22016-11-16 15:06:29 +09002552typedef int (*sched_handler)(struct perf_tool *tool,
2553 union perf_event *event,
2554 struct perf_evsel *evsel,
2555 struct perf_sample *sample,
2556 struct machine *machine);
2557
2558static int perf_timehist__process_sample(struct perf_tool *tool,
2559 union perf_event *event,
2560 struct perf_sample *sample,
2561 struct perf_evsel *evsel,
2562 struct machine *machine)
2563{
2564 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
2565 int err = 0;
2566 int this_cpu = sample->cpu;
2567
2568 if (this_cpu > sched->max_cpu)
2569 sched->max_cpu = this_cpu;
2570
2571 if (evsel->handler != NULL) {
2572 sched_handler f = evsel->handler;
2573
2574 err = f(tool, event, evsel, sample, machine);
2575 }
2576
2577 return err;
2578}
2579
David Ahern6c973c92016-11-16 15:06:32 +09002580static int timehist_check_attr(struct perf_sched *sched,
2581 struct perf_evlist *evlist)
2582{
2583 struct perf_evsel *evsel;
2584 struct evsel_runtime *er;
2585
2586 list_for_each_entry(evsel, &evlist->entries, node) {
2587 er = perf_evsel__get_runtime(evsel);
2588 if (er == NULL) {
2589 pr_err("Failed to allocate memory for evsel runtime data\n");
2590 return -1;
2591 }
2592
2593 if (sched->show_callchain &&
2594 !(evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN)) {
2595 pr_info("Samples do not have callchains.\n");
2596 sched->show_callchain = 0;
2597 symbol_conf.use_callchain = 0;
2598 }
2599 }
2600
2601 return 0;
2602}
2603
David Ahern49394a22016-11-16 15:06:29 +09002604static int perf_sched__timehist(struct perf_sched *sched)
2605{
2606 const struct perf_evsel_str_handler handlers[] = {
2607 { "sched:sched_switch", timehist_sched_switch_event, },
2608 { "sched:sched_wakeup", timehist_sched_wakeup_event, },
2609 { "sched:sched_wakeup_new", timehist_sched_wakeup_event, },
2610 };
David Ahern350f54f2016-11-25 09:28:41 -07002611 const struct perf_evsel_str_handler migrate_handlers[] = {
2612 { "sched:sched_migrate_task", timehist_migrate_task_event, },
2613 };
David Ahern49394a22016-11-16 15:06:29 +09002614 struct perf_data_file file = {
2615 .path = input_name,
2616 .mode = PERF_DATA_MODE_READ,
Namhyung Kim6fa94252016-12-06 12:40:01 +09002617 .force = sched->force,
David Ahern49394a22016-11-16 15:06:29 +09002618 };
2619
2620 struct perf_session *session;
David Ahern52df1382016-11-16 15:06:30 +09002621 struct perf_evlist *evlist;
David Ahern49394a22016-11-16 15:06:29 +09002622 int err = -1;
2623
2624 /*
2625 * event handlers for timehist option
2626 */
2627 sched->tool.sample = perf_timehist__process_sample;
2628 sched->tool.mmap = perf_event__process_mmap;
2629 sched->tool.comm = perf_event__process_comm;
2630 sched->tool.exit = perf_event__process_exit;
2631 sched->tool.fork = perf_event__process_fork;
2632 sched->tool.lost = process_lost;
2633 sched->tool.attr = perf_event__process_attr;
2634 sched->tool.tracing_data = perf_event__process_tracing_data;
2635 sched->tool.build_id = perf_event__process_build_id;
2636
2637 sched->tool.ordered_events = true;
2638 sched->tool.ordering_requires_timestamps = true;
2639
David Ahern6c973c92016-11-16 15:06:32 +09002640 symbol_conf.use_callchain = sched->show_callchain;
2641
David Ahern49394a22016-11-16 15:06:29 +09002642 session = perf_session__new(&file, false, &sched->tool);
2643 if (session == NULL)
2644 return -ENOMEM;
2645
David Ahern52df1382016-11-16 15:06:30 +09002646 evlist = session->evlist;
2647
David Ahern49394a22016-11-16 15:06:29 +09002648 symbol__init(&session->header.env);
2649
David Ahern853b7402016-11-29 10:15:44 -07002650 if (perf_time__parse_str(&sched->ptime, sched->time_str) != 0) {
2651 pr_err("Invalid time string\n");
2652 return -EINVAL;
2653 }
2654
David Ahern6c973c92016-11-16 15:06:32 +09002655 if (timehist_check_attr(sched, evlist) != 0)
2656 goto out;
2657
David Ahern49394a22016-11-16 15:06:29 +09002658 setup_pager();
2659
2660 /* setup per-evsel handlers */
2661 if (perf_session__set_tracepoints_handlers(session, handlers))
2662 goto out;
2663
David Ahernf45bf8d2016-11-29 13:39:48 -07002664 /* sched_switch event at a minimum needs to exist */
2665 if (!perf_evlist__find_tracepoint_by_name(session->evlist,
2666 "sched:sched_switch")) {
2667 pr_err("No sched_switch events found. Have you run 'perf sched record'?\n");
David Ahern49394a22016-11-16 15:06:29 +09002668 goto out;
David Ahernf45bf8d2016-11-29 13:39:48 -07002669 }
David Ahern49394a22016-11-16 15:06:29 +09002670
David Ahern350f54f2016-11-25 09:28:41 -07002671 if (sched->show_migrations &&
2672 perf_session__set_tracepoints_handlers(session, migrate_handlers))
2673 goto out;
2674
David Ahern49394a22016-11-16 15:06:29 +09002675 /* pre-allocate struct for per-CPU idle stats */
2676 sched->max_cpu = session->header.env.nr_cpus_online;
2677 if (sched->max_cpu == 0)
2678 sched->max_cpu = 4;
2679 if (init_idle_threads(sched->max_cpu))
2680 goto out;
2681
David Ahern52df1382016-11-16 15:06:30 +09002682 /* summary_only implies summary option, but don't overwrite summary if set */
2683 if (sched->summary_only)
2684 sched->summary = sched->summary_only;
2685
2686 if (!sched->summary_only)
David Aherna407b062016-11-16 15:06:33 +09002687 timehist_header(sched);
David Ahern49394a22016-11-16 15:06:29 +09002688
2689 err = perf_session__process_events(session);
2690 if (err) {
2691 pr_err("Failed to process events, error %d", err);
2692 goto out;
2693 }
2694
David Ahern52df1382016-11-16 15:06:30 +09002695 sched->nr_events = evlist->stats.nr_events[0];
2696 sched->nr_lost_events = evlist->stats.total_lost;
2697 sched->nr_lost_chunks = evlist->stats.nr_events[PERF_RECORD_LOST];
2698
2699 if (sched->summary)
2700 timehist_print_summary(sched, session);
2701
David Ahern49394a22016-11-16 15:06:29 +09002702out:
2703 free_idle_threads();
2704 perf_session__delete(session);
2705
2706 return err;
2707}
2708
2709
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002710static void print_bad_events(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002711{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002712 if (sched->nr_unordered_timestamps && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002713 printf(" INFO: %.3f%% unordered timestamps (%ld out of %ld)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002714 (double)sched->nr_unordered_timestamps/(double)sched->nr_timestamps*100.0,
2715 sched->nr_unordered_timestamps, sched->nr_timestamps);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002716 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002717 if (sched->nr_lost_events && sched->nr_events) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002718 printf(" INFO: %.3f%% lost events (%ld out of %ld, in %ld chunks)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002719 (double)sched->nr_lost_events/(double)sched->nr_events * 100.0,
2720 sched->nr_lost_events, sched->nr_events, sched->nr_lost_chunks);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002721 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002722 if (sched->nr_context_switch_bugs && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002723 printf(" INFO: %.3f%% context switch bugs (%ld out of %ld)",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002724 (double)sched->nr_context_switch_bugs/(double)sched->nr_timestamps*100.0,
2725 sched->nr_context_switch_bugs, sched->nr_timestamps);
2726 if (sched->nr_lost_events)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002727 printf(" (due to lost events?)");
2728 printf("\n");
2729 }
2730}
2731
Josef Bacik2f80dd42015-05-22 09:18:40 -04002732static void __merge_work_atoms(struct rb_root *root, struct work_atoms *data)
2733{
2734 struct rb_node **new = &(root->rb_node), *parent = NULL;
2735 struct work_atoms *this;
2736 const char *comm = thread__comm_str(data->thread), *this_comm;
2737
2738 while (*new) {
2739 int cmp;
2740
2741 this = container_of(*new, struct work_atoms, node);
2742 parent = *new;
2743
2744 this_comm = thread__comm_str(this->thread);
2745 cmp = strcmp(comm, this_comm);
2746 if (cmp > 0) {
2747 new = &((*new)->rb_left);
2748 } else if (cmp < 0) {
2749 new = &((*new)->rb_right);
2750 } else {
2751 this->num_merged++;
2752 this->total_runtime += data->total_runtime;
2753 this->nb_atoms += data->nb_atoms;
2754 this->total_lat += data->total_lat;
2755 list_splice(&data->work_list, &this->work_list);
2756 if (this->max_lat < data->max_lat) {
2757 this->max_lat = data->max_lat;
2758 this->max_lat_at = data->max_lat_at;
2759 }
2760 zfree(&data);
2761 return;
2762 }
2763 }
2764
2765 data->num_merged++;
2766 rb_link_node(&data->node, parent, new);
2767 rb_insert_color(&data->node, root);
2768}
2769
2770static void perf_sched__merge_lat(struct perf_sched *sched)
2771{
2772 struct work_atoms *data;
2773 struct rb_node *node;
2774
2775 if (sched->skip_merge)
2776 return;
2777
2778 while ((node = rb_first(&sched->atom_root))) {
2779 rb_erase(node, &sched->atom_root);
2780 data = rb_entry(node, struct work_atoms, node);
2781 __merge_work_atoms(&sched->merged_atom_root, data);
2782 }
2783}
2784
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002785static int perf_sched__lat(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002786{
2787 struct rb_node *next;
2788
2789 setup_pager();
David Ahernad9def72013-08-07 22:50:44 -04002790
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03002791 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002792 return -1;
David Ahernad9def72013-08-07 22:50:44 -04002793
Josef Bacik2f80dd42015-05-22 09:18:40 -04002794 perf_sched__merge_lat(sched);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002795 perf_sched__sort_lat(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002796
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04002797 printf("\n -----------------------------------------------------------------------------------------------------------------\n");
2798 printf(" Task | Runtime ms | Switches | Average delay ms | Maximum delay ms | Maximum delay at |\n");
2799 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002800
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002801 next = rb_first(&sched->sorted_atom_root);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002802
2803 while (next) {
2804 struct work_atoms *work_list;
2805
2806 work_list = rb_entry(next, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002807 output_lat_thread(sched, work_list);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002808 next = rb_next(next);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03002809 thread__zput(work_list->thread);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002810 }
2811
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04002812 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002813 printf(" TOTAL: |%11.3f ms |%9" PRIu64 " |\n",
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -03002814 (double)sched->all_runtime / NSEC_PER_MSEC, sched->all_count);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002815
2816 printf(" ---------------------------------------------------\n");
2817
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002818 print_bad_events(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002819 printf("\n");
2820
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002821 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002822}
2823
Jiri Olsa99623c62016-04-12 15:29:26 +02002824static int setup_map_cpus(struct perf_sched *sched)
2825{
Jiri Olsa73643bb2016-04-12 15:29:31 +02002826 struct cpu_map *map;
2827
Jiri Olsa99623c62016-04-12 15:29:26 +02002828 sched->max_cpu = sysconf(_SC_NPROCESSORS_CONF);
2829
2830 if (sched->map.comp) {
2831 sched->map.comp_cpus = zalloc(sched->max_cpu * sizeof(int));
Jiri Olsacf294f22016-04-12 15:29:30 +02002832 if (!sched->map.comp_cpus)
2833 return -1;
Jiri Olsa99623c62016-04-12 15:29:26 +02002834 }
2835
Jiri Olsa73643bb2016-04-12 15:29:31 +02002836 if (!sched->map.cpus_str)
2837 return 0;
2838
2839 map = cpu_map__new(sched->map.cpus_str);
2840 if (!map) {
2841 pr_err("failed to get cpus map from %s\n", sched->map.cpus_str);
2842 return -1;
2843 }
2844
2845 sched->map.cpus = map;
Jiri Olsa99623c62016-04-12 15:29:26 +02002846 return 0;
2847}
2848
Jiri Olsaa151a372016-04-12 15:29:29 +02002849static int setup_color_pids(struct perf_sched *sched)
2850{
2851 struct thread_map *map;
2852
2853 if (!sched->map.color_pids_str)
2854 return 0;
2855
2856 map = thread_map__new_by_tid_str(sched->map.color_pids_str);
2857 if (!map) {
2858 pr_err("failed to get thread map from %s\n", sched->map.color_pids_str);
2859 return -1;
2860 }
2861
2862 sched->map.color_pids = map;
2863 return 0;
2864}
2865
Jiri Olsacf294f22016-04-12 15:29:30 +02002866static int setup_color_cpus(struct perf_sched *sched)
2867{
2868 struct cpu_map *map;
2869
2870 if (!sched->map.color_cpus_str)
2871 return 0;
2872
2873 map = cpu_map__new(sched->map.color_cpus_str);
2874 if (!map) {
2875 pr_err("failed to get thread map from %s\n", sched->map.color_cpus_str);
2876 return -1;
2877 }
2878
2879 sched->map.color_cpus = map;
2880 return 0;
2881}
2882
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002883static int perf_sched__map(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002884{
Jiri Olsa99623c62016-04-12 15:29:26 +02002885 if (setup_map_cpus(sched))
2886 return -1;
Ingo Molnar40749d02009-09-17 18:24:55 +02002887
Jiri Olsaa151a372016-04-12 15:29:29 +02002888 if (setup_color_pids(sched))
2889 return -1;
2890
Jiri Olsacf294f22016-04-12 15:29:30 +02002891 if (setup_color_cpus(sched))
2892 return -1;
2893
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002894 setup_pager();
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03002895 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002896 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002897 print_bad_events(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002898 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002899}
2900
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002901static int perf_sched__replay(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002902{
2903 unsigned long i;
2904
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002905 calibrate_run_measurement_overhead(sched);
2906 calibrate_sleep_measurement_overhead(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002907
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002908 test_calibrations(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002909
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03002910 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002911 return -1;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002912
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002913 printf("nr_run_events: %ld\n", sched->nr_run_events);
2914 printf("nr_sleep_events: %ld\n", sched->nr_sleep_events);
2915 printf("nr_wakeup_events: %ld\n", sched->nr_wakeup_events);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002916
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002917 if (sched->targetless_wakeups)
2918 printf("target-less wakeups: %ld\n", sched->targetless_wakeups);
2919 if (sched->multitarget_wakeups)
2920 printf("multi-target wakeups: %ld\n", sched->multitarget_wakeups);
2921 if (sched->nr_run_events_optimized)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002922 printf("run atoms optimized: %ld\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002923 sched->nr_run_events_optimized);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002924
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002925 print_task_traces(sched);
2926 add_cross_task_wakeups(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002927
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002928 create_tasks(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002929 printf("------------------------------------------------------------\n");
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002930 for (i = 0; i < sched->replay_repeat; i++)
2931 run_one_test(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03002932
2933 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02002934}
2935
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002936static void setup_sorting(struct perf_sched *sched, const struct option *options,
2937 const char * const usage_msg[])
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02002938{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002939 char *tmp, *tok, *str = strdup(sched->sort_order);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02002940
2941 for (tok = strtok_r(str, ", ", &tmp);
2942 tok; tok = strtok_r(NULL, ", ", &tmp)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002943 if (sort_dimension__add(tok, &sched->sort_list) < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09002944 usage_with_options_msg(usage_msg, options,
2945 "Unknown --sort key: `%s'", tok);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02002946 }
2947 }
2948
2949 free(str);
2950
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002951 sort_dimension__add("pid", &sched->cmp_pid);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02002952}
2953
Ingo Molnar1fc35b22009-09-13 09:44:29 +02002954static int __cmd_record(int argc, const char **argv)
2955{
2956 unsigned int rec_argc, i, j;
2957 const char **rec_argv;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002958 const char * const record_args[] = {
2959 "record",
2960 "-a",
2961 "-R",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002962 "-m", "1024",
2963 "-c", "1",
2964 "-e", "sched:sched_switch",
2965 "-e", "sched:sched_stat_wait",
2966 "-e", "sched:sched_stat_sleep",
2967 "-e", "sched:sched_stat_iowait",
2968 "-e", "sched:sched_stat_runtime",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002969 "-e", "sched:sched_process_fork",
2970 "-e", "sched:sched_wakeup",
Dongsheng7fff9592014-05-05 16:05:53 +09002971 "-e", "sched:sched_wakeup_new",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03002972 "-e", "sched:sched_migrate_task",
2973 };
Ingo Molnar1fc35b22009-09-13 09:44:29 +02002974
2975 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
2976 rec_argv = calloc(rec_argc + 1, sizeof(char *));
2977
Arnaldo Carvalho de Meloe462dc52011-01-10 10:48:47 -02002978 if (rec_argv == NULL)
Chris Samuelce47dc52010-11-13 13:35:06 +11002979 return -ENOMEM;
2980
Ingo Molnar1fc35b22009-09-13 09:44:29 +02002981 for (i = 0; i < ARRAY_SIZE(record_args); i++)
2982 rec_argv[i] = strdup(record_args[i]);
2983
2984 for (j = 1; j < (unsigned int)argc; j++, i++)
2985 rec_argv[i] = argv[j];
2986
2987 BUG_ON(i != rec_argc);
2988
2989 return cmd_record(i, rec_argv, NULL);
2990}
2991
Irina Tirdea1d037ca2012-09-11 01:15:03 +03002992int cmd_sched(int argc, const char **argv, const char *prefix __maybe_unused)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02002993{
Adrian Hunter8a39df82013-10-22 10:34:15 +03002994 const char default_sort_order[] = "avg, max, switch, runtime";
2995 struct perf_sched sched = {
2996 .tool = {
2997 .sample = perf_sched__process_tracepoint_sample,
2998 .comm = perf_event__process_comm,
2999 .lost = perf_event__process_lost,
3000 .fork = perf_sched__process_fork_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02003001 .ordered_events = true,
Adrian Hunter8a39df82013-10-22 10:34:15 +03003002 },
3003 .cmp_pid = LIST_HEAD_INIT(sched.cmp_pid),
3004 .sort_list = LIST_HEAD_INIT(sched.sort_list),
3005 .start_work_mutex = PTHREAD_MUTEX_INITIALIZER,
3006 .work_done_wait_mutex = PTHREAD_MUTEX_INITIALIZER,
Adrian Hunter8a39df82013-10-22 10:34:15 +03003007 .sort_order = default_sort_order,
3008 .replay_repeat = 10,
3009 .profile_cpu = -1,
3010 .next_shortname1 = 'A',
3011 .next_shortname2 = '0',
Josef Bacik2f80dd42015-05-22 09:18:40 -04003012 .skip_merge = 0,
David Ahern6c973c92016-11-16 15:06:32 +09003013 .show_callchain = 1,
3014 .max_stack = 5,
Adrian Hunter8a39df82013-10-22 10:34:15 +03003015 };
Namhyung Kim77f02f42016-10-24 12:00:03 +09003016 const struct option sched_options[] = {
3017 OPT_STRING('i', "input", &input_name, "file",
3018 "input file name"),
3019 OPT_INCR('v', "verbose", &verbose,
3020 "be more verbose (show symbol address, etc)"),
3021 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
3022 "dump raw trace in ASCII"),
Namhyung Kim6fa94252016-12-06 12:40:01 +09003023 OPT_BOOLEAN('f', "force", &sched.force, "don't complain, do it"),
Namhyung Kim77f02f42016-10-24 12:00:03 +09003024 OPT_END()
3025 };
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003026 const struct option latency_options[] = {
3027 OPT_STRING('s', "sort", &sched.sort_order, "key[,key2...]",
3028 "sort by key(s): runtime, switch, avg, max"),
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003029 OPT_INTEGER('C', "CPU", &sched.profile_cpu,
3030 "CPU to profile on"),
Josef Bacik2f80dd42015-05-22 09:18:40 -04003031 OPT_BOOLEAN('p', "pids", &sched.skip_merge,
3032 "latency stats per pid instead of per comm"),
Namhyung Kim77f02f42016-10-24 12:00:03 +09003033 OPT_PARENT(sched_options)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003034 };
3035 const struct option replay_options[] = {
3036 OPT_UINTEGER('r', "repeat", &sched.replay_repeat,
3037 "repeat the workload replay N times (-1: infinite)"),
Namhyung Kim77f02f42016-10-24 12:00:03 +09003038 OPT_PARENT(sched_options)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003039 };
Jiri Olsa99623c62016-04-12 15:29:26 +02003040 const struct option map_options[] = {
3041 OPT_BOOLEAN(0, "compact", &sched.map.comp,
3042 "map output in compact mode"),
Jiri Olsaa151a372016-04-12 15:29:29 +02003043 OPT_STRING(0, "color-pids", &sched.map.color_pids_str, "pids",
3044 "highlight given pids in map"),
Jiri Olsacf294f22016-04-12 15:29:30 +02003045 OPT_STRING(0, "color-cpus", &sched.map.color_cpus_str, "cpus",
3046 "highlight given CPUs in map"),
Jiri Olsa73643bb2016-04-12 15:29:31 +02003047 OPT_STRING(0, "cpus", &sched.map.cpus_str, "cpus",
3048 "display given CPUs in map"),
Namhyung Kim77f02f42016-10-24 12:00:03 +09003049 OPT_PARENT(sched_options)
Jiri Olsa99623c62016-04-12 15:29:26 +02003050 };
David Ahern49394a22016-11-16 15:06:29 +09003051 const struct option timehist_options[] = {
3052 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
3053 "file", "vmlinux pathname"),
3054 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
3055 "file", "kallsyms pathname"),
David Ahern6c973c92016-11-16 15:06:32 +09003056 OPT_BOOLEAN('g', "call-graph", &sched.show_callchain,
3057 "Display call chains if present (default on)"),
3058 OPT_UINTEGER(0, "max-stack", &sched.max_stack,
3059 "Maximum number of functions to display backtrace."),
David Ahern49394a22016-11-16 15:06:29 +09003060 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
3061 "Look for files with symbols relative to this directory"),
David Ahern52df1382016-11-16 15:06:30 +09003062 OPT_BOOLEAN('s', "summary", &sched.summary_only,
3063 "Show only syscall summary with statistics"),
3064 OPT_BOOLEAN('S', "with-summary", &sched.summary,
3065 "Show all syscalls and summary with statistics"),
David Ahernfc1469f2016-11-16 15:06:31 +09003066 OPT_BOOLEAN('w', "wakeups", &sched.show_wakeups, "Show wakeup events"),
David Ahern350f54f2016-11-25 09:28:41 -07003067 OPT_BOOLEAN('M', "migrations", &sched.show_migrations, "Show migration events"),
David Aherna407b062016-11-16 15:06:33 +09003068 OPT_BOOLEAN('V', "cpu-visual", &sched.show_cpu_visual, "Add CPU visual"),
David Ahern853b7402016-11-29 10:15:44 -07003069 OPT_STRING(0, "time", &sched.time_str, "str",
3070 "Time span for analysis (start,stop)"),
David Ahern49394a22016-11-16 15:06:29 +09003071 OPT_PARENT(sched_options)
3072 };
3073
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003074 const char * const latency_usage[] = {
3075 "perf sched latency [<options>]",
3076 NULL
3077 };
3078 const char * const replay_usage[] = {
3079 "perf sched replay [<options>]",
3080 NULL
3081 };
Jiri Olsa99623c62016-04-12 15:29:26 +02003082 const char * const map_usage[] = {
3083 "perf sched map [<options>]",
3084 NULL
3085 };
David Ahern49394a22016-11-16 15:06:29 +09003086 const char * const timehist_usage[] = {
3087 "perf sched timehist [<options>]",
3088 NULL
3089 };
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04003090 const char *const sched_subcommands[] = { "record", "latency", "map",
David Ahern49394a22016-11-16 15:06:29 +09003091 "replay", "script",
3092 "timehist", NULL };
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04003093 const char *sched_usage[] = {
3094 NULL,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003095 NULL
3096 };
3097 struct trace_sched_handler lat_ops = {
3098 .wakeup_event = latency_wakeup_event,
3099 .switch_event = latency_switch_event,
3100 .runtime_event = latency_runtime_event,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003101 .migrate_task_event = latency_migrate_task_event,
3102 };
3103 struct trace_sched_handler map_ops = {
3104 .switch_event = map_switch_event,
3105 };
3106 struct trace_sched_handler replay_ops = {
3107 .wakeup_event = replay_wakeup_event,
3108 .switch_event = replay_switch_event,
3109 .fork_event = replay_fork_event,
3110 };
Adrian Hunter156a2b02013-10-22 10:34:16 +03003111 unsigned int i;
3112
3113 for (i = 0; i < ARRAY_SIZE(sched.curr_pid); i++)
3114 sched.curr_pid[i] = -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003115
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04003116 argc = parse_options_subcommand(argc, argv, sched_options, sched_subcommands,
3117 sched_usage, PARSE_OPT_STOP_AT_NON_OPTION);
Ingo Molnarf2858d82009-09-11 12:12:54 +02003118 if (!argc)
3119 usage_with_options(sched_usage, sched_options);
3120
Xiao Guangrongc0777c52009-12-07 12:04:49 +08003121 /*
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003122 * Aliased to 'perf script' for now:
Xiao Guangrongc0777c52009-12-07 12:04:49 +08003123 */
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003124 if (!strcmp(argv[0], "script"))
3125 return cmd_script(argc, argv, prefix);
Xiao Guangrongc0777c52009-12-07 12:04:49 +08003126
Ingo Molnar1fc35b22009-09-13 09:44:29 +02003127 if (!strncmp(argv[0], "rec", 3)) {
3128 return __cmd_record(argc, argv);
3129 } else if (!strncmp(argv[0], "lat", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003130 sched.tp_handler = &lat_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02003131 if (argc > 1) {
3132 argc = parse_options(argc, argv, latency_options, latency_usage, 0);
3133 if (argc)
3134 usage_with_options(latency_usage, latency_options);
Ingo Molnarf2858d82009-09-11 12:12:54 +02003135 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003136 setup_sorting(&sched, latency_options, latency_usage);
3137 return perf_sched__lat(&sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003138 } else if (!strcmp(argv[0], "map")) {
Jiri Olsa99623c62016-04-12 15:29:26 +02003139 if (argc) {
Jiri Olsaa151a372016-04-12 15:29:29 +02003140 argc = parse_options(argc, argv, map_options, map_usage, 0);
Jiri Olsa99623c62016-04-12 15:29:26 +02003141 if (argc)
3142 usage_with_options(map_usage, map_options);
3143 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003144 sched.tp_handler = &map_ops;
3145 setup_sorting(&sched, latency_options, latency_usage);
3146 return perf_sched__map(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02003147 } else if (!strncmp(argv[0], "rep", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003148 sched.tp_handler = &replay_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02003149 if (argc) {
3150 argc = parse_options(argc, argv, replay_options, replay_usage, 0);
3151 if (argc)
3152 usage_with_options(replay_usage, replay_options);
3153 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003154 return perf_sched__replay(&sched);
David Ahern49394a22016-11-16 15:06:29 +09003155 } else if (!strcmp(argv[0], "timehist")) {
3156 if (argc) {
3157 argc = parse_options(argc, argv, timehist_options,
3158 timehist_usage, 0);
3159 if (argc)
3160 usage_with_options(timehist_usage, timehist_options);
3161 }
David Ahernfc1469f2016-11-16 15:06:31 +09003162 if (sched.show_wakeups && sched.summary_only) {
3163 pr_err(" Error: -s and -w are mutually exclusive.\n");
3164 parse_options_usage(timehist_usage, timehist_options, "s", true);
3165 parse_options_usage(NULL, timehist_options, "w", true);
3166 return -EINVAL;
3167 }
3168
David Ahern49394a22016-11-16 15:06:29 +09003169 return perf_sched__timehist(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02003170 } else {
3171 usage_with_options(sched_usage, sched_options);
Ingo Molnar0a02ad92009-09-11 12:12:54 +02003172 }
3173
Ingo Molnarec156762009-09-11 12:12:54 +02003174 return 0;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02003175}