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_branch_data
*f
, int val
, int expect
)
32 struct ftrace_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
->file
+ strlen(f
->file
);
72 while (p
>= f
->file
&& *p
!= '/')
76 strncpy(entry
->func
, f
->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
->line
= f
->line
;
81 entry
->correct
= val
== expect
;
83 if (!call_filter_check_discard(call
, entry
, buffer
, event
))
84 __buffer_unlock_commit(buffer
, event
);
87 current
->trace_recursion
&= ~TRACE_BRANCH_BIT
;
88 raw_local_irq_restore(flags
);
92 void trace_likely_condition(struct ftrace_branch_data
*f
, int val
, int expect
)
94 if (!branch_tracing_enabled
)
97 probe_likely_condition(f
, val
, expect
);
100 int enable_branch_tracing(struct trace_array
*tr
)
102 mutex_lock(&branch_tracing_mutex
);
105 * Must be seen before enabling. The reader is a condition
106 * where we do not need a matching rmb()
109 branch_tracing_enabled
++;
110 mutex_unlock(&branch_tracing_mutex
);
115 void disable_branch_tracing(void)
117 mutex_lock(&branch_tracing_mutex
);
119 if (!branch_tracing_enabled
)
122 branch_tracing_enabled
--;
125 mutex_unlock(&branch_tracing_mutex
);
128 static void start_branch_trace(struct trace_array
*tr
)
130 enable_branch_tracing(tr
);
133 static void stop_branch_trace(struct trace_array
*tr
)
135 disable_branch_tracing();
138 static int branch_trace_init(struct trace_array
*tr
)
140 start_branch_trace(tr
);
144 static void branch_trace_reset(struct trace_array
*tr
)
146 stop_branch_trace(tr
);
149 static enum print_line_t
trace_branch_print(struct trace_iterator
*iter
,
150 int flags
, struct trace_event
*event
)
152 struct trace_branch
*field
;
154 trace_assign_type(field
, iter
->ent
);
156 trace_seq_printf(&iter
->seq
, "[%s] %s:%s:%d\n",
157 field
->correct
? " ok " : " MISS ",
162 return trace_handle_return(&iter
->seq
);
165 static void branch_print_header(struct seq_file
*s
)
167 seq_puts(s
, "# TASK-PID CPU# TIMESTAMP CORRECT"
173 static struct trace_event_functions trace_branch_funcs
= {
174 .trace
= trace_branch_print
,
177 static struct trace_event trace_branch_event
= {
178 .type
= TRACE_BRANCH
,
179 .funcs
= &trace_branch_funcs
,
182 static struct tracer branch_trace __read_mostly
=
185 .init
= branch_trace_init
,
186 .reset
= branch_trace_reset
,
187 #ifdef CONFIG_FTRACE_SELFTEST
188 .selftest
= trace_selftest_startup_branch
,
189 #endif /* CONFIG_FTRACE_SELFTEST */
190 .print_header
= branch_print_header
,
193 __init
static int init_branch_tracer(void)
197 ret
= register_ftrace_event(&trace_branch_event
);
199 printk(KERN_WARNING
"Warning: could not register "
203 return register_tracer(&branch_trace
);
205 core_initcall(init_branch_tracer
);
209 void trace_likely_condition(struct ftrace_branch_data
*f
, int val
, int expect
)
212 #endif /* CONFIG_BRANCH_TRACER */
214 void ftrace_likely_update(struct ftrace_branch_data
*f
, int val
, int expect
)
217 * I would love to have a trace point here instead, but the
218 * trace point code is so inundated with unlikely and likely
219 * conditions that the recursive nightmare that exists is too
220 * much to try to get working. At least for now.
222 trace_likely_condition(f
, val
, expect
);
224 /* FIXME: Make this atomic! */
230 EXPORT_SYMBOL(ftrace_likely_update
);
232 extern unsigned long __start_annotated_branch_profile
[];
233 extern unsigned long __stop_annotated_branch_profile
[];
235 static int annotated_branch_stat_headers(struct seq_file
*m
)
237 seq_puts(m
, " correct incorrect % "
240 " ------- --------- - "
246 static inline long get_incorrect_percent(struct ftrace_branch_data
*p
)
251 percent
= p
->incorrect
* 100;
252 percent
/= p
->correct
+ p
->incorrect
;
254 percent
= p
->incorrect
? 100 : -1;
259 static int branch_stat_show(struct seq_file
*m
, void *v
)
261 struct ftrace_branch_data
*p
= v
;
265 /* Only print the file, not the path */
266 f
= p
->file
+ strlen(p
->file
);
267 while (f
>= p
->file
&& *f
!= '/')
272 * The miss is overlayed on correct, and hit on incorrect.
274 percent
= get_incorrect_percent(p
);
276 seq_printf(m
, "%8lu %8lu ", p
->correct
, p
->incorrect
);
280 seq_printf(m
, "%3ld ", percent
);
281 seq_printf(m
, "%-30.30s %-20.20s %d\n", p
->func
, f
, p
->line
);
285 static void *annotated_branch_stat_start(struct tracer_stat
*trace
)
287 return __start_annotated_branch_profile
;
291 annotated_branch_stat_next(void *v
, int idx
)
293 struct ftrace_branch_data
*p
= v
;
297 if ((void *)p
>= (void *)__stop_annotated_branch_profile
)
303 static int annotated_branch_stat_cmp(void *p1
, void *p2
)
305 struct ftrace_branch_data
*a
= p1
;
306 struct ftrace_branch_data
*b
= p2
;
308 long percent_a
, percent_b
;
310 percent_a
= get_incorrect_percent(a
);
311 percent_b
= get_incorrect_percent(b
);
313 if (percent_a
< percent_b
)
315 if (percent_a
> percent_b
)
318 if (a
->incorrect
< b
->incorrect
)
320 if (a
->incorrect
> b
->incorrect
)
324 * Since the above shows worse (incorrect) cases
325 * first, we continue that by showing best (correct)
328 if (a
->correct
> b
->correct
)
330 if (a
->correct
< b
->correct
)
336 static struct tracer_stat annotated_branch_stats
= {
337 .name
= "branch_annotated",
338 .stat_start
= annotated_branch_stat_start
,
339 .stat_next
= annotated_branch_stat_next
,
340 .stat_cmp
= annotated_branch_stat_cmp
,
341 .stat_headers
= annotated_branch_stat_headers
,
342 .stat_show
= branch_stat_show
345 __init
static int init_annotated_branch_stats(void)
349 ret
= register_stat_tracer(&annotated_branch_stats
);
351 printk(KERN_WARNING
"Warning: could not register "
352 "annotated branches stats\n");
357 fs_initcall(init_annotated_branch_stats
);
359 #ifdef CONFIG_PROFILE_ALL_BRANCHES
361 extern unsigned long __start_branch_profile
[];
362 extern unsigned long __stop_branch_profile
[];
364 static int all_branch_stat_headers(struct seq_file
*m
)
366 seq_puts(m
, " miss hit % "
369 " ------- --------- - "
375 static void *all_branch_stat_start(struct tracer_stat
*trace
)
377 return __start_branch_profile
;
381 all_branch_stat_next(void *v
, int idx
)
383 struct ftrace_branch_data
*p
= v
;
387 if ((void *)p
>= (void *)__stop_branch_profile
)
393 static struct tracer_stat all_branch_stats
= {
394 .name
= "branch_all",
395 .stat_start
= all_branch_stat_start
,
396 .stat_next
= all_branch_stat_next
,
397 .stat_headers
= all_branch_stat_headers
,
398 .stat_show
= branch_stat_show
401 __init
static int all_annotated_branch_stats(void)
405 ret
= register_stat_tracer(&all_branch_stats
);
407 printk(KERN_WARNING
"Warning: could not register "
408 "all branches stats\n");
413 fs_initcall(all_annotated_branch_stats
);
414 #endif /* CONFIG_PROFILE_ALL_BRANCHES */