trace_branch.c 10.1 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6 7 8 9
/*
 * unlikely profiler
 *
 * Copyright (C) 2008 Steven Rostedt <srostedt@redhat.com>
 */
#include <linux/kallsyms.h>
#include <linux/seq_file.h>
#include <linux/spinlock.h>
10
#include <linux/irqflags.h>
11 12 13 14 15 16
#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_likely_data *f, int val, int expect)
32
{
33
	struct trace_event_call *call = &event_branch;
34
	struct trace_array *tr = branch_tracer;
35
	struct trace_array_cpu *data;
36
	struct ring_buffer_event *event;
37
	struct trace_branch *entry;
38
	struct ring_buffer *buffer;
39
	unsigned long flags;
40
	int pc;
41 42
	const char *p;

43 44 45
	if (current->trace_recursion & TRACE_BRANCH_BIT)
		return;

46 47 48 49 50 51 52 53 54 55
	/*
	 * 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;

56 57 58 59
	raw_local_irq_save(flags);
	current->trace_recursion |= TRACE_BRANCH_BIT;
	data = this_cpu_ptr(tr->trace_buffer.data);
	if (atomic_read(&data->disabled))
60 61
		goto out;

62
	pc = preempt_count();
63
	buffer = tr->trace_buffer.buffer;
64
	event = trace_buffer_lock_reserve(buffer, TRACE_BRANCH,
65
					  sizeof(*entry), flags, pc);
66 67 68 69 70 71
	if (!event)
		goto out;

	entry	= ring_buffer_event_data(event);

	/* Strip off the path, only save the file */
72 73
	p = f->data.file + strlen(f->data.file);
	while (p >= f->data.file && *p != '/')
74 75 76
		p--;
	p++;

77
	strncpy(entry->func, f->data.func, TRACE_FUNC_SIZE);
78 79 80
	strncpy(entry->file, p, TRACE_FILE_SIZE);
	entry->func[TRACE_FUNC_SIZE] = 0;
	entry->file[TRACE_FILE_SIZE] = 0;
81 82
	entry->constant = f->constant;
	entry->line = f->data.line;
83 84
	entry->correct = val == expect;

85
	if (!call_filter_check_discard(call, entry, buffer, event))
86
		trace_buffer_unlock_commit_nostack(buffer, event);
87 88

 out:
89 90
	current->trace_recursion &= ~TRACE_BRANCH_BIT;
	raw_local_irq_restore(flags);
91 92 93
}

static inline
94
void trace_likely_condition(struct ftrace_likely_data *f, int val, int expect)
95
{
96
	if (!branch_tracing_enabled)
97 98 99 100 101
		return;

	probe_likely_condition(f, val, expect);
}

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

W
Wenji Huang 已提交
114
	return 0;
115 116
}

117
void disable_branch_tracing(void)
118
{
119
	mutex_lock(&branch_tracing_mutex);
120

121
	if (!branch_tracing_enabled)
122 123
		goto out_unlock;

124
	branch_tracing_enabled--;
125 126

 out_unlock:
127
	mutex_unlock(&branch_tracing_mutex);
128
}
S
Steven Rostedt 已提交
129

130
static int branch_trace_init(struct trace_array *tr)
S
Steven Rostedt 已提交
131
{
132
	return enable_branch_tracing(tr);
S
Steven Rostedt 已提交
133 134 135 136
}

static void branch_trace_reset(struct trace_array *tr)
{
137
	disable_branch_tracing();
S
Steven Rostedt 已提交
138 139
}

140
static enum print_line_t trace_branch_print(struct trace_iterator *iter,
141
					    int flags, struct trace_event *event)
142 143 144
{
	struct trace_branch *field;

145
	trace_assign_type(field, iter->ent);
146

147 148 149 150 151 152 153
	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);
154 155
}

Z
Zhaolei 已提交
156 157 158
static void branch_print_header(struct seq_file *s)
{
	seq_puts(s, "#           TASK-PID    CPU#    TIMESTAMP  CORRECT"
159 160 161
		    "  FUNC:FILE:LINE\n"
		    "#              | |       |          |         |   "
		    "    |\n");
Z
Zhaolei 已提交
162
}
163

164 165 166 167
static struct trace_event_functions trace_branch_funcs = {
	.trace		= trace_branch_print,
};

168
static struct trace_event trace_branch_event = {
169
	.type		= TRACE_BRANCH,
170
	.funcs		= &trace_branch_funcs,
171 172
};

173 174 175 176 177 178 179 180
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 已提交
181
	.print_header	= branch_print_header,
182 183 184 185 186 187
};

__init static int init_branch_tracer(void)
{
	int ret;

188
	ret = register_trace_event(&trace_branch_event);
189 190 191 192 193 194 195
	if (!ret) {
		printk(KERN_WARNING "Warning: could not register "
				    "branch events\n");
		return 1;
	}
	return register_tracer(&branch_trace);
}
196
core_initcall(init_branch_tracer);
197

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

205
void ftrace_likely_update(struct ftrace_likely_data *f, int val,
206
			  int expect, int is_constant)
