trace_branch.c 9.0 KB
Newer Older
1 2 3 4 5 6 7 8
/*
 * unlikely profiler
 *
 * Copyright (C) 2008 Steven Rostedt <srostedt@redhat.com>
 */
#include <linux/kallsyms.h>
#include <linux/seq_file.h>
#include <linux/spinlock.h>
9
#include <linux/irqflags.h>
10 11 12 13 14 15
#include <linux/uaccess.h>
#include <linux/module.h>
#include <linux/ftrace.h>
#include <linux/hash.h>
#include <linux/fs.h>
#include <asm/local.h>
16

17
#include "trace.h"
18
#include "trace_stat.h"
19
#include "trace_output.h"
20

21
#ifdef CONFIG_BRANCH_TRACER
22

23
static struct tracer branch_trace;
24 25
static int branch_tracing_enabled __read_mostly;
static DEFINE_MUTEX(branch_tracing_mutex);
26

27
static struct trace_array *branch_tracer;
28 29

static void
30
probe_likely_condition(struct ftrace_branch_data *f, int val, int expect)
31
{
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;
38
	unsigned long flags;
39 40 41 42 43 44 45 46 47 48 49 50 51
	int cpu, pc;
	const char *p;

	/*
	 * I would love to save just the ftrace_likely_data pointer, but
	 * this code can also be used by modules. Ugly things can happen
	 * if the module is unloaded, and then we go and read the
	 * pointer.  This is slower, but much safer.
	 */

	if (unlikely(!tr))
		return;

52
	local_irq_save(flags);
53
	cpu = raw_smp_processor_id();
54
	data = per_cpu_ptr(tr->trace_buffer.data, cpu);
55
	if (atomic_inc_return(&data->disabled) != 1)
56 57
		goto out;

58
	pc = preempt_count();
59
	buffer = tr->trace_buffer.buffer;
60
	event = trace_buffer_lock_reserve(buffer, TRACE_BRANCH,
61
					  sizeof(*entry), flags, pc);
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
	if (!event)
		goto out;

	entry	= ring_buffer_event_data(event);

	/* Strip off the path, only save the file */
	p = f->file + strlen(f->file);
	while (p >= f->file && *p != '/')
		p--;
	p++;

	strncpy(entry->func, f->func, TRACE_FUNC_SIZE);
	strncpy(entry->file, p, TRACE_FILE_SIZE);
	entry->func[TRACE_FUNC_SIZE] = 0;
	entry->file[TRACE_FILE_SIZE] = 0;
	entry->line = f->line;
	entry->correct = val == expect;

80
	if (!call_filter_check_discard(call, entry, buffer, event))
81
		__buffer_unlock_commit(buffer, event);
82 83

 out:
84
	atomic_dec(&data->disabled);
85
	local_irq_restore(flags);
86 87 88
}

static inline
89
void trace_likely_condition(struct ftrace_branch_data *f, int val, int expect)
90
{
91
	if (!branch_tracing_enabled)
92 93 94 95 96
		return;

	probe_likely_condition(f, val, expect);
}

97
int enable_branch_tracing(struct trace_array *tr)
98
{
99 100
	mutex_lock(&branch_tracing_mutex);
	branch_tracer = tr;
101 102 103 104 105
	/*
	 * Must be seen before enabling. The reader is a condition
	 * where we do not need a matching rmb()
	 */
	smp_wmb();
106 107
	branch_tracing_enabled++;
	mutex_unlock(&branch_tracing_mutex);
108

W
Wenji Huang 已提交
109
	return 0;
110 111
}

112
void disable_branch_tracing(void)
113
{
114
	mutex_lock(&branch_tracing_mutex);
115

116
	if (!branch_tracing_enabled)
117 118
		goto out_unlock;

119
	branch_tracing_enabled--;
120 121

 out_unlock:
122
	mutex_unlock(&branch_tracing_mutex);
123
}
S
Steven Rostedt 已提交
124 125 126 127 128 129 130 131 132 133 134

static void start_branch_trace(struct trace_array *tr)
{
	enable_branch_tracing(tr);
}

static void stop_branch_trace(struct trace_array *tr)
{
	disable_branch_tracing();
}

