-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdebug.h
More file actions
executable file
·182 lines (141 loc) · 3.74 KB
/
debug.h
File metadata and controls
executable file
·182 lines (141 loc) · 3.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
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
#ifndef __DEBUG_H__
#define __DEBUG_H__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
extern int DEBUG_LEVEL;
extern int ASSERT_LEVEL;
extern FILE *DEBUG_FILE;
#define __DEBUG_FILE__ DEBUG_FILE
#define warn(...) \
{ fprintf(__DEBUG_FILE__, __VA_ARGS__); fflush(__DEBUG_FILE__); }
#ifndef H_DISABLE_DEBUG
/*
#define __debug__(...) \
{ fprintf(__DEBUG_FILE__, __VA_ARGS__); fflush(__DEBUG_FILE__); }
*/
#define __debug__(...) \
{ printf(__VA_ARGS__);}
#else
#define __debug__(...) \
{;}
#endif
#define debug(...) \
if (DEBUG_LEVEL) \
__debug__(__VA_ARGS__);
#define debug1(...) \
if (DEBUG_LEVEL >= 1) \
__debug__(__VA_ARGS__);
#define debug2(...) \
if (DEBUG_LEVEL >= 2) \
__debug__(__VA_ARGS__);
#define debug3(...) \
if (DEBUG_LEVEL >= 3) \
__debug__(__VA_ARGS__);
#define debug4(...) \
if (DEBUG_LEVEL >= 4) \
__debug__(__VA_ARGS__);
#ifndef NDEBUG
#define __assert__(cond) \
if (!(cond)) { \
fprintf(stderr, "%s:%d: %s: Assertion `%s' failed.\n", \
__FILE__, __LINE__, __FUNCTION__, #cond); \
abort(); \
}
#else
#define __assert__(cond)
#endif
#ifndef NDEBUG
#undef assert
#define assert(cond) \
__assert__(cond)
#define assert1(cond) \
if (ASSERT_LEVEL >= 1) __assert__(cond)
#define assert2(cond) \
if (ASSERT_LEVEL >= 2) __assert__(cond)
#define assert3(cond) \
if (ASSERT_LEVEL >= 3) __assert__(cond)
#define assert4(cond) \
if (ASSERT_LEVEL >= 4) __assert__(cond)
#ifndef NDEBUG
#define __assert_msg__(cond, ...) \
if (!(cond)) { \
fprintf(stderr, "%s:%d: %s: Assertion `%s' failed.\n", \
__FILE__, __LINE__, __FUNCTION__, #cond); \
fprintf(stderr, __VA_ARGS__); \
fprintf(stderr, "\n"); \
abort(); \
}
#else
#define __assert_msg__(cond, ...)
#endif
#define assert_msg(cond, ...) \
__assert_msg__(cond, __VA_ARGS__)
#define assert1_msg(cond, ...) \
if (ASSERT_LEVEL >= 1) __assert_msg__(cond, __VA_ARGS__)
#define assert2_msg(cond, ...) \
if (ASSERT_LEVEL >= 2) __assert_msg__(cond, __VA_ARGS__)
#define assert3_msg(cond, ...) \
if (ASSERT_LEVEL >= 3) __assert_msg__(cond, __VA_ARGS__)
#define assert4_msg(cond, ...) \
if (ASSERT_LEVEL >= 4) __assert_msg__(cond, __VA_ARGS__)
#else
#undef assert
#define assert(...)
#define assert1(...)
#define assert2(...)
#define assert3(...)
#define assert4(...)
#define assert_msg(...)
#define assert1_msg(...)
#define assert2_msg(...)
#define assert3_msg(...)
#define assert4_msg(...)
#endif
#ifndef DISABLE_DISASM
/*
extern "C" {
#include "xed-interface.h"
}
*/
/*
static const char *disasm(unsigned char *addr) {
xed_state_t dstate;
xed_decoded_inst_t xedd;
static char buf[1024];
xed_tables_init();
xed_state_zero(&dstate);
xed_state_init(&dstate,
XED_MACHINE_MODE_LEGACY_32,
XED_ADDRESS_WIDTH_32b,
XED_ADDRESS_WIDTH_32b);
xed_decoded_inst_zero_set_mode(&xedd, &dstate);
xed_decode(&xedd, (const xed_uint8_t*) addr, 16);
// With Pin 2.13, we used xed_decoded_inst_dump_att_format, but it
// appears to have been removed in the version of XED distributed
// with Pin 2.14.
xed_decoded_inst_dump(&xedd, buf, sizeof(buf));
return buf;
}
*/
#endif
/*
static const char *rawbytes(void *a, size_t len) {
static char buf[1024];
unsigned char *ptr = (unsigned char *) a;
assert(len * 4 + 1 < sizeof(buf));
buf[0] = '\0';
for (size_t i = 0; i < len; i++) {
char tmp[5];
sprintf(tmp, "\\x%.2x", ptr[i]);
strcat(buf, tmp);
}
return buf;
}
*/
#endif // __DEBUG_H__
// Local Variables:
// c-basic-offset: 4
// compile-command: "dchroot -c typeinfer -d make"
// End: