blob: d3188629cbafbb99eb65f2c4d5f493531056244f [file] [log] [blame]
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +09001#include "builtin.h"
2#include "perf.h"
3
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -03004#include "util/evlist.h"
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03005#include "util/evsel.h"
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +09006#include "util/util.h"
7#include "util/cache.h"
8#include "util/symbol.h"
9#include "util/thread.h"
10#include "util/header.h"
11
12#include "util/parse-options.h"
13#include "util/trace-event.h"
14
15#include "util/debug.h"
16#include "util/session.h"
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -020017#include "util/tool.h"
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090018
19#include <sys/types.h>
20#include <sys/prctl.h>
21#include <semaphore.h>
22#include <pthread.h>
23#include <math.h>
24#include <limits.h>
25
26#include <linux/list.h>
27#include <linux/hash.h>
28
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +090029static struct perf_session *session;
30
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090031/* based on kernel/lockdep.c */
32#define LOCKHASH_BITS 12
33#define LOCKHASH_SIZE (1UL << LOCKHASH_BITS)
34
35static struct list_head lockhash_table[LOCKHASH_SIZE];
36
37#define __lockhashfn(key) hash_long((unsigned long)key, LOCKHASH_BITS)
38#define lockhashentry(key) (lockhash_table + __lockhashfn((key)))
39
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090040struct lock_stat {
Ingo Molnar59f411b2010-01-31 08:27:58 +010041 struct list_head hash_entry;
42 struct rb_node rb; /* used for sorting */
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090043
Ingo Molnar59f411b2010-01-31 08:27:58 +010044 /*
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -030045 * FIXME: perf_evsel__intval() returns u64,
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090046 * so address of lockdep_map should be dealed as 64bit.
Ingo Molnar59f411b2010-01-31 08:27:58 +010047 * Is there more better solution?
48 */
49 void *addr; /* address of lockdep_map, used as ID */
50 char *name; /* for strcpy(), we cannot use const */
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090051
Ingo Molnar59f411b2010-01-31 08:27:58 +010052 unsigned int nr_acquire;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +090053 unsigned int nr_acquired;
Ingo Molnar59f411b2010-01-31 08:27:58 +010054 unsigned int nr_contended;
55 unsigned int nr_release;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090056
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +090057 unsigned int nr_readlock;
58 unsigned int nr_trylock;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090059 /* these times are in nano sec. */
Ingo Molnar59f411b2010-01-31 08:27:58 +010060 u64 wait_time_total;
61 u64 wait_time_min;
62 u64 wait_time_max;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +090063
64 int discard; /* flag of blacklist */
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +090065};
66
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +090067/*
68 * States of lock_seq_stat
69 *
70 * UNINITIALIZED is required for detecting first event of acquire.
71 * As the nature of lock events, there is no guarantee
72 * that the first event for the locks are acquire,
73 * it can be acquired, contended or release.
74 */
75#define SEQ_STATE_UNINITIALIZED 0 /* initial state */
76#define SEQ_STATE_RELEASED 1
77#define SEQ_STATE_ACQUIRING 2
78#define SEQ_STATE_ACQUIRED 3
79#define SEQ_STATE_READ_ACQUIRED 4
80#define SEQ_STATE_CONTENDED 5
81
82/*
83 * MAX_LOCK_DEPTH
84 * Imported from include/linux/sched.h.
85 * Should this be synchronized?
86 */
87#define MAX_LOCK_DEPTH 48
88
89/*
90 * struct lock_seq_stat:
91 * Place to put on state of one lock sequence
92 * 1) acquire -> acquired -> release
93 * 2) acquire -> contended -> acquired -> release
94 * 3) acquire (with read or try) -> release
95 * 4) Are there other patterns?
96 */
97struct lock_seq_stat {
98 struct list_head list;
99 int state;
100 u64 prev_event_time;
101 void *addr;
102
103 int read_count;
104};
105
106struct thread_stat {
107 struct rb_node rb;
108
109 u32 tid;
110 struct list_head seq_list;
111};
112
113static struct rb_root thread_stats;
114
115static struct thread_stat *thread_stat_find(u32 tid)
116{
117 struct rb_node *node;
118 struct thread_stat *st;
119
120 node = thread_stats.rb_node;
121 while (node) {
122 st = container_of(node, struct thread_stat, rb);
123 if (st->tid == tid)
124 return st;
125 else if (tid < st->tid)
126 node = node->rb_left;
127 else
128 node = node->rb_right;
129 }
130
131 return NULL;
132}
133
134static void thread_stat_insert(struct thread_stat *new)
135{
136 struct rb_node **rb = &thread_stats.rb_node;
137 struct rb_node *parent = NULL;
138 struct thread_stat *p;
139
140 while (*rb) {
141 p = container_of(*rb, struct thread_stat, rb);
142 parent = *rb;
143
144 if (new->tid < p->tid)
145 rb = &(*rb)->rb_left;
146 else if (new->tid > p->tid)
147 rb = &(*rb)->rb_right;
148 else
149 BUG_ON("inserting invalid thread_stat\n");
150 }
151
152 rb_link_node(&new->rb, parent, rb);
153 rb_insert_color(&new->rb, &thread_stats);
154}
155
156static struct thread_stat *thread_stat_findnew_after_first(u32 tid)
157{
158 struct thread_stat *st;
159
160 st = thread_stat_find(tid);
161 if (st)
162 return st;
163
164 st = zalloc(sizeof(struct thread_stat));
David Ahern33d6aef2012-08-26 12:24:43 -0600165 if (!st) {
166 pr_err("memory allocation failed\n");
167 return NULL;
168 }
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900169
170 st->tid = tid;
171 INIT_LIST_HEAD(&st->seq_list);
172
173 thread_stat_insert(st);
174
175 return st;
176}
177
178static struct thread_stat *thread_stat_findnew_first(u32 tid);
179static struct thread_stat *(*thread_stat_findnew)(u32 tid) =
180 thread_stat_findnew_first;
181
182static struct thread_stat *thread_stat_findnew_first(u32 tid)
183{
184 struct thread_stat *st;
185
186 st = zalloc(sizeof(struct thread_stat));
David Ahern33d6aef2012-08-26 12:24:43 -0600187 if (!st) {
188 pr_err("memory allocation failed\n");
189 return NULL;
190 }
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900191 st->tid = tid;
192 INIT_LIST_HEAD(&st->seq_list);
193
194 rb_link_node(&st->rb, NULL, &thread_stats.rb_node);
195 rb_insert_color(&st->rb, &thread_stats);
196
197 thread_stat_findnew = thread_stat_findnew_after_first;
198 return st;
199}
200
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900201/* build simple key function one is bigger than two */
Ingo Molnar59f411b2010-01-31 08:27:58 +0100202#define SINGLE_KEY(member) \
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900203 static int lock_stat_key_ ## member(struct lock_stat *one, \
204 struct lock_stat *two) \
205 { \
206 return one->member > two->member; \
207 }
208
209SINGLE_KEY(nr_acquired)
210SINGLE_KEY(nr_contended)
211SINGLE_KEY(wait_time_total)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900212SINGLE_KEY(wait_time_max)
213
Marcin Slusarz9df03ab2011-02-22 18:47:15 +0100214static int lock_stat_key_wait_time_min(struct lock_stat *one,
215 struct lock_stat *two)
216{
217 u64 s1 = one->wait_time_min;
218 u64 s2 = two->wait_time_min;
219 if (s1 == ULLONG_MAX)
220 s1 = 0;
221 if (s2 == ULLONG_MAX)
222 s2 = 0;
223 return s1 > s2;
224}
225
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900226struct lock_key {
227 /*
228 * name: the value for specify by user
229 * this should be simpler than raw name of member
230 * e.g. nr_acquired -> acquired, wait_time_total -> wait_total
231 */
Ingo Molnar59f411b2010-01-31 08:27:58 +0100232 const char *name;
233 int (*key)(struct lock_stat*, struct lock_stat*);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900234};
235
Ingo Molnar59f411b2010-01-31 08:27:58 +0100236static const char *sort_key = "acquired";
237
238static int (*compare)(struct lock_stat *, struct lock_stat *);
239
240static struct rb_root result; /* place to store sorted data */
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900241
242#define DEF_KEY_LOCK(name, fn_suffix) \
243 { #name, lock_stat_key_ ## fn_suffix }
244struct lock_key keys[] = {
245 DEF_KEY_LOCK(acquired, nr_acquired),
246 DEF_KEY_LOCK(contended, nr_contended),
247 DEF_KEY_LOCK(wait_total, wait_time_total),
248 DEF_KEY_LOCK(wait_min, wait_time_min),
249 DEF_KEY_LOCK(wait_max, wait_time_max),
250
251 /* extra comparisons much complicated should be here */
252
253 { NULL, NULL }
254};
255
David Ahern33d6aef2012-08-26 12:24:43 -0600256static int select_key(void)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900257{
258 int i;
259
260 for (i = 0; keys[i].name; i++) {
261 if (!strcmp(keys[i].name, sort_key)) {
262 compare = keys[i].key;
David Ahern33d6aef2012-08-26 12:24:43 -0600263 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900264 }
265 }
266
David Ahern33d6aef2012-08-26 12:24:43 -0600267 pr_err("Unknown compare key: %s\n", sort_key);
268
269 return -1;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900270}
271
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900272static void insert_to_result(struct lock_stat *st,
Ingo Molnar59f411b2010-01-31 08:27:58 +0100273 int (*bigger)(struct lock_stat *, struct lock_stat *))
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900274{
275 struct rb_node **rb = &result.rb_node;
276 struct rb_node *parent = NULL;
277 struct lock_stat *p;
278
279 while (*rb) {
280 p = container_of(*rb, struct lock_stat, rb);
281 parent = *rb;
282
283 if (bigger(st, p))
284 rb = &(*rb)->rb_left;
285 else
286 rb = &(*rb)->rb_right;
287 }
288
289 rb_link_node(&st->rb, parent, rb);
290 rb_insert_color(&st->rb, &result);
291}
292
293/* returns left most element of result, and erase it */
294static struct lock_stat *pop_from_result(void)
295{
296 struct rb_node *node = result.rb_node;
297
298 if (!node)
299 return NULL;
300
301 while (node->rb_left)
302 node = node->rb_left;
303
304 rb_erase(node, &result);
305 return container_of(node, struct lock_stat, rb);
306}
307
Ingo Molnar59f411b2010-01-31 08:27:58 +0100308static struct lock_stat *lock_stat_findnew(void *addr, const char *name)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900309{
310 struct list_head *entry = lockhashentry(addr);
311 struct lock_stat *ret, *new;
312
313 list_for_each_entry(ret, entry, hash_entry) {
314 if (ret->addr == addr)
315 return ret;
316 }
317
318 new = zalloc(sizeof(struct lock_stat));
319 if (!new)
320 goto alloc_failed;
321
322 new->addr = addr;
323 new->name = zalloc(sizeof(char) * strlen(name) + 1);
324 if (!new->name)
325 goto alloc_failed;
326 strcpy(new->name, name);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900327
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900328 new->wait_time_min = ULLONG_MAX;
329
330 list_add(&new->hash_entry, entry);
331 return new;
332
333alloc_failed:
David Ahern33d6aef2012-08-26 12:24:43 -0600334 pr_err("memory allocation failed\n");
335 return NULL;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900336}
337
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900338struct trace_lock_handler {
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300339 int (*acquire_event)(struct perf_evsel *evsel,
340 struct perf_sample *sample);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900341
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300342 int (*acquired_event)(struct perf_evsel *evsel,
343 struct perf_sample *sample);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900344
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300345 int (*contended_event)(struct perf_evsel *evsel,
346 struct perf_sample *sample);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900347
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300348 int (*release_event)(struct perf_evsel *evsel,
349 struct perf_sample *sample);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900350};
351
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900352static struct lock_seq_stat *get_seq(struct thread_stat *ts, void *addr)
353{
354 struct lock_seq_stat *seq;
355
356 list_for_each_entry(seq, &ts->seq_list, list) {
357 if (seq->addr == addr)
358 return seq;
359 }
360
361 seq = zalloc(sizeof(struct lock_seq_stat));
David Ahern33d6aef2012-08-26 12:24:43 -0600362 if (!seq) {
363 pr_err("memory allocation failed\n");
364 return NULL;
365 }
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900366 seq->state = SEQ_STATE_UNINITIALIZED;
367 seq->addr = addr;
368
369 list_add(&seq->list, &ts->seq_list);
370 return seq;
371}
372
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200373enum broken_state {
374 BROKEN_ACQUIRE,
375 BROKEN_ACQUIRED,
376 BROKEN_CONTENDED,
377 BROKEN_RELEASE,
378 BROKEN_MAX,
379};
380
381static int bad_hist[BROKEN_MAX];
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900382
Frederic Weisbecker84c7a212010-05-05 23:57:25 +0200383enum acquire_flags {
384 TRY_LOCK = 1,
385 READ_LOCK = 2,
386};
387
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300388static int report_lock_acquire_event(struct perf_evsel *evsel,
389 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900390{
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300391 void *addr;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900392 struct lock_stat *ls;
393 struct thread_stat *ts;
394 struct lock_seq_stat *seq;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300395 const char *name = perf_evsel__strval(evsel, sample, "name");
396 u64 tmp = perf_evsel__intval(evsel, sample, "lockdep_addr");
397 int flag = perf_evsel__intval(evsel, sample, "flag");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900398
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300399 memcpy(&addr, &tmp, sizeof(void *));
400
401 ls = lock_stat_findnew(addr, name);
David Ahern33d6aef2012-08-26 12:24:43 -0600402 if (!ls)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700403 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900404 if (ls->discard)
David Ahern33d6aef2012-08-26 12:24:43 -0600405 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900406
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300407 ts = thread_stat_findnew(sample->tid);
David Ahern33d6aef2012-08-26 12:24:43 -0600408 if (!ts)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700409 return -ENOMEM;
David Ahern33d6aef2012-08-26 12:24:43 -0600410
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300411 seq = get_seq(ts, addr);
David Ahern33d6aef2012-08-26 12:24:43 -0600412 if (!seq)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700413 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900414
415 switch (seq->state) {
416 case SEQ_STATE_UNINITIALIZED:
417 case SEQ_STATE_RELEASED:
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300418 if (!flag) {
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900419 seq->state = SEQ_STATE_ACQUIRING;
420 } else {
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300421 if (flag & TRY_LOCK)
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900422 ls->nr_trylock++;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300423 if (flag & READ_LOCK)
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900424 ls->nr_readlock++;
425 seq->state = SEQ_STATE_READ_ACQUIRED;
426 seq->read_count = 1;
427 ls->nr_acquired++;
428 }
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900429 break;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900430 case SEQ_STATE_READ_ACQUIRED:
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300431 if (flag & READ_LOCK) {
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900432 seq->read_count++;
433 ls->nr_acquired++;
434 goto end;
435 } else {
436 goto broken;
437 }
438 break;
439 case SEQ_STATE_ACQUIRED:
440 case SEQ_STATE_ACQUIRING:
441 case SEQ_STATE_CONTENDED:
442broken:
443 /* broken lock sequence, discard it */
444 ls->discard = 1;
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200445 bad_hist[BROKEN_ACQUIRE]++;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900446 list_del(&seq->list);
447 free(seq);
448 goto end;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900449 default:
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900450 BUG_ON("Unknown state of lock sequence found!\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900451 break;
452 }
453
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900454 ls->nr_acquire++;
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300455 seq->prev_event_time = sample->time;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900456end:
David Ahern33d6aef2012-08-26 12:24:43 -0600457 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900458}
459
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300460static int report_lock_acquired_event(struct perf_evsel *evsel,
461 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900462{
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300463 void *addr;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900464 struct lock_stat *ls;
465 struct thread_stat *ts;
466 struct lock_seq_stat *seq;
467 u64 contended_term;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300468 const char *name = perf_evsel__strval(evsel, sample, "name");
469 u64 tmp = perf_evsel__intval(evsel, sample, "lockdep_addr");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900470
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300471 memcpy(&addr, &tmp, sizeof(void *));
472
473 ls = lock_stat_findnew(addr, name);
David Ahern33d6aef2012-08-26 12:24:43 -0600474 if (!ls)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700475 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900476 if (ls->discard)
David Ahern33d6aef2012-08-26 12:24:43 -0600477 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900478
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300479 ts = thread_stat_findnew(sample->tid);
David Ahern33d6aef2012-08-26 12:24:43 -0600480 if (!ts)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700481 return -ENOMEM;
David Ahern33d6aef2012-08-26 12:24:43 -0600482
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300483 seq = get_seq(ts, addr);
David Ahern33d6aef2012-08-26 12:24:43 -0600484 if (!seq)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700485 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900486
487 switch (seq->state) {
488 case SEQ_STATE_UNINITIALIZED:
489 /* orphan event, do nothing */
David Ahern33d6aef2012-08-26 12:24:43 -0600490 return 0;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900491 case SEQ_STATE_ACQUIRING:
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900492 break;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900493 case SEQ_STATE_CONTENDED:
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300494 contended_term = sample->time - seq->prev_event_time;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900495 ls->wait_time_total += contended_term;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900496 if (contended_term < ls->wait_time_min)
497 ls->wait_time_min = contended_term;
Frederic Weisbecker90c0e5f2010-05-07 02:33:42 +0200498 if (ls->wait_time_max < contended_term)
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900499 ls->wait_time_max = contended_term;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900500 break;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900501 case SEQ_STATE_RELEASED:
502 case SEQ_STATE_ACQUIRED:
503 case SEQ_STATE_READ_ACQUIRED:
504 /* broken lock sequence, discard it */
505 ls->discard = 1;
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200506 bad_hist[BROKEN_ACQUIRED]++;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900507 list_del(&seq->list);
508 free(seq);
509 goto end;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900510 default:
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900511 BUG_ON("Unknown state of lock sequence found!\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900512 break;
513 }
514
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900515 seq->state = SEQ_STATE_ACQUIRED;
516 ls->nr_acquired++;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300517 seq->prev_event_time = sample->time;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900518end:
David Ahern33d6aef2012-08-26 12:24:43 -0600519 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900520}
521
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300522static int report_lock_contended_event(struct perf_evsel *evsel,
523 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900524{
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300525 void *addr;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900526 struct lock_stat *ls;
527 struct thread_stat *ts;
528 struct lock_seq_stat *seq;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300529 const char *name = perf_evsel__strval(evsel, sample, "name");
530 u64 tmp = perf_evsel__intval(evsel, sample, "lockdep_addr");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900531
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300532 memcpy(&addr, &tmp, sizeof(void *));
533
534 ls = lock_stat_findnew(addr, name);
David Ahern33d6aef2012-08-26 12:24:43 -0600535 if (!ls)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700536 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900537 if (ls->discard)
David Ahern33d6aef2012-08-26 12:24:43 -0600538 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900539
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300540 ts = thread_stat_findnew(sample->tid);
David Ahern33d6aef2012-08-26 12:24:43 -0600541 if (!ts)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700542 return -ENOMEM;
David Ahern33d6aef2012-08-26 12:24:43 -0600543
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300544 seq = get_seq(ts, addr);
David Ahern33d6aef2012-08-26 12:24:43 -0600545 if (!seq)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700546 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900547
548 switch (seq->state) {
549 case SEQ_STATE_UNINITIALIZED:
550 /* orphan event, do nothing */
David Ahern33d6aef2012-08-26 12:24:43 -0600551 return 0;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900552 case SEQ_STATE_ACQUIRING:
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900553 break;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900554 case SEQ_STATE_RELEASED:
555 case SEQ_STATE_ACQUIRED:
556 case SEQ_STATE_READ_ACQUIRED:
557 case SEQ_STATE_CONTENDED:
558 /* broken lock sequence, discard it */
559 ls->discard = 1;
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200560 bad_hist[BROKEN_CONTENDED]++;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900561 list_del(&seq->list);
562 free(seq);
563 goto end;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900564 default:
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900565 BUG_ON("Unknown state of lock sequence found!\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900566 break;
567 }
568
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900569 seq->state = SEQ_STATE_CONTENDED;
570 ls->nr_contended++;
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300571 seq->prev_event_time = sample->time;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900572end:
David Ahern33d6aef2012-08-26 12:24:43 -0600573 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900574}
575
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300576static int report_lock_release_event(struct perf_evsel *evsel,
577 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900578{
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300579 void *addr;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900580 struct lock_stat *ls;
581 struct thread_stat *ts;
582 struct lock_seq_stat *seq;
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300583 const char *name = perf_evsel__strval(evsel, sample, "name");
584 u64 tmp = perf_evsel__intval(evsel, sample, "lockdep_addr");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900585
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300586 memcpy(&addr, &tmp, sizeof(void *));
587
588 ls = lock_stat_findnew(addr, name);
David Ahern33d6aef2012-08-26 12:24:43 -0600589 if (!ls)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700590 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900591 if (ls->discard)
David Ahern33d6aef2012-08-26 12:24:43 -0600592 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900593
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300594 ts = thread_stat_findnew(sample->tid);
David Ahern33d6aef2012-08-26 12:24:43 -0600595 if (!ts)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700596 return -ENOMEM;
David Ahern33d6aef2012-08-26 12:24:43 -0600597
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300598 seq = get_seq(ts, addr);
David Ahern33d6aef2012-08-26 12:24:43 -0600599 if (!seq)
Davidlohr Buesob33492a2013-09-08 19:19:14 -0700600 return -ENOMEM;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900601
602 switch (seq->state) {
603 case SEQ_STATE_UNINITIALIZED:
604 goto end;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900605 case SEQ_STATE_ACQUIRED:
606 break;
607 case SEQ_STATE_READ_ACQUIRED:
608 seq->read_count--;
609 BUG_ON(seq->read_count < 0);
610 if (!seq->read_count) {
611 ls->nr_release++;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900612 goto end;
613 }
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900614 break;
615 case SEQ_STATE_ACQUIRING:
616 case SEQ_STATE_CONTENDED:
617 case SEQ_STATE_RELEASED:
618 /* broken lock sequence, discard it */
619 ls->discard = 1;
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200620 bad_hist[BROKEN_RELEASE]++;
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900621 goto free_seq;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900622 default:
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900623 BUG_ON("Unknown state of lock sequence found!\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900624 break;
625 }
626
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900627 ls->nr_release++;
628free_seq:
629 list_del(&seq->list);
630 free(seq);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900631end:
David Ahern33d6aef2012-08-26 12:24:43 -0600632 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900633}
634
635/* lock oriented handlers */
636/* TODO: handlers for CPU oriented, thread oriented */
Ingo Molnar59f411b2010-01-31 08:27:58 +0100637static struct trace_lock_handler report_lock_ops = {
638 .acquire_event = report_lock_acquire_event,
639 .acquired_event = report_lock_acquired_event,
640 .contended_event = report_lock_contended_event,
641 .release_event = report_lock_release_event,
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900642};
643
644static struct trace_lock_handler *trace_handler;
645
David Ahern33d6aef2012-08-26 12:24:43 -0600646static int perf_evsel__process_lock_acquire(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300647 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900648{
Ingo Molnar59f411b2010-01-31 08:27:58 +0100649 if (trace_handler->acquire_event)
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300650 return trace_handler->acquire_event(evsel, sample);
651 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900652}
653
David Ahern33d6aef2012-08-26 12:24:43 -0600654static int perf_evsel__process_lock_acquired(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo01d95522012-08-07 10:59:44 -0300655 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900656{
David Ahern33d6aef2012-08-26 12:24:43 -0600657 if (trace_handler->acquired_event)
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300658 return trace_handler->acquired_event(evsel, sample);
659 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900660}
661
David Ahern33d6aef2012-08-26 12:24:43 -0600662static int perf_evsel__process_lock_contended(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300663 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900664{
David Ahern33d6aef2012-08-26 12:24:43 -0600665 if (trace_handler->contended_event)
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300666 return trace_handler->contended_event(evsel, sample);
667 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900668}
669
David Ahern33d6aef2012-08-26 12:24:43 -0600670static int perf_evsel__process_lock_release(struct perf_evsel *evsel,
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300671 struct perf_sample *sample)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900672{
David Ahern33d6aef2012-08-26 12:24:43 -0600673 if (trace_handler->release_event)
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300674 return trace_handler->release_event(evsel, sample);
675 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900676}
677
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200678static void print_bad_events(int bad, int total)
679{
680 /* Output for debug, this have to be removed */
681 int i;
682 const char *name[4] =
683 { "acquire", "acquired", "contended", "release" };
684
685 pr_info("\n=== output for debug===\n\n");
Frederic Weisbecker5efe08c2010-05-06 04:55:22 +0200686 pr_info("bad: %d, total: %d\n", bad, total);
687 pr_info("bad rate: %f %%\n", (double)bad / (double)total * 100);
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200688 pr_info("histogram of events caused bad sequence\n");
689 for (i = 0; i < BROKEN_MAX; i++)
690 pr_info(" %10s: %d\n", name[i], bad_hist[i]);
691}
692
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900693/* TODO: various way to print, coloring, nano or milli sec */
694static void print_result(void)
695{
696 struct lock_stat *st;
697 char cut_name[20];
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900698 int bad, total;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900699
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900700 pr_info("%20s ", "Name");
701 pr_info("%10s ", "acquired");
702 pr_info("%10s ", "contended");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900703
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900704 pr_info("%15s ", "total wait (ns)");
705 pr_info("%15s ", "max wait (ns)");
706 pr_info("%15s ", "min wait (ns)");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900707
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900708 pr_info("\n\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900709
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900710 bad = total = 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900711 while ((st = pop_from_result())) {
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900712 total++;
713 if (st->discard) {
714 bad++;
715 continue;
716 }
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900717 bzero(cut_name, 20);
718
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900719 if (strlen(st->name) < 16) {
720 /* output raw name */
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900721 pr_info("%20s ", st->name);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900722 } else {
723 strncpy(cut_name, st->name, 16);
724 cut_name[16] = '.';
725 cut_name[17] = '.';
726 cut_name[18] = '.';
727 cut_name[19] = '\0';
728 /* cut off name for saving output style */
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900729 pr_info("%20s ", cut_name);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900730 }
731
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900732 pr_info("%10u ", st->nr_acquired);
733 pr_info("%10u ", st->nr_contended);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900734
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -0200735 pr_info("%15" PRIu64 " ", st->wait_time_total);
736 pr_info("%15" PRIu64 " ", st->wait_time_max);
737 pr_info("%15" PRIu64 " ", st->wait_time_min == ULLONG_MAX ?
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900738 0 : st->wait_time_min);
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900739 pr_info("\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900740 }
Hitoshi Mitakee4cef1f2010-04-21 21:23:54 +0900741
Frederic Weisbecker10350ec2010-05-05 23:47:28 +0200742 print_bad_events(bad, total);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900743}
744
Arnaldo Carvalho de Melo80354582010-05-17 15:51:10 -0300745static bool info_threads, info_map;
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900746
747static void dump_threads(void)
748{
749 struct thread_stat *st;
750 struct rb_node *node;
751 struct thread *t;
752
753 pr_info("%10s: comm\n", "Thread ID");
754
755 node = rb_first(&thread_stats);
756 while (node) {
757 st = container_of(node, struct thread_stat, rb);
758 t = perf_session__findnew(session, st->tid);
759 pr_info("%10d: %s\n", st->tid, t->comm);
760 node = rb_next(node);
761 };
762}
763
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900764static void dump_map(void)
765{
766 unsigned int i;
767 struct lock_stat *st;
768
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900769 pr_info("Address of instance: name of class\n");
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900770 for (i = 0; i < LOCKHASH_SIZE; i++) {
771 list_for_each_entry(st, &lockhash_table[i], hash_entry) {
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900772 pr_info(" %p: %s\n", st->addr, st->name);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900773 }
774 }
775}
776
David Ahern33d6aef2012-08-26 12:24:43 -0600777static int dump_info(void)
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900778{
David Ahern33d6aef2012-08-26 12:24:43 -0600779 int rc = 0;
780
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900781 if (info_threads)
782 dump_threads();
783 else if (info_map)
784 dump_map();
David Ahern33d6aef2012-08-26 12:24:43 -0600785 else {
786 rc = -1;
787 pr_err("Unknown type of information\n");
788 }
789
790 return rc;
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900791}
792
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300793typedef int (*tracepoint_handler)(struct perf_evsel *evsel,
794 struct perf_sample *sample);
795
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300796static int process_sample_event(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200797 union perf_event *event,
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -0300798 struct perf_sample *sample,
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -0300799 struct perf_evsel *evsel,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200800 struct machine *machine)
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200801{
Adrian Hunter314add62013-08-27 11:23:03 +0300802 struct thread *thread = machine__findnew_thread(machine, sample->pid,
803 sample->tid);
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200804
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200805 if (thread == NULL) {
806 pr_debug("problem processing %d event, skipping it.\n",
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200807 event->header.type);
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200808 return -1;
809 }
810
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300811 if (evsel->handler.func != NULL) {
812 tracepoint_handler f = evsel->handler.func;
813 return f(evsel, sample);
814 }
815
816 return 0;
Frederic Weisbeckerc61e52e2010-04-24 00:04:12 +0200817}
818
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300819static const struct perf_evsel_str_handler lock_tracepoints[] = {
820 { "lock:lock_acquire", perf_evsel__process_lock_acquire, }, /* CONFIG_LOCKDEP */
821 { "lock:lock_acquired", perf_evsel__process_lock_acquired, }, /* CONFIG_LOCKDEP, CONFIG_LOCK_STAT */
822 { "lock:lock_contended", perf_evsel__process_lock_contended, }, /* CONFIG_LOCKDEP, CONFIG_LOCK_STAT */
823 { "lock:lock_release", perf_evsel__process_lock_release, }, /* CONFIG_LOCKDEP */
824};
825
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900826static int read_events(void)
827{
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300828 struct perf_tool eops = {
829 .sample = process_sample_event,
830 .comm = perf_event__process_comm,
831 .ordered_samples = true,
832 };
Ian Munsie21ef97f2010-12-10 14:09:16 +1100833 session = perf_session__new(input_name, O_RDONLY, 0, false, &eops);
David Ahern33d6aef2012-08-26 12:24:43 -0600834 if (!session) {
835 pr_err("Initializing perf session failed\n");
836 return -1;
837 }
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900838
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300839 if (perf_session__set_tracepoints_handlers(session, lock_tracepoints)) {
840 pr_err("Initializing perf session tracepoint handlers failed\n");
841 return -1;
842 }
843
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900844 return perf_session__process_events(session, &eops);
845}
846
847static void sort_result(void)
848{
849 unsigned int i;
850 struct lock_stat *st;
851
852 for (i = 0; i < LOCKHASH_SIZE; i++) {
853 list_for_each_entry(st, &lockhash_table[i], hash_entry) {
854 insert_to_result(st, compare);
855 }
856 }
857}
858
David Ahern33d6aef2012-08-26 12:24:43 -0600859static int __cmd_report(void)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900860{
861 setup_pager();
David Ahern33d6aef2012-08-26 12:24:43 -0600862
863 if ((select_key() != 0) ||
864 (read_events() != 0))
865 return -1;
866
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900867 sort_result();
868 print_result();
David Ahern33d6aef2012-08-26 12:24:43 -0600869
870 return 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900871}
872
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900873static int __cmd_record(int argc, const char **argv)
874{
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300875 const char *record_args[] = {
Jiri Olsa4a4d3712013-06-05 13:37:21 +0200876 "record", "-R", "-m", "1024", "-c", "1",
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300877 };
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900878 unsigned int rec_argc, i, j;
879 const char **rec_argv;
880
David Ahernd25dcba2012-08-09 10:35:37 -0600881 for (i = 0; i < ARRAY_SIZE(lock_tracepoints); i++) {
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300882 if (!is_valid_tracepoint(lock_tracepoints[i].name)) {
David Ahernd25dcba2012-08-09 10:35:37 -0600883 pr_err("tracepoint %s is not enabled. "
884 "Are CONFIG_LOCKDEP and CONFIG_LOCK_STAT enabled?\n",
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300885 lock_tracepoints[i].name);
David Ahernd25dcba2012-08-09 10:35:37 -0600886 return 1;
887 }
888 }
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900889
David Ahernd25dcba2012-08-09 10:35:37 -0600890 rec_argc = ARRAY_SIZE(record_args) + argc - 1;
891 /* factor of 2 is for -e in front of each tracepoint */
892 rec_argc += 2 * ARRAY_SIZE(lock_tracepoints);
893
894 rec_argv = calloc(rec_argc + 1, sizeof(char *));
Chris Samuelce47dc52010-11-13 13:35:06 +1100895 if (rec_argv == NULL)
896 return -ENOMEM;
897
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900898 for (i = 0; i < ARRAY_SIZE(record_args); i++)
899 rec_argv[i] = strdup(record_args[i]);
900
David Ahernd25dcba2012-08-09 10:35:37 -0600901 for (j = 0; j < ARRAY_SIZE(lock_tracepoints); j++) {
902 rec_argv[i++] = "-e";
Arnaldo Carvalho de Melo746f16e2012-09-24 10:52:12 -0300903 rec_argv[i++] = strdup(lock_tracepoints[j].name);
David Ahernd25dcba2012-08-09 10:35:37 -0600904 }
905
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900906 for (j = 1; j < (unsigned int)argc; j++, i++)
907 rec_argv[i] = argv[j];
908
909 BUG_ON(i != rec_argc);
910
911 return cmd_record(i, rec_argv, NULL);
912}
913
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300914int cmd_lock(int argc, const char **argv, const char *prefix __maybe_unused)
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900915{
Arnaldo Carvalho de Meloc75d98a2012-10-01 15:20:58 -0300916 const struct option info_options[] = {
917 OPT_BOOLEAN('t', "threads", &info_threads,
918 "dump thread list in perf.data"),
919 OPT_BOOLEAN('m', "map", &info_map,
920 "map of lock instances (address:name table)"),
921 OPT_END()
922 };
923 const struct option lock_options[] = {
924 OPT_STRING('i', "input", &input_name, "file", "input file name"),
925 OPT_INCR('v', "verbose", &verbose, "be more verbose (show symbol address, etc)"),
926 OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, "dump raw trace in ASCII"),
927 OPT_END()
928 };
929 const struct option report_options[] = {
930 OPT_STRING('k', "key", &sort_key, "acquired",
931 "key for sorting (acquired / contended / wait_total / wait_max / wait_min)"),
932 /* TODO: type */
933 OPT_END()
934 };
935 const char * const info_usage[] = {
936 "perf lock info [<options>]",
937 NULL
938 };
939 const char * const lock_usage[] = {
940 "perf lock [<options>] {record|report|script|info}",
941 NULL
942 };
943 const char * const report_usage[] = {
944 "perf lock report [<options>]",
945 NULL
946 };
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900947 unsigned int i;
David Ahern33d6aef2012-08-26 12:24:43 -0600948 int rc = 0;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900949
950 symbol__init();
951 for (i = 0; i < LOCKHASH_SIZE; i++)
952 INIT_LIST_HEAD(lockhash_table + i);
953
954 argc = parse_options(argc, argv, lock_options, lock_usage,
955 PARSE_OPT_STOP_AT_NON_OPTION);
956 if (!argc)
957 usage_with_options(lock_usage, lock_options);
958
959 if (!strncmp(argv[0], "rec", 3)) {
960 return __cmd_record(argc, argv);
Ingo Molnar59f411b2010-01-31 08:27:58 +0100961 } else if (!strncmp(argv[0], "report", 6)) {
962 trace_handler = &report_lock_ops;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900963 if (argc) {
964 argc = parse_options(argc, argv,
Ingo Molnar59f411b2010-01-31 08:27:58 +0100965 report_options, report_usage, 0);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900966 if (argc)
Ingo Molnar59f411b2010-01-31 08:27:58 +0100967 usage_with_options(report_usage, report_options);
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900968 }
Ingo Molnar59f411b2010-01-31 08:27:58 +0100969 __cmd_report();
Ingo Molnar133dc4c2010-11-16 18:45:39 +0100970 } else if (!strcmp(argv[0], "script")) {
971 /* Aliased to 'perf script' */
972 return cmd_script(argc, argv, prefix);
Hitoshi Mitake26242d82010-05-03 14:12:00 +0900973 } else if (!strcmp(argv[0], "info")) {
974 if (argc) {
975 argc = parse_options(argc, argv,
976 info_options, info_usage, 0);
977 if (argc)
978 usage_with_options(info_usage, info_options);
979 }
Ingo Molnar59f411b2010-01-31 08:27:58 +0100980 /* recycling report_lock_ops */
981 trace_handler = &report_lock_ops;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900982 setup_pager();
David Ahern33d6aef2012-08-26 12:24:43 -0600983 if (read_events() != 0)
984 rc = -1;
985 else
986 rc = dump_info();
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900987 } else {
988 usage_with_options(lock_usage, lock_options);
989 }
990
David Ahern33d6aef2012-08-26 12:24:43 -0600991 return rc;
Hitoshi Mitake9b5e3502010-01-30 20:43:33 +0900992}