135
static int branch_trace_init(struct trace_array *tr)
S
Steven Rostedt 已提交
136 137
{
	start_branch_trace(tr);
138
	return 0;
S
Steven Rostedt 已提交
139 140 141 142 143 144 145
}

static void branch_trace_reset(struct trace_array *tr)
{
	stop_branch_trace(tr);
}

146
static enum print_line_t trace_branch_print(struct trace_iterator *iter,
147
					    int flags, struct trace_event *event)
148 149 150
{
	struct trace_branch *field;

151
	trace_assign_type(field, iter->ent);
152

153 154 155 156 157 158 159
	trace_seq_printf(&iter->seq, "[%s] %s:%s:%d\n",
			 field->correct ? "  ok  " : " MISS ",
			 field->func,
			 field->file,
			 field->line);

	return trace_handle_return(&iter->seq);
160 161
}

Z
Zhaolei 已提交
162 163 164
static void branch_print_header(struct seq_file *s)
{
	seq_puts(s, "#           TASK-PID    CPU#    TIMESTAMP  CORRECT"
165 166 167
		    "  FUNC:FILE:LINE\n"
		    "#              | |       |          |         |   "
		    "    |\n");
Z
Zhaolei 已提交
168
}
169

170 171 172 173
static struct trace_event_functions trace_branch_funcs = {
	.trace		= trace_branch_print,
};

174
static struct trace_event trace_branch_event = {
175
	.type		= TRACE_BRANCH,
176
	.funcs		= &trace_branch_funcs,
177 178
};

179 180 181 182 183 184 185 186
static struct tracer branch_trace __read_mostly =
{
	.name		= "branch",
	.init		= branch_trace_init,
	.reset		= branch_trace_reset,
#ifdef CONFIG_FTRACE_SELFTEST
	.selftest	= trace_selftest_startup_branch,
#endif /* CONFIG_FTRACE_SELFTEST */
Z
Zhaolei 已提交
187
	.print_header	= branch_print_header,
188 189 190 191 192 193
};

__init static int init_branch_tracer(void)
{
	int ret;

194
	ret = register_trace_event(&trace_branch_event);
195 196 197 198 199 200 201
	if (!ret) {
		printk(KERN_WARNING "Warning: could not register "
				    "branch events\n");
		return 1;
	}
	return register_tracer(&branch_trace);
}
202
core_initcall(init_branch_tracer);
203

204 205
#else
static inline
206
void trace_likely_condition(struct ftrace_branch_data *f, int val, int expect)
207 208
{
}
209
#endif /* CONFIG_BRANCH_TRACER */
210

211
void ftrace_likely_update(struct ftrace_branch_data *f, int val, int expect)
212
{
213 214 215 216 217 218 219 220
	/*
	 * I would love to have a trace point here instead, but the
	 * trace point code is so inundated with unlikely and likely
	 * conditions that the recursive nightmare that exists is too
	 * much to try to get working. At least for now.
	 */
	trace_likely_condition(f, val, expect);

221 222 223 224 225 226 227 228
	/* FIXME: Make this atomic! */
	if (val == expect)
		f->correct++;
	else
		f->incorrect++;
}
EXPORT_SYMBOL(ftrace_likely_update);

229 230
extern unsigned long __start_annotated_branch_profile[];
extern unsigned long __stop_annotated_branch_profile[];
231

232
static int annotated_branch_stat_headers(struct seq_file *m)
233
{
234 235
	seq_puts(m, " correct incorrect  % "
		    "       Function                "
236 237 238 239
		    "  File              Line\n"
		    " ------- ---------  - "
		    "       --------                "
		    "  ----              ----\n");
240
	return 0;
241 242
}

243
static inline long get_incorrect_percent(struct ftrace_branch_data *p)
244
{
245
	long percent;
246

247 248 249 250 251
	if (p->correct) {
		percent = p->incorrect * 100;
		percent /= p->correct + p->incorrect;
	} else
		percent = p->incorrect ? 100 : -1;
252

253
	return percent;
254 255
}