207
{
208 209
	unsigned long flags = user_access_save();

210
	/* A constant is always correct */
211 212
	if (is_constant) {
		f->constant++;
213
		val = expect;
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.
	 */
221
	trace_likely_condition(f, val, expect);
222

223 224
	/* FIXME: Make this atomic! */
	if (val == expect)
225
		f->data.correct++;
226
	else
227
		f->data.incorrect++;
228 229

	user_access_restore(flags);
230 231 232
}
EXPORT_SYMBOL(ftrace_likely_update);

233 234
extern unsigned long __start_annotated_branch_profile[];
extern unsigned long __stop_annotated_branch_profile[];
235

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

247
static inline long get_incorrect_percent(struct ftrace_branch_data *p)
248
{
249
	long percent;
250

251 252 253 254 255
	if (p->correct) {
		percent = p->incorrect * 100;
		percent /= p->correct + p->incorrect;
	} else
		percent = p->incorrect ? 100 : -1;
256

257
	return percent;
258 259
}

260
static const char *branch_stat_process_file(struct ftrace_branch_data *p)
261 262 263 264 265 266 267
{
	const char *f;

	/* Only print the file, not the path */
	f = p->file + strlen(p->file);
	while (f >= p->file && *f != '/')
		f--;
268 269 270 271 272 273 274
	return ++f;
}

static void branch_stat_show(struct seq_file *m,
			     struct ftrace_branch_data *p, const char *f)
{
	long percent;
275

276 277 278
	/*
	 * The miss is overlayed on correct, and hit on incorrect.
	 */
279
	percent = get_incorrect_percent(p);
280

281
	if (percent < 0)
282
		seq_puts(m, "  X ");
283 284
	else
		seq_printf(m, "%3ld ", percent);
285

286
	seq_printf(m, "%-30.30s %-20.20s %d\n", p->func, f, p->line);
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
}

static int branch_stat_show_normal(struct seq_file *m,
				   struct ftrace_branch_data *p, const char *f)
{
	seq_printf(m, "%8lu %8lu ",  p->correct, p->incorrect);
	branch_stat_show(m, p, f);
	return 0;
}

static int annotate_branch_stat_show(struct seq_file *m, void *v)
{
	struct ftrace_likely_data *p = v;
	const char *f;
	int l;

	f = branch_stat_process_file(&p->data);

	if (!p->constant)
		return branch_stat_show_normal(m, &p->data, f);

	l = snprintf(NULL, 0, "/%lu", p->constant);
	l = l > 8 ? 0 : 8 - l;

	seq_printf(m, "%8lu/%lu %*lu ",
		   p->data.correct, p->constant, l, p->data.incorrect);
	branch_stat_show(m, &p->data, f);
314 315 316
	return 0;
}

317
static void *annotated_branch_stat_start(struct tracer_stat *trace)
318 319 320
{
	return __start_annotated_branch_profile;
}
321

322 323
static void *
annotated_branch_stat_next(void *v, int idx)
324
{
325
	struct ftrace_likely_data *p = v;
326

327
	++p;
328

329 330 331 332
	if ((void *)p >= (void *)__stop_annotated_branch_profile)
		return NULL;

	return p;
333 334
}

335 336 337 338 339 340 341 342 343 344 345 346 347 348
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;
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365

	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;
366
}
367

368 369 370 371 372 373
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,
374
	.stat_show = annotate_branch_stat_show
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
};

__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);

391 392
#ifdef CONFIG_PROFILE_ALL_BRANCHES

393 394
extern unsigned long __start_branch_profile[];
extern unsigned long __stop_branch_profile[];
395

396 397
static int all_branch_stat_headers(struct seq_file *m)
{
398 399
	seq_puts(m, "   miss      hit    % "
		    "       Function                "
400 401 402 403
		    "  File              Line\n"
		    " ------- ---------  - "
		    "       --------                "
		    "  ----              ----\n");
404 405
	return 0;
}
406

407
static void *all_branch_stat_start(struct tracer_stat *trace)
408
{
409 410 411 412 413 414 415
	return __start_branch_profile;
}

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

417
	++p;
418

419 420
	if ((void *)p >= (void *)__stop_branch_profile)
		return NULL;
421

422 423
	return p;
}
424

425 426 427 428 429 430 431 432 433
static int all_branch_stat_show(struct seq_file *m, void *v)
{
	struct ftrace_branch_data *p = v;
	const char *f;

	f = branch_stat_process_file(p);
	return branch_stat_show_normal(m, p, f);
}

434 435
static struct tracer_stat all_branch_stats = {
	.name = "branch_all",
436 437 438
	.stat_start = all_branch_stat_start,
	.stat_next = all_branch_stat_next,
	.stat_headers = all_branch_stat_headers,
439
	.stat_show = all_branch_stat_show
440
};
441

442
__init static int all_annotated_branch_stats(void)
443 444
{
	int ret;
445 446

	ret = register_stat_tracer(&all_branch_stats);
447
	if (!ret) {
448 449
		printk(KERN_WARNING "Warning: could not register "
				    "all branches stats\n");
450 451
		return 1;
	}
452
	return 0;
453
}
454 455
fs_initcall(all_annotated_branch_stats);
#endif /* CONFIG_PROFILE_ALL_BRANCHES */