debug.c 1.9 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
int verbose;
bool dump_trace = false, quiet = false;
18

19
static int _eprintf(int level, int var, const char *fmt, va_list args)
20 21 22
{
	int ret = 0;

23
	if (var >= level) {
24
		if (use_browser >= 1)
25
			ui_helpline__vshow(fmt, args);
26 27
		else
			ret = vfprintf(stderr, fmt, args);
28 29 30 31
	}

	return ret;
}
32

33
int eprintf(int level, int var, const char *fmt, ...)
34 35 36 37 38
{
	va_list args;
	int ret;

	va_start(args, fmt);
39
	ret = _eprintf(level, var, fmt, args);
40 41 42 43 44 45 46 47 48 49 50 51 52 53
	va_end(args);

	return ret;
}

/*
 * Overloading libtraceevent standard info print
 * function, display with -v in perf.
 */
void pr_stat(const char *fmt, ...)
{
	va_list args;

	va_start(args, fmt);
54
	_eprintf(1, verbose, fmt, args);
55
	va_end(args);
56
	eprintf(1, verbose, "\n");
57 58
}

59 60 61 62 63 64 65 66 67 68 69 70 71
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;
}
72

73
void trace_event(union perf_event *event)
74 75 76 77 78 79 80 81
{
	unsigned char *raw_event = (void *)event;
	const char *color = PERF_COLOR_BLUE;
	int i, j;

	if (!dump_trace)
		return;

82 83 84
	printf(".");
	color_fprintf(stdout, color, "\n. ... raw event: size %d bytes\n",
		      event->header.size);
85 86 87

	for (i = 0; i < event->header.size; i++) {
		if ((i & 15) == 0) {
88 89
			printf(".");
			color_fprintf(stdout, color, "  %04x: ", i);
90 91
		}

92
		color_fprintf(stdout, color, " %02x", raw_event[i]);
93 94

		if (((i & 15) == 15) || i == event->header.size-1) {
95
			color_fprintf(stdout, color, "  ");
96
			for (j = 0; j < 15-(i & 15); j++)
97
				color_fprintf(stdout, color, "   ");
98
			for (j = i & ~15; j <= i; j++) {
99 100 101
				color_fprintf(stdout, color, "%c",
					      isprint(raw_event[j]) ?
					      raw_event[j] : '.');
102
			}
103
			color_fprintf(stdout, color, "\n");
104 105
		}
	}
106
	printf(".\n");
107
}