trace_branch.c 8.9 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 16
#include <linux/debugfs.h>
#include <linux/uaccess.h>
#include <linux/module.h>
#include <linux/ftrace.h>
#include <linux/hash.h>
#include <linux/fs.h>
#include <asm/local.h>
17

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

22
#ifdef CONFIG_BRANCH_TRACER
23

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

28
static struct trace_array *branch_tracer;
29 30

static void
31
probe_likely_condition(struct ftrace_branch_data *f, int val, int expect)
32
{
33
	struct ftrace_event_call *call = &event_branch;
34
	struct trace_array *tr = branch_tracer;
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 54 55 56
	cpu = raw_smp_processor_id();
	if (atomic_inc_return(&tr->data[cpu]->disabled) != 1)
		goto out;

57
	pc = preempt_count();
58 59
	buffer = tr->buffer;
	event = trace_buffer_lock_reserve(buffer, TRACE_BRANCH,
60
					  sizeof(*entry), flags, pc);
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
	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;

79 80
	if (!filter_check_discard(call, entry, buffer, event))
		ring_buffer_unlock_commit(buffer, event);
81 82 83

 out:
	atomic_dec(&tr->data[cpu]->disabled);
84
	local_irq_restore(flags);
85 86 87
}

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

	probe_likely_condition(f, val, expect);
}

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

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

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

115
	if (!branch_tracing_enabled)
116 117
		goto out_unlock;

118
	branch_tracing_enabled--;
119 120

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

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();
}

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

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

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

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

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

159
	return TRACE_TYPE_HANDLED;
160 161
}

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

170
static struct trace_event trace_branch_event = {
171
	.type		= TRACE_BRANCH,
172 173 174
	.trace		= trace_branch_print,
};

175 176 177 178 179 180 181 182
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 已提交
183
	.print_header	= branch_print_header,
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
};

__init static int init_branch_tracer(void)
{
	int ret;

	ret = register_ftrace_event(&trace_branch_event);
	if (!ret) {
		printk(KERN_WARNING "Warning: could not register "
				    "branch events\n");
		return 1;
	}
	return register_tracer(&branch_trace);
}
device_initcall(init_branch_tracer);

200 201
#else
static inline
202
void trace_likely_condition(struct ftrace_branch_data *f, int val, int expect)
203 204
{
}
205
#endif /* CONFIG_BRANCH_TRACER */
206

207
void ftrace_likely_update(struct ftrace_branch_data *f, int val, int expect)
208
{
209 210 211 212 213 214 215 216
	/*
	 * 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);

217 218 219 220 221 222 223 224
	/* FIXME: Make this atomic! */
	if (val == expect)
		f->correct++;
	else
		f->incorrect++;
}
EXPORT_SYMBOL(ftrace_likely_update);

225 226
extern unsigned long __start_annotated_branch_profile[];
extern unsigned long __stop_annotated_branch_profile[];
227

228
static int annotated_branch_stat_headers(struct seq_file *m)
229
{
230 231 232 233 234 235 236
	seq_printf(m, " correct incorrect  %% ");
	seq_printf(m, "       Function                "
			      "  File              Line\n"
			      " ------- ---------  - "
			      "       --------                "
			      "  ----              ----\n");
	return 0;
237 238
}

239
static inline long get_incorrect_percent(struct ftrace_branch_data *p)
240
{
241
	long percent;
242

243 244 245 246 247
	if (p->correct) {
		percent = p->incorrect * 100;
		percent /= p->correct + p->incorrect;
	} else
		percent = p->incorrect ? 100 : -1;
248

249
	return percent;
250 251
}

252
static int branch_stat_show(struct seq_file *m, void *v)
253
{
254
	struct ftrace_branch_data *p = v;
255
	const char *f;
256
	long percent;
257 258 259 260 261 262 263

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

264 265 266
	/*
	 * The miss is overlayed on correct, and hit on incorrect.
	 */
267
	percent = get_incorrect_percent(p);
268

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

278
static void *annotated_branch_stat_start(struct tracer_stat *trace)
279 280 281
{
	return __start_annotated_branch_profile;
}
282

283 284
static void *
annotated_branch_stat_next(void *v, int idx)
285
{
286
	struct ftrace_branch_data *p = v;
287

288
	++p;
289

290 291 292 293
	if ((void *)p >= (void *)__stop_annotated_branch_profile)
		return NULL;

	return p;
294 295
}

296 297 298 299 300 301 302 303 304 305 306 307 308 309
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;
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326

	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;
327
}
328

329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
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);

352 353
#ifdef CONFIG_PROFILE_ALL_BRANCHES

354 355
extern unsigned long __start_branch_profile[];
extern unsigned long __stop_branch_profile[];
356

357 358 359 360 361 362 363 364 365 366
static int all_branch_stat_headers(struct seq_file *m)
{
	seq_printf(m, "   miss      hit    %% ");
	seq_printf(m, "       Function                "
			      "  File              Line\n"
			      " ------- ---------  - "
			      "       --------                "
			      "  ----              ----\n");
	return 0;
}
367

368
static void *all_branch_stat_start(struct tracer_stat *trace)
369
{
370 371 372 373 374 375 376
	return __start_branch_profile;
}

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

378
	++p;
379

380 381
	if ((void *)p >= (void *)__stop_branch_profile)
		return NULL;
382

383 384
	return p;
}
385

386 387
static struct tracer_stat all_branch_stats = {
	.name = "branch_all",
388 389 390
	.stat_start = all_branch_stat_start,
	.stat_next = all_branch_stat_next,
	.stat_headers = all_branch_stat_headers,
391
	.stat_show = branch_stat_show
392
};
393

394
__init static int all_annotated_branch_stats(void)
395 396
{
	int ret;
397 398

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