]>
Commit | Line | Data |
---|---|---|
1f0d69a9 SR |
1 | /* |
2 | * unlikely profiler | |
3 | * | |
4 | * Copyright (C) 2008 Steven Rostedt <[email protected]> | |
5 | */ | |
6 | #include <linux/kallsyms.h> | |
7 | #include <linux/seq_file.h> | |
8 | #include <linux/spinlock.h> | |
65c6dc6a | 9 | #include <linux/irqflags.h> |
1f0d69a9 SR |
10 | #include <linux/uaccess.h> |
11 | #include <linux/module.h> | |
12 | #include <linux/ftrace.h> | |
13 | #include <linux/hash.h> | |
14 | #include <linux/fs.h> | |
15 | #include <asm/local.h> | |
f633cef0 | 16 | |
1f0d69a9 | 17 | #include "trace.h" |
002bb86d | 18 | #include "trace_stat.h" |
f633cef0 | 19 | #include "trace_output.h" |
1f0d69a9 | 20 | |
2ed84eeb | 21 | #ifdef CONFIG_BRANCH_TRACER |
52f232cb | 22 | |
002bb86d | 23 | static struct tracer branch_trace; |
9f029e83 SR |
24 | static int branch_tracing_enabled __read_mostly; |
25 | static DEFINE_MUTEX(branch_tracing_mutex); | |
e302cf3f | 26 | |
9f029e83 | 27 | static struct trace_array *branch_tracer; |
52f232cb SR |
28 | |
29 | static void | |
068f530b | 30 | probe_likely_condition(struct ftrace_likely_data *f, int val, int expect) |
52f232cb | 31 | { |
2425bcb9 | 32 | struct trace_event_call *call = &event_branch; |
9f029e83 | 33 | struct trace_array *tr = branch_tracer; |
a7603ff4 | 34 | struct trace_array_cpu *data; |
52f232cb | 35 | struct ring_buffer_event *event; |
9f029e83 | 36 | struct trace_branch *entry; |
8f6e8a31 | 37 | struct ring_buffer *buffer; |
0a987751 | 38 | unsigned long flags; |
6224beb1 | 39 | int pc; |
52f232cb SR |
40 | const char *p; |
41 | ||
6224beb1 SRRH |
42 | if (current->trace_recursion & TRACE_BRANCH_BIT) |
43 | return; | |
44 | ||
52f232cb SR |
45 | /* |
46 | * I would love to save just the ftrace_likely_data pointer, but | |
47 | * this code can also be used by modules. Ugly things can happen | |
48 | * if the module is unloaded, and then we go and read the | |
49 | * pointer. This is slower, but much safer. | |
50 | */ | |
51 | ||
52 | if (unlikely(!tr)) | |
53 | return; | |
54 | ||
6224beb1 SRRH |
55 | raw_local_irq_save(flags); |
56 | current->trace_recursion |= TRACE_BRANCH_BIT; | |
57 | data = this_cpu_ptr(tr->trace_buffer.data); | |
58 | if (atomic_read(&data->disabled)) | |
52f232cb SR |
59 | goto out; |
60 | ||
51a763dd | 61 | pc = preempt_count(); |
153e8ed9 | 62 | buffer = tr->trace_buffer.buffer; |
8f6e8a31 | 63 | event = trace_buffer_lock_reserve(buffer, TRACE_BRANCH, |
51a763dd | 64 | sizeof(*entry), flags, pc); |
52f232cb SR |
65 | if (!event) |
66 | goto out; | |
67 | ||
52f232cb | 68 | entry = ring_buffer_event_data(event); |
52f232cb SR |
69 | |
70 | /* Strip off the path, only save the file */ | |
068f530b SRV |
71 | p = f->data.file + strlen(f->data.file); |
72 | while (p >= f->data.file && *p != '/') | |
52f232cb SR |
73 | p--; |
74 | p++; | |
75 | ||
068f530b | 76 | strncpy(entry->func, f->data.func, TRACE_FUNC_SIZE); |
52f232cb SR |
77 | strncpy(entry->file, p, TRACE_FILE_SIZE); |
78 | entry->func[TRACE_FUNC_SIZE] = 0; | |
79 | entry->file[TRACE_FILE_SIZE] = 0; | |
068f530b SRV |
80 | entry->constant = f->constant; |
81 | entry->line = f->data.line; | |
52f232cb SR |
82 | entry->correct = val == expect; |
83 | ||
f306cc82 | 84 | if (!call_filter_check_discard(call, entry, buffer, event)) |
52ffabe3 | 85 | trace_buffer_unlock_commit_nostack(buffer, event); |
52f232cb SR |
86 | |
87 | out: | |
6224beb1 SRRH |
88 | current->trace_recursion &= ~TRACE_BRANCH_BIT; |
89 | raw_local_irq_restore(flags); | |
52f232cb SR |
90 | } |
91 | ||
92 | static inline | |
068f530b | 93 | void trace_likely_condition(struct ftrace_likely_data *f, int val, int expect) |
52f232cb | 94 | { |
9f029e83 | 95 | if (!branch_tracing_enabled) |
52f232cb SR |
96 | return; |
97 | ||
98 | probe_likely_condition(f, val, expect); | |
99 | } | |
100 | ||
9f029e83 | 101 | int enable_branch_tracing(struct trace_array *tr) |
52f232cb | 102 | { |
9f029e83 SR |
103 | mutex_lock(&branch_tracing_mutex); |
104 | branch_tracer = tr; | |
52f232cb SR |
105 | /* |
106 | * Must be seen before enabling. The reader is a condition | |
107 | * where we do not need a matching rmb() | |
108 | */ | |
109 | smp_wmb(); | |
9f029e83 SR |
110 | branch_tracing_enabled++; |
111 | mutex_unlock(&branch_tracing_mutex); | |
52f232cb | 112 | |
f54fc98a | 113 | return 0; |
52f232cb SR |
114 | } |
115 | ||
9f029e83 | 116 | void disable_branch_tracing(void) |
52f232cb | 117 | { |
9f029e83 | 118 | mutex_lock(&branch_tracing_mutex); |
52f232cb | 119 | |
9f029e83 | 120 | if (!branch_tracing_enabled) |
52f232cb SR |
121 | goto out_unlock; |
122 | ||
9f029e83 | 123 | branch_tracing_enabled--; |
52f232cb SR |
124 | |
125 | out_unlock: | |
9f029e83 | 126 | mutex_unlock(&branch_tracing_mutex); |
52f232cb | 127 | } |
80e5ea45 | 128 | |
1c80025a | 129 | static int branch_trace_init(struct trace_array *tr) |
80e5ea45 | 130 | { |
30616929 | 131 | return enable_branch_tracing(tr); |
80e5ea45 SR |
132 | } |
133 | ||
134 | static void branch_trace_reset(struct trace_array *tr) | |
135 | { | |
30616929 | 136 | disable_branch_tracing(); |
80e5ea45 SR |
137 | } |
138 | ||
ae7462b4 | 139 | static enum print_line_t trace_branch_print(struct trace_iterator *iter, |
a9a57763 | 140 | int flags, struct trace_event *event) |
f633cef0 SR |
141 | { |
142 | struct trace_branch *field; | |
143 | ||
2c9b238e | 144 | trace_assign_type(field, iter->ent); |
f633cef0 | 145 | |
7d40f671 SRRH |
146 | trace_seq_printf(&iter->seq, "[%s] %s:%s:%d\n", |
147 | field->correct ? " ok " : " MISS ", | |
148 | field->func, | |
149 | field->file, | |
150 | field->line); | |
151 | ||
152 | return trace_handle_return(&iter->seq); | |
f633cef0 SR |
153 | } |
154 | ||
557055be Z |
155 | static void branch_print_header(struct seq_file *s) |
156 | { | |
157 | seq_puts(s, "# TASK-PID CPU# TIMESTAMP CORRECT" | |
d79ac28f RV |
158 | " FUNC:FILE:LINE\n" |
159 | "# | | | | | " | |
160 | " |\n"); | |
557055be | 161 | } |
e302cf3f | 162 | |
a9a57763 SR |
163 | static struct trace_event_functions trace_branch_funcs = { |
164 | .trace = trace_branch_print, | |
165 | }; | |
166 | ||
f633cef0 | 167 | static struct trace_event trace_branch_event = { |
ef18012b | 168 | .type = TRACE_BRANCH, |
a9a57763 | 169 | .funcs = &trace_branch_funcs, |
f633cef0 SR |
170 | }; |
171 | ||
002bb86d FW |
172 | static struct tracer branch_trace __read_mostly = |
173 | { | |
174 | .name = "branch", | |
175 | .init = branch_trace_init, | |
176 | .reset = branch_trace_reset, | |
177 | #ifdef CONFIG_FTRACE_SELFTEST | |
178 | .selftest = trace_selftest_startup_branch, | |
179 | #endif /* CONFIG_FTRACE_SELFTEST */ | |
557055be | 180 | .print_header = branch_print_header, |
002bb86d FW |
181 | }; |
182 | ||
183 | __init static int init_branch_tracer(void) | |
184 | { | |
185 | int ret; | |
186 | ||
9023c930 | 187 | ret = register_trace_event(&trace_branch_event); |
002bb86d FW |
188 | if (!ret) { |
189 | printk(KERN_WARNING "Warning: could not register " | |
190 | "branch events\n"); | |
191 | return 1; | |
192 | } | |
193 | return register_tracer(&branch_trace); | |
194 | } | |
6f415672 | 195 | core_initcall(init_branch_tracer); |
002bb86d | 196 | |
52f232cb SR |
197 | #else |
198 | static inline | |
068f530b | 199 | void trace_likely_condition(struct ftrace_likely_data *f, int val, int expect) |
52f232cb SR |
200 | { |
201 | } | |
2ed84eeb | 202 | #endif /* CONFIG_BRANCH_TRACER */ |
52f232cb | 203 | |
134e6a03 | 204 | void ftrace_likely_update(struct ftrace_likely_data *f, int val, |
d45ae1f7 | 205 | int expect, int is_constant) |
1f0d69a9 | 206 | { |
d45ae1f7 | 207 | /* A constant is always correct */ |
134e6a03 SRV |
208 | if (is_constant) { |
209 | f->constant++; | |
d45ae1f7 | 210 | val = expect; |
134e6a03 | 211 | } |
52f232cb SR |
212 | /* |
213 | * I would love to have a trace point here instead, but the | |
214 | * trace point code is so inundated with unlikely and likely | |
215 | * conditions that the recursive nightmare that exists is too | |
216 | * much to try to get working. At least for now. | |
217 | */ | |
068f530b | 218 | trace_likely_condition(f, val, expect); |
52f232cb | 219 | |
1f0d69a9 SR |
220 | /* FIXME: Make this atomic! */ |
221 | if (val == expect) | |
134e6a03 | 222 | f->data.correct++; |
1f0d69a9 | 223 | else |
134e6a03 | 224 | f->data.incorrect++; |
1f0d69a9 SR |
225 | } |
226 | EXPORT_SYMBOL(ftrace_likely_update); | |
227 | ||
e302cf3f FW |
228 | extern unsigned long __start_annotated_branch_profile[]; |
229 | extern unsigned long __stop_annotated_branch_profile[]; | |
1f0d69a9 | 230 | |
e302cf3f | 231 | static int annotated_branch_stat_headers(struct seq_file *m) |
1f0d69a9 | 232 | { |
d79ac28f RV |
233 | seq_puts(m, " correct incorrect % " |
234 | " Function " | |
fa6f0cc7 RV |
235 | " File Line\n" |
236 | " ------- --------- - " | |
237 | " -------- " | |
238 | " ---- ----\n"); | |
e302cf3f | 239 | return 0; |
1f0d69a9 SR |
240 | } |
241 | ||
e302cf3f | 242 | static inline long get_incorrect_percent(struct ftrace_branch_data *p) |
1f0d69a9 | 243 | { |
e302cf3f | 244 | long percent; |
1f0d69a9 | 245 | |
e302cf3f FW |
246 | if (p->correct) { |
247 | percent = p->incorrect * 100; | |
248 | percent /= p->correct + p->incorrect; | |
249 | } else | |
250 | percent = p->incorrect ? 100 : -1; | |
1f0d69a9 | 251 | |
e302cf3f | 252 | return percent; |
1f0d69a9 SR |
253 | } |
254 | ||
134e6a03 | 255 | static const char *branch_stat_process_file(struct ftrace_branch_data *p) |
1f0d69a9 | 256 | { |
1f0d69a9 | 257 | const char *f; |
1f0d69a9 | 258 | |
1f0d69a9 SR |
259 | /* Only print the file, not the path */ |
260 | f = p->file + strlen(p->file); | |
261 | while (f >= p->file && *f != '/') | |
262 | f--; | |
134e6a03 SRV |
263 | return ++f; |
264 | } | |
265 | ||
266 | static void branch_stat_show(struct seq_file *m, | |
267 | struct ftrace_branch_data *p, const char *f) | |
268 | { | |
269 | long percent; | |
1f0d69a9 | 270 | |
2bcd521a SR |
271 | /* |
272 | * The miss is overlayed on correct, and hit on incorrect. | |
273 | */ | |
e302cf3f | 274 | percent = get_incorrect_percent(p); |
1f0d69a9 | 275 | |
bac28bfe | 276 | if (percent < 0) |
fa6f0cc7 | 277 | seq_puts(m, " X "); |
bac28bfe SR |
278 | else |
279 | seq_printf(m, "%3ld ", percent); | |
134e6a03 | 280 | |
1f0d69a9 | 281 | seq_printf(m, "%-30.30s %-20.20s %d\n", p->func, f, p->line); |
134e6a03 SRV |
282 | } |
283 | ||
284 | static int branch_stat_show_normal(struct seq_file *m, | |
285 | struct ftrace_branch_data *p, const char *f) | |
286 | { | |
287 | seq_printf(m, "%8lu %8lu ", p->correct, p->incorrect); | |
288 | branch_stat_show(m, p, f); | |
289 | return 0; | |
290 | } | |
291 | ||
292 | static int annotate_branch_stat_show(struct seq_file *m, void *v) | |
293 | { | |
294 | struct ftrace_likely_data *p = v; | |
295 | const char *f; | |
296 | int l; | |
297 | ||
298 | f = branch_stat_process_file(&p->data); | |
299 | ||
300 | if (!p->constant) | |
301 | return branch_stat_show_normal(m, &p->data, f); | |
302 | ||
303 | l = snprintf(NULL, 0, "/%lu", p->constant); | |
304 | l = l > 8 ? 0 : 8 - l; | |
305 | ||
306 | seq_printf(m, "%8lu/%lu %*lu ", | |
307 | p->data.correct, p->constant, l, p->data.incorrect); | |
308 | branch_stat_show(m, &p->data, f); | |
1f0d69a9 SR |
309 | return 0; |
310 | } | |
311 | ||
42548008 | 312 | static void *annotated_branch_stat_start(struct tracer_stat *trace) |
e302cf3f FW |
313 | { |
314 | return __start_annotated_branch_profile; | |
315 | } | |
1f0d69a9 | 316 | |
e302cf3f FW |
317 | static void * |
318 | annotated_branch_stat_next(void *v, int idx) | |
1f0d69a9 | 319 | { |
134e6a03 | 320 | struct ftrace_likely_data *p = v; |
1f0d69a9 | 321 | |
e302cf3f | 322 | ++p; |
1f0d69a9 | 323 | |
e302cf3f FW |
324 | if ((void *)p >= (void *)__stop_annotated_branch_profile) |
325 | return NULL; | |
326 | ||
327 | return p; | |
1f0d69a9 SR |
328 | } |
329 | ||
e302cf3f FW |
330 | static int annotated_branch_stat_cmp(void *p1, void *p2) |
331 | { | |
332 | struct ftrace_branch_data *a = p1; | |
333 | struct ftrace_branch_data *b = p2; | |
334 | ||
335 | long percent_a, percent_b; | |
336 | ||
337 | percent_a = get_incorrect_percent(a); | |
338 | percent_b = get_incorrect_percent(b); | |
339 | ||
340 | if (percent_a < percent_b) | |
341 | return -1; | |
342 | if (percent_a > percent_b) | |
343 | return 1; | |
ede55c9d SR |
344 | |
345 | if (a->incorrect < b->incorrect) | |
346 | return -1; | |
347 | if (a->incorrect > b->incorrect) | |
348 | return 1; | |
349 | ||
350 | /* | |
351 | * Since the above shows worse (incorrect) cases | |
352 | * first, we continue that by showing best (correct) | |
353 | * cases last. | |
354 | */ | |
355 | if (a->correct > b->correct) | |
356 | return -1; | |
357 | if (a->correct < b->correct) | |
358 | return 1; | |
359 | ||
360 | return 0; | |
e302cf3f | 361 | } |
1f0d69a9 | 362 | |
002bb86d FW |
363 | static struct tracer_stat annotated_branch_stats = { |
364 | .name = "branch_annotated", | |
365 | .stat_start = annotated_branch_stat_start, | |
366 | .stat_next = annotated_branch_stat_next, | |
367 | .stat_cmp = annotated_branch_stat_cmp, | |
368 | .stat_headers = annotated_branch_stat_headers, | |
134e6a03 | 369 | .stat_show = annotate_branch_stat_show |
002bb86d FW |
370 | }; |
371 | ||
372 | __init static int init_annotated_branch_stats(void) | |
373 | { | |
374 | int ret; | |
375 | ||
376 | ret = register_stat_tracer(&annotated_branch_stats); | |
377 | if (!ret) { | |
378 | printk(KERN_WARNING "Warning: could not register " | |
379 | "annotated branches stats\n"); | |
380 | return 1; | |
381 | } | |
382 | return 0; | |
383 | } | |
384 | fs_initcall(init_annotated_branch_stats); | |
385 | ||
2bcd521a | 386 | #ifdef CONFIG_PROFILE_ALL_BRANCHES |
2bcd521a | 387 | |
e302cf3f FW |
388 | extern unsigned long __start_branch_profile[]; |
389 | extern unsigned long __stop_branch_profile[]; | |
1f0d69a9 | 390 | |
e302cf3f FW |
391 | static int all_branch_stat_headers(struct seq_file *m) |
392 | { | |
d79ac28f RV |
393 | seq_puts(m, " miss hit % " |
394 | " Function " | |
fa6f0cc7 RV |
395 | " File Line\n" |
396 | " ------- --------- - " | |
397 | " -------- " | |
398 | " ---- ----\n"); | |
e302cf3f FW |
399 | return 0; |
400 | } | |
1f0d69a9 | 401 | |
42548008 | 402 | static void *all_branch_stat_start(struct tracer_stat *trace) |
1f0d69a9 | 403 | { |
e302cf3f FW |
404 | return __start_branch_profile; |
405 | } | |
406 | ||
407 | static void * | |
408 | all_branch_stat_next(void *v, int idx) | |
409 | { | |
410 | struct ftrace_branch_data *p = v; | |
1f0d69a9 | 411 | |
e302cf3f | 412 | ++p; |
1f0d69a9 | 413 | |
e302cf3f FW |
414 | if ((void *)p >= (void *)__stop_branch_profile) |
415 | return NULL; | |
1f0d69a9 | 416 | |
e302cf3f FW |
417 | return p; |
418 | } | |
2bcd521a | 419 | |
134e6a03 SRV |
420 | static int all_branch_stat_show(struct seq_file *m, void *v) |
421 | { | |
422 | struct ftrace_branch_data *p = v; | |
423 | const char *f; | |
424 | ||
425 | f = branch_stat_process_file(p); | |
426 | return branch_stat_show_normal(m, p, f); | |
427 | } | |
428 | ||
002bb86d FW |
429 | static struct tracer_stat all_branch_stats = { |
430 | .name = "branch_all", | |
034939b6 FW |
431 | .stat_start = all_branch_stat_start, |
432 | .stat_next = all_branch_stat_next, | |
433 | .stat_headers = all_branch_stat_headers, | |
134e6a03 | 434 | .stat_show = all_branch_stat_show |
034939b6 | 435 | }; |
e302cf3f | 436 | |
002bb86d | 437 | __init static int all_annotated_branch_stats(void) |
e302cf3f | 438 | { |
e302cf3f | 439 | int ret; |
002bb86d FW |
440 | |
441 | ret = register_stat_tracer(&all_branch_stats); | |
e302cf3f | 442 | if (!ret) { |
002bb86d FW |
443 | printk(KERN_WARNING "Warning: could not register " |
444 | "all branches stats\n"); | |
e302cf3f FW |
445 | return 1; |
446 | } | |
002bb86d | 447 | return 0; |
e302cf3f | 448 | } |
002bb86d FW |
449 | fs_initcall(all_annotated_branch_stats); |
450 | #endif /* CONFIG_PROFILE_ALL_BRANCHES */ |