blob: 55779f496d27b070b02e2be2c2315d59a48c21be [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Ingo Molnar0a02ad92009-09-11 12:12:54 +02002#include "builtin.h"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02003#include "perf.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +02004
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"
Arnaldo Carvalho de Melo6a9fa4e2019-06-25 17:31:26 -030017#include "util/string2.h"
David Ahern6c973c92016-11-16 15:06:32 +090018#include "util/callchain.h"
David Ahern853b7402016-11-29 10:15:44 -070019#include "util/time-utils.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020020
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060021#include <subcmd/parse-options.h>
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020022#include "util/trace-event.h"
Ingo Molnar0a02ad92009-09-11 12:12:54 +020023
Ingo Molnar0a02ad92009-09-11 12:12:54 +020024#include "util/debug.h"
25
Arnaldo Carvalho de Melo877a7a12017-04-17 11:39:06 -030026#include <linux/kernel.h>
David Ahern49394a22016-11-16 15:06:29 +090027#include <linux/log2.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030028#include <linux/zalloc.h>
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020029#include <sys/prctl.h>
Markus Trippelsdorf7b78f132012-04-04 10:45:27 +020030#include <sys/resource.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -030031#include <inttypes.h>
Ingo Molnar0a02ad92009-09-11 12:12:54 +020032
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -030033#include <errno.h>
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020034#include <semaphore.h>
35#include <pthread.h>
36#include <math.h>
Yunlong Songcb06ac22015-03-31 21:46:30 +080037#include <api/fs/fs.h>
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -030038#include <linux/time64.h>
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +020039
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030040#include <linux/ctype.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030041
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020042#define PR_SET_NAME 15 /* Set process name */
43#define MAX_CPUS 4096
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020044#define COMM_LEN 20
45#define SYM_LEN 129
Yunlong Songa35e27d2015-03-31 21:46:29 +080046#define MAX_PID 1024000
Ingo Molnarec156762009-09-11 12:12:54 +020047
mingo39aeb522009-09-14 20:04:48 +020048struct sched_atom;
Ingo Molnarec156762009-09-11 12:12:54 +020049
50struct task_desc {
51 unsigned long nr;
52 unsigned long pid;
53 char comm[COMM_LEN];
54
55 unsigned long nr_events;
56 unsigned long curr_event;
mingo39aeb522009-09-14 20:04:48 +020057 struct sched_atom **atoms;
Ingo Molnarec156762009-09-11 12:12:54 +020058
59 pthread_t thread;
60 sem_t sleep_sem;
61
62 sem_t ready_for_work;
63 sem_t work_done_sem;
64
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020065 u64 cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +020066};
67
68enum sched_event_type {
69 SCHED_EVENT_RUN,
70 SCHED_EVENT_SLEEP,
71 SCHED_EVENT_WAKEUP,
Mike Galbraith55ffb7a2009-10-10 14:46:04 +020072 SCHED_EVENT_MIGRATION,
Ingo Molnarec156762009-09-11 12:12:54 +020073};
74
mingo39aeb522009-09-14 20:04:48 +020075struct sched_atom {
Ingo Molnarec156762009-09-11 12:12:54 +020076 enum sched_event_type type;
Arnaldo Carvalho de Meloeed05fe2010-04-05 12:53:45 -030077 int specific_wait;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020078 u64 timestamp;
79 u64 duration;
Ingo Molnarec156762009-09-11 12:12:54 +020080 unsigned long nr;
Ingo Molnarec156762009-09-11 12:12:54 +020081 sem_t *wait_sem;
82 struct task_desc *wakee;
83};
84
Dongshenge936e8e2014-05-05 16:05:54 +090085#define TASK_STATE_TO_CHAR_STR "RSDTtZXxKWP"
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +020086
Namhyung Kim941bdea2017-01-13 19:45:21 +090087/* task state bitmask, copied from include/linux/sched.h */
88#define TASK_RUNNING 0
89#define TASK_INTERRUPTIBLE 1
90#define TASK_UNINTERRUPTIBLE 2
91#define __TASK_STOPPED 4
92#define __TASK_TRACED 8
93/* in tsk->exit_state */
94#define EXIT_DEAD 16
95#define EXIT_ZOMBIE 32
96#define EXIT_TRACE (EXIT_ZOMBIE | EXIT_DEAD)
97/* in tsk->state again */
98#define TASK_DEAD 64
99#define TASK_WAKEKILL 128
100#define TASK_WAKING 256
101#define TASK_PARKED 512
102
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200103enum thread_state {
104 THREAD_SLEEPING = 0,
105 THREAD_WAIT_CPU,
106 THREAD_SCHED_IN,
107 THREAD_IGNORE
108};
109
110struct work_atom {
111 struct list_head list;
112 enum thread_state state;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +0200113 u64 sched_out_time;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200114 u64 wake_up_time;
115 u64 sched_in_time;
116 u64 runtime;
117};
118
mingo39aeb522009-09-14 20:04:48 +0200119struct work_atoms {
120 struct list_head work_list;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200121 struct thread *thread;
122 struct rb_node node;
123 u64 max_lat;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +0100124 u64 max_lat_at;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200125 u64 total_lat;
126 u64 nb_atoms;
127 u64 total_runtime;
Josef Bacik2f80dd42015-05-22 09:18:40 -0400128 int num_merged;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200129};
130
mingo39aeb522009-09-14 20:04:48 +0200131typedef int (*sort_fn_t)(struct work_atoms *, struct work_atoms *);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200132
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300133struct perf_sched;
134
135struct trace_sched_handler {
Jiri Olsa32dcd022019-07-21 13:23:51 +0200136 int (*switch_event)(struct perf_sched *sched, struct evsel *evsel,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300137 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300138
Jiri Olsa32dcd022019-07-21 13:23:51 +0200139 int (*runtime_event)(struct perf_sched *sched, struct evsel *evsel,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300140 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300141
Jiri Olsa32dcd022019-07-21 13:23:51 +0200142 int (*wakeup_event)(struct perf_sched *sched, struct evsel *evsel,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300143 struct perf_sample *sample, struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300144
David Aherncb627502013-08-07 22:50:47 -0400145 /* PERF_RECORD_FORK event, not sched_process_fork tracepoint */
146 int (*fork_event)(struct perf_sched *sched, union perf_event *event,
147 struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300148
149 int (*migrate_task_event)(struct perf_sched *sched,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200150 struct evsel *evsel,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300151 struct perf_sample *sample,
152 struct machine *machine);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300153};
154
Jiri Olsaa151a372016-04-12 15:29:29 +0200155#define COLOR_PIDS PERF_COLOR_BLUE
Jiri Olsacf294f22016-04-12 15:29:30 +0200156#define COLOR_CPUS PERF_COLOR_BG_RED
Jiri Olsaa151a372016-04-12 15:29:29 +0200157
Jiri Olsa99623c62016-04-12 15:29:26 +0200158struct perf_sched_map {
159 DECLARE_BITMAP(comp_cpus_mask, MAX_CPUS);
160 int *comp_cpus;
161 bool comp;
Jiri Olsa9749b902019-07-21 13:23:50 +0200162 struct perf_thread_map *color_pids;
Jiri Olsaa151a372016-04-12 15:29:29 +0200163 const char *color_pids_str;
Jiri Olsaf8548392019-07-21 13:23:49 +0200164 struct perf_cpu_map *color_cpus;
Jiri Olsacf294f22016-04-12 15:29:30 +0200165 const char *color_cpus_str;
Jiri Olsaf8548392019-07-21 13:23:49 +0200166 struct perf_cpu_map *cpus;
Jiri Olsa73643bb2016-04-12 15:29:31 +0200167 const char *cpus_str;
Jiri Olsa99623c62016-04-12 15:29:26 +0200168};
169
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300170struct perf_sched {
171 struct perf_tool tool;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300172 const char *sort_order;
173 unsigned long nr_tasks;
Yunlong Songcb06ac22015-03-31 21:46:30 +0800174 struct task_desc **pid_to_task;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300175 struct task_desc **tasks;
176 const struct trace_sched_handler *tp_handler;
177 pthread_mutex_t start_work_mutex;
178 pthread_mutex_t work_done_wait_mutex;
179 int profile_cpu;
180/*
181 * Track the current task - that way we can know whether there's any
182 * weird events, such as a task being switched away that is not current.
183 */
184 int max_cpu;
185 u32 curr_pid[MAX_CPUS];
186 struct thread *curr_thread[MAX_CPUS];
187 char next_shortname1;
188 char next_shortname2;
189 unsigned int replay_repeat;
190 unsigned long nr_run_events;
191 unsigned long nr_sleep_events;
192 unsigned long nr_wakeup_events;
193 unsigned long nr_sleep_corrections;
194 unsigned long nr_run_events_optimized;
195 unsigned long targetless_wakeups;
196 unsigned long multitarget_wakeups;
197 unsigned long nr_runs;
198 unsigned long nr_timestamps;
199 unsigned long nr_unordered_timestamps;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300200 unsigned long nr_context_switch_bugs;
201 unsigned long nr_events;
202 unsigned long nr_lost_chunks;
203 unsigned long nr_lost_events;
204 u64 run_measurement_overhead;
205 u64 sleep_measurement_overhead;
206 u64 start_time;
207 u64 cpu_usage;
208 u64 runavg_cpu_usage;
209 u64 parent_cpu_usage;
210 u64 runavg_parent_cpu_usage;
211 u64 sum_runtime;
212 u64 sum_fluct;
213 u64 run_avg;
214 u64 all_runtime;
215 u64 all_count;
216 u64 cpu_last_switched[MAX_CPUS];
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -0800217 struct rb_root_cached atom_root, sorted_atom_root, merged_atom_root;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300218 struct list_head sort_list, cmp_pid;
Yunlong Song939cda52015-03-31 21:46:34 +0800219 bool force;
Josef Bacik2f80dd42015-05-22 09:18:40 -0400220 bool skip_merge;
Jiri Olsa99623c62016-04-12 15:29:26 +0200221 struct perf_sched_map map;
David Ahern52df1382016-11-16 15:06:30 +0900222
223 /* options for timehist command */
224 bool summary;
225 bool summary_only;
Namhyung Kim699b5b92016-12-08 23:47:52 +0900226 bool idle_hist;
David Ahern6c973c92016-11-16 15:06:32 +0900227 bool show_callchain;
228 unsigned int max_stack;
David Aherna407b062016-11-16 15:06:33 +0900229 bool show_cpu_visual;
David Ahernfc1469f2016-11-16 15:06:31 +0900230 bool show_wakeups;
Brendan Gregg292c4a82017-03-14 01:56:29 +0000231 bool show_next;
David Ahern350f54f2016-11-25 09:28:41 -0700232 bool show_migrations;
Namhyung Kim414e0502017-01-13 19:45:22 +0900233 bool show_state;
David Ahern52df1382016-11-16 15:06:30 +0900234 u64 skipped_samples;
David Ahern853b7402016-11-29 10:15:44 -0700235 const char *time_str;
236 struct perf_time_interval ptime;
Namhyung Kim9396c9c2016-12-22 15:03:50 +0900237 struct perf_time_interval hist_time;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300238};
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200239
David Ahern49394a22016-11-16 15:06:29 +0900240/* per thread run time data */
241struct thread_runtime {
242 u64 last_time; /* time of previous sched in/out event */
243 u64 dt_run; /* run time */
Namhyung Kim941bdea2017-01-13 19:45:21 +0900244 u64 dt_sleep; /* time between CPU access by sleep (off cpu) */
245 u64 dt_iowait; /* time between CPU access by iowait (off cpu) */
246 u64 dt_preempt; /* time between CPU access by preempt (off cpu) */
David Ahern49394a22016-11-16 15:06:29 +0900247 u64 dt_delay; /* time between wakeup and sched-in */
248 u64 ready_to_run; /* time of wakeup */
249
250 struct stats run_stats;
251 u64 total_run_time;
Namhyung Kim587782c2017-01-13 19:45:23 +0900252 u64 total_sleep_time;
253 u64 total_iowait_time;
254 u64 total_preempt_time;
255 u64 total_delay_time;
David Ahern350f54f2016-11-25 09:28:41 -0700256
Namhyung Kim941bdea2017-01-13 19:45:21 +0900257 int last_state;
Changbin Du8640da92018-03-06 11:37:36 +0800258
259 char shortname[3];
Changbin Du99a3c3a2018-03-06 11:37:37 +0800260 bool comm_changed;
261
David Ahern350f54f2016-11-25 09:28:41 -0700262 u64 migrations;
David Ahern49394a22016-11-16 15:06:29 +0900263};
264
265/* per event run time data */
266struct evsel_runtime {
267 u64 *last_time; /* time this event was last seen per cpu */
268 u32 ncpu; /* highest cpu slot allocated */
269};
270
Namhyung Kim3bc2fa92016-12-08 23:47:51 +0900271/* per cpu idle time data */
272struct idle_thread_runtime {
273 struct thread_runtime tr;
274 struct thread *last_thread;
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -0800275 struct rb_root_cached sorted_root;
Namhyung Kim3bc2fa92016-12-08 23:47:51 +0900276 struct callchain_root callchain;
277 struct callchain_cursor cursor;
278};
279
David Ahern49394a22016-11-16 15:06:29 +0900280/* track idle times per cpu */
281static struct thread **idle_threads;
282static int idle_max_cpu;
283static char idle_comm[] = "<idle>";
284
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200285static u64 get_nsecs(void)
286{
287 struct timespec ts;
288
289 clock_gettime(CLOCK_MONOTONIC, &ts);
290
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300291 return ts.tv_sec * NSEC_PER_SEC + ts.tv_nsec;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200292}
293
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300294static void burn_nsecs(struct perf_sched *sched, u64 nsecs)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200295{
296 u64 T0 = get_nsecs(), T1;
297
298 do {
299 T1 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300300 } while (T1 + sched->run_measurement_overhead < T0 + nsecs);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200301}
302
303static void sleep_nsecs(u64 nsecs)
304{
305 struct timespec ts;
306
307 ts.tv_nsec = nsecs % 999999999;
308 ts.tv_sec = nsecs / 999999999;
309
310 nanosleep(&ts, NULL);
311}
312
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300313static void calibrate_run_measurement_overhead(struct perf_sched *sched)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200314{
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300315 u64 T0, T1, delta, min_delta = NSEC_PER_SEC;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200316 int i;
317
318 for (i = 0; i < 10; i++) {
319 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300320 burn_nsecs(sched, 0);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200321 T1 = get_nsecs();
322 delta = T1-T0;
323 min_delta = min(min_delta, delta);
324 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300325 sched->run_measurement_overhead = min_delta;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200326
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200327 printf("run measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200328}
329
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300330static void calibrate_sleep_measurement_overhead(struct perf_sched *sched)
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200331{
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300332 u64 T0, T1, delta, min_delta = NSEC_PER_SEC;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200333 int i;
334
335 for (i = 0; i < 10; i++) {
336 T0 = get_nsecs();
337 sleep_nsecs(10000);
338 T1 = get_nsecs();
339 delta = T1-T0;
340 min_delta = min(min_delta, delta);
341 }
342 min_delta -= 10000;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300343 sched->sleep_measurement_overhead = min_delta;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200344
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200345 printf("sleep measurement overhead: %" PRIu64 " nsecs\n", min_delta);
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200346}
347
mingo39aeb522009-09-14 20:04:48 +0200348static struct sched_atom *
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200349get_new_event(struct task_desc *task, u64 timestamp)
Ingo Molnarec156762009-09-11 12:12:54 +0200350{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200351 struct sched_atom *event = zalloc(sizeof(*event));
Ingo Molnarec156762009-09-11 12:12:54 +0200352 unsigned long idx = task->nr_events;
353 size_t size;
354
355 event->timestamp = timestamp;
356 event->nr = idx;
357
358 task->nr_events++;
mingo39aeb522009-09-14 20:04:48 +0200359 size = sizeof(struct sched_atom *) * task->nr_events;
360 task->atoms = realloc(task->atoms, size);
361 BUG_ON(!task->atoms);
Ingo Molnarec156762009-09-11 12:12:54 +0200362
mingo39aeb522009-09-14 20:04:48 +0200363 task->atoms[idx] = event;
Ingo Molnarec156762009-09-11 12:12:54 +0200364
365 return event;
366}
367
mingo39aeb522009-09-14 20:04:48 +0200368static struct sched_atom *last_event(struct task_desc *task)
Ingo Molnarec156762009-09-11 12:12:54 +0200369{
370 if (!task->nr_events)
371 return NULL;
372
mingo39aeb522009-09-14 20:04:48 +0200373 return task->atoms[task->nr_events - 1];
Ingo Molnarec156762009-09-11 12:12:54 +0200374}
375
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300376static void add_sched_event_run(struct perf_sched *sched, struct task_desc *task,
377 u64 timestamp, u64 duration)
Ingo Molnarec156762009-09-11 12:12:54 +0200378{
mingo39aeb522009-09-14 20:04:48 +0200379 struct sched_atom *event, *curr_event = last_event(task);
Ingo Molnarec156762009-09-11 12:12:54 +0200380
381 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200382 * optimize an existing RUN event by merging this one
383 * to it:
384 */
Ingo Molnarec156762009-09-11 12:12:54 +0200385 if (curr_event && curr_event->type == SCHED_EVENT_RUN) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300386 sched->nr_run_events_optimized++;
Ingo Molnarec156762009-09-11 12:12:54 +0200387 curr_event->duration += duration;
388 return;
389 }
390
391 event = get_new_event(task, timestamp);
392
393 event->type = SCHED_EVENT_RUN;
394 event->duration = duration;
395
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300396 sched->nr_run_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200397}
398
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300399static void add_sched_event_wakeup(struct perf_sched *sched, struct task_desc *task,
400 u64 timestamp, struct task_desc *wakee)
Ingo Molnarec156762009-09-11 12:12:54 +0200401{
mingo39aeb522009-09-14 20:04:48 +0200402 struct sched_atom *event, *wakee_event;
Ingo Molnarec156762009-09-11 12:12:54 +0200403
404 event = get_new_event(task, timestamp);
405 event->type = SCHED_EVENT_WAKEUP;
406 event->wakee = wakee;
407
408 wakee_event = last_event(wakee);
409 if (!wakee_event || wakee_event->type != SCHED_EVENT_SLEEP) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300410 sched->targetless_wakeups++;
Ingo Molnarec156762009-09-11 12:12:54 +0200411 return;
412 }
413 if (wakee_event->wait_sem) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300414 sched->multitarget_wakeups++;
Ingo Molnarec156762009-09-11 12:12:54 +0200415 return;
416 }
417
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200418 wakee_event->wait_sem = zalloc(sizeof(*wakee_event->wait_sem));
Ingo Molnarec156762009-09-11 12:12:54 +0200419 sem_init(wakee_event->wait_sem, 0, 0);
420 wakee_event->specific_wait = 1;
421 event->wait_sem = wakee_event->wait_sem;
422
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300423 sched->nr_wakeup_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200424}
425
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300426static void add_sched_event_sleep(struct perf_sched *sched, struct task_desc *task,
427 u64 timestamp, u64 task_state __maybe_unused)
Ingo Molnarec156762009-09-11 12:12:54 +0200428{
mingo39aeb522009-09-14 20:04:48 +0200429 struct sched_atom *event = get_new_event(task, timestamp);
Ingo Molnarec156762009-09-11 12:12:54 +0200430
431 event->type = SCHED_EVENT_SLEEP;
432
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300433 sched->nr_sleep_events++;
Ingo Molnarec156762009-09-11 12:12:54 +0200434}
435
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300436static struct task_desc *register_pid(struct perf_sched *sched,
437 unsigned long pid, const char *comm)
Ingo Molnarec156762009-09-11 12:12:54 +0200438{
439 struct task_desc *task;
Yunlong Songcb06ac22015-03-31 21:46:30 +0800440 static int pid_max;
Ingo Molnarec156762009-09-11 12:12:54 +0200441
Yunlong Songcb06ac22015-03-31 21:46:30 +0800442 if (sched->pid_to_task == NULL) {
443 if (sysctl__read_int("kernel/pid_max", &pid_max) < 0)
444 pid_max = MAX_PID;
445 BUG_ON((sched->pid_to_task = calloc(pid_max, sizeof(struct task_desc *))) == NULL);
446 }
Yunlong Song3a423a52015-03-31 21:46:31 +0800447 if (pid >= (unsigned long)pid_max) {
448 BUG_ON((sched->pid_to_task = realloc(sched->pid_to_task, (pid + 1) *
449 sizeof(struct task_desc *))) == NULL);
450 while (pid >= (unsigned long)pid_max)
451 sched->pid_to_task[pid_max++] = NULL;
452 }
Ingo Molnarec156762009-09-11 12:12:54 +0200453
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300454 task = sched->pid_to_task[pid];
Ingo Molnarec156762009-09-11 12:12:54 +0200455
456 if (task)
457 return task;
458
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -0200459 task = zalloc(sizeof(*task));
Ingo Molnarec156762009-09-11 12:12:54 +0200460 task->pid = pid;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300461 task->nr = sched->nr_tasks;
Ingo Molnarec156762009-09-11 12:12:54 +0200462 strcpy(task->comm, comm);
463 /*
464 * every task starts in sleeping state - this gets ignored
465 * if there's no wakeup pointing to this sleep state:
466 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300467 add_sched_event_sleep(sched, task, 0, 0);
Ingo Molnarec156762009-09-11 12:12:54 +0200468
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300469 sched->pid_to_task[pid] = task;
470 sched->nr_tasks++;
Yunlong Song0755bc42015-03-31 21:46:28 +0800471 sched->tasks = realloc(sched->tasks, sched->nr_tasks * sizeof(struct task_desc *));
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300472 BUG_ON(!sched->tasks);
473 sched->tasks[task->nr] = task;
Ingo Molnarec156762009-09-11 12:12:54 +0200474
Namhyung Kimbb963e12017-02-17 17:17:38 +0900475 if (verbose > 0)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300476 printf("registered task #%ld, PID %ld (%s)\n", sched->nr_tasks, pid, comm);
Ingo Molnarec156762009-09-11 12:12:54 +0200477
478 return task;
479}
480
481
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300482static void print_task_traces(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200483{
484 struct task_desc *task;
485 unsigned long i;
486
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300487 for (i = 0; i < sched->nr_tasks; i++) {
488 task = sched->tasks[i];
Ingo Molnarad236fd2009-09-11 12:12:54 +0200489 printf("task %6ld (%20s:%10ld), nr_events: %ld\n",
Ingo Molnarec156762009-09-11 12:12:54 +0200490 task->nr, task->comm, task->pid, task->nr_events);
491 }
492}
493
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300494static void add_cross_task_wakeups(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200495{
496 struct task_desc *task1, *task2;
497 unsigned long i, j;
498
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300499 for (i = 0; i < sched->nr_tasks; i++) {
500 task1 = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200501 j = i + 1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300502 if (j == sched->nr_tasks)
Ingo Molnarec156762009-09-11 12:12:54 +0200503 j = 0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300504 task2 = sched->tasks[j];
505 add_sched_event_wakeup(sched, task1, 0, task2);
Ingo Molnarec156762009-09-11 12:12:54 +0200506 }
507}
508
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300509static void perf_sched__process_event(struct perf_sched *sched,
510 struct sched_atom *atom)
Ingo Molnarec156762009-09-11 12:12:54 +0200511{
512 int ret = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200513
mingo39aeb522009-09-14 20:04:48 +0200514 switch (atom->type) {
Ingo Molnarec156762009-09-11 12:12:54 +0200515 case SCHED_EVENT_RUN:
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300516 burn_nsecs(sched, atom->duration);
Ingo Molnarec156762009-09-11 12:12:54 +0200517 break;
518 case SCHED_EVENT_SLEEP:
mingo39aeb522009-09-14 20:04:48 +0200519 if (atom->wait_sem)
520 ret = sem_wait(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200521 BUG_ON(ret);
522 break;
523 case SCHED_EVENT_WAKEUP:
mingo39aeb522009-09-14 20:04:48 +0200524 if (atom->wait_sem)
525 ret = sem_post(atom->wait_sem);
Ingo Molnarec156762009-09-11 12:12:54 +0200526 BUG_ON(ret);
527 break;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +0200528 case SCHED_EVENT_MIGRATION:
529 break;
Ingo Molnarec156762009-09-11 12:12:54 +0200530 default:
531 BUG_ON(1);
532 }
533}
534
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200535static u64 get_cpu_usage_nsec_parent(void)
Ingo Molnarec156762009-09-11 12:12:54 +0200536{
537 struct rusage ru;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200538 u64 sum;
Ingo Molnarec156762009-09-11 12:12:54 +0200539 int err;
540
541 err = getrusage(RUSAGE_SELF, &ru);
542 BUG_ON(err);
543
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300544 sum = ru.ru_utime.tv_sec * NSEC_PER_SEC + ru.ru_utime.tv_usec * NSEC_PER_USEC;
545 sum += ru.ru_stime.tv_sec * NSEC_PER_SEC + ru.ru_stime.tv_usec * NSEC_PER_USEC;
Ingo Molnarec156762009-09-11 12:12:54 +0200546
547 return sum;
548}
549
Yunlong Song939cda52015-03-31 21:46:34 +0800550static int self_open_counters(struct perf_sched *sched, unsigned long cur_task)
Ingo Molnarec156762009-09-11 12:12:54 +0200551{
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800552 struct perf_event_attr attr;
Yunlong Song939cda52015-03-31 21:46:34 +0800553 char sbuf[STRERR_BUFSIZE], info[STRERR_BUFSIZE];
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800554 int fd;
Yunlong Song939cda52015-03-31 21:46:34 +0800555 struct rlimit limit;
556 bool need_privilege = false;
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800557
558 memset(&attr, 0, sizeof(attr));
559
560 attr.type = PERF_TYPE_SOFTWARE;
561 attr.config = PERF_COUNT_SW_TASK_CLOCK;
562
Yunlong Song939cda52015-03-31 21:46:34 +0800563force_again:
Yann Droneaud57480d22014-06-30 22:28:47 +0200564 fd = sys_perf_event_open(&attr, 0, -1, -1,
565 perf_event_open_cloexec_flag());
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800566
Yunlong Song1aff59b2015-03-31 21:46:33 +0800567 if (fd < 0) {
Yunlong Song939cda52015-03-31 21:46:34 +0800568 if (errno == EMFILE) {
569 if (sched->force) {
570 BUG_ON(getrlimit(RLIMIT_NOFILE, &limit) == -1);
571 limit.rlim_cur += sched->nr_tasks - cur_task;
572 if (limit.rlim_cur > limit.rlim_max) {
573 limit.rlim_max = limit.rlim_cur;
574 need_privilege = true;
575 }
576 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
577 if (need_privilege && errno == EPERM)
578 strcpy(info, "Need privilege\n");
579 } else
580 goto force_again;
581 } else
582 strcpy(info, "Have a try with -f option\n");
583 }
Namhyung Kim60b7d142012-09-12 11:11:06 +0900584 pr_err("Error: sys_perf_event_open() syscall returned "
Yunlong Song939cda52015-03-31 21:46:34 +0800585 "with %d (%s)\n%s", fd,
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300586 str_error_r(errno, sbuf, sizeof(sbuf)), info);
Yunlong Song1aff59b2015-03-31 21:46:33 +0800587 exit(EXIT_FAILURE);
588 }
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800589 return fd;
590}
591
592static u64 get_cpu_usage_nsec_self(int fd)
593{
594 u64 runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200595 int ret;
596
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800597 ret = read(fd, &runtime, sizeof(runtime));
598 BUG_ON(ret != sizeof(runtime));
Ingo Molnarec156762009-09-11 12:12:54 +0200599
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800600 return runtime;
Ingo Molnarec156762009-09-11 12:12:54 +0200601}
602
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300603struct sched_thread_parms {
604 struct task_desc *task;
605 struct perf_sched *sched;
Yunlong Song08097ab2015-03-31 21:46:32 +0800606 int fd;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300607};
608
Ingo Molnarec156762009-09-11 12:12:54 +0200609static void *thread_func(void *ctx)
610{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300611 struct sched_thread_parms *parms = ctx;
612 struct task_desc *this_task = parms->task;
613 struct perf_sched *sched = parms->sched;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200614 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200615 unsigned long i, ret;
616 char comm2[22];
Yunlong Song08097ab2015-03-31 21:46:32 +0800617 int fd = parms->fd;
Ingo Molnarec156762009-09-11 12:12:54 +0200618
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300619 zfree(&parms);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300620
Ingo Molnarec156762009-09-11 12:12:54 +0200621 sprintf(comm2, ":%s", this_task->comm);
622 prctl(PR_SET_NAME, comm2);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300623 if (fd < 0)
624 return NULL;
Ingo Molnarec156762009-09-11 12:12:54 +0200625again:
626 ret = sem_post(&this_task->ready_for_work);
627 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300628 ret = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200629 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300630 ret = pthread_mutex_unlock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200631 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200632
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800633 cpu_usage_0 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200634
635 for (i = 0; i < this_task->nr_events; i++) {
636 this_task->curr_event = i;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300637 perf_sched__process_event(sched, this_task->atoms[i]);
Ingo Molnarec156762009-09-11 12:12:54 +0200638 }
639
Xiao Guangrongc0c9e722009-12-09 17:51:30 +0800640 cpu_usage_1 = get_cpu_usage_nsec_self(fd);
Ingo Molnarec156762009-09-11 12:12:54 +0200641 this_task->cpu_usage = cpu_usage_1 - cpu_usage_0;
Ingo Molnarec156762009-09-11 12:12:54 +0200642 ret = sem_post(&this_task->work_done_sem);
643 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200644
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300645 ret = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200646 BUG_ON(ret);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300647 ret = pthread_mutex_unlock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200648 BUG_ON(ret);
Ingo Molnarec156762009-09-11 12:12:54 +0200649
650 goto again;
651}
652
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300653static void create_tasks(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200654{
655 struct task_desc *task;
656 pthread_attr_t attr;
657 unsigned long i;
658 int err;
659
660 err = pthread_attr_init(&attr);
661 BUG_ON(err);
Jiri Pirko12f7e032011-01-10 14:14:23 -0200662 err = pthread_attr_setstacksize(&attr,
663 (size_t) max(16 * 1024, PTHREAD_STACK_MIN));
Ingo Molnarec156762009-09-11 12:12:54 +0200664 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300665 err = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200666 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300667 err = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200668 BUG_ON(err);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300669 for (i = 0; i < sched->nr_tasks; i++) {
670 struct sched_thread_parms *parms = malloc(sizeof(*parms));
671 BUG_ON(parms == NULL);
672 parms->task = task = sched->tasks[i];
673 parms->sched = sched;
Yunlong Song939cda52015-03-31 21:46:34 +0800674 parms->fd = self_open_counters(sched, i);
Ingo Molnarec156762009-09-11 12:12:54 +0200675 sem_init(&task->sleep_sem, 0, 0);
676 sem_init(&task->ready_for_work, 0, 0);
677 sem_init(&task->work_done_sem, 0, 0);
678 task->curr_event = 0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300679 err = pthread_create(&task->thread, &attr, thread_func, parms);
Ingo Molnarec156762009-09-11 12:12:54 +0200680 BUG_ON(err);
681 }
682}
683
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300684static void wait_for_tasks(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200685{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200686 u64 cpu_usage_0, cpu_usage_1;
Ingo Molnarec156762009-09-11 12:12:54 +0200687 struct task_desc *task;
688 unsigned long i, ret;
689
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300690 sched->start_time = get_nsecs();
691 sched->cpu_usage = 0;
692 pthread_mutex_unlock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200693
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300694 for (i = 0; i < sched->nr_tasks; i++) {
695 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200696 ret = sem_wait(&task->ready_for_work);
697 BUG_ON(ret);
698 sem_init(&task->ready_for_work, 0, 0);
699 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300700 ret = pthread_mutex_lock(&sched->work_done_wait_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200701 BUG_ON(ret);
702
703 cpu_usage_0 = get_cpu_usage_nsec_parent();
704
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300705 pthread_mutex_unlock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200706
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300707 for (i = 0; i < sched->nr_tasks; i++) {
708 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200709 ret = sem_wait(&task->work_done_sem);
710 BUG_ON(ret);
711 sem_init(&task->work_done_sem, 0, 0);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300712 sched->cpu_usage += task->cpu_usage;
Ingo Molnarec156762009-09-11 12:12:54 +0200713 task->cpu_usage = 0;
714 }
715
716 cpu_usage_1 = get_cpu_usage_nsec_parent();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300717 if (!sched->runavg_cpu_usage)
718 sched->runavg_cpu_usage = sched->cpu_usage;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800719 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 +0200720
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300721 sched->parent_cpu_usage = cpu_usage_1 - cpu_usage_0;
722 if (!sched->runavg_parent_cpu_usage)
723 sched->runavg_parent_cpu_usage = sched->parent_cpu_usage;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800724 sched->runavg_parent_cpu_usage = (sched->runavg_parent_cpu_usage * (sched->replay_repeat - 1) +
725 sched->parent_cpu_usage)/sched->replay_repeat;
Ingo Molnarec156762009-09-11 12:12:54 +0200726
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300727 ret = pthread_mutex_lock(&sched->start_work_mutex);
Ingo Molnarec156762009-09-11 12:12:54 +0200728 BUG_ON(ret);
729
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300730 for (i = 0; i < sched->nr_tasks; i++) {
731 task = sched->tasks[i];
Ingo Molnarec156762009-09-11 12:12:54 +0200732 sem_init(&task->sleep_sem, 0, 0);
733 task->curr_event = 0;
734 }
735}
736
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300737static void run_one_test(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200738{
Kyle McMartinfb7d0b32011-01-24 11:13:04 -0500739 u64 T0, T1, delta, avg_delta, fluct;
Ingo Molnarec156762009-09-11 12:12:54 +0200740
741 T0 = get_nsecs();
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300742 wait_for_tasks(sched);
Ingo Molnarec156762009-09-11 12:12:54 +0200743 T1 = get_nsecs();
744
745 delta = T1 - T0;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300746 sched->sum_runtime += delta;
747 sched->nr_runs++;
Ingo Molnarec156762009-09-11 12:12:54 +0200748
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300749 avg_delta = sched->sum_runtime / sched->nr_runs;
Ingo Molnarec156762009-09-11 12:12:54 +0200750 if (delta < avg_delta)
751 fluct = avg_delta - delta;
752 else
753 fluct = delta - avg_delta;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300754 sched->sum_fluct += fluct;
755 if (!sched->run_avg)
756 sched->run_avg = delta;
Yunlong Songff5f3bb2015-03-31 21:46:36 +0800757 sched->run_avg = (sched->run_avg * (sched->replay_repeat - 1) + delta) / sched->replay_repeat;
Ingo Molnarec156762009-09-11 12:12:54 +0200758
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300759 printf("#%-3ld: %0.3f, ", sched->nr_runs, (double)delta / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200760
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300761 printf("ravg: %0.2f, ", (double)sched->run_avg / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200762
Ingo Molnarad236fd2009-09-11 12:12:54 +0200763 printf("cpu: %0.2f / %0.2f",
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300764 (double)sched->cpu_usage / NSEC_PER_MSEC, (double)sched->runavg_cpu_usage / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200765
766#if 0
767 /*
Ingo Molnarfbf94822009-09-11 12:12:54 +0200768 * rusage statistics done by the parent, these are less
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300769 * accurate than the sched->sum_exec_runtime based statistics:
Ingo Molnarfbf94822009-09-11 12:12:54 +0200770 */
Ingo Molnarad236fd2009-09-11 12:12:54 +0200771 printf(" [%0.2f / %0.2f]",
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300772 (double)sched->parent_cpu_usage / NSEC_PER_MSEC,
773 (double)sched->runavg_parent_cpu_usage / NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200774#endif
775
Ingo Molnarad236fd2009-09-11 12:12:54 +0200776 printf("\n");
Ingo Molnarec156762009-09-11 12:12:54 +0200777
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300778 if (sched->nr_sleep_corrections)
779 printf(" (%ld sleep corrections)\n", sched->nr_sleep_corrections);
780 sched->nr_sleep_corrections = 0;
Ingo Molnarec156762009-09-11 12:12:54 +0200781}
782
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300783static void test_calibrations(struct perf_sched *sched)
Ingo Molnarec156762009-09-11 12:12:54 +0200784{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200785 u64 T0, T1;
Ingo Molnarec156762009-09-11 12:12:54 +0200786
787 T0 = get_nsecs();
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300788 burn_nsecs(sched, NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200789 T1 = get_nsecs();
790
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200791 printf("the run test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200792
793 T0 = get_nsecs();
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -0300794 sleep_nsecs(NSEC_PER_MSEC);
Ingo Molnarec156762009-09-11 12:12:54 +0200795 T1 = get_nsecs();
796
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200797 printf("the sleep test took %" PRIu64 " nsecs\n", T1 - T0);
Ingo Molnarec156762009-09-11 12:12:54 +0200798}
799
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300800static int
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300801replay_wakeup_event(struct perf_sched *sched,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200802 struct evsel *evsel, struct perf_sample *sample,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300803 struct machine *machine __maybe_unused)
Ingo Molnarec156762009-09-11 12:12:54 +0200804{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300805 const char *comm = perf_evsel__strval(evsel, sample, "comm");
806 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200807 struct task_desc *waker, *wakee;
808
Namhyung Kimbb963e12017-02-17 17:17:38 +0900809 if (verbose > 0) {
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300810 printf("sched_wakeup event %p\n", evsel);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200811
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300812 printf(" ... pid %d woke up %s/%d\n", sample->tid, comm, pid);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200813 }
814
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300815 waker = register_pid(sched, sample->tid, "<unknown>");
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300816 wakee = register_pid(sched, pid, comm);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200817
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300818 add_sched_event_wakeup(sched, waker, sample->time, wakee);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300819 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200820}
821
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300822static int replay_switch_event(struct perf_sched *sched,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200823 struct evsel *evsel,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300824 struct perf_sample *sample,
825 struct machine *machine __maybe_unused)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200826{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300827 const char *prev_comm = perf_evsel__strval(evsel, sample, "prev_comm"),
828 *next_comm = perf_evsel__strval(evsel, sample, "next_comm");
829 const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
830 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
831 const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state");
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300832 struct task_desc *prev, __maybe_unused *next;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -0300833 u64 timestamp0, timestamp = sample->time;
834 int cpu = sample->cpu;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200835 s64 delta;
836
Namhyung Kimbb963e12017-02-17 17:17:38 +0900837 if (verbose > 0)
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -0300838 printf("sched_switch event %p\n", evsel);
Ingo Molnarad236fd2009-09-11 12:12:54 +0200839
Ingo Molnarfbf94822009-09-11 12:12:54 +0200840 if (cpu >= MAX_CPUS || cpu < 0)
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300841 return 0;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200842
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300843 timestamp0 = sched->cpu_last_switched[cpu];
Ingo Molnarfbf94822009-09-11 12:12:54 +0200844 if (timestamp0)
845 delta = timestamp - timestamp0;
846 else
847 delta = 0;
848
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300849 if (delta < 0) {
Namhyung Kim60b7d142012-09-12 11:11:06 +0900850 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300851 return -1;
852 }
Ingo Molnarfbf94822009-09-11 12:12:54 +0200853
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300854 pr_debug(" ... switch from %s/%d to %s/%d [ran %" PRIu64 " nsecs]\n",
855 prev_comm, prev_pid, next_comm, next_pid, delta);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200856
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300857 prev = register_pid(sched, prev_pid, prev_comm);
858 next = register_pid(sched, next_pid, next_comm);
Ingo Molnarfbf94822009-09-11 12:12:54 +0200859
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300860 sched->cpu_last_switched[cpu] = timestamp;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200861
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -0300862 add_sched_event_run(sched, prev, timestamp, delta);
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300863 add_sched_event_sleep(sched, prev, timestamp, prev_state);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300864
865 return 0;
Ingo Molnarfbf94822009-09-11 12:12:54 +0200866}
867
David Aherncb627502013-08-07 22:50:47 -0400868static int replay_fork_event(struct perf_sched *sched,
869 union perf_event *event,
870 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200871{
David Aherncb627502013-08-07 22:50:47 -0400872 struct thread *child, *parent;
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300873
Adrian Hunter314add62013-08-27 11:23:03 +0300874 child = machine__findnew_thread(machine, event->fork.pid,
875 event->fork.tid);
876 parent = machine__findnew_thread(machine, event->fork.ppid,
877 event->fork.ptid);
David Aherncb627502013-08-07 22:50:47 -0400878
879 if (child == NULL || parent == NULL) {
880 pr_debug("thread does not exist on fork event: child %p, parent %p\n",
881 child, parent);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300882 goto out_put;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200883 }
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -0300884
Namhyung Kimbb963e12017-02-17 17:17:38 +0900885 if (verbose > 0) {
David Aherncb627502013-08-07 22:50:47 -0400886 printf("fork event\n");
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200887 printf("... parent: %s/%d\n", thread__comm_str(parent), parent->tid);
888 printf("... child: %s/%d\n", thread__comm_str(child), child->tid);
David Aherncb627502013-08-07 22:50:47 -0400889 }
890
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200891 register_pid(sched, parent->tid, thread__comm_str(parent));
892 register_pid(sched, child->tid, thread__comm_str(child));
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300893out_put:
894 thread__put(child);
895 thread__put(parent);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -0300896 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +0200897}
898
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200899struct sort_dimension {
900 const char *name;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200901 sort_fn_t cmp;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +0200902 struct list_head list;
903};
904
Changbin Du8640da92018-03-06 11:37:36 +0800905/*
906 * handle runtime stats saved per thread
907 */
908static struct thread_runtime *thread__init_runtime(struct thread *thread)
909{
910 struct thread_runtime *r;
911
912 r = zalloc(sizeof(struct thread_runtime));
913 if (!r)
914 return NULL;
915
916 init_stats(&r->run_stats);
917 thread__set_priv(thread, r);
918
919 return r;
920}
921
922static struct thread_runtime *thread__get_runtime(struct thread *thread)
923{
924 struct thread_runtime *tr;
925
926 tr = thread__priv(thread);
927 if (tr == NULL) {
928 tr = thread__init_runtime(thread);
929 if (tr == NULL)
930 pr_debug("Failed to malloc memory for runtime data.\n");
931 }
932
933 return tr;
934}
935
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200936static int
mingo39aeb522009-09-14 20:04:48 +0200937thread_lat_cmp(struct list_head *list, struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200938{
939 struct sort_dimension *sort;
940 int ret = 0;
941
Ingo Molnarb5fae122009-09-11 12:12:54 +0200942 BUG_ON(list_empty(list));
943
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200944 list_for_each_entry(sort, list, list) {
945 ret = sort->cmp(l, r);
946 if (ret)
947 return ret;
948 }
949
950 return ret;
951}
952
mingo39aeb522009-09-14 20:04:48 +0200953static struct work_atoms *
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -0800954thread_atoms_search(struct rb_root_cached *root, struct thread *thread,
Ingo Molnarb5fae122009-09-11 12:12:54 +0200955 struct list_head *sort_list)
956{
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -0800957 struct rb_node *node = root->rb_root.rb_node;
mingo39aeb522009-09-14 20:04:48 +0200958 struct work_atoms key = { .thread = thread };
Ingo Molnarb5fae122009-09-11 12:12:54 +0200959
960 while (node) {
mingo39aeb522009-09-14 20:04:48 +0200961 struct work_atoms *atoms;
Ingo Molnarb5fae122009-09-11 12:12:54 +0200962 int cmp;
963
mingo39aeb522009-09-14 20:04:48 +0200964 atoms = container_of(node, struct work_atoms, node);
Ingo Molnarb5fae122009-09-11 12:12:54 +0200965
966 cmp = thread_lat_cmp(sort_list, &key, atoms);
967 if (cmp > 0)
968 node = node->rb_left;
969 else if (cmp < 0)
970 node = node->rb_right;
971 else {
972 BUG_ON(thread != atoms->thread);
973 return atoms;
974 }
975 }
976 return NULL;
977}
978
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200979static void
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -0800980__thread_latency_insert(struct rb_root_cached *root, struct work_atoms *data,
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200981 struct list_head *sort_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200982{
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -0800983 struct rb_node **new = &(root->rb_root.rb_node), *parent = NULL;
984 bool leftmost = true;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200985
986 while (*new) {
mingo39aeb522009-09-14 20:04:48 +0200987 struct work_atoms *this;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200988 int cmp;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200989
mingo39aeb522009-09-14 20:04:48 +0200990 this = container_of(*new, struct work_atoms, node);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200991 parent = *new;
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200992
993 cmp = thread_lat_cmp(sort_list, data, this);
994
995 if (cmp > 0)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +0200996 new = &((*new)->rb_left);
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -0800997 else {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +0200998 new = &((*new)->rb_right);
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -0800999 leftmost = false;
1000 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001001 }
1002
1003 rb_link_node(&data->node, parent, new);
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08001004 rb_insert_color_cached(&data->node, root, leftmost);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001005}
1006
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001007static int thread_atoms_insert(struct perf_sched *sched, struct thread *thread)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001008{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -02001009 struct work_atoms *atoms = zalloc(sizeof(*atoms));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001010 if (!atoms) {
1011 pr_err("No memory at %s\n", __func__);
1012 return -1;
1013 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001014
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -03001015 atoms->thread = thread__get(thread);
mingo39aeb522009-09-14 20:04:48 +02001016 INIT_LIST_HEAD(&atoms->work_list);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001017 __thread_latency_insert(&sched->atom_root, atoms, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001018 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001019}
1020
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001021static char sched_out_state(u64 prev_state)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001022{
1023 const char *str = TASK_STATE_TO_CHAR_STR;
1024
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001025 return str[prev_state];
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001026}
1027
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001028static int
mingo39aeb522009-09-14 20:04:48 +02001029add_sched_out_event(struct work_atoms *atoms,
1030 char run_state,
1031 u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001032{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -02001033 struct work_atom *atom = zalloc(sizeof(*atom));
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001034 if (!atom) {
1035 pr_err("Non memory at %s", __func__);
1036 return -1;
1037 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001038
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001039 atom->sched_out_time = timestamp;
1040
mingo39aeb522009-09-14 20:04:48 +02001041 if (run_state == 'R') {
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001042 atom->state = THREAD_WAIT_CPU;
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001043 atom->wake_up_time = atom->sched_out_time;
Frederic Weisbeckerc6ced612009-09-13 00:46:19 +02001044 }
1045
mingo39aeb522009-09-14 20:04:48 +02001046 list_add_tail(&atom->list, &atoms->work_list);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001047 return 0;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001048}
1049
1050static void
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001051add_runtime_event(struct work_atoms *atoms, u64 delta,
1052 u64 timestamp __maybe_unused)
mingo39aeb522009-09-14 20:04:48 +02001053{
1054 struct work_atom *atom;
1055
1056 BUG_ON(list_empty(&atoms->work_list));
1057
1058 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1059
1060 atom->runtime += delta;
1061 atoms->total_runtime += delta;
1062}
1063
1064static void
1065add_sched_in_event(struct work_atoms *atoms, u64 timestamp)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001066{
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001067 struct work_atom *atom;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001068 u64 delta;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001069
mingo39aeb522009-09-14 20:04:48 +02001070 if (list_empty(&atoms->work_list))
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001071 return;
1072
mingo39aeb522009-09-14 20:04:48 +02001073 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001074
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001075 if (atom->state != THREAD_WAIT_CPU)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001076 return;
1077
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001078 if (timestamp < atom->wake_up_time) {
1079 atom->state = THREAD_IGNORE;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001080 return;
1081 }
1082
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001083 atom->state = THREAD_SCHED_IN;
1084 atom->sched_in_time = timestamp;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001085
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001086 delta = atom->sched_in_time - atom->wake_up_time;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001087 atoms->total_lat += delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001088 if (delta > atoms->max_lat) {
Frederic Weisbecker66685672009-09-13 01:56:25 +02001089 atoms->max_lat = delta;
Frederic Weisbecker3786310a2009-12-09 21:40:08 +01001090 atoms->max_lat_at = timestamp;
1091 }
Frederic Weisbecker66685672009-09-13 01:56:25 +02001092 atoms->nb_atoms++;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001093}
1094
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001095static int latency_switch_event(struct perf_sched *sched,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001096 struct evsel *evsel,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001097 struct perf_sample *sample,
1098 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001099{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001100 const u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
1101 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
1102 const u64 prev_state = perf_evsel__intval(evsel, sample, "prev_state");
mingo39aeb522009-09-14 20:04:48 +02001103 struct work_atoms *out_events, *in_events;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001104 struct thread *sched_out, *sched_in;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001105 u64 timestamp0, timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001106 int cpu = sample->cpu, err = -1;
Ingo Molnarea92ed52009-09-12 10:08:34 +02001107 s64 delta;
1108
mingo39aeb522009-09-14 20:04:48 +02001109 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
Ingo Molnarea92ed52009-09-12 10:08:34 +02001110
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001111 timestamp0 = sched->cpu_last_switched[cpu];
1112 sched->cpu_last_switched[cpu] = timestamp;
Ingo Molnarea92ed52009-09-12 10:08:34 +02001113 if (timestamp0)
1114 delta = timestamp - timestamp0;
1115 else
1116 delta = 0;
1117
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001118 if (delta < 0) {
1119 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
1120 return -1;
1121 }
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001122
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001123 sched_out = machine__findnew_thread(machine, -1, prev_pid);
1124 sched_in = machine__findnew_thread(machine, -1, next_pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001125 if (sched_out == NULL || sched_in == NULL)
1126 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001127
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001128 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +02001129 if (!out_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001130 if (thread_atoms_insert(sched, sched_out))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001131 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001132 out_events = thread_atoms_search(&sched->atom_root, sched_out, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001133 if (!out_events) {
1134 pr_err("out-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001135 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001136 }
mingo39aeb522009-09-14 20:04:48 +02001137 }
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001138 if (add_sched_out_event(out_events, sched_out_state(prev_state), timestamp))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001139 return -1;
mingo39aeb522009-09-14 20:04:48 +02001140
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001141 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
mingo39aeb522009-09-14 20:04:48 +02001142 if (!in_events) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001143 if (thread_atoms_insert(sched, sched_in))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001144 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001145 in_events = thread_atoms_search(&sched->atom_root, sched_in, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001146 if (!in_events) {
1147 pr_err("in-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001148 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001149 }
mingo39aeb522009-09-14 20:04:48 +02001150 /*
1151 * Take came in we have not heard about yet,
1152 * add in an initial atom in runnable state:
1153 */
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001154 if (add_sched_out_event(in_events, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001155 goto out_put;
mingo39aeb522009-09-14 20:04:48 +02001156 }
1157 add_sched_in_event(in_events, timestamp);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001158 err = 0;
1159out_put:
1160 thread__put(sched_out);
1161 thread__put(sched_in);
1162 return err;
mingo39aeb522009-09-14 20:04:48 +02001163}
1164
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001165static int latency_runtime_event(struct perf_sched *sched,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001166 struct evsel *evsel,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001167 struct perf_sample *sample,
1168 struct machine *machine)
mingo39aeb522009-09-14 20:04:48 +02001169{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001170 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
1171 const u64 runtime = perf_evsel__intval(evsel, sample, "runtime");
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001172 struct thread *thread = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001173 struct work_atoms *atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001174 u64 timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001175 int cpu = sample->cpu, err = -1;
1176
1177 if (thread == NULL)
1178 return -1;
mingo39aeb522009-09-14 20:04:48 +02001179
1180 BUG_ON(cpu >= MAX_CPUS || cpu < 0);
mingo39aeb522009-09-14 20:04:48 +02001181 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001182 if (thread_atoms_insert(sched, thread))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001183 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001184 atoms = thread_atoms_search(&sched->atom_root, thread, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001185 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001186 pr_err("in-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001187 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001188 }
1189 if (add_sched_out_event(atoms, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001190 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001191 }
1192
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001193 add_runtime_event(atoms, runtime, timestamp);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001194 err = 0;
1195out_put:
1196 thread__put(thread);
1197 return err;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001198}
1199
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001200static int latency_wakeup_event(struct perf_sched *sched,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001201 struct evsel *evsel,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001202 struct perf_sample *sample,
1203 struct machine *machine)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001204{
Peter Zijlstra0680ee72014-05-12 20:19:46 +02001205 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
mingo39aeb522009-09-14 20:04:48 +02001206 struct work_atoms *atoms;
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001207 struct work_atom *atom;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001208 struct thread *wakee;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001209 u64 timestamp = sample->time;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001210 int err = -1;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001211
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001212 wakee = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001213 if (wakee == NULL)
1214 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001215 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Frederic Weisbecker17562202009-09-12 23:11:32 +02001216 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001217 if (thread_atoms_insert(sched, wakee))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001218 goto out_put;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001219 atoms = thread_atoms_search(&sched->atom_root, wakee, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001220 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001221 pr_err("wakeup-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001222 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001223 }
1224 if (add_sched_out_event(atoms, 'S', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001225 goto out_put;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001226 }
1227
mingo39aeb522009-09-14 20:04:48 +02001228 BUG_ON(list_empty(&atoms->work_list));
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001229
mingo39aeb522009-09-14 20:04:48 +02001230 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001231
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001232 /*
Dongsheng Yang67d62592014-05-13 10:38:21 +09001233 * As we do not guarantee the wakeup event happens when
1234 * task is out of run queue, also may happen when task is
1235 * on run queue and wakeup only change ->state to TASK_RUNNING,
1236 * then we should not set the ->wake_up_time when wake up a
1237 * task which is on run queue.
1238 *
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001239 * You WILL be missing events if you've recorded only
1240 * one CPU, or are only looking at only one, so don't
Dongsheng Yang67d62592014-05-13 10:38:21 +09001241 * skip in this case.
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001242 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001243 if (sched->profile_cpu == -1 && atom->state != THREAD_SLEEPING)
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001244 goto out_ok;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001245
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001246 sched->nr_timestamps++;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001247 if (atom->sched_out_time > timestamp) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001248 sched->nr_unordered_timestamps++;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001249 goto out_ok;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001250 }
Frederic Weisbeckeraa1ab9d2009-09-14 03:01:12 +02001251
Ingo Molnarb1ffe8f2009-09-11 12:12:54 +02001252 atom->state = THREAD_WAIT_CPU;
1253 atom->wake_up_time = timestamp;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001254out_ok:
1255 err = 0;
1256out_put:
1257 thread__put(wakee);
1258 return err;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001259}
1260
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001261static int latency_migrate_task_event(struct perf_sched *sched,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001262 struct evsel *evsel,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001263 struct perf_sample *sample,
1264 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001265{
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001266 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001267 u64 timestamp = sample->time;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001268 struct work_atoms *atoms;
1269 struct work_atom *atom;
1270 struct thread *migrant;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001271 int err = -1;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001272
1273 /*
1274 * Only need to worry about migration when profiling one CPU.
1275 */
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001276 if (sched->profile_cpu == -1)
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001277 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001278
Adrian Hunter1fcb8762014-07-14 13:02:25 +03001279 migrant = machine__findnew_thread(machine, -1, pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001280 if (migrant == NULL)
1281 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001282 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001283 if (!atoms) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001284 if (thread_atoms_insert(sched, migrant))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001285 goto out_put;
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001286 register_pid(sched, migrant->tid, thread__comm_str(migrant));
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001287 atoms = thread_atoms_search(&sched->atom_root, migrant, &sched->cmp_pid);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001288 if (!atoms) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001289 pr_err("migration-event: Internal tree error");
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001290 goto out_put;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001291 }
1292 if (add_sched_out_event(atoms, 'R', timestamp))
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001293 goto out_put;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001294 }
1295
1296 BUG_ON(list_empty(&atoms->work_list));
1297
1298 atom = list_entry(atoms->work_list.prev, struct work_atom, list);
1299 atom->sched_in_time = atom->sched_out_time = atom->wake_up_time = timestamp;
1300
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001301 sched->nr_timestamps++;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001302
1303 if (atom->sched_out_time > timestamp)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001304 sched->nr_unordered_timestamps++;
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001305 err = 0;
1306out_put:
1307 thread__put(migrant);
1308 return err;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001309}
1310
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001311static void output_lat_thread(struct perf_sched *sched, struct work_atoms *work_list)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001312{
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001313 int i;
1314 int ret;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001315 u64 avg;
Namhyung Kim99620a52016-10-24 11:02:45 +09001316 char max_lat_at[32];
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001317
mingo39aeb522009-09-14 20:04:48 +02001318 if (!work_list->nb_atoms)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001319 return;
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001320 /*
1321 * Ignore idle threads:
1322 */
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +02001323 if (!strcmp(thread__comm_str(work_list->thread), "swapper"))
Ingo Molnarea57c4f2009-09-13 18:15:54 +02001324 return;
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001325
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001326 sched->all_runtime += work_list->total_runtime;
1327 sched->all_count += work_list->nb_atoms;
Frederic Weisbecker66685672009-09-13 01:56:25 +02001328
Josef Bacik2f80dd42015-05-22 09:18:40 -04001329 if (work_list->num_merged > 1)
1330 ret = printf(" %s:(%d) ", thread__comm_str(work_list->thread), work_list->num_merged);
1331 else
1332 ret = printf(" %s:%d ", thread__comm_str(work_list->thread), work_list->thread->tid);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001333
mingo08f69e62009-09-14 18:30:44 +02001334 for (i = 0; i < 24 - ret; i++)
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001335 printf(" ");
1336
mingo39aeb522009-09-14 20:04:48 +02001337 avg = work_list->total_lat / work_list->nb_atoms;
Namhyung Kim99620a52016-10-24 11:02:45 +09001338 timestamp__scnprintf_usec(work_list->max_lat_at, max_lat_at, sizeof(max_lat_at));
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001339
Namhyung Kim99620a52016-10-24 11:02:45 +09001340 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 -03001341 (double)work_list->total_runtime / NSEC_PER_MSEC,
1342 work_list->nb_atoms, (double)avg / NSEC_PER_MSEC,
1343 (double)work_list->max_lat / NSEC_PER_MSEC,
Namhyung Kim99620a52016-10-24 11:02:45 +09001344 max_lat_at);
Frederic Weisbeckercdce9d72009-09-12 08:06:14 +02001345}
1346
mingo39aeb522009-09-14 20:04:48 +02001347static int pid_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001348{
Jiri Olsa0014de12015-11-02 12:10:25 +01001349 if (l->thread == r->thread)
1350 return 0;
Adrian Hunter38051232013-07-04 16:20:31 +03001351 if (l->thread->tid < r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001352 return -1;
Adrian Hunter38051232013-07-04 16:20:31 +03001353 if (l->thread->tid > r->thread->tid)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001354 return 1;
Jiri Olsa0014de12015-11-02 12:10:25 +01001355 return (int)(l->thread - r->thread);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001356}
1357
mingo39aeb522009-09-14 20:04:48 +02001358static int avg_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001359{
1360 u64 avgl, avgr;
1361
1362 if (!l->nb_atoms)
1363 return -1;
1364
1365 if (!r->nb_atoms)
1366 return 1;
1367
1368 avgl = l->total_lat / l->nb_atoms;
1369 avgr = r->total_lat / r->nb_atoms;
1370
1371 if (avgl < avgr)
1372 return -1;
1373 if (avgl > avgr)
1374 return 1;
1375
1376 return 0;
1377}
1378
mingo39aeb522009-09-14 20:04:48 +02001379static int max_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001380{
1381 if (l->max_lat < r->max_lat)
1382 return -1;
1383 if (l->max_lat > r->max_lat)
1384 return 1;
1385
1386 return 0;
1387}
1388
mingo39aeb522009-09-14 20:04:48 +02001389static int switch_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001390{
1391 if (l->nb_atoms < r->nb_atoms)
1392 return -1;
1393 if (l->nb_atoms > r->nb_atoms)
1394 return 1;
1395
1396 return 0;
1397}
1398
mingo39aeb522009-09-14 20:04:48 +02001399static int runtime_cmp(struct work_atoms *l, struct work_atoms *r)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001400{
1401 if (l->total_runtime < r->total_runtime)
1402 return -1;
1403 if (l->total_runtime > r->total_runtime)
1404 return 1;
1405
1406 return 0;
1407}
1408
Randy Dunlapcbef79a2009-10-05 13:17:29 -07001409static int sort_dimension__add(const char *tok, struct list_head *list)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001410{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001411 size_t i;
1412 static struct sort_dimension avg_sort_dimension = {
1413 .name = "avg",
1414 .cmp = avg_cmp,
1415 };
1416 static struct sort_dimension max_sort_dimension = {
1417 .name = "max",
1418 .cmp = max_cmp,
1419 };
1420 static struct sort_dimension pid_sort_dimension = {
1421 .name = "pid",
1422 .cmp = pid_cmp,
1423 };
1424 static struct sort_dimension runtime_sort_dimension = {
1425 .name = "runtime",
1426 .cmp = runtime_cmp,
1427 };
1428 static struct sort_dimension switch_sort_dimension = {
1429 .name = "switch",
1430 .cmp = switch_cmp,
1431 };
1432 struct sort_dimension *available_sorts[] = {
1433 &pid_sort_dimension,
1434 &avg_sort_dimension,
1435 &max_sort_dimension,
1436 &switch_sort_dimension,
1437 &runtime_sort_dimension,
1438 };
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001439
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001440 for (i = 0; i < ARRAY_SIZE(available_sorts); i++) {
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001441 if (!strcmp(available_sorts[i]->name, tok)) {
1442 list_add_tail(&available_sorts[i]->list, list);
1443
1444 return 0;
1445 }
1446 }
1447
1448 return -1;
1449}
1450
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001451static void perf_sched__sort_lat(struct perf_sched *sched)
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001452{
1453 struct rb_node *node;
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08001454 struct rb_root_cached *root = &sched->atom_root;
Josef Bacik2f80dd42015-05-22 09:18:40 -04001455again:
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001456 for (;;) {
mingo39aeb522009-09-14 20:04:48 +02001457 struct work_atoms *data;
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08001458 node = rb_first_cached(root);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001459 if (!node)
1460 break;
1461
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08001462 rb_erase_cached(node, root);
mingo39aeb522009-09-14 20:04:48 +02001463 data = rb_entry(node, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001464 __thread_latency_insert(&sched->sorted_atom_root, data, &sched->sort_list);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001465 }
Josef Bacik2f80dd42015-05-22 09:18:40 -04001466 if (root == &sched->atom_root) {
1467 root = &sched->merged_atom_root;
1468 goto again;
1469 }
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02001470}
1471
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001472static int process_sched_wakeup_event(struct perf_tool *tool,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001473 struct evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001474 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001475 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001476{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001477 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001478
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001479 if (sched->tp_handler->wakeup_event)
1480 return sched->tp_handler->wakeup_event(sched, evsel, sample, machine);
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001481
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001482 return 0;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001483}
1484
Jiri Olsaa151a372016-04-12 15:29:29 +02001485union map_priv {
1486 void *ptr;
1487 bool color;
1488};
1489
1490static bool thread__has_color(struct thread *thread)
1491{
1492 union map_priv priv = {
1493 .ptr = thread__priv(thread),
1494 };
1495
1496 return priv.color;
1497}
1498
1499static struct thread*
1500map__findnew_thread(struct perf_sched *sched, struct machine *machine, pid_t pid, pid_t tid)
1501{
1502 struct thread *thread = machine__findnew_thread(machine, pid, tid);
1503 union map_priv priv = {
1504 .color = false,
1505 };
1506
1507 if (!sched->map.color_pids || !thread || thread__priv(thread))
1508 return thread;
1509
1510 if (thread_map__has(sched->map.color_pids, tid))
1511 priv.color = true;
1512
1513 thread__set_priv(thread, priv.ptr);
1514 return thread;
1515}
1516
Jiri Olsa32dcd022019-07-21 13:23:51 +02001517static int map_switch_event(struct perf_sched *sched, struct evsel *evsel,
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001518 struct perf_sample *sample, struct machine *machine)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001519{
Dongsheng Yang9d372ca2014-05-16 14:37:05 +09001520 const u32 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
1521 struct thread *sched_in;
Changbin Du8640da92018-03-06 11:37:36 +08001522 struct thread_runtime *tr;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001523 int new_shortname;
Arnaldo Carvalho de Melo7f7f8d02012-08-07 11:33:42 -03001524 u64 timestamp0, timestamp = sample->time;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001525 s64 delta;
Jiri Olsa99623c62016-04-12 15:29:26 +02001526 int i, this_cpu = sample->cpu;
1527 int cpus_nr;
1528 bool new_cpu = false;
Jiri Olsa8cd91192016-04-12 15:29:27 +02001529 const char *color = PERF_COLOR_NORMAL;
Namhyung Kim99620a52016-10-24 11:02:45 +09001530 char stimestamp[32];
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001531
1532 BUG_ON(this_cpu >= MAX_CPUS || this_cpu < 0);
1533
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001534 if (this_cpu > sched->max_cpu)
1535 sched->max_cpu = this_cpu;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001536
Jiri Olsa99623c62016-04-12 15:29:26 +02001537 if (sched->map.comp) {
1538 cpus_nr = bitmap_weight(sched->map.comp_cpus_mask, MAX_CPUS);
1539 if (!test_and_set_bit(this_cpu, sched->map.comp_cpus_mask)) {
1540 sched->map.comp_cpus[cpus_nr++] = this_cpu;
1541 new_cpu = true;
1542 }
1543 } else
1544 cpus_nr = sched->max_cpu;
1545
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001546 timestamp0 = sched->cpu_last_switched[this_cpu];
1547 sched->cpu_last_switched[this_cpu] = timestamp;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001548 if (timestamp0)
1549 delta = timestamp - timestamp0;
1550 else
1551 delta = 0;
1552
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001553 if (delta < 0) {
Namhyung Kim60b7d142012-09-12 11:11:06 +09001554 pr_err("hm, delta: %" PRIu64 " < 0 ?\n", delta);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001555 return -1;
1556 }
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001557
Jiri Olsaa151a372016-04-12 15:29:29 +02001558 sched_in = map__findnew_thread(sched, machine, -1, next_pid);
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001559 if (sched_in == NULL)
1560 return -1;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001561
Changbin Du8640da92018-03-06 11:37:36 +08001562 tr = thread__get_runtime(sched_in);
1563 if (tr == NULL) {
1564 thread__put(sched_in);
1565 return -1;
1566 }
1567
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001568 sched->curr_thread[this_cpu] = thread__get(sched_in);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001569
1570 printf(" ");
1571
1572 new_shortname = 0;
Changbin Du8640da92018-03-06 11:37:36 +08001573 if (!tr->shortname[0]) {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001574 if (!strcmp(thread__comm_str(sched_in), "swapper")) {
1575 /*
1576 * Don't allocate a letter-number for swapper:0
1577 * as a shortname. Instead, we use '.' for it.
1578 */
Changbin Du8640da92018-03-06 11:37:36 +08001579 tr->shortname[0] = '.';
1580 tr->shortname[1] = ' ';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001581 } else {
Changbin Du8640da92018-03-06 11:37:36 +08001582 tr->shortname[0] = sched->next_shortname1;
1583 tr->shortname[1] = sched->next_shortname2;
Dongsheng6bcab4e2014-05-06 14:39:01 +09001584
1585 if (sched->next_shortname1 < 'Z') {
1586 sched->next_shortname1++;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001587 } else {
Dongsheng6bcab4e2014-05-06 14:39:01 +09001588 sched->next_shortname1 = 'A';
1589 if (sched->next_shortname2 < '9')
1590 sched->next_shortname2++;
1591 else
1592 sched->next_shortname2 = '0';
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001593 }
1594 }
1595 new_shortname = 1;
1596 }
1597
Jiri Olsa99623c62016-04-12 15:29:26 +02001598 for (i = 0; i < cpus_nr; i++) {
1599 int cpu = sched->map.comp ? sched->map.comp_cpus[i] : i;
Jiri Olsaa151a372016-04-12 15:29:29 +02001600 struct thread *curr_thread = sched->curr_thread[cpu];
Changbin Du8640da92018-03-06 11:37:36 +08001601 struct thread_runtime *curr_tr;
Jiri Olsaa151a372016-04-12 15:29:29 +02001602 const char *pid_color = color;
Jiri Olsacf294f22016-04-12 15:29:30 +02001603 const char *cpu_color = color;
Jiri Olsaa151a372016-04-12 15:29:29 +02001604
1605 if (curr_thread && thread__has_color(curr_thread))
1606 pid_color = COLOR_PIDS;
Jiri Olsa99623c62016-04-12 15:29:26 +02001607
Jiri Olsa73643bb2016-04-12 15:29:31 +02001608 if (sched->map.cpus && !cpu_map__has(sched->map.cpus, cpu))
1609 continue;
1610
Jiri Olsacf294f22016-04-12 15:29:30 +02001611 if (sched->map.color_cpus && cpu_map__has(sched->map.color_cpus, cpu))
1612 cpu_color = COLOR_CPUS;
1613
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001614 if (cpu != this_cpu)
Namhyung Kim1208bb22016-10-24 11:02:43 +09001615 color_fprintf(stdout, color, " ");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001616 else
Jiri Olsacf294f22016-04-12 15:29:30 +02001617 color_fprintf(stdout, cpu_color, "*");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001618
Changbin Du8640da92018-03-06 11:37:36 +08001619 if (sched->curr_thread[cpu]) {
1620 curr_tr = thread__get_runtime(sched->curr_thread[cpu]);
1621 if (curr_tr == NULL) {
1622 thread__put(sched_in);
1623 return -1;
1624 }
1625 color_fprintf(stdout, pid_color, "%2s ", curr_tr->shortname);
1626 } else
Jiri Olsa8cd91192016-04-12 15:29:27 +02001627 color_fprintf(stdout, color, " ");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001628 }
1629
Jiri Olsa73643bb2016-04-12 15:29:31 +02001630 if (sched->map.cpus && !cpu_map__has(sched->map.cpus, this_cpu))
1631 goto out;
1632
Namhyung Kim99620a52016-10-24 11:02:45 +09001633 timestamp__scnprintf_usec(timestamp, stimestamp, sizeof(stimestamp));
1634 color_fprintf(stdout, color, " %12s secs ", stimestamp);
Changbin Du99a3c3a2018-03-06 11:37:37 +08001635 if (new_shortname || tr->comm_changed || (verbose > 0 && sched_in->tid)) {
Jiri Olsaa151a372016-04-12 15:29:29 +02001636 const char *pid_color = color;
1637
1638 if (thread__has_color(sched_in))
1639 pid_color = COLOR_PIDS;
1640
1641 color_fprintf(stdout, pid_color, "%s => %s:%d",
Changbin Du8640da92018-03-06 11:37:36 +08001642 tr->shortname, thread__comm_str(sched_in), sched_in->tid);
Changbin Du99a3c3a2018-03-06 11:37:37 +08001643 tr->comm_changed = false;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001644 }
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001645
Jiri Olsa99623c62016-04-12 15:29:26 +02001646 if (sched->map.comp && new_cpu)
Jiri Olsa8cd91192016-04-12 15:29:27 +02001647 color_fprintf(stdout, color, " (CPU %d)", this_cpu);
Jiri Olsa99623c62016-04-12 15:29:26 +02001648
Jiri Olsa73643bb2016-04-12 15:29:31 +02001649out:
Jiri Olsa8cd91192016-04-12 15:29:27 +02001650 color_fprintf(stdout, color, "\n");
Jiri Olsa99623c62016-04-12 15:29:26 +02001651
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -03001652 thread__put(sched_in);
1653
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001654 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02001655}
1656
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001657static int process_sched_switch_event(struct perf_tool *tool,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001658 struct evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001659 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001660 struct machine *machine)
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001661{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001662 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001663 int this_cpu = sample->cpu, err = 0;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001664 u32 prev_pid = perf_evsel__intval(evsel, sample, "prev_pid"),
1665 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001666
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001667 if (sched->curr_pid[this_cpu] != (u32)-1) {
Ingo Molnarc8a37752009-09-16 14:07:00 +02001668 /*
1669 * Are we trying to switch away a PID that is
1670 * not current?
1671 */
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001672 if (sched->curr_pid[this_cpu] != prev_pid)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001673 sched->nr_context_switch_bugs++;
Ingo Molnarc8a37752009-09-16 14:07:00 +02001674 }
Ingo Molnarc8a37752009-09-16 14:07:00 +02001675
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001676 if (sched->tp_handler->switch_event)
1677 err = sched->tp_handler->switch_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001678
1679 sched->curr_pid[this_cpu] = next_pid;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001680 return err;
Frederic Weisbecker419ab0d2009-09-12 03:59:01 +02001681}
1682
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001683static int process_sched_runtime_event(struct perf_tool *tool,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001684 struct evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001685 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001686 struct machine *machine)
mingo39aeb522009-09-14 20:04:48 +02001687{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001688 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
mingo39aeb522009-09-14 20:04:48 +02001689
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001690 if (sched->tp_handler->runtime_event)
1691 return sched->tp_handler->runtime_event(sched, evsel, sample, machine);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001692
1693 return 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001694}
1695
David Aherncb627502013-08-07 22:50:47 -04001696static int perf_sched__process_fork_event(struct perf_tool *tool,
1697 union perf_event *event,
1698 struct perf_sample *sample,
1699 struct machine *machine)
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001700{
1701 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
1702
David Aherncb627502013-08-07 22:50:47 -04001703 /* run the fork event through the perf machineruy */
1704 perf_event__process_fork(tool, event, sample, machine);
1705
1706 /* and then run additional processing needed for this command */
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001707 if (sched->tp_handler->fork_event)
David Aherncb627502013-08-07 22:50:47 -04001708 return sched->tp_handler->fork_event(sched, event, machine);
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001709
1710 return 0;
1711}
1712
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001713static int process_sched_migrate_task_event(struct perf_tool *tool,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001714 struct evsel *evsel,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001715 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001716 struct machine *machine)
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001717{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03001718 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001719
Arnaldo Carvalho de Melo9ec3f4e2012-09-11 19:29:17 -03001720 if (sched->tp_handler->migrate_task_event)
1721 return sched->tp_handler->migrate_task_event(sched, evsel, sample, machine);
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001722
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001723 return 0;
Mike Galbraith55ffb7a2009-10-10 14:46:04 +02001724}
1725
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001726typedef int (*tracepoint_handler)(struct perf_tool *tool,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001727 struct evsel *evsel,
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001728 struct perf_sample *sample,
Arnaldo Carvalho de Melo4218e672012-09-11 13:18:47 -03001729 struct machine *machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001730
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001731static int perf_sched__process_tracepoint_sample(struct perf_tool *tool __maybe_unused,
1732 union perf_event *event __maybe_unused,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001733 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001734 struct evsel *evsel,
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001735 struct machine *machine)
Ingo Molnarec156762009-09-11 12:12:54 +02001736{
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001737 int err = 0;
Ingo Molnarec156762009-09-11 12:12:54 +02001738
Arnaldo Carvalho de Melo744a9712013-11-06 10:17:38 -03001739 if (evsel->handler != NULL) {
1740 tracepoint_handler f = evsel->handler;
Arnaldo Carvalho de Melo2b7fcbc2012-09-11 19:29:17 -03001741 err = f(tool, evsel, sample, machine);
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001742 }
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001743
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001744 return err;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001745}
1746
Changbin Du99a3c3a2018-03-06 11:37:37 +08001747static int perf_sched__process_comm(struct perf_tool *tool __maybe_unused,
1748 union perf_event *event,
1749 struct perf_sample *sample,
1750 struct machine *machine)
1751{
1752 struct thread *thread;
1753 struct thread_runtime *tr;
1754 int err;
1755
1756 err = perf_event__process_comm(tool, event, sample, machine);
1757 if (err)
1758 return err;
1759
1760 thread = machine__find_thread(machine, sample->pid, sample->tid);
1761 if (!thread) {
1762 pr_err("Internal error: can't find thread\n");
1763 return -1;
1764 }
1765
1766 tr = thread__get_runtime(thread);
1767 if (tr == NULL) {
1768 thread__put(thread);
1769 return -1;
1770 }
1771
1772 tr->comm_changed = true;
1773 thread__put(thread);
1774
1775 return 0;
1776}
1777
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001778static int perf_sched__read_events(struct perf_sched *sched)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001779{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001780 const struct evsel_str_handler handlers[] = {
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001781 { "sched:sched_switch", process_sched_switch_event, },
1782 { "sched:sched_stat_runtime", process_sched_runtime_event, },
1783 { "sched:sched_wakeup", process_sched_wakeup_event, },
1784 { "sched:sched_wakeup_new", process_sched_wakeup_event, },
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001785 { "sched:sched_migrate_task", process_sched_migrate_task_event, },
1786 };
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001787 struct perf_session *session;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001788 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +01001789 .path = input_name,
1790 .mode = PERF_DATA_MODE_READ,
1791 .force = sched->force,
Jiri Olsaf5fc14122013-10-15 16:27:32 +02001792 };
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001793 int rc = -1;
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03001794
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01001795 session = perf_session__new(&data, false, &sched->tool);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001796 if (session == NULL) {
1797 pr_debug("No Memory for session\n");
1798 return -1;
1799 }
Arnaldo Carvalho de Melo94c744b2009-12-11 21:24:02 -02001800
Namhyung Kim0a7e6d12014-08-12 15:40:45 +09001801 symbol__init(&session->header.env);
Namhyung Kim04934102014-08-12 15:40:41 +09001802
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001803 if (perf_session__set_tracepoints_handlers(session, handlers))
1804 goto out_delete;
Arnaldo Carvalho de Meloee29be62011-11-28 17:57:40 -02001805
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001806 if (perf_session__has_traces(session, "record -R")) {
Arnaldo Carvalho de Melob7b61cb2015-03-03 11:58:45 -03001807 int err = perf_session__process_events(session);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001808 if (err) {
1809 pr_err("Failed to process events, error %d", err);
1810 goto out_delete;
1811 }
Jiri Olsa4c09baf2011-08-08 23:03:34 +02001812
Arnaldo Carvalho de Melo75be9892015-02-14 14:50:11 -03001813 sched->nr_events = session->evlist->stats.nr_events[0];
1814 sched->nr_lost_events = session->evlist->stats.total_lost;
1815 sched->nr_lost_chunks = session->evlist->stats.nr_events[PERF_RECORD_LOST];
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -03001816 }
Arnaldo Carvalho de Melod549c7692009-12-27 21:37:02 -02001817
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001818 rc = 0;
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03001819out_delete:
1820 perf_session__delete(session);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03001821 return rc;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02001822}
1823
David Ahern49394a22016-11-16 15:06:29 +09001824/*
1825 * scheduling times are printed as msec.usec
1826 */
1827static inline void print_sched_time(unsigned long long nsecs, int width)
1828{
1829 unsigned long msecs;
1830 unsigned long usecs;
1831
1832 msecs = nsecs / NSEC_PER_MSEC;
1833 nsecs -= msecs * NSEC_PER_MSEC;
1834 usecs = nsecs / NSEC_PER_USEC;
1835 printf("%*lu.%03lu ", width, msecs, usecs);
1836}
1837
1838/*
1839 * returns runtime data for event, allocating memory for it the
1840 * first time it is used.
1841 */
Jiri Olsa32dcd022019-07-21 13:23:51 +02001842static struct evsel_runtime *perf_evsel__get_runtime(struct evsel *evsel)
David Ahern49394a22016-11-16 15:06:29 +09001843{
1844 struct evsel_runtime *r = evsel->priv;
1845
1846 if (r == NULL) {
1847 r = zalloc(sizeof(struct evsel_runtime));
1848 evsel->priv = r;
1849 }
1850
1851 return r;
1852}
1853
1854/*
1855 * save last time event was seen per cpu
1856 */
Jiri Olsa32dcd022019-07-21 13:23:51 +02001857static void perf_evsel__save_time(struct evsel *evsel,
David Ahern49394a22016-11-16 15:06:29 +09001858 u64 timestamp, u32 cpu)
1859{
1860 struct evsel_runtime *r = perf_evsel__get_runtime(evsel);
1861
1862 if (r == NULL)
1863 return;
1864
1865 if ((cpu >= r->ncpu) || (r->last_time == NULL)) {
1866 int i, n = __roundup_pow_of_two(cpu+1);
1867 void *p = r->last_time;
1868
1869 p = realloc(r->last_time, n * sizeof(u64));
1870 if (!p)
1871 return;
1872
1873 r->last_time = p;
1874 for (i = r->ncpu; i < n; ++i)
1875 r->last_time[i] = (u64) 0;
1876
1877 r->ncpu = n;
1878 }
1879
1880 r->last_time[cpu] = timestamp;
1881}
1882
1883/* returns last time this event was seen on the given cpu */
Jiri Olsa32dcd022019-07-21 13:23:51 +02001884static u64 perf_evsel__get_time(struct evsel *evsel, u32 cpu)
David Ahern49394a22016-11-16 15:06:29 +09001885{
1886 struct evsel_runtime *r = perf_evsel__get_runtime(evsel);
1887
1888 if ((r == NULL) || (r->last_time == NULL) || (cpu >= r->ncpu))
1889 return 0;
1890
1891 return r->last_time[cpu];
1892}
1893
Namhyung Kim9b8087d2016-12-22 15:03:48 +09001894static int comm_width = 30;
David Ahern49394a22016-11-16 15:06:29 +09001895
1896static char *timehist_get_commstr(struct thread *thread)
1897{
1898 static char str[32];
1899 const char *comm = thread__comm_str(thread);
1900 pid_t tid = thread->tid;
1901 pid_t pid = thread->pid_;
1902 int n;
1903
1904 if (pid == 0)
1905 n = scnprintf(str, sizeof(str), "%s", comm);
1906
1907 else if (tid != pid)
1908 n = scnprintf(str, sizeof(str), "%s[%d/%d]", comm, tid, pid);
1909
1910 else
1911 n = scnprintf(str, sizeof(str), "%s[%d]", comm, tid);
1912
1913 if (n > comm_width)
1914 comm_width = n;
1915
1916 return str;
1917}
1918
David Aherna407b062016-11-16 15:06:33 +09001919static void timehist_header(struct perf_sched *sched)
David Ahern49394a22016-11-16 15:06:29 +09001920{
David Aherna407b062016-11-16 15:06:33 +09001921 u32 ncpus = sched->max_cpu + 1;
1922 u32 i, j;
1923
David Ahern49394a22016-11-16 15:06:29 +09001924 printf("%15s %6s ", "time", "cpu");
1925
David Aherna407b062016-11-16 15:06:33 +09001926 if (sched->show_cpu_visual) {
1927 printf(" ");
1928 for (i = 0, j = 0; i < ncpus; ++i) {
1929 printf("%x", j++);
1930 if (j > 15)
1931 j = 0;
1932 }
1933 printf(" ");
1934 }
1935
Namhyung Kim0e6758e2016-12-22 15:03:48 +09001936 printf(" %-*s %9s %9s %9s", comm_width,
David Ahern49394a22016-11-16 15:06:29 +09001937 "task name", "wait time", "sch delay", "run time");
1938
Namhyung Kim414e0502017-01-13 19:45:22 +09001939 if (sched->show_state)
1940 printf(" %s", "state");
1941
David Ahern49394a22016-11-16 15:06:29 +09001942 printf("\n");
1943
1944 /*
1945 * units row
1946 */
1947 printf("%15s %-6s ", "", "");
1948
David Aherna407b062016-11-16 15:06:33 +09001949 if (sched->show_cpu_visual)
1950 printf(" %*s ", ncpus, "");
1951
Namhyung Kim414e0502017-01-13 19:45:22 +09001952 printf(" %-*s %9s %9s %9s", comm_width,
Namhyung Kim0e6758e2016-12-22 15:03:48 +09001953 "[tid/pid]", "(msec)", "(msec)", "(msec)");
David Ahern49394a22016-11-16 15:06:29 +09001954
Namhyung Kim414e0502017-01-13 19:45:22 +09001955 if (sched->show_state)
1956 printf(" %5s", "");
1957
1958 printf("\n");
1959
David Ahern49394a22016-11-16 15:06:29 +09001960 /*
1961 * separator
1962 */
1963 printf("%.15s %.6s ", graph_dotted_line, graph_dotted_line);
1964
David Aherna407b062016-11-16 15:06:33 +09001965 if (sched->show_cpu_visual)
1966 printf(" %.*s ", ncpus, graph_dotted_line);
1967
Namhyung Kim0e6758e2016-12-22 15:03:48 +09001968 printf(" %.*s %.9s %.9s %.9s", comm_width,
David Ahern49394a22016-11-16 15:06:29 +09001969 graph_dotted_line, graph_dotted_line, graph_dotted_line,
1970 graph_dotted_line);
1971
Namhyung Kim414e0502017-01-13 19:45:22 +09001972 if (sched->show_state)
1973 printf(" %.5s", graph_dotted_line);
1974
David Ahern49394a22016-11-16 15:06:29 +09001975 printf("\n");
1976}
1977
Namhyung Kim414e0502017-01-13 19:45:22 +09001978static char task_state_char(struct thread *thread, int state)
1979{
1980 static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
1981 unsigned bit = state ? ffs(state) : 0;
1982
1983 /* 'I' for idle */
1984 if (thread->tid == 0)
1985 return 'I';
1986
1987 return bit < sizeof(state_to_char) - 1 ? state_to_char[bit] : '?';
1988}
1989
David Ahernfc1469f2016-11-16 15:06:31 +09001990static void timehist_print_sample(struct perf_sched *sched,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001991 struct evsel *evsel,
David Ahernfc1469f2016-11-16 15:06:31 +09001992 struct perf_sample *sample,
David Ahern6c973c92016-11-16 15:06:32 +09001993 struct addr_location *al,
David Ahern853b7402016-11-29 10:15:44 -07001994 struct thread *thread,
Namhyung Kim414e0502017-01-13 19:45:22 +09001995 u64 t, int state)
David Ahern49394a22016-11-16 15:06:29 +09001996{
1997 struct thread_runtime *tr = thread__priv(thread);
Brendan Gregg292c4a82017-03-14 01:56:29 +00001998 const char *next_comm = perf_evsel__strval(evsel, sample, "next_comm");
1999 const u32 next_pid = perf_evsel__intval(evsel, sample, "next_pid");
David Aherna407b062016-11-16 15:06:33 +09002000 u32 max_cpus = sched->max_cpu + 1;
David Ahern49394a22016-11-16 15:06:29 +09002001 char tstr[64];
Brendan Gregg292c4a82017-03-14 01:56:29 +00002002 char nstr[30];
Namhyung Kim941bdea2017-01-13 19:45:21 +09002003 u64 wait_time;
David Ahern49394a22016-11-16 15:06:29 +09002004
David Ahern853b7402016-11-29 10:15:44 -07002005 timestamp__scnprintf_usec(t, tstr, sizeof(tstr));
David Ahern49394a22016-11-16 15:06:29 +09002006 printf("%15s [%04d] ", tstr, sample->cpu);
2007
David Aherna407b062016-11-16 15:06:33 +09002008 if (sched->show_cpu_visual) {
2009 u32 i;
2010 char c;
2011
2012 printf(" ");
2013 for (i = 0; i < max_cpus; ++i) {
2014 /* flag idle times with 'i'; others are sched events */
2015 if (i == sample->cpu)
2016 c = (thread->tid == 0) ? 'i' : 's';
2017 else
2018 c = ' ';
2019 printf("%c", c);
2020 }
2021 printf(" ");
2022 }
2023
David Ahern49394a22016-11-16 15:06:29 +09002024 printf(" %-*s ", comm_width, timehist_get_commstr(thread));
2025
Namhyung Kim941bdea2017-01-13 19:45:21 +09002026 wait_time = tr->dt_sleep + tr->dt_iowait + tr->dt_preempt;
2027 print_sched_time(wait_time, 6);
2028
David Ahern49394a22016-11-16 15:06:29 +09002029 print_sched_time(tr->dt_delay, 6);
2030 print_sched_time(tr->dt_run, 6);
David Ahernfc1469f2016-11-16 15:06:31 +09002031
Namhyung Kim414e0502017-01-13 19:45:22 +09002032 if (sched->show_state)
2033 printf(" %5c ", task_state_char(thread, state));
2034
Brendan Gregg292c4a82017-03-14 01:56:29 +00002035 if (sched->show_next) {
2036 snprintf(nstr, sizeof(nstr), "next: %s[%d]", next_comm, next_pid);
2037 printf(" %-*s", comm_width, nstr);
2038 }
2039
2040 if (sched->show_wakeups && !sched->show_next)
David Ahernfc1469f2016-11-16 15:06:31 +09002041 printf(" %-*s", comm_width, "");
2042
David Ahern6c973c92016-11-16 15:06:32 +09002043 if (thread->tid == 0)
2044 goto out;
2045
2046 if (sched->show_callchain)
2047 printf(" ");
2048
2049 sample__fprintf_sym(sample, al, 0,
2050 EVSEL__PRINT_SYM | EVSEL__PRINT_ONELINE |
Namhyung Kim2d9bbf62016-11-24 10:11:13 +09002051 EVSEL__PRINT_CALLCHAIN_ARROW |
2052 EVSEL__PRINT_SKIP_IGNORED,
David Ahern6c973c92016-11-16 15:06:32 +09002053 &callchain_cursor, stdout);
2054
2055out:
David Ahern49394a22016-11-16 15:06:29 +09002056 printf("\n");
2057}
2058
2059/*
2060 * Explanation of delta-time stats:
2061 *
2062 * t = time of current schedule out event
2063 * tprev = time of previous sched out event
2064 * also time of schedule-in event for current task
2065 * last_time = time of last sched change event for current task
2066 * (i.e, time process was last scheduled out)
2067 * ready_to_run = time of wakeup for current task
2068 *
2069 * -----|------------|------------|------------|------
2070 * last ready tprev t
2071 * time to run
2072 *
2073 * |-------- dt_wait --------|
2074 * |- dt_delay -|-- dt_run --|
2075 *
2076 * dt_run = run time of current task
2077 * dt_wait = time between last schedule out event for task and tprev
2078 * represents time spent off the cpu
2079 * dt_delay = time between wakeup and schedule-in of task
2080 */
2081
2082static void timehist_update_runtime_stats(struct thread_runtime *r,
2083 u64 t, u64 tprev)
2084{
2085 r->dt_delay = 0;
Namhyung Kim941bdea2017-01-13 19:45:21 +09002086 r->dt_sleep = 0;
2087 r->dt_iowait = 0;
2088 r->dt_preempt = 0;
David Ahern49394a22016-11-16 15:06:29 +09002089 r->dt_run = 0;
Namhyung Kim941bdea2017-01-13 19:45:21 +09002090
David Ahern49394a22016-11-16 15:06:29 +09002091 if (tprev) {
2092 r->dt_run = t - tprev;
2093 if (r->ready_to_run) {
2094 if (r->ready_to_run > tprev)
2095 pr_debug("time travel: wakeup time for task > previous sched_switch event\n");
2096 else
2097 r->dt_delay = tprev - r->ready_to_run;
2098 }
2099
2100 if (r->last_time > tprev)
2101 pr_debug("time travel: last sched out time for task > previous sched_switch event\n");
Namhyung Kim941bdea2017-01-13 19:45:21 +09002102 else if (r->last_time) {
2103 u64 dt_wait = tprev - r->last_time;
2104
2105 if (r->last_state == TASK_RUNNING)
2106 r->dt_preempt = dt_wait;
2107 else if (r->last_state == TASK_UNINTERRUPTIBLE)
2108 r->dt_iowait = dt_wait;
2109 else
2110 r->dt_sleep = dt_wait;
2111 }
David Ahern49394a22016-11-16 15:06:29 +09002112 }
2113
2114 update_stats(&r->run_stats, r->dt_run);
Namhyung Kim587782c2017-01-13 19:45:23 +09002115
2116 r->total_run_time += r->dt_run;
2117 r->total_delay_time += r->dt_delay;
2118 r->total_sleep_time += r->dt_sleep;
2119 r->total_iowait_time += r->dt_iowait;
2120 r->total_preempt_time += r->dt_preempt;
David Ahern49394a22016-11-16 15:06:29 +09002121}
2122
Namhyung Kim96039c72016-12-08 23:47:50 +09002123static bool is_idle_sample(struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002124 struct evsel *evsel)
David Ahern49394a22016-11-16 15:06:29 +09002125{
2126 /* pid 0 == swapper == idle task */
Namhyung Kim96039c72016-12-08 23:47:50 +09002127 if (strcmp(perf_evsel__name(evsel), "sched:sched_switch") == 0)
2128 return perf_evsel__intval(evsel, sample, "prev_pid") == 0;
David Ahern49394a22016-11-16 15:06:29 +09002129
Namhyung Kim96039c72016-12-08 23:47:50 +09002130 return sample->pid == 0;
2131}
2132
2133static void save_task_callchain(struct perf_sched *sched,
2134 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002135 struct evsel *evsel,
Namhyung Kim96039c72016-12-08 23:47:50 +09002136 struct machine *machine)
2137{
2138 struct callchain_cursor *cursor = &callchain_cursor;
2139 struct thread *thread;
David Ahern6c973c92016-11-16 15:06:32 +09002140
2141 /* want main thread for process - has maps */
2142 thread = machine__findnew_thread(machine, sample->pid, sample->pid);
2143 if (thread == NULL) {
2144 pr_debug("Failed to get thread for pid %d.\n", sample->pid);
Namhyung Kim96039c72016-12-08 23:47:50 +09002145 return;
David Ahern6c973c92016-11-16 15:06:32 +09002146 }
2147
Arnaldo Carvalho de Melo4c505632018-05-28 16:07:56 -03002148 if (!sched->show_callchain || sample->callchain == NULL)
Namhyung Kim96039c72016-12-08 23:47:50 +09002149 return;
David Ahern6c973c92016-11-16 15:06:32 +09002150
2151 if (thread__resolve_callchain(thread, cursor, evsel, sample,
Namhyung Kim8388deb2016-11-24 10:11:14 +09002152 NULL, NULL, sched->max_stack + 2) != 0) {
Namhyung Kimbb963e12017-02-17 17:17:38 +09002153 if (verbose > 0)
Arnaldo Carvalho de Melo62d94b02017-06-27 11:22:31 -03002154 pr_err("Failed to resolve callchain. Skipping\n");
David Ahern6c973c92016-11-16 15:06:32 +09002155
Namhyung Kim96039c72016-12-08 23:47:50 +09002156 return;
David Ahern6c973c92016-11-16 15:06:32 +09002157 }
Namhyung Kimcdeb01b2016-11-24 10:11:12 +09002158
David Ahern6c973c92016-11-16 15:06:32 +09002159 callchain_cursor_commit(cursor);
Namhyung Kimcdeb01b2016-11-24 10:11:12 +09002160
2161 while (true) {
2162 struct callchain_cursor_node *node;
2163 struct symbol *sym;
2164
2165 node = callchain_cursor_current(cursor);
2166 if (node == NULL)
2167 break;
2168
2169 sym = node->sym;
Arnaldo Carvalho de Meloa7c38992017-02-13 16:52:15 -03002170 if (sym) {
Namhyung Kimcdeb01b2016-11-24 10:11:12 +09002171 if (!strcmp(sym->name, "schedule") ||
2172 !strcmp(sym->name, "__schedule") ||
2173 !strcmp(sym->name, "preempt_schedule"))
2174 sym->ignore = 1;
2175 }
2176
2177 callchain_cursor_advance(cursor);
2178 }
David Ahern49394a22016-11-16 15:06:29 +09002179}
2180
Namhyung Kim3bc2fa92016-12-08 23:47:51 +09002181static int init_idle_thread(struct thread *thread)
2182{
2183 struct idle_thread_runtime *itr;
2184
2185 thread__set_comm(thread, idle_comm, 0);
2186
2187 itr = zalloc(sizeof(*itr));
2188 if (itr == NULL)
2189 return -ENOMEM;
2190
2191 init_stats(&itr->tr.run_stats);
2192 callchain_init(&itr->callchain);
2193 callchain_cursor_reset(&itr->cursor);
2194 thread__set_priv(thread, itr);
2195
2196 return 0;
2197}
2198
David Ahern49394a22016-11-16 15:06:29 +09002199/*
2200 * Track idle stats per cpu by maintaining a local thread
2201 * struct for the idle task on each cpu.
2202 */
2203static int init_idle_threads(int ncpu)
2204{
Namhyung Kim3bc2fa92016-12-08 23:47:51 +09002205 int i, ret;
David Ahern49394a22016-11-16 15:06:29 +09002206
2207 idle_threads = zalloc(ncpu * sizeof(struct thread *));
2208 if (!idle_threads)
2209 return -ENOMEM;
2210
Namhyung Kimb3363522016-12-06 12:40:05 +09002211 idle_max_cpu = ncpu;
David Ahern49394a22016-11-16 15:06:29 +09002212
2213 /* allocate the actual thread struct if needed */
2214 for (i = 0; i < ncpu; ++i) {
2215 idle_threads[i] = thread__new(0, 0);
2216 if (idle_threads[i] == NULL)
2217 return -ENOMEM;
2218
Namhyung Kim3bc2fa92016-12-08 23:47:51 +09002219 ret = init_idle_thread(idle_threads[i]);
2220 if (ret < 0)
2221 return ret;
David Ahern49394a22016-11-16 15:06:29 +09002222 }
2223
2224 return 0;
2225}
2226
2227static void free_idle_threads(void)
2228{
2229 int i;
2230
2231 if (idle_threads == NULL)
2232 return;
2233
Namhyung Kimb3363522016-12-06 12:40:05 +09002234 for (i = 0; i < idle_max_cpu; ++i) {
David Ahern49394a22016-11-16 15:06:29 +09002235 if ((idle_threads[i]))
2236 thread__delete(idle_threads[i]);
2237 }
2238
2239 free(idle_threads);
2240}
2241
2242static struct thread *get_idle_thread(int cpu)
2243{
2244 /*
2245 * expand/allocate array of pointers to local thread
2246 * structs if needed
2247 */
2248 if ((cpu >= idle_max_cpu) || (idle_threads == NULL)) {
2249 int i, j = __roundup_pow_of_two(cpu+1);
2250 void *p;
2251
2252 p = realloc(idle_threads, j * sizeof(struct thread *));
2253 if (!p)
2254 return NULL;
2255
2256 idle_threads = (struct thread **) p;
Namhyung Kimb3363522016-12-06 12:40:05 +09002257 for (i = idle_max_cpu; i < j; ++i)
David Ahern49394a22016-11-16 15:06:29 +09002258 idle_threads[i] = NULL;
2259
2260 idle_max_cpu = j;
2261 }
2262
2263 /* allocate a new thread struct if needed */
2264 if (idle_threads[cpu] == NULL) {
2265 idle_threads[cpu] = thread__new(0, 0);
2266
2267 if (idle_threads[cpu]) {
Namhyung Kim3bc2fa92016-12-08 23:47:51 +09002268 if (init_idle_thread(idle_threads[cpu]) < 0)
2269 return NULL;
David Ahern49394a22016-11-16 15:06:29 +09002270 }
2271 }
2272
2273 return idle_threads[cpu];
2274}
2275
Arnaldo Carvalho de Melo4c505632018-05-28 16:07:56 -03002276static void save_idle_callchain(struct perf_sched *sched,
2277 struct idle_thread_runtime *itr,
Namhyung Kim699b5b92016-12-08 23:47:52 +09002278 struct perf_sample *sample)
2279{
Arnaldo Carvalho de Melo4c505632018-05-28 16:07:56 -03002280 if (!sched->show_callchain || sample->callchain == NULL)
Namhyung Kim699b5b92016-12-08 23:47:52 +09002281 return;
2282
2283 callchain_cursor__copy(&itr->cursor, &callchain_cursor);
2284}
2285
David Ahern6c973c92016-11-16 15:06:32 +09002286static struct thread *timehist_get_thread(struct perf_sched *sched,
2287 struct perf_sample *sample,
David Ahern49394a22016-11-16 15:06:29 +09002288 struct machine *machine,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002289 struct evsel *evsel)
David Ahern49394a22016-11-16 15:06:29 +09002290{
2291 struct thread *thread;
2292
Namhyung Kim96039c72016-12-08 23:47:50 +09002293 if (is_idle_sample(sample, evsel)) {
David Ahern49394a22016-11-16 15:06:29 +09002294 thread = get_idle_thread(sample->cpu);
2295 if (thread == NULL)
2296 pr_err("Failed to get idle thread for cpu %d.\n", sample->cpu);
2297
2298 } else {
Namhyung Kim5d92d962016-12-06 12:40:03 +09002299 /* there were samples with tid 0 but non-zero pid */
2300 thread = machine__findnew_thread(machine, sample->pid,
2301 sample->tid ?: sample->pid);
David Ahern49394a22016-11-16 15:06:29 +09002302 if (thread == NULL) {
2303 pr_debug("Failed to get thread for tid %d. skipping sample.\n",
2304 sample->tid);
2305 }
Namhyung Kim96039c72016-12-08 23:47:50 +09002306
2307 save_task_callchain(sched, sample, evsel, machine);
Namhyung Kim699b5b92016-12-08 23:47:52 +09002308 if (sched->idle_hist) {
2309 struct thread *idle;
2310 struct idle_thread_runtime *itr;
2311
2312 idle = get_idle_thread(sample->cpu);
2313 if (idle == NULL) {
2314 pr_err("Failed to get idle thread for cpu %d.\n", sample->cpu);
2315 return NULL;
2316 }
2317
2318 itr = thread__priv(idle);
2319 if (itr == NULL)
2320 return NULL;
2321
2322 itr->last_thread = thread;
2323
2324 /* copy task callchain when entering to idle */
2325 if (perf_evsel__intval(evsel, sample, "next_pid") == 0)
Arnaldo Carvalho de Melo4c505632018-05-28 16:07:56 -03002326 save_idle_callchain(sched, itr, sample);
Namhyung Kim699b5b92016-12-08 23:47:52 +09002327 }
David Ahern49394a22016-11-16 15:06:29 +09002328 }
2329
2330 return thread;
2331}
2332
David Ahern52df1382016-11-16 15:06:30 +09002333static bool timehist_skip_sample(struct perf_sched *sched,
Namhyung Kima4b2b6f2016-12-08 23:47:53 +09002334 struct thread *thread,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002335 struct evsel *evsel,
Namhyung Kima4b2b6f2016-12-08 23:47:53 +09002336 struct perf_sample *sample)
David Ahern49394a22016-11-16 15:06:29 +09002337{
2338 bool rc = false;
2339
David Ahern52df1382016-11-16 15:06:30 +09002340 if (thread__is_filtered(thread)) {
David Ahern49394a22016-11-16 15:06:29 +09002341 rc = true;
David Ahern52df1382016-11-16 15:06:30 +09002342 sched->skipped_samples++;
2343 }
David Ahern49394a22016-11-16 15:06:29 +09002344
Namhyung Kima4b2b6f2016-12-08 23:47:53 +09002345 if (sched->idle_hist) {
2346 if (strcmp(perf_evsel__name(evsel), "sched:sched_switch"))
2347 rc = true;
2348 else if (perf_evsel__intval(evsel, sample, "prev_pid") != 0 &&
2349 perf_evsel__intval(evsel, sample, "next_pid") != 0)
2350 rc = true;
2351 }
2352
David Ahern49394a22016-11-16 15:06:29 +09002353 return rc;
2354}
2355
David Ahernfc1469f2016-11-16 15:06:31 +09002356static void timehist_print_wakeup_event(struct perf_sched *sched,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002357 struct evsel *evsel,
David Ahernfc1469f2016-11-16 15:06:31 +09002358 struct perf_sample *sample,
2359 struct machine *machine,
2360 struct thread *awakened)
2361{
2362 struct thread *thread;
2363 char tstr[64];
2364
2365 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
2366 if (thread == NULL)
2367 return;
2368
2369 /* show wakeup unless both awakee and awaker are filtered */
Namhyung Kima4b2b6f2016-12-08 23:47:53 +09002370 if (timehist_skip_sample(sched, thread, evsel, sample) &&
2371 timehist_skip_sample(sched, awakened, evsel, sample)) {
David Ahernfc1469f2016-11-16 15:06:31 +09002372 return;
2373 }
2374
2375 timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr));
2376 printf("%15s [%04d] ", tstr, sample->cpu);
David Aherna407b062016-11-16 15:06:33 +09002377 if (sched->show_cpu_visual)
2378 printf(" %*s ", sched->max_cpu + 1, "");
David Ahernfc1469f2016-11-16 15:06:31 +09002379
2380 printf(" %-*s ", comm_width, timehist_get_commstr(thread));
2381
2382 /* dt spacer */
2383 printf(" %9s %9s %9s ", "", "", "");
2384
2385 printf("awakened: %s", timehist_get_commstr(awakened));
2386
2387 printf("\n");
2388}
2389
2390static int timehist_sched_wakeup_event(struct perf_tool *tool,
David Ahern49394a22016-11-16 15:06:29 +09002391 union perf_event *event __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002392 struct evsel *evsel,
David Ahern49394a22016-11-16 15:06:29 +09002393 struct perf_sample *sample,
2394 struct machine *machine)
2395{
David Ahernfc1469f2016-11-16 15:06:31 +09002396 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
David Ahern49394a22016-11-16 15:06:29 +09002397 struct thread *thread;
2398 struct thread_runtime *tr = NULL;
2399 /* want pid of awakened task not pid in sample */
2400 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
2401
2402 thread = machine__findnew_thread(machine, 0, pid);
2403 if (thread == NULL)
2404 return -1;
2405
2406 tr = thread__get_runtime(thread);
2407 if (tr == NULL)
2408 return -1;
2409
2410 if (tr->ready_to_run == 0)
2411 tr->ready_to_run = sample->time;
2412
David Ahernfc1469f2016-11-16 15:06:31 +09002413 /* show wakeups if requested */
David Ahern853b7402016-11-29 10:15:44 -07002414 if (sched->show_wakeups &&
2415 !perf_time__skip_sample(&sched->ptime, sample->time))
Namhyung Kima4b2b6f2016-12-08 23:47:53 +09002416 timehist_print_wakeup_event(sched, evsel, sample, machine, thread);
David Ahernfc1469f2016-11-16 15:06:31 +09002417
David Ahern49394a22016-11-16 15:06:29 +09002418 return 0;
2419}
2420
David Ahern350f54f2016-11-25 09:28:41 -07002421static void timehist_print_migration_event(struct perf_sched *sched,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002422 struct evsel *evsel,
David Ahern350f54f2016-11-25 09:28:41 -07002423 struct perf_sample *sample,
2424 struct machine *machine,
2425 struct thread *migrated)
2426{
2427 struct thread *thread;
2428 char tstr[64];
2429 u32 max_cpus = sched->max_cpu + 1;
2430 u32 ocpu, dcpu;
2431
2432 if (sched->summary_only)
2433 return;
2434
2435 max_cpus = sched->max_cpu + 1;
2436 ocpu = perf_evsel__intval(evsel, sample, "orig_cpu");
2437 dcpu = perf_evsel__intval(evsel, sample, "dest_cpu");
2438
2439 thread = machine__findnew_thread(machine, sample->pid, sample->tid);
2440 if (thread == NULL)
2441 return;
2442
Namhyung Kima4b2b6f2016-12-08 23:47:53 +09002443 if (timehist_skip_sample(sched, thread, evsel, sample) &&
2444 timehist_skip_sample(sched, migrated, evsel, sample)) {
David Ahern350f54f2016-11-25 09:28:41 -07002445 return;
2446 }
2447
2448 timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr));
2449 printf("%15s [%04d] ", tstr, sample->cpu);
2450
2451 if (sched->show_cpu_visual) {
2452 u32 i;
2453 char c;
2454
2455 printf(" ");
2456 for (i = 0; i < max_cpus; ++i) {
2457 c = (i == sample->cpu) ? 'm' : ' ';
2458 printf("%c", c);
2459 }
2460 printf(" ");
2461 }
2462
2463 printf(" %-*s ", comm_width, timehist_get_commstr(thread));
2464
2465 /* dt spacer */
2466 printf(" %9s %9s %9s ", "", "", "");
2467
2468 printf("migrated: %s", timehist_get_commstr(migrated));
2469 printf(" cpu %d => %d", ocpu, dcpu);
2470
2471 printf("\n");
2472}
2473
2474static int timehist_migrate_task_event(struct perf_tool *tool,
2475 union perf_event *event __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002476 struct evsel *evsel,
David Ahern350f54f2016-11-25 09:28:41 -07002477 struct perf_sample *sample,
2478 struct machine *machine)
2479{
2480 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
2481 struct thread *thread;
2482 struct thread_runtime *tr = NULL;
2483 /* want pid of migrated task not pid in sample */
2484 const u32 pid = perf_evsel__intval(evsel, sample, "pid");
2485
2486 thread = machine__findnew_thread(machine, 0, pid);
2487 if (thread == NULL)
2488 return -1;
2489
2490 tr = thread__get_runtime(thread);
2491 if (tr == NULL)
2492 return -1;
2493
2494 tr->migrations++;
2495
2496 /* show migrations if requested */
2497 timehist_print_migration_event(sched, evsel, sample, machine, thread);
2498
2499 return 0;
2500}
2501
David Ahern52df1382016-11-16 15:06:30 +09002502static int timehist_sched_change_event(struct perf_tool *tool,
David Ahern49394a22016-11-16 15:06:29 +09002503 union perf_event *event,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002504 struct evsel *evsel,
David Ahern49394a22016-11-16 15:06:29 +09002505 struct perf_sample *sample,
2506 struct machine *machine)
2507{
David Ahernfc1469f2016-11-16 15:06:31 +09002508 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
David Ahern853b7402016-11-29 10:15:44 -07002509 struct perf_time_interval *ptime = &sched->ptime;
David Ahern49394a22016-11-16 15:06:29 +09002510 struct addr_location al;
2511 struct thread *thread;
2512 struct thread_runtime *tr = NULL;
David Ahern853b7402016-11-29 10:15:44 -07002513 u64 tprev, t = sample->time;
David Ahern49394a22016-11-16 15:06:29 +09002514 int rc = 0;
Namhyung Kim414e0502017-01-13 19:45:22 +09002515 int state = perf_evsel__intval(evsel, sample, "prev_state");
2516
David Ahern49394a22016-11-16 15:06:29 +09002517
2518 if (machine__resolve(machine, &al, sample) < 0) {
2519 pr_err("problem processing %d event. skipping it\n",
2520 event->header.type);
2521 rc = -1;
2522 goto out;
2523 }
2524
David Ahern6c973c92016-11-16 15:06:32 +09002525 thread = timehist_get_thread(sched, sample, machine, evsel);
David Ahern49394a22016-11-16 15:06:29 +09002526 if (thread == NULL) {
2527 rc = -1;
2528 goto out;
2529 }
2530
Namhyung Kima4b2b6f2016-12-08 23:47:53 +09002531 if (timehist_skip_sample(sched, thread, evsel, sample))
David Ahern49394a22016-11-16 15:06:29 +09002532 goto out;
2533
2534 tr = thread__get_runtime(thread);
2535 if (tr == NULL) {
2536 rc = -1;
2537 goto out;
2538 }
2539
2540 tprev = perf_evsel__get_time(evsel, sample->cpu);
2541
David Ahern853b7402016-11-29 10:15:44 -07002542 /*
2543 * If start time given:
2544 * - sample time is under window user cares about - skip sample
2545 * - tprev is under window user cares about - reset to start of window
2546 */
2547 if (ptime->start && ptime->start > t)
2548 goto out;
2549
Namhyung Kimbdd75722016-12-22 15:03:49 +09002550 if (tprev && ptime->start > tprev)
David Ahern853b7402016-11-29 10:15:44 -07002551 tprev = ptime->start;
2552
2553 /*
2554 * If end time given:
2555 * - previous sched event is out of window - we are done
2556 * - sample time is beyond window user cares about - reset it
2557 * to close out stats for time window interest
2558 */
2559 if (ptime->end) {
2560 if (tprev > ptime->end)
2561 goto out;
2562
2563 if (t > ptime->end)
2564 t = ptime->end;
2565 }
2566
Namhyung Kim07235f82016-12-08 23:47:54 +09002567 if (!sched->idle_hist || thread->tid == 0) {
2568 timehist_update_runtime_stats(tr, t, tprev);
2569
2570 if (sched->idle_hist) {
2571 struct idle_thread_runtime *itr = (void *)tr;
2572 struct thread_runtime *last_tr;
2573
2574 BUG_ON(thread->tid != 0);
2575
2576 if (itr->last_thread == NULL)
2577 goto out;
2578
2579 /* add current idle time as last thread's runtime */
2580 last_tr = thread__get_runtime(itr->last_thread);
2581 if (last_tr == NULL)
2582 goto out;
2583
2584 timehist_update_runtime_stats(last_tr, t, tprev);
2585 /*
2586 * remove delta time of last thread as it's not updated
2587 * and otherwise it will show an invalid value next
2588 * time. we only care total run time and run stat.
2589 */
2590 last_tr->dt_run = 0;
Namhyung Kim07235f82016-12-08 23:47:54 +09002591 last_tr->dt_delay = 0;
Namhyung Kim941bdea2017-01-13 19:45:21 +09002592 last_tr->dt_sleep = 0;
2593 last_tr->dt_iowait = 0;
2594 last_tr->dt_preempt = 0;
Namhyung Kim07235f82016-12-08 23:47:54 +09002595
Namhyung Kimba957eb2016-12-08 23:47:55 +09002596 if (itr->cursor.nr)
2597 callchain_append(&itr->callchain, &itr->cursor, t - tprev);
2598
Namhyung Kim07235f82016-12-08 23:47:54 +09002599 itr->last_thread = NULL;
2600 }
2601 }
David Ahern853b7402016-11-29 10:15:44 -07002602
David Ahern52df1382016-11-16 15:06:30 +09002603 if (!sched->summary_only)
Brendan Gregg292c4a82017-03-14 01:56:29 +00002604 timehist_print_sample(sched, evsel, sample, &al, thread, t, state);
David Ahern49394a22016-11-16 15:06:29 +09002605
2606out:
Namhyung Kim9396c9c2016-12-22 15:03:50 +09002607 if (sched->hist_time.start == 0 && t >= ptime->start)
2608 sched->hist_time.start = t;
2609 if (ptime->end == 0 || t <= ptime->end)
2610 sched->hist_time.end = t;
2611
David Ahern49394a22016-11-16 15:06:29 +09002612 if (tr) {
2613 /* time of this sched_switch event becomes last time task seen */
2614 tr->last_time = sample->time;
2615
Namhyung Kim941bdea2017-01-13 19:45:21 +09002616 /* last state is used to determine where to account wait time */
Namhyung Kim414e0502017-01-13 19:45:22 +09002617 tr->last_state = state;
Namhyung Kim941bdea2017-01-13 19:45:21 +09002618
David Ahern49394a22016-11-16 15:06:29 +09002619 /* sched out event for task so reset ready to run time */
2620 tr->ready_to_run = 0;
2621 }
2622
2623 perf_evsel__save_time(evsel, sample->time, sample->cpu);
2624
2625 return rc;
2626}
2627
2628static int timehist_sched_switch_event(struct perf_tool *tool,
2629 union perf_event *event,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002630 struct evsel *evsel,
David Ahern49394a22016-11-16 15:06:29 +09002631 struct perf_sample *sample,
2632 struct machine *machine __maybe_unused)
2633{
2634 return timehist_sched_change_event(tool, event, evsel, sample, machine);
2635}
2636
2637static int process_lost(struct perf_tool *tool __maybe_unused,
2638 union perf_event *event,
2639 struct perf_sample *sample,
2640 struct machine *machine __maybe_unused)
2641{
2642 char tstr[64];
2643
2644 timestamp__scnprintf_usec(sample->time, tstr, sizeof(tstr));
2645 printf("%15s ", tstr);
2646 printf("lost %" PRIu64 " events on cpu %d\n", event->lost.lost, sample->cpu);
2647
2648 return 0;
2649}
2650
2651
David Ahern52df1382016-11-16 15:06:30 +09002652static void print_thread_runtime(struct thread *t,
2653 struct thread_runtime *r)
2654{
2655 double mean = avg_stats(&r->run_stats);
2656 float stddev;
2657
2658 printf("%*s %5d %9" PRIu64 " ",
2659 comm_width, timehist_get_commstr(t), t->ppid,
2660 (u64) r->run_stats.n);
2661
2662 print_sched_time(r->total_run_time, 8);
2663 stddev = rel_stddev_stats(stddev_stats(&r->run_stats), mean);
2664 print_sched_time(r->run_stats.min, 6);
2665 printf(" ");
2666 print_sched_time((u64) mean, 6);
2667 printf(" ");
2668 print_sched_time(r->run_stats.max, 6);
2669 printf(" ");
2670 printf("%5.2f", stddev);
David Ahern350f54f2016-11-25 09:28:41 -07002671 printf(" %5" PRIu64, r->migrations);
David Ahern52df1382016-11-16 15:06:30 +09002672 printf("\n");
2673}
2674
Namhyung Kim587782c2017-01-13 19:45:23 +09002675static void print_thread_waittime(struct thread *t,
2676 struct thread_runtime *r)
2677{
2678 printf("%*s %5d %9" PRIu64 " ",
2679 comm_width, timehist_get_commstr(t), t->ppid,
2680 (u64) r->run_stats.n);
2681
2682 print_sched_time(r->total_run_time, 8);
2683 print_sched_time(r->total_sleep_time, 6);
2684 printf(" ");
2685 print_sched_time(r->total_iowait_time, 6);
2686 printf(" ");
2687 print_sched_time(r->total_preempt_time, 6);
2688 printf(" ");
2689 print_sched_time(r->total_delay_time, 6);
2690 printf("\n");
2691}
2692
David Ahern52df1382016-11-16 15:06:30 +09002693struct total_run_stats {
Namhyung Kim587782c2017-01-13 19:45:23 +09002694 struct perf_sched *sched;
David Ahern52df1382016-11-16 15:06:30 +09002695 u64 sched_count;
2696 u64 task_count;
2697 u64 total_run_time;
2698};
2699
2700static int __show_thread_runtime(struct thread *t, void *priv)
2701{
2702 struct total_run_stats *stats = priv;
2703 struct thread_runtime *r;
2704
2705 if (thread__is_filtered(t))
2706 return 0;
2707
2708 r = thread__priv(t);
2709 if (r && r->run_stats.n) {
2710 stats->task_count++;
2711 stats->sched_count += r->run_stats.n;
2712 stats->total_run_time += r->total_run_time;
Namhyung Kim587782c2017-01-13 19:45:23 +09002713
2714 if (stats->sched->show_state)
2715 print_thread_waittime(t, r);
2716 else
2717 print_thread_runtime(t, r);
David Ahern52df1382016-11-16 15:06:30 +09002718 }
2719
2720 return 0;
2721}
2722
2723static int show_thread_runtime(struct thread *t, void *priv)
2724{
2725 if (t->dead)
2726 return 0;
2727
2728 return __show_thread_runtime(t, priv);
2729}
2730
2731static int show_deadthread_runtime(struct thread *t, void *priv)
2732{
2733 if (!t->dead)
2734 return 0;
2735
2736 return __show_thread_runtime(t, priv);
2737}
2738
Namhyung Kimba957eb2016-12-08 23:47:55 +09002739static size_t callchain__fprintf_folded(FILE *fp, struct callchain_node *node)
2740{
2741 const char *sep = " <- ";
2742 struct callchain_list *chain;
2743 size_t ret = 0;
2744 char bf[1024];
2745 bool first;
2746
2747 if (node == NULL)
2748 return 0;
2749
2750 ret = callchain__fprintf_folded(fp, node->parent);
2751 first = (ret == 0);
2752
2753 list_for_each_entry(chain, &node->val, list) {
2754 if (chain->ip >= PERF_CONTEXT_MAX)
2755 continue;
2756 if (chain->ms.sym && chain->ms.sym->ignore)
2757 continue;
2758 ret += fprintf(fp, "%s%s", first ? "" : sep,
2759 callchain_list__sym_name(chain, bf, sizeof(bf),
2760 false));
2761 first = false;
2762 }
2763
2764 return ret;
2765}
2766
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08002767static size_t timehist_print_idlehist_callchain(struct rb_root_cached *root)
Namhyung Kimba957eb2016-12-08 23:47:55 +09002768{
2769 size_t ret = 0;
2770 FILE *fp = stdout;
2771 struct callchain_node *chain;
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08002772 struct rb_node *rb_node = rb_first_cached(root);
Namhyung Kimba957eb2016-12-08 23:47:55 +09002773
2774 printf(" %16s %8s %s\n", "Idle time (msec)", "Count", "Callchains");
2775 printf(" %.16s %.8s %.50s\n", graph_dotted_line, graph_dotted_line,
2776 graph_dotted_line);
2777
2778 while (rb_node) {
2779 chain = rb_entry(rb_node, struct callchain_node, rb_node);
2780 rb_node = rb_next(rb_node);
2781
2782 ret += fprintf(fp, " ");
2783 print_sched_time(chain->hit, 12);
2784 ret += 16; /* print_sched_time returns 2nd arg + 4 */
2785 ret += fprintf(fp, " %8d ", chain->count);
2786 ret += callchain__fprintf_folded(fp, chain);
2787 ret += fprintf(fp, "\n");
2788 }
2789
2790 return ret;
2791}
2792
David Ahern52df1382016-11-16 15:06:30 +09002793static void timehist_print_summary(struct perf_sched *sched,
2794 struct perf_session *session)
2795{
2796 struct machine *m = &session->machines.host;
2797 struct total_run_stats totals;
2798 u64 task_count;
2799 struct thread *t;
2800 struct thread_runtime *r;
2801 int i;
Namhyung Kim9396c9c2016-12-22 15:03:50 +09002802 u64 hist_time = sched->hist_time.end - sched->hist_time.start;
David Ahern52df1382016-11-16 15:06:30 +09002803
2804 memset(&totals, 0, sizeof(totals));
Namhyung Kim587782c2017-01-13 19:45:23 +09002805 totals.sched = sched;
David Ahern52df1382016-11-16 15:06:30 +09002806
Namhyung Kim07235f82016-12-08 23:47:54 +09002807 if (sched->idle_hist) {
2808 printf("\nIdle-time summary\n");
2809 printf("%*s parent sched-out ", comm_width, "comm");
2810 printf(" idle-time min-idle avg-idle max-idle stddev migrations\n");
Namhyung Kim587782c2017-01-13 19:45:23 +09002811 } else if (sched->show_state) {
2812 printf("\nWait-time summary\n");
2813 printf("%*s parent sched-in ", comm_width, "comm");
2814 printf(" run-time sleep iowait preempt delay\n");
Namhyung Kim07235f82016-12-08 23:47:54 +09002815 } else {
2816 printf("\nRuntime summary\n");
2817 printf("%*s parent sched-in ", comm_width, "comm");
2818 printf(" run-time min-run avg-run max-run stddev migrations\n");
2819 }
David Ahern52df1382016-11-16 15:06:30 +09002820 printf("%*s (count) ", comm_width, "");
Namhyung Kim587782c2017-01-13 19:45:23 +09002821 printf(" (msec) (msec) (msec) (msec) %s\n",
2822 sched->show_state ? "(msec)" : "%");
David Ahern350f54f2016-11-25 09:28:41 -07002823 printf("%.117s\n", graph_dotted_line);
David Ahern52df1382016-11-16 15:06:30 +09002824
2825 machine__for_each_thread(m, show_thread_runtime, &totals);
2826 task_count = totals.task_count;
2827 if (!task_count)
2828 printf("<no still running tasks>\n");
2829
2830 printf("\nTerminated tasks:\n");
2831 machine__for_each_thread(m, show_deadthread_runtime, &totals);
2832 if (task_count == totals.task_count)
2833 printf("<no terminated tasks>\n");
2834
2835 /* CPU idle stats not tracked when samples were skipped */
Namhyung Kim07235f82016-12-08 23:47:54 +09002836 if (sched->skipped_samples && !sched->idle_hist)
David Ahern52df1382016-11-16 15:06:30 +09002837 return;
2838
2839 printf("\nIdle stats:\n");
Namhyung Kimb3363522016-12-06 12:40:05 +09002840 for (i = 0; i < idle_max_cpu; ++i) {
David Ahern52df1382016-11-16 15:06:30 +09002841 t = idle_threads[i];
2842 if (!t)
2843 continue;
2844
2845 r = thread__priv(t);
2846 if (r && r->run_stats.n) {
2847 totals.sched_count += r->run_stats.n;
2848 printf(" CPU %2d idle for ", i);
2849 print_sched_time(r->total_run_time, 6);
Namhyung Kim9396c9c2016-12-22 15:03:50 +09002850 printf(" msec (%6.2f%%)\n", 100.0 * r->total_run_time / hist_time);
David Ahern52df1382016-11-16 15:06:30 +09002851 } else
2852 printf(" CPU %2d idle entire time window\n", i);
2853 }
2854
Arnaldo Carvalho de Melo4c505632018-05-28 16:07:56 -03002855 if (sched->idle_hist && sched->show_callchain) {
Namhyung Kimba957eb2016-12-08 23:47:55 +09002856 callchain_param.mode = CHAIN_FOLDED;
2857 callchain_param.value = CCVAL_PERIOD;
2858
2859 callchain_register_param(&callchain_param);
2860
2861 printf("\nIdle stats by callchain:\n");
2862 for (i = 0; i < idle_max_cpu; ++i) {
2863 struct idle_thread_runtime *itr;
2864
2865 t = idle_threads[i];
2866 if (!t)
2867 continue;
2868
2869 itr = thread__priv(t);
2870 if (itr == NULL)
2871 continue;
2872
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08002873 callchain_param.sort(&itr->sorted_root.rb_root, &itr->callchain,
Namhyung Kimba957eb2016-12-08 23:47:55 +09002874 0, &callchain_param);
2875
2876 printf(" CPU %2d:", i);
2877 print_sched_time(itr->tr.total_run_time, 6);
2878 printf(" msec\n");
2879 timehist_print_idlehist_callchain(&itr->sorted_root);
2880 printf("\n");
2881 }
2882 }
2883
David Ahern52df1382016-11-16 15:06:30 +09002884 printf("\n"
2885 " Total number of unique tasks: %" PRIu64 "\n"
Namhyung Kim9396c9c2016-12-22 15:03:50 +09002886 "Total number of context switches: %" PRIu64 "\n",
David Ahern52df1382016-11-16 15:06:30 +09002887 totals.task_count, totals.sched_count);
2888
Namhyung Kim9396c9c2016-12-22 15:03:50 +09002889 printf(" Total run time (msec): ");
David Ahern52df1382016-11-16 15:06:30 +09002890 print_sched_time(totals.total_run_time, 2);
2891 printf("\n");
Namhyung Kim9396c9c2016-12-22 15:03:50 +09002892
2893 printf(" Total scheduling time (msec): ");
2894 print_sched_time(hist_time, 2);
2895 printf(" (x %d)\n", sched->max_cpu);
David Ahern52df1382016-11-16 15:06:30 +09002896}
2897
David Ahern49394a22016-11-16 15:06:29 +09002898typedef int (*sched_handler)(struct perf_tool *tool,
2899 union perf_event *event,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002900 struct evsel *evsel,
David Ahern49394a22016-11-16 15:06:29 +09002901 struct perf_sample *sample,
2902 struct machine *machine);
2903
2904static int perf_timehist__process_sample(struct perf_tool *tool,
2905 union perf_event *event,
2906 struct perf_sample *sample,
Jiri Olsa32dcd022019-07-21 13:23:51 +02002907 struct evsel *evsel,
David Ahern49394a22016-11-16 15:06:29 +09002908 struct machine *machine)
2909{
2910 struct perf_sched *sched = container_of(tool, struct perf_sched, tool);
2911 int err = 0;
2912 int this_cpu = sample->cpu;
2913
2914 if (this_cpu > sched->max_cpu)
2915 sched->max_cpu = this_cpu;
2916
2917 if (evsel->handler != NULL) {
2918 sched_handler f = evsel->handler;
2919
2920 err = f(tool, event, evsel, sample, machine);
2921 }
2922
2923 return err;
2924}
2925
David Ahern6c973c92016-11-16 15:06:32 +09002926static int timehist_check_attr(struct perf_sched *sched,
2927 struct perf_evlist *evlist)
2928{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002929 struct evsel *evsel;
David Ahern6c973c92016-11-16 15:06:32 +09002930 struct evsel_runtime *er;
2931
2932 list_for_each_entry(evsel, &evlist->entries, node) {
2933 er = perf_evsel__get_runtime(evsel);
2934 if (er == NULL) {
2935 pr_err("Failed to allocate memory for evsel runtime data\n");
2936 return -1;
2937 }
2938
Arnaldo Carvalho de Melo27de9b22018-05-28 16:00:29 -03002939 if (sched->show_callchain && !evsel__has_callchain(evsel)) {
David Ahern6c973c92016-11-16 15:06:32 +09002940 pr_info("Samples do not have callchains.\n");
2941 sched->show_callchain = 0;
2942 symbol_conf.use_callchain = 0;
2943 }
2944 }
2945
2946 return 0;
2947}
2948
David Ahern49394a22016-11-16 15:06:29 +09002949static int perf_sched__timehist(struct perf_sched *sched)
2950{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002951 const struct evsel_str_handler handlers[] = {
David Ahern49394a22016-11-16 15:06:29 +09002952 { "sched:sched_switch", timehist_sched_switch_event, },
2953 { "sched:sched_wakeup", timehist_sched_wakeup_event, },
2954 { "sched:sched_wakeup_new", timehist_sched_wakeup_event, },
2955 };
Jiri Olsa32dcd022019-07-21 13:23:51 +02002956 const struct evsel_str_handler migrate_handlers[] = {
David Ahern350f54f2016-11-25 09:28:41 -07002957 { "sched:sched_migrate_task", timehist_migrate_task_event, },
2958 };
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002959 struct perf_data data = {
Jiri Olsa2d4f2792019-02-21 10:41:30 +01002960 .path = input_name,
2961 .mode = PERF_DATA_MODE_READ,
2962 .force = sched->force,
David Ahern49394a22016-11-16 15:06:29 +09002963 };
2964
2965 struct perf_session *session;
David Ahern52df1382016-11-16 15:06:30 +09002966 struct perf_evlist *evlist;
David Ahern49394a22016-11-16 15:06:29 +09002967 int err = -1;
2968
2969 /*
2970 * event handlers for timehist option
2971 */
2972 sched->tool.sample = perf_timehist__process_sample;
2973 sched->tool.mmap = perf_event__process_mmap;
2974 sched->tool.comm = perf_event__process_comm;
2975 sched->tool.exit = perf_event__process_exit;
2976 sched->tool.fork = perf_event__process_fork;
2977 sched->tool.lost = process_lost;
2978 sched->tool.attr = perf_event__process_attr;
2979 sched->tool.tracing_data = perf_event__process_tracing_data;
2980 sched->tool.build_id = perf_event__process_build_id;
2981
2982 sched->tool.ordered_events = true;
2983 sched->tool.ordering_requires_timestamps = true;
2984
David Ahern6c973c92016-11-16 15:06:32 +09002985 symbol_conf.use_callchain = sched->show_callchain;
2986
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002987 session = perf_session__new(&data, false, &sched->tool);
David Ahern49394a22016-11-16 15:06:29 +09002988 if (session == NULL)
2989 return -ENOMEM;
2990
David Ahern52df1382016-11-16 15:06:30 +09002991 evlist = session->evlist;
2992
David Ahern49394a22016-11-16 15:06:29 +09002993 symbol__init(&session->header.env);
2994
David Ahern853b7402016-11-29 10:15:44 -07002995 if (perf_time__parse_str(&sched->ptime, sched->time_str) != 0) {
2996 pr_err("Invalid time string\n");
2997 return -EINVAL;
2998 }
2999
David Ahern6c973c92016-11-16 15:06:32 +09003000 if (timehist_check_attr(sched, evlist) != 0)
3001 goto out;
3002
David Ahern49394a22016-11-16 15:06:29 +09003003 setup_pager();
3004
3005 /* setup per-evsel handlers */
3006 if (perf_session__set_tracepoints_handlers(session, handlers))
3007 goto out;
3008
David Ahernf45bf8d2016-11-29 13:39:48 -07003009 /* sched_switch event at a minimum needs to exist */
3010 if (!perf_evlist__find_tracepoint_by_name(session->evlist,
3011 "sched:sched_switch")) {
3012 pr_err("No sched_switch events found. Have you run 'perf sched record'?\n");
David Ahern49394a22016-11-16 15:06:29 +09003013 goto out;
David Ahernf45bf8d2016-11-29 13:39:48 -07003014 }
David Ahern49394a22016-11-16 15:06:29 +09003015
David Ahern350f54f2016-11-25 09:28:41 -07003016 if (sched->show_migrations &&
3017 perf_session__set_tracepoints_handlers(session, migrate_handlers))
3018 goto out;
3019
David Ahern49394a22016-11-16 15:06:29 +09003020 /* pre-allocate struct for per-CPU idle stats */
3021 sched->max_cpu = session->header.env.nr_cpus_online;
3022 if (sched->max_cpu == 0)
3023 sched->max_cpu = 4;
3024 if (init_idle_threads(sched->max_cpu))
3025 goto out;
3026
David Ahern52df1382016-11-16 15:06:30 +09003027 /* summary_only implies summary option, but don't overwrite summary if set */
3028 if (sched->summary_only)
3029 sched->summary = sched->summary_only;
3030
3031 if (!sched->summary_only)
David Aherna407b062016-11-16 15:06:33 +09003032 timehist_header(sched);
David Ahern49394a22016-11-16 15:06:29 +09003033
3034 err = perf_session__process_events(session);
3035 if (err) {
3036 pr_err("Failed to process events, error %d", err);
3037 goto out;
3038 }
3039
David Ahern52df1382016-11-16 15:06:30 +09003040 sched->nr_events = evlist->stats.nr_events[0];
3041 sched->nr_lost_events = evlist->stats.total_lost;
3042 sched->nr_lost_chunks = evlist->stats.nr_events[PERF_RECORD_LOST];
3043
3044 if (sched->summary)
3045 timehist_print_summary(sched, session);
3046
David Ahern49394a22016-11-16 15:06:29 +09003047out:
3048 free_idle_threads();
3049 perf_session__delete(session);
3050
3051 return err;
3052}
3053
3054
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003055static void print_bad_events(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003056{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003057 if (sched->nr_unordered_timestamps && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003058 printf(" INFO: %.3f%% unordered timestamps (%ld out of %ld)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003059 (double)sched->nr_unordered_timestamps/(double)sched->nr_timestamps*100.0,
3060 sched->nr_unordered_timestamps, sched->nr_timestamps);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003061 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003062 if (sched->nr_lost_events && sched->nr_events) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003063 printf(" INFO: %.3f%% lost events (%ld out of %ld, in %ld chunks)\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003064 (double)sched->nr_lost_events/(double)sched->nr_events * 100.0,
3065 sched->nr_lost_events, sched->nr_events, sched->nr_lost_chunks);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003066 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003067 if (sched->nr_context_switch_bugs && sched->nr_timestamps) {
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003068 printf(" INFO: %.3f%% context switch bugs (%ld out of %ld)",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003069 (double)sched->nr_context_switch_bugs/(double)sched->nr_timestamps*100.0,
3070 sched->nr_context_switch_bugs, sched->nr_timestamps);
3071 if (sched->nr_lost_events)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003072 printf(" (due to lost events?)");
3073 printf("\n");
3074 }
3075}
3076
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08003077static void __merge_work_atoms(struct rb_root_cached *root, struct work_atoms *data)
Josef Bacik2f80dd42015-05-22 09:18:40 -04003078{
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08003079 struct rb_node **new = &(root->rb_root.rb_node), *parent = NULL;
Josef Bacik2f80dd42015-05-22 09:18:40 -04003080 struct work_atoms *this;
3081 const char *comm = thread__comm_str(data->thread), *this_comm;
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08003082 bool leftmost = true;
Josef Bacik2f80dd42015-05-22 09:18:40 -04003083
3084 while (*new) {
3085 int cmp;
3086
3087 this = container_of(*new, struct work_atoms, node);
3088 parent = *new;
3089
3090 this_comm = thread__comm_str(this->thread);
3091 cmp = strcmp(comm, this_comm);
3092 if (cmp > 0) {
3093 new = &((*new)->rb_left);
3094 } else if (cmp < 0) {
3095 new = &((*new)->rb_right);
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08003096 leftmost = false;
Josef Bacik2f80dd42015-05-22 09:18:40 -04003097 } else {
3098 this->num_merged++;
3099 this->total_runtime += data->total_runtime;
3100 this->nb_atoms += data->nb_atoms;
3101 this->total_lat += data->total_lat;
3102 list_splice(&data->work_list, &this->work_list);
3103 if (this->max_lat < data->max_lat) {
3104 this->max_lat = data->max_lat;
3105 this->max_lat_at = data->max_lat_at;
3106 }
3107 zfree(&data);
3108 return;
3109 }
3110 }
3111
3112 data->num_merged++;
3113 rb_link_node(&data->node, parent, new);
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08003114 rb_insert_color_cached(&data->node, root, leftmost);
Josef Bacik2f80dd42015-05-22 09:18:40 -04003115}
3116
3117static void perf_sched__merge_lat(struct perf_sched *sched)
3118{
3119 struct work_atoms *data;
3120 struct rb_node *node;
3121
3122 if (sched->skip_merge)
3123 return;
3124
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08003125 while ((node = rb_first_cached(&sched->atom_root))) {
3126 rb_erase_cached(node, &sched->atom_root);
Josef Bacik2f80dd42015-05-22 09:18:40 -04003127 data = rb_entry(node, struct work_atoms, node);
3128 __merge_work_atoms(&sched->merged_atom_root, data);
3129 }
3130}
3131
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003132static int perf_sched__lat(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003133{
3134 struct rb_node *next;
3135
3136 setup_pager();
David Ahernad9def72013-08-07 22:50:44 -04003137
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03003138 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03003139 return -1;
David Ahernad9def72013-08-07 22:50:44 -04003140
Josef Bacik2f80dd42015-05-22 09:18:40 -04003141 perf_sched__merge_lat(sched);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003142 perf_sched__sort_lat(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003143
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04003144 printf("\n -----------------------------------------------------------------------------------------------------------------\n");
3145 printf(" Task | Runtime ms | Switches | Average delay ms | Maximum delay ms | Maximum delay at |\n");
3146 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003147
Davidlohr Buesocb4c13a2018-12-06 11:18:19 -08003148 next = rb_first_cached(&sched->sorted_atom_root);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003149
3150 while (next) {
3151 struct work_atoms *work_list;
3152
3153 work_list = rb_entry(next, struct work_atoms, node);
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003154 output_lat_thread(sched, work_list);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003155 next = rb_next(next);
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03003156 thread__zput(work_list->thread);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003157 }
3158
Ramkumar Ramachandra80790e02014-03-17 10:18:21 -04003159 printf(" -----------------------------------------------------------------------------------------------------------------\n");
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02003160 printf(" TOTAL: |%11.3f ms |%9" PRIu64 " |\n",
Arnaldo Carvalho de Melo4fc76e42016-08-08 12:23:49 -03003161 (double)sched->all_runtime / NSEC_PER_MSEC, sched->all_count);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003162
3163 printf(" ---------------------------------------------------\n");
3164
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003165 print_bad_events(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003166 printf("\n");
3167
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03003168 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003169}
3170
Jiri Olsa99623c62016-04-12 15:29:26 +02003171static int setup_map_cpus(struct perf_sched *sched)
3172{
Jiri Olsaf8548392019-07-21 13:23:49 +02003173 struct perf_cpu_map *map;
Jiri Olsa73643bb2016-04-12 15:29:31 +02003174
Jiri Olsa99623c62016-04-12 15:29:26 +02003175 sched->max_cpu = sysconf(_SC_NPROCESSORS_CONF);
3176
3177 if (sched->map.comp) {
3178 sched->map.comp_cpus = zalloc(sched->max_cpu * sizeof(int));
Jiri Olsacf294f22016-04-12 15:29:30 +02003179 if (!sched->map.comp_cpus)
3180 return -1;
Jiri Olsa99623c62016-04-12 15:29:26 +02003181 }
3182
Jiri Olsa73643bb2016-04-12 15:29:31 +02003183 if (!sched->map.cpus_str)
3184 return 0;
3185
3186 map = cpu_map__new(sched->map.cpus_str);
3187 if (!map) {
3188 pr_err("failed to get cpus map from %s\n", sched->map.cpus_str);
3189 return -1;
3190 }
3191
3192 sched->map.cpus = map;
Jiri Olsa99623c62016-04-12 15:29:26 +02003193 return 0;
3194}
3195
Jiri Olsaa151a372016-04-12 15:29:29 +02003196static int setup_color_pids(struct perf_sched *sched)
3197{
Jiri Olsa9749b902019-07-21 13:23:50 +02003198 struct perf_thread_map *map;
Jiri Olsaa151a372016-04-12 15:29:29 +02003199
3200 if (!sched->map.color_pids_str)
3201 return 0;
3202
3203 map = thread_map__new_by_tid_str(sched->map.color_pids_str);
3204 if (!map) {
3205 pr_err("failed to get thread map from %s\n", sched->map.color_pids_str);
3206 return -1;
3207 }
3208
3209 sched->map.color_pids = map;
3210 return 0;
3211}
3212
Jiri Olsacf294f22016-04-12 15:29:30 +02003213static int setup_color_cpus(struct perf_sched *sched)
3214{
Jiri Olsaf8548392019-07-21 13:23:49 +02003215 struct perf_cpu_map *map;
Jiri Olsacf294f22016-04-12 15:29:30 +02003216
3217 if (!sched->map.color_cpus_str)
3218 return 0;
3219
3220 map = cpu_map__new(sched->map.color_cpus_str);
3221 if (!map) {
3222 pr_err("failed to get thread map from %s\n", sched->map.color_cpus_str);
3223 return -1;
3224 }
3225
3226 sched->map.color_cpus = map;
3227 return 0;
3228}
3229
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003230static int perf_sched__map(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003231{
Jiri Olsa99623c62016-04-12 15:29:26 +02003232 if (setup_map_cpus(sched))
3233 return -1;
Ingo Molnar40749d02009-09-17 18:24:55 +02003234
Jiri Olsaa151a372016-04-12 15:29:29 +02003235 if (setup_color_pids(sched))
3236 return -1;
3237
Jiri Olsacf294f22016-04-12 15:29:30 +02003238 if (setup_color_cpus(sched))
3239 return -1;
3240
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003241 setup_pager();
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03003242 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03003243 return -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003244 print_bad_events(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03003245 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003246}
3247
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003248static int perf_sched__replay(struct perf_sched *sched)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003249{
3250 unsigned long i;
3251
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003252 calibrate_run_measurement_overhead(sched);
3253 calibrate_sleep_measurement_overhead(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003254
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003255 test_calibrations(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003256
Arnaldo Carvalho de Meloae536ac2015-03-02 22:28:41 -03003257 if (perf_sched__read_events(sched))
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03003258 return -1;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003259
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003260 printf("nr_run_events: %ld\n", sched->nr_run_events);
3261 printf("nr_sleep_events: %ld\n", sched->nr_sleep_events);
3262 printf("nr_wakeup_events: %ld\n", sched->nr_wakeup_events);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003263
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003264 if (sched->targetless_wakeups)
3265 printf("target-less wakeups: %ld\n", sched->targetless_wakeups);
3266 if (sched->multitarget_wakeups)
3267 printf("multi-target wakeups: %ld\n", sched->multitarget_wakeups);
3268 if (sched->nr_run_events_optimized)
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003269 printf("run atoms optimized: %ld\n",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003270 sched->nr_run_events_optimized);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003271
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003272 print_task_traces(sched);
3273 add_cross_task_wakeups(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003274
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003275 create_tasks(sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003276 printf("------------------------------------------------------------\n");
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003277 for (i = 0; i < sched->replay_repeat; i++)
3278 run_one_test(sched);
Arnaldo Carvalho de Meloa116e052012-09-08 22:53:06 -03003279
3280 return 0;
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003281}
3282
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003283static void setup_sorting(struct perf_sched *sched, const struct option *options,
3284 const char * const usage_msg[])
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02003285{
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003286 char *tmp, *tok, *str = strdup(sched->sort_order);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02003287
3288 for (tok = strtok_r(str, ", ", &tmp);
3289 tok; tok = strtok_r(NULL, ", ", &tmp)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003290 if (sort_dimension__add(tok, &sched->sort_list) < 0) {
Namhyung Kimc7118362015-10-25 00:49:27 +09003291 usage_with_options_msg(usage_msg, options,
3292 "Unknown --sort key: `%s'", tok);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02003293 }
3294 }
3295
3296 free(str);
3297
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003298 sort_dimension__add("pid", &sched->cmp_pid);
Frederic Weisbeckerdaa1d7a2009-09-13 03:36:29 +02003299}
3300
Ingo Molnar1fc35b22009-09-13 09:44:29 +02003301static int __cmd_record(int argc, const char **argv)
3302{
3303 unsigned int rec_argc, i, j;
3304 const char **rec_argv;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003305 const char * const record_args[] = {
3306 "record",
3307 "-a",
3308 "-R",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003309 "-m", "1024",
3310 "-c", "1",
3311 "-e", "sched:sched_switch",
3312 "-e", "sched:sched_stat_wait",
3313 "-e", "sched:sched_stat_sleep",
3314 "-e", "sched:sched_stat_iowait",
3315 "-e", "sched:sched_stat_runtime",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003316 "-e", "sched:sched_process_fork",
3317 "-e", "sched:sched_wakeup",
Dongsheng7fff9592014-05-05 16:05:53 +09003318 "-e", "sched:sched_wakeup_new",
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003319 "-e", "sched:sched_migrate_task",
3320 };
Ingo Molnar1fc35b22009-09-13 09:44:29 +02003321
3322 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
3323 rec_argv = calloc(rec_argc + 1, sizeof(char *));
3324
Arnaldo Carvalho de Meloe462dc52011-01-10 10:48:47 -02003325 if (rec_argv == NULL)
Chris Samuelce47dc52010-11-13 13:35:06 +11003326 return -ENOMEM;
3327
Ingo Molnar1fc35b22009-09-13 09:44:29 +02003328 for (i = 0; i < ARRAY_SIZE(record_args); i++)
3329 rec_argv[i] = strdup(record_args[i]);
3330
3331 for (j = 1; j < (unsigned int)argc; j++, i++)
3332 rec_argv[i] = argv[j];
3333
3334 BUG_ON(i != rec_argc);
3335
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003336 return cmd_record(i, rec_argv);
Ingo Molnar1fc35b22009-09-13 09:44:29 +02003337}
3338
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003339int cmd_sched(int argc, const char **argv)
Ingo Molnar0a02ad92009-09-11 12:12:54 +02003340{
Rasmus Villemoes49b8e2b2018-11-03 00:06:23 +01003341 static const char default_sort_order[] = "avg, max, switch, runtime";
Adrian Hunter8a39df82013-10-22 10:34:15 +03003342 struct perf_sched sched = {
3343 .tool = {
3344 .sample = perf_sched__process_tracepoint_sample,
Changbin Du99a3c3a2018-03-06 11:37:37 +08003345 .comm = perf_sched__process_comm,
Hari Bathinif3b36142017-03-08 02:11:43 +05303346 .namespaces = perf_event__process_namespaces,
Adrian Hunter8a39df82013-10-22 10:34:15 +03003347 .lost = perf_event__process_lost,
3348 .fork = perf_sched__process_fork_event,
Jiri Olsa0a8cb852014-07-06 14:18:21 +02003349 .ordered_events = true,
Adrian Hunter8a39df82013-10-22 10:34:15 +03003350 },
3351 .cmp_pid = LIST_HEAD_INIT(sched.cmp_pid),
3352 .sort_list = LIST_HEAD_INIT(sched.sort_list),
3353 .start_work_mutex = PTHREAD_MUTEX_INITIALIZER,
3354 .work_done_wait_mutex = PTHREAD_MUTEX_INITIALIZER,
Adrian Hunter8a39df82013-10-22 10:34:15 +03003355 .sort_order = default_sort_order,
3356 .replay_repeat = 10,
3357 .profile_cpu = -1,
3358 .next_shortname1 = 'A',
3359 .next_shortname2 = '0',
Josef Bacik2f80dd42015-05-22 09:18:40 -04003360 .skip_merge = 0,
David Ahern6c973c92016-11-16 15:06:32 +09003361 .show_callchain = 1,
3362 .max_stack = 5,
Adrian Hunter8a39df82013-10-22 10:34:15 +03003363 };
Namhyung Kim77f02f42016-10-24 12:00:03 +09003364 const struct option sched_options[] = {
3365 OPT_STRING('i', "input", &input_name, "file",
3366 "input file name"),
3367 OPT_INCR('v', "verbose", &verbose,
3368 "be more verbose (show symbol address, etc)"),
3369 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
3370 "dump raw trace in ASCII"),
Namhyung Kim6fa94252016-12-06 12:40:01 +09003371 OPT_BOOLEAN('f', "force", &sched.force, "don't complain, do it"),
Namhyung Kim77f02f42016-10-24 12:00:03 +09003372 OPT_END()
3373 };
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003374 const struct option latency_options[] = {
3375 OPT_STRING('s', "sort", &sched.sort_order, "key[,key2...]",
3376 "sort by key(s): runtime, switch, avg, max"),
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003377 OPT_INTEGER('C', "CPU", &sched.profile_cpu,
3378 "CPU to profile on"),
Josef Bacik2f80dd42015-05-22 09:18:40 -04003379 OPT_BOOLEAN('p', "pids", &sched.skip_merge,
3380 "latency stats per pid instead of per comm"),
Namhyung Kim77f02f42016-10-24 12:00:03 +09003381 OPT_PARENT(sched_options)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003382 };
3383 const struct option replay_options[] = {
3384 OPT_UINTEGER('r', "repeat", &sched.replay_repeat,
3385 "repeat the workload replay N times (-1: infinite)"),
Namhyung Kim77f02f42016-10-24 12:00:03 +09003386 OPT_PARENT(sched_options)
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003387 };
Jiri Olsa99623c62016-04-12 15:29:26 +02003388 const struct option map_options[] = {
3389 OPT_BOOLEAN(0, "compact", &sched.map.comp,
3390 "map output in compact mode"),
Jiri Olsaa151a372016-04-12 15:29:29 +02003391 OPT_STRING(0, "color-pids", &sched.map.color_pids_str, "pids",
3392 "highlight given pids in map"),
Jiri Olsacf294f22016-04-12 15:29:30 +02003393 OPT_STRING(0, "color-cpus", &sched.map.color_cpus_str, "cpus",
3394 "highlight given CPUs in map"),
Jiri Olsa73643bb2016-04-12 15:29:31 +02003395 OPT_STRING(0, "cpus", &sched.map.cpus_str, "cpus",
3396 "display given CPUs in map"),
Namhyung Kim77f02f42016-10-24 12:00:03 +09003397 OPT_PARENT(sched_options)
Jiri Olsa99623c62016-04-12 15:29:26 +02003398 };
David Ahern49394a22016-11-16 15:06:29 +09003399 const struct option timehist_options[] = {
3400 OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
3401 "file", "vmlinux pathname"),
3402 OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
3403 "file", "kallsyms pathname"),
David Ahern6c973c92016-11-16 15:06:32 +09003404 OPT_BOOLEAN('g', "call-graph", &sched.show_callchain,
3405 "Display call chains if present (default on)"),
3406 OPT_UINTEGER(0, "max-stack", &sched.max_stack,
3407 "Maximum number of functions to display backtrace."),
David Ahern49394a22016-11-16 15:06:29 +09003408 OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
3409 "Look for files with symbols relative to this directory"),
David Ahern52df1382016-11-16 15:06:30 +09003410 OPT_BOOLEAN('s', "summary", &sched.summary_only,
3411 "Show only syscall summary with statistics"),
3412 OPT_BOOLEAN('S', "with-summary", &sched.summary,
3413 "Show all syscalls and summary with statistics"),
David Ahernfc1469f2016-11-16 15:06:31 +09003414 OPT_BOOLEAN('w', "wakeups", &sched.show_wakeups, "Show wakeup events"),
Brendan Gregg292c4a82017-03-14 01:56:29 +00003415 OPT_BOOLEAN('n', "next", &sched.show_next, "Show next task"),
David Ahern350f54f2016-11-25 09:28:41 -07003416 OPT_BOOLEAN('M', "migrations", &sched.show_migrations, "Show migration events"),
David Aherna407b062016-11-16 15:06:33 +09003417 OPT_BOOLEAN('V', "cpu-visual", &sched.show_cpu_visual, "Add CPU visual"),
Namhyung Kim07235f82016-12-08 23:47:54 +09003418 OPT_BOOLEAN('I', "idle-hist", &sched.idle_hist, "Show idle events only"),
David Ahern853b7402016-11-29 10:15:44 -07003419 OPT_STRING(0, "time", &sched.time_str, "str",
3420 "Time span for analysis (start,stop)"),
Namhyung Kim414e0502017-01-13 19:45:22 +09003421 OPT_BOOLEAN(0, "state", &sched.show_state, "Show task state when sched-out"),
David Ahern0f59d7a2017-09-01 10:49:12 -07003422 OPT_STRING('p', "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
3423 "analyze events only for given process id(s)"),
3424 OPT_STRING('t', "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
3425 "analyze events only for given thread id(s)"),
David Ahern49394a22016-11-16 15:06:29 +09003426 OPT_PARENT(sched_options)
3427 };
3428
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003429 const char * const latency_usage[] = {
3430 "perf sched latency [<options>]",
3431 NULL
3432 };
3433 const char * const replay_usage[] = {
3434 "perf sched replay [<options>]",
3435 NULL
3436 };
Jiri Olsa99623c62016-04-12 15:29:26 +02003437 const char * const map_usage[] = {
3438 "perf sched map [<options>]",
3439 NULL
3440 };
David Ahern49394a22016-11-16 15:06:29 +09003441 const char * const timehist_usage[] = {
3442 "perf sched timehist [<options>]",
3443 NULL
3444 };
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04003445 const char *const sched_subcommands[] = { "record", "latency", "map",
David Ahern49394a22016-11-16 15:06:29 +09003446 "replay", "script",
3447 "timehist", NULL };
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04003448 const char *sched_usage[] = {
3449 NULL,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003450 NULL
3451 };
3452 struct trace_sched_handler lat_ops = {
3453 .wakeup_event = latency_wakeup_event,
3454 .switch_event = latency_switch_event,
3455 .runtime_event = latency_runtime_event,
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003456 .migrate_task_event = latency_migrate_task_event,
3457 };
3458 struct trace_sched_handler map_ops = {
3459 .switch_event = map_switch_event,
3460 };
3461 struct trace_sched_handler replay_ops = {
3462 .wakeup_event = replay_wakeup_event,
3463 .switch_event = replay_switch_event,
3464 .fork_event = replay_fork_event,
3465 };
Adrian Hunter156a2b02013-10-22 10:34:16 +03003466 unsigned int i;
3467
3468 for (i = 0; i < ARRAY_SIZE(sched.curr_pid); i++)
3469 sched.curr_pid[i] = -1;
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003470
Ramkumar Ramachandraa83edb22014-03-14 23:17:54 -04003471 argc = parse_options_subcommand(argc, argv, sched_options, sched_subcommands,
3472 sched_usage, PARSE_OPT_STOP_AT_NON_OPTION);
Ingo Molnarf2858d82009-09-11 12:12:54 +02003473 if (!argc)
3474 usage_with_options(sched_usage, sched_options);
3475
Xiao Guangrongc0777c52009-12-07 12:04:49 +08003476 /*
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003477 * Aliased to 'perf script' for now:
Xiao Guangrongc0777c52009-12-07 12:04:49 +08003478 */
Ingo Molnar133dc4c2010-11-16 18:45:39 +01003479 if (!strcmp(argv[0], "script"))
Arnaldo Carvalho de Melob0ad8ea2017-03-27 11:47:20 -03003480 return cmd_script(argc, argv);
Xiao Guangrongc0777c52009-12-07 12:04:49 +08003481
Ingo Molnar1fc35b22009-09-13 09:44:29 +02003482 if (!strncmp(argv[0], "rec", 3)) {
3483 return __cmd_record(argc, argv);
3484 } else if (!strncmp(argv[0], "lat", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003485 sched.tp_handler = &lat_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02003486 if (argc > 1) {
3487 argc = parse_options(argc, argv, latency_options, latency_usage, 0);
3488 if (argc)
3489 usage_with_options(latency_usage, latency_options);
Ingo Molnarf2858d82009-09-11 12:12:54 +02003490 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003491 setup_sorting(&sched, latency_options, latency_usage);
3492 return perf_sched__lat(&sched);
Ingo Molnar0ec04e12009-09-16 17:40:48 +02003493 } else if (!strcmp(argv[0], "map")) {
Jiri Olsa99623c62016-04-12 15:29:26 +02003494 if (argc) {
Jiri Olsaa151a372016-04-12 15:29:29 +02003495 argc = parse_options(argc, argv, map_options, map_usage, 0);
Jiri Olsa99623c62016-04-12 15:29:26 +02003496 if (argc)
3497 usage_with_options(map_usage, map_options);
3498 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003499 sched.tp_handler = &map_ops;
3500 setup_sorting(&sched, latency_options, latency_usage);
3501 return perf_sched__map(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02003502 } else if (!strncmp(argv[0], "rep", 3)) {
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003503 sched.tp_handler = &replay_ops;
Ingo Molnarf2858d82009-09-11 12:12:54 +02003504 if (argc) {
3505 argc = parse_options(argc, argv, replay_options, replay_usage, 0);
3506 if (argc)
3507 usage_with_options(replay_usage, replay_options);
3508 }
Arnaldo Carvalho de Melo0e9b07e2012-09-11 17:29:27 -03003509 return perf_sched__replay(&sched);
David Ahern49394a22016-11-16 15:06:29 +09003510 } else if (!strcmp(argv[0], "timehist")) {
3511 if (argc) {
3512 argc = parse_options(argc, argv, timehist_options,
3513 timehist_usage, 0);
3514 if (argc)
3515 usage_with_options(timehist_usage, timehist_options);
3516 }
Brendan Gregg292c4a82017-03-14 01:56:29 +00003517 if ((sched.show_wakeups || sched.show_next) &&
3518 sched.summary_only) {
3519 pr_err(" Error: -s and -[n|w] are mutually exclusive.\n");
David Ahernfc1469f2016-11-16 15:06:31 +09003520 parse_options_usage(timehist_usage, timehist_options, "s", true);
Brendan Gregg292c4a82017-03-14 01:56:29 +00003521 if (sched.show_wakeups)
3522 parse_options_usage(NULL, timehist_options, "w", true);
3523 if (sched.show_next)
3524 parse_options_usage(NULL, timehist_options, "n", true);
David Ahernfc1469f2016-11-16 15:06:31 +09003525 return -EINVAL;
3526 }
3527
David Ahern49394a22016-11-16 15:06:29 +09003528 return perf_sched__timehist(&sched);
Ingo Molnarf2858d82009-09-11 12:12:54 +02003529 } else {
3530 usage_with_options(sched_usage, sched_options);
Ingo Molnar0a02ad92009-09-11 12:12:54 +02003531 }
3532
Ingo Molnarec156762009-09-11 12:12:54 +02003533 return 0;
Ingo Molnar0a02ad92009-09-11 12:12:54 +02003534}