trace_hw_branches.c 6.6 KB
Newer Older
1
/*
2
 * h/w branch tracer for x86 based on bts
3
 *
4 5
 * Copyright (C) 2008-2009 Intel Corporation.
 * Markus Metzger <markus.t.metzger@gmail.com>, 2008-2009
6 7 8 9 10 11 12 13
 *
 */

#include <linux/module.h>
#include <linux/fs.h>
#include <linux/debugfs.h>
#include <linux/ftrace.h>
#include <linux/kallsyms.h>
14 15 16
#include <linux/mutex.h>
#include <linux/cpu.h>
#include <linux/smp.h>
17 18 19 20

#include <asm/ds.h>

#include "trace.h"
21
#include "trace_output.h"
22 23 24 25


#define SIZEOF_BTS (1 << 13)

26 27 28 29 30 31 32 33 34 35
/* The tracer mutex protects the below per-cpu tracer array.
   It needs to be held to:
   - start tracing on all cpus
   - stop tracing on all cpus
   - start tracing on a single hotplug cpu
   - stop tracing on a single hotplug cpu
   - read the trace from all cpus
   - read the trace from a single cpu
*/
static DEFINE_MUTEX(bts_tracer_mutex);
36 37 38 39 40 41
static DEFINE_PER_CPU(struct bts_tracer *, tracer);
static DEFINE_PER_CPU(unsigned char[SIZEOF_BTS], buffer);

#define this_tracer per_cpu(tracer, smp_processor_id())
#define this_buffer per_cpu(buffer, smp_processor_id())

42
static int __read_mostly trace_hw_branches_enabled;
43
static struct trace_array *hw_branch_trace __read_mostly;
44

45 46 47 48 49 50 51

/*
 * Start tracing on the current cpu.
 * The argument is ignored.
 *
 * pre: bts_tracer_mutex must be locked.
 */
52 53
static void bts_trace_start_cpu(void *arg)
{
54 55 56
	if (this_tracer)
		ds_release_bts(this_tracer);

57 58
	this_tracer =
		ds_request_bts(/* task = */ NULL, this_buffer, SIZEOF_BTS,
59 60
			       /* ovfl = */ NULL, /* th = */ (size_t)-1,
			       BTS_KERNEL);
61 62 63 64 65 66 67 68
	if (IS_ERR(this_tracer)) {
		this_tracer = NULL;
		return;
	}
}

static void bts_trace_start(struct trace_array *tr)
{
69
	mutex_lock(&bts_tracer_mutex);
70

71 72
	on_each_cpu(bts_trace_start_cpu, NULL, 1);
	trace_hw_branches_enabled = 1;
73

74
	mutex_unlock(&bts_tracer_mutex);
75 76
}

77 78 79 80 81 82
/*
 * Start tracing on the current cpu.
 * The argument is ignored.
 *
 * pre: bts_tracer_mutex must be locked.
 */
83 84 85 86 87 88 89 90 91 92
static void bts_trace_stop_cpu(void *arg)
{
	if (this_tracer) {
		ds_release_bts(this_tracer);
		this_tracer = NULL;
	}
}

static void bts_trace_stop(struct trace_array *tr)
{
93 94 95 96
	mutex_lock(&bts_tracer_mutex);

	trace_hw_branches_enabled = 0;
	on_each_cpu(bts_trace_stop_cpu, NULL, 1);
97

98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
	mutex_unlock(&bts_tracer_mutex);
}

static int __cpuinit bts_hotcpu_handler(struct notifier_block *nfb,
				     unsigned long action, void *hcpu)
{
	unsigned int cpu = (unsigned long)hcpu;

	mutex_lock(&bts_tracer_mutex);

	if (!trace_hw_branches_enabled)
		goto out;

	switch (action) {
	case CPU_ONLINE:
	case CPU_DOWN_FAILED:
		smp_call_function_single(cpu, bts_trace_start_cpu, NULL, 1);
		break;
	case CPU_DOWN_PREPARE:
117
		smp_call_function_single(cpu, bts_trace_stop_cpu, NULL, 1);
118 119 120 121 122 123
		break;
	}

 out:
	mutex_unlock(&bts_tracer_mutex);
	return NOTIFY_DONE;
124 125
}

126 127 128 129
static struct notifier_block bts_hotcpu_notifier __cpuinitdata = {
	.notifier_call = bts_hotcpu_handler
};

130 131
static int bts_trace_init(struct trace_array *tr)
{
132 133
	hw_branch_trace = tr;

134
	register_hotcpu_notifier(&bts_hotcpu_notifier);
135
	tracing_reset_online_cpus(tr);
136 137 138 139 140
	bts_trace_start(tr);

	return 0;
}

141 142 143 144 145 146
static void bts_trace_reset(struct trace_array *tr)
{
	bts_trace_stop(tr);
	unregister_hotcpu_notifier(&bts_hotcpu_notifier);
}

147 148 149 150 151 152 153 154 155 156 157 158
static void bts_trace_print_header(struct seq_file *m)
{
	seq_puts(m,
		 "# CPU#        FROM                   TO         FUNCTION\n");
	seq_puts(m,
		 "#  |           |                     |             |\n");
}

