debug.c 3.4 KB
Newer Older
1 2 3
/* For general debugging purposes */

#include "../perf.h"
4

5 6 7 8
#include <string.h>
#include <stdarg.h>
#include <stdio.h>

9
#include "cache.h"
10 11 12
#include "color.h"
#include "event.h"
#include "debug.h"
13
#include "util.h"
14
#include "target.h"
15

16 17 18
#define NSECS_PER_SEC  1000000000ULL
#define NSECS_PER_USEC 1000ULL

19 20
int verbose;
bool dump_trace = false, quiet = false;
21
int debug_ordered_events;
22
static int redirect_to_stderr;
23

24
static int _eprintf(int level, int var, const char *fmt, va_list args)
25 26 27
{
	int ret = 0;

28
	if (var >= level) {
29
		if (use_browser >= 1 && !redirect_to_stderr)
30
			ui_helpline__vshow(fmt, args);
31 32
		else
			ret = vfprintf(stderr, fmt, args);
33 34 35 36
	}

	return ret;
}
37

38
int eprintf(int level, int var, const char *fmt, ...)
39 40 41 42 43
{
	va_list args;
	int ret;

	va_start(args, fmt);
44
	ret = _eprintf(level, var, fmt, args);
45 46 47 48 49
	va_end(args);

	return ret;
}

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
static int __eprintf_time(u64 t, const char *fmt, va_list args)
{
	int ret = 0;
	u64 secs, usecs, nsecs = t;

	secs   = nsecs / NSECS_PER_SEC;
	nsecs -= secs  * NSECS_PER_SEC;
	usecs  = nsecs / NSECS_PER_USEC;

	ret = fprintf(stderr, "[%13" PRIu64 ".%06" PRIu64 "] ",
		      secs, usecs);
	ret += vfprintf(stderr, fmt, args);
	return ret;
}

int eprintf_time(int level, int var, u64 t, const char *fmt, ...)
{
	int ret = 0;
	va_list args;

	if (var >= level) {
		va_start(args, fmt);
		ret = __eprintf_time(t, fmt, args);
		va_end(args);
	}

	return ret;
}

79 80 81 82 83 84 85 86 87
/*
 * Overloading libtraceevent standard info print
 * function, display with -v in perf.
 */
void pr_stat(const char *fmt, ...)
{
	va_list args;

	va_start(args, fmt);
88
	_eprintf(1, verbose, fmt, args);
89
	va_end(args);
90
	eprintf(1, verbose, "\n");
91 92
}

93 94 95 96 97 98 99 100 101 102 103 104 105
int dump_printf(const char *fmt, ...)
{
	va_list args;
	int ret = 0;

	if (dump_trace) {
		va_start(args, fmt);
		ret = vprintf(fmt, args);
		va_end(args);
	}

	return ret;
}
106

107
void trace_event(union perf_event *event)
108 109 110 111 112 113 114 115
{
	unsigned char *raw_event = (void *)event;
	const char *color = PERF_COLOR_BLUE;
	int i, j;

	if (!dump_trace)
		return;

116 117 118
	printf(".");
	color_fprintf(stdout, color, "\n. ... raw event: size %d bytes\n",
		      event->header.size);
119 120 121

	for (i = 0; i < event->header.size; i++) {
		if ((i & 15) == 0) {
122 123
			printf(".");
			color_fprintf(stdout, color, "  %04x: ", i);
124 125
		}

126
		color_fprintf(stdout, color, " %02x", raw_event[i]);
127 128

		if (((i & 15) == 15) || i == event->header.size-1) {
129
			color_fprintf(stdout, color, "  ");
130
			for (j = 0; j < 15-(i & 15); j++)
131
				color_fprintf(stdout, color, "   ");
132
			for (j = i & ~15; j <= i; j++) {
133 134 135
				color_fprintf(stdout, color, "%c",
					      isprint(raw_event[j]) ?
					      raw_event[j] : '.');
136
			}
137
			color_fprintf(stdout, color, "\n");
138 139
		}
	}
140
	printf(".\n");
141
}
142 143 144 145 146

static struct debug_variable {
	const char *name;
	int *ptr;
} debug_variables[] = {
147 148
	{ .name = "verbose",		.ptr = &verbose },
	{ .name = "ordered-events",	.ptr = &debug_ordered_events},
149
	{ .name = "stderr",		.ptr = &redirect_to_stderr},
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
	{ .name = NULL, }
};

int perf_debug_option(const char *str)
{
	struct debug_variable *var = &debug_variables[0];
	char *vstr, *s = strdup(str);
	int v = 1;

	vstr = strchr(s, '=');
	if (vstr)
		*vstr++ = 0;

	while (var->name) {
		if (!strcmp(s, var->name))
			break;
		var++;
	}

	if (!var->name) {
		pr_err("Unknown debug variable name '%s'\n", s);
		free(s);
		return -1;
	}

	if (vstr) {
		v = atoi(vstr);
		/*
		 * Allow only values in range (0, 10),
		 * otherwise set 0.
		 */
		v = (v < 0) || (v > 10) ? 0 : v;
	}

	*var->ptr = v;
	free(s);
	return 0;
}
新手
引导
客服 返回
顶部