4 * Copyright (C) 2008 Steven Rostedt <srostedt@redhat.com>
6 #include <linux/kallsyms.h>
7 #include <linux/seq_file.h>
8 #include <linux/spinlock.h>
9 #include <linux/irqflags.h>
10 #include <linux/uaccess.h>
11 #include <linux/module.h>
12 #include <linux/ftrace.h>
13 #include <linux/hash.h>
15 #include <asm/local.h>
18 #include "trace_stat.h"
19 #include "trace_output.h"
21 #ifdef CONFIG_BRANCH_TRACER
23 static struct tracer branch_trace
;
24 static int branch_tracing_enabled __read_mostly
;
25 static DEFINE_MUTEX(branch_tracing_mutex
);
27 static struct trace_array
*branch_tracer
;
30 probe_likely_condition(struct ftrace_likely_data
*f
, int val
, int expect
)
32 struct trace_event_call
*call
= &event_branch
;
33 struct trace_array
*tr
= branch_tracer
;
34 struct trace_array_cpu
*data
;
35 struct ring_buffer_event
*event
;
36 struct trace_branch
*entry
;
37 struct ring_buffer
*buffer
;
42 if (current
->trace_recursion
& TRACE_BRANCH_BIT
)
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.
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
))
62 buffer
= tr
->trace_buffer
.buffer
;
63 event
= trace_buffer_lock_reserve(buffer
, TRACE_BRANCH
,
64 sizeof(*entry
), flags
, pc
);
68 entry
= ring_buffer_event_data(event
);
70 /* Strip off the path, only save the file */
71 p
= f
->data
.file
+ strlen(f
->data
.file
);
72 while (p
>= f
->data
.file
&& *p
!= '/')
76 strncpy(entry
->func
, f
->data
.func
, TRACE_FUNC_SIZE
);
77 strncpy(entry
->file
, p
, TRACE_FILE_SIZE
);
78 entry
->func
[TRACE_FUNC_SIZE
] = 0;
79 entry
->file
[TRACE_FILE_SIZE
] = 0;
80 entry
->constant
= f
->constant
;
81 entry
->line
= f
->data
.line
;
82 entry
->correct
= val
== expect
;
84 if (!call_filter_check_discard(call
, entry
, buffer
, event
))
85 trace_buffer_unlock_commit_nostack(buffer
, event
);
88 current
->trace_recursion
&= ~TRACE_BRANCH_BIT
;
89 raw_local_irq_restore(flags
);
93 void trace_likely_condition(struct ftrace_likely_data
*f
, int val
, int expect
)
95 if (!branch_tracing_enabled
)
98 probe_likely_condition(f
, val
, expect
);
101 int enable_branch_tracing(struct trace_array
*tr
)
103 mutex_lock(&branch_tracing_mutex
);
106 * Must be seen before enabling. The reader is a condition
107 * where we do not need a matching rmb()
110 branch_tracing_enabled
++;
111 mutex_unlock(&branch_tracing_mutex
);
116 void disable_branch_tracing(void)
118 mutex_lock(&branch_tracing_mutex
);
120 if (!branch_tracing_enabled
)
123 branch_tracing_enabled
--;
126 mutex_unlock(&branch_tracing_mutex
);
129 static int branch_trace_init(struct trace_array
*tr
)
131 return enable_branch_tracing(tr
);
134 static void branch_trace_reset(struct trace_array
*tr
)
136 disable_branch_tracing();
139 static enum print_line_t
trace_branch_print(struct trace_iterator
*iter
,
140 int flags
, struct trace_event
*event
)
142 struct trace_branch
*field
;
144 trace_assign_type(field
, iter
->ent
);
146 trace_seq_printf(&iter
->seq
, "[%s] %s:%s:%d\n",
147 field
->correct
? " ok " : " MISS ",
152 return trace_handle_return(&iter
->seq
);
155 static void branch_print_header(struct seq_file
*s
)
157 seq_puts(s
, "# TASK-PID CPU# TIMESTAMP CORRECT"
163 static struct trace_event_functions trace_branch_funcs
= {
164 .trace
= trace_branch_print
,
167 static struct trace_event trace_branch_event
= {
168 .type
= TRACE_BRANCH
,
169 .funcs
= &trace_branch_funcs
,
172 static struct tracer branch_trace __read_mostly
=
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 */
180 .print_header
= branch_print_header
,
183 __init
static int init_branch_tracer(void)
187 ret
= register_trace_event(&trace_branch_event
);
189 printk(KERN_WARNING
"Warning: could not register "
193 return register_tracer(&branch_trace
);
195 core_initcall(init_branch_tracer
);
199 void trace_likely_condition(struct ftrace_likely_data
*f
, int val
, int expect
)
202 #endif /* CONFIG_BRANCH_TRACER */
204 void ftrace_likely_update(struct ftrace_likely_data
*f
, int val
,
205 int expect
, int is_constant
)
207 /* A constant is always correct */
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.
218 trace_likely_condition(f
, val
, expect
);
220 /* FIXME: Make this atomic! */
226 EXPORT_SYMBOL(ftrace_likely_update
);
228 extern unsigned long __start_annotated_branch_profile
[];
229 extern unsigned long __stop_annotated_branch_profile
[];
231 static int annotated_branch_stat_headers(struct seq_file
*m
)
233 seq_puts(m
, " correct incorrect % "
236 " ------- --------- - "
242 static inline long get_incorrect_percent(struct ftrace_branch_data
*p
)
247 percent
= p
->incorrect
* 100;
248 percent
/= p
->correct
+ p
->incorrect
;
250 percent
= p
->incorrect
? 100 : -1;
255 static const char *branch_stat_process_file(struct ftrace_branch_data
*p
)
259 /* Only print the file, not the path */
260 f
= p
->file
+ strlen(p
->file
);
261 while (f
>= p
->file
&& *f
!= '/')
266 static void branch_stat_show(struct seq_file
*m
,
267 struct ftrace_branch_data
*p
, const char *f
)
272 * The miss is overlayed on correct, and hit on incorrect.
274 percent
= get_incorrect_percent(p
);
279 seq_printf(m
, "%3ld ", percent
);
281 seq_printf(m
, "%-30.30s %-20.20s %d\n", p
->func
, f
, p
->line
);
284 static int branch_stat_show_normal(struct seq_file
*m
,
285 struct ftrace_branch_data
*p
, const char *f
)
287 seq_printf(m
, "%8lu %8lu ", p
->correct
, p
->incorrect
);
288 branch_stat_show(m
, p
, f
);
292 static int annotate_branch_stat_show(struct seq_file
*m
, void *v
)
294 struct ftrace_likely_data
*p
= v
;
298 f
= branch_stat_process_file(&p
->data
);
301 return branch_stat_show_normal(m
, &p
->data
, f
);
303 l
= snprintf(NULL
, 0, "/%lu", p
->constant
);
304 l
= l
> 8 ? 0 : 8 - l
;
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
);
312 static void *annotated_branch_stat_start(struct tracer_stat
*trace
)
314 return __start_annotated_branch_profile
;
318 annotated_branch_stat_next(void *v
, int idx
)
320 struct ftrace_likely_data
*p
= v
;
324 if ((void *)p
>= (void *)__stop_annotated_branch_profile
)
330 static int annotated_branch_stat_cmp(void *p1
, void *p2
)
332 struct ftrace_branch_data
*a
= p1
;
333 struct ftrace_branch_data
*b
= p2
;
335 long percent_a
, percent_b
;
337 percent_a
= get_incorrect_percent(a
);
338 percent_b
= get_incorrect_percent(b
);
340 if (percent_a
< percent_b
)
342 if (percent_a
> percent_b
)
345 if (a
->incorrect
< b
->incorrect
)
347 if (a
->incorrect
> b
->incorrect
)
351 * Since the above shows worse (incorrect) cases
352 * first, we continue that by showing best (correct)
355 if (a
->correct
> b
->correct
)
357 if (a
->correct
< b
->correct
)
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
,
369 .stat_show
= annotate_branch_stat_show
372 __init
static int init_annotated_branch_stats(void)
376 ret
= register_stat_tracer(&annotated_branch_stats
);
378 printk(KERN_WARNING
"Warning: could not register "
379 "annotated branches stats\n");
384 fs_initcall(init_annotated_branch_stats
);
386 #ifdef CONFIG_PROFILE_ALL_BRANCHES
388 extern unsigned long __start_branch_profile
[];
389 extern unsigned long __stop_branch_profile
[];
391 static int all_branch_stat_headers(struct seq_file
*m
)
393 seq_puts(m
, " miss hit % "
396 " ------- --------- - "
402 static void *all_branch_stat_start(struct tracer_stat
*trace
)
404 return __start_branch_profile
;
408 all_branch_stat_next(void *v
, int idx
)
410 struct ftrace_branch_data
*p
= v
;
414 if ((void *)p
>= (void *)__stop_branch_profile
)
420 static int all_branch_stat_show(struct seq_file
*m
, void *v
)
422 struct ftrace_branch_data
*p
= v
;
425 f
= branch_stat_process_file(p
);
426 return branch_stat_show_normal(m
, p
, f
);
429 static struct tracer_stat all_branch_stats
= {
430 .name
= "branch_all",
431 .stat_start
= all_branch_stat_start
,
432 .stat_next
= all_branch_stat_next
,
433 .stat_headers
= all_branch_stat_headers
,
434 .stat_show
= all_branch_stat_show
437 __init
static int all_annotated_branch_stats(void)
441 ret
= register_stat_tracer(&all_branch_stats
);
443 printk(KERN_WARNING
"Warning: could not register "
444 "all branches stats\n");
449 fs_initcall(all_annotated_branch_stats
);
450 #endif /* CONFIG_PROFILE_ALL_BRANCHES */