static enum print_line_t bts_trace_print_line(struct trace_iterator *iter)
{
	struct trace_entry *entry = iter->ent;
	struct trace_seq *seq = &iter->seq;
159
	struct hw_branch_entry *it;
160 161 162

	trace_assign_type(it, entry);

163 164 165 166 167 168 169 170 171
	if (entry->type == TRACE_HW_BRANCHES) {
		if (trace_seq_printf(seq, "%4d  ", entry->cpu) &&
		    trace_seq_printf(seq, "0x%016llx -> 0x%016llx ",
				     it->from, it->to) &&
		    (!it->from ||
		     seq_print_ip_sym(seq, it->from, /* sym_flags = */ 0)) &&
		    trace_seq_printf(seq, "\n"))
			return TRACE_TYPE_HANDLED;
		return TRACE_TYPE_PARTIAL_LINE;;
172 173 174 175
	}
	return TRACE_TYPE_UNHANDLED;
}

176
void trace_hw_branch(u64 from, u64 to)
177
{
178
	struct trace_array *tr = hw_branch_trace;
179
	struct ring_buffer_event *event;
180
	struct hw_branch_entry *entry;
181 182
	unsigned long irq1, irq2;
	int cpu;
183

184 185 186 187
	if (unlikely(!tr))
		return;

	if (unlikely(!trace_hw_branches_enabled))
188
		return;
189 190 191 192 193 194 195 196 197

	local_irq_save(irq1);
	cpu = raw_smp_processor_id();
	if (atomic_inc_return(&tr->data[cpu]->disabled) != 1)
		goto out;

	event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry), &irq2);
	if (!event)
		goto out;
198 199
	entry	= ring_buffer_event_data(event);
	tracing_generic_entry_update(&entry->ent, 0, from);
200
	entry->ent.type = TRACE_HW_BRANCHES;
201
	entry->ent.cpu = cpu;
202 203
	entry->from = from;
	entry->to   = to;
204 205 206 207 208
	ring_buffer_unlock_commit(tr->buffer, event, irq2);

 out:
	atomic_dec(&tr->data[cpu]->disabled);
	local_irq_restore(irq1);
209 210
}

211
static void trace_bts_at(const struct bts_trace *trace, void *at)
212
{
213 214
	struct bts_struct bts;
	int err = 0;
215

216 217
	WARN_ON_ONCE(!trace->read);
	if (!trace->read)
218 219
		return;

220 221 222
	err = trace->read(this_tracer, at, &bts);
	if (err < 0)
		return;
223

224 225
	switch (bts.qualifier) {
	case BTS_BRANCH:
226
		trace_hw_branch(bts.variant.lbr.from, bts.variant.lbr.to);
227 228
		break;
	}
229 230
}

231 232 233 234 235
/*
 * Collect the trace on the current cpu and write it into the ftrace buffer.
 *
 * pre: bts_tracer_mutex must be locked
 */
236 237 238
static void trace_bts_cpu(void *arg)
{
	struct trace_array *tr = (struct trace_array *) arg;
239 240
	const struct bts_trace *trace;
	unsigned char *at;
241

242
	if (unlikely(!tr))
243 244
		return;

245 246 247
	if (unlikely(atomic_read(&tr->data[raw_smp_processor_id()]->disabled)))
		return;

248 249 250
	if (unlikely(!this_tracer))
		return;

251 252 253
	ds_suspend_bts(this_tracer);
	trace = ds_read_bts(this_tracer);
	if (!trace)
254 255
		goto out;

256 257
	for (at = trace->ds.top; (void *)at < trace->ds.end;
	     at += trace->ds.size)
258
		trace_bts_at(trace, at);
259

260 261
	for (at = trace->ds.begin; (void *)at < trace->ds.top;
	     at += trace->ds.size)
262
		trace_bts_at(trace, at);
263 264

out:
265
	ds_resume_bts(this_tracer);
266 267 268 269
}

static void trace_bts_prepare(struct trace_iterator *iter)
{
270 271 272
	mutex_lock(&bts_tracer_mutex);

	on_each_cpu(trace_bts_cpu, iter->tr, 1);
273

274
	mutex_unlock(&bts_tracer_mutex);
275 276
}

277 278 279 280 281
static void trace_bts_close(struct trace_iterator *iter)
{
	tracing_reset_online_cpus(iter->tr);
}

282 283 284 285 286 287 288 289 290
void trace_hw_branch_oops(void)
{
	mutex_lock(&bts_tracer_mutex);

	trace_bts_cpu(hw_branch_trace);

	mutex_unlock(&bts_tracer_mutex);
}

291 292
struct tracer bts_tracer __read_mostly =
{
293
	.name		= "hw-branch-tracer",
294
	.init		= bts_trace_init,
295
	.reset		= bts_trace_reset,
296 297 298 299
	.print_header	= bts_trace_print_header,
	.print_line	= bts_trace_print_line,
	.start		= bts_trace_start,
	.stop		= bts_trace_stop,
300 301
	.open		= trace_bts_prepare,
	.close		= trace_bts_close
302 303 304 305 306 307 308
};

__init static int init_bts_trace(void)
{
	return register_tracer(&bts_tracer);
}
device_initcall(init_bts_trace);