256
static int branch_stat_show(struct seq_file *m, void *v)
257
{
258
	struct ftrace_branch_data *p = v;
259
	const char *f;
260
	long percent;
261 262 263 264 265 266 267

	/* Only print the file, not the path */
	f = p->file + strlen(p->file);
	while (f >= p->file && *f != '/')
		f--;
	f++;

268 269 270
	/*
	 * The miss is overlayed on correct, and hit on incorrect.
	 */
271
	percent = get_incorrect_percent(p);
272

273 274
	seq_printf(m, "%8lu %8lu ",  p->correct, p->incorrect);
	if (percent < 0)
275
		seq_puts(m, "  X ");
276 277
	else
		seq_printf(m, "%3ld ", percent);
278 279 280 281
	seq_printf(m, "%-30.30s %-20.20s %d\n", p->func, f, p->line);
	return 0;
}

282
static void *annotated_branch_stat_start(struct tracer_stat *trace)
283 284 285
{
	return __start_annotated_branch_profile;
}
286

287 288
static void *
annotated_branch_stat_next(void *v, int idx)
289
{
290
	struct ftrace_branch_data *p = v;
291

292
	++p;
293

294 295 296 297
	if ((void *)p >= (void *)__stop_annotated_branch_profile)
		return NULL;

	return p;
298 299
}

300 301 302 303 304 305 306 307 308 309 310 311 312 313
static int annotated_branch_stat_cmp(void *p1, void *p2)
{
	struct ftrace_branch_data *a = p1;
	struct ftrace_branch_data *b = p2;

	long percent_a, percent_b;

	percent_a = get_incorrect_percent(a);
	percent_b = get_incorrect_percent(b);

	if (percent_a < percent_b)
		return -1;
	if (percent_a > percent_b)
		return 1;
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330

	if (a->incorrect < b->incorrect)
		return -1;
	if (a->incorrect > b->incorrect)
		return 1;

	/*
	 * Since the above shows worse (incorrect) cases
	 * first, we continue that by showing best (correct)
	 * cases last.
	 */
	if (a->correct > b->correct)
		return -1;
	if (a->correct < b->correct)
		return 1;

	return 0;
331
}
332

333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
static struct tracer_stat annotated_branch_stats = {
	.name = "branch_annotated",
	.stat_start = annotated_branch_stat_start,
	.stat_next = annotated_branch_stat_next,
	.stat_cmp = annotated_branch_stat_cmp,
	.stat_headers = annotated_branch_stat_headers,
	.stat_show = branch_stat_show
};

__init static int init_annotated_branch_stats(void)
{
	int ret;

	ret = register_stat_tracer(&annotated_branch_stats);
	if (!ret) {
		printk(KERN_WARNING "Warning: could not register "
				    "annotated branches stats\n");
		return 1;
	}
	return 0;
}
fs_initcall(init_annotated_branch_stats);

356 357
#ifdef CONFIG_PROFILE_ALL_BRANCHES

358 359
extern unsigned long __start_branch_profile[];
extern unsigned long __stop_branch_profile[];
360

361 362
static int all_branch_stat_headers(struct seq_file *m)
{
363 364
	seq_puts(m, "   miss      hit    % "
		    "       Function                "
365 366 367 368
		    "  File              Line\n"
		    " ------- ---------  - "
		    "       --------                "
		    "  ----              ----\n");
369 370
	return 0;
}
371

372
static void *all_branch_stat_start(struct tracer_stat *trace)
373
{
374 375 376 377 378 379 380
	return __start_branch_profile;
}

static void *
all_branch_stat_next(void *v, int idx)
{
	struct ftrace_branch_data *p = v;
381

382
	++p;
383

384 385
	if ((void *)p >= (void *)__stop_branch_profile)
		return NULL;
386

387 388
	return p;
}
389

390 391
static struct tracer_stat all_branch_stats = {
	.name = "branch_all",
392 393 394
	.stat_start = all_branch_stat_start,
	.stat_next = all_branch_stat_next,
	.stat_headers = all_branch_stat_headers,
395
	.stat_show = branch_stat_show
396
};
397

398
__init static int all_annotated_branch_stats(void)
399 400
{
	int ret;
401 402

	ret = register_stat_tracer(&all_branch_stats);
403
	if (!ret) {
404 405
		printk(KERN_WARNING "Warning: could not register "
				    "all branches stats\n");
406 407
		return 1;
	}
408
	return 0;
409
}
410 411
fs_initcall(all_annotated_branch_stats);
#endif /* CONFIG_PROFILE_ALL_BRANCHES */