-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.h
136 lines (106 loc) · 3.39 KB
/
debug.h
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
#ifndef SMPL_DEBUG_H
#define SMPL_DEBUG_H
#include "smpl.h"
#include <stdarg.h>
#ifdef SMPL_DEBUG
#define spDO_print spD_print
#define spDO_dectabs(S) ((S)->tabs -= 4)
#define spDO_inctabs(S) ((S)->tabs += 4)
#define spDO_incprint(S, ln, fmt, ...) \
( \
spDO_inctabs((S)), \
spDO_print((S), (ln), (fmt), ##__VA_ARGS__) \
)
#define spDO_printinc(S, ln, fmt, ...) \
( \
spDO_print((S), (ln), (fmt), ##__VA_ARGS__), \
spDO_inctabs((S)) \
)
#define spDO_decprint(S, ln, fmt, ...) \
( \
spDO_dectabs((S)), \
spDO_print((S), (ln), (fmt), ##__VA_ARGS__) \
)
#define spDO_printdec(S, ln, fmt, ...) \
( \
spDO_print((S), (ln), (fmt), ##__VA_ARGS__), \
spDO_dectabs((S)) \
)
#define spDO_asttopr spD_asttopr
#define spDO_astt2str spD_astt2str
#define spDO_printf printf
#define spDO_puts puts
/*
*
* Parser
*
*/
#define spPDO_print(S, fmt, ...) spDO_print ((S), (S)->ln - 1, (fmt), ##__VA_ARGS__)
#define spPDO_incprint(S, fmt, ...) spDO_incprint((S), (S)->ln - 1, (fmt), ##__VA_ARGS__)
#define spPDO_printinc(S, fmt, ...) spDO_printinc((S), (S)->ln - 1, (fmt), ##__VA_ARGS__)
#define spPDO_decprint(S, fmt, ...) spDO_decprint((S), (S)->ln - 1, (fmt), ##__VA_ARGS__)
#define spPDO_printdec(S, fmt, ...) spDO_printdec((S), (S)->ln - 1, (fmt), ##__VA_ARGS__)
/*
*
* Compiler
*
*/
#define spCDO_print(S, ast, fmt, ...) spDO_print ((S), (ast)->ln, (fmt), ##__VA_ARGS__)
#define spCDO_incprint(S, ast, fmt, ...) spDO_incprint((S), (ast)->ln, (fmt), ##__VA_ARGS__)
#define spCDO_printinc(S, ast, fmt, ...) spDO_printinc((S), (ast)->ln, (fmt), ##__VA_ARGS__)
#define spCDO_decprint(S, ast, fmt, ...) spDO_decprint((S), (ast)->ln, (fmt), ##__VA_ARGS__)
#define spCDO_printdec(S, ast, fmt, ...) spDO_printdec((S), (ast)->ln, (fmt), ##__VA_ARGS__)
/*
*
* Virtual Machine
*
*/
#define spVDO_print(S, pc, fmt, ...) spDO_print ((S), pc, (fmt), ##__VA_ARGS__)
#define spVDO_incprint(S, pc, fmt, ...) spDO_incprint((S), pc, (fmt), ##__VA_ARGS__)
#define spVDO_printinc(S, pc, fmt, ...) spDO_printinc((S), pc, (fmt), ##__VA_ARGS__)
#define spVDO_decprint(S, pc, fmt, ...) spDO_decprint((S), pc, (fmt), ##__VA_ARGS__)
#define spVDO_printdec(S, pc, fmt, ...) spDO_printdec((S), pc, (fmt), ##__VA_ARGS__)
#else
#define spDO_print
#define spDO_incprint
#define spDO_printinc
#define spDO_decprint
#define spDO_printdec
#define spDO_dectabs
#define spDO_inctabs
#define spDO_asttopr
#define spDO_astt2str
#define spDO_printf
#define spDO_puts
/*
*
* Parser
*
*/
#define spPDO_print(S, fmt, ...)
#define spPDO_incprint(S, fmt, ...)
#define spPDO_printinc(S, fmt, ...)
#define spPDO_decprint(S, fmt, ...)
#define spPDO_printdec(S, fmt, ...)
/*
*
* Compiler
*
*/
#define spCDO_print(S, ast, fmt, ...)
#define spCDO_incprint(S, ast, fmt, ...)
#define spCDO_printinc(S, ast, fmt, ...)
#define spCDO_decprint(S, ast, fmt, ...)
#define spCDO_printdec(S, ast, fmt, ...)
/*
*
* Virtual Machine
*
*/
#define spVDO_print(S, pc, fmt, ...)
#define spVDO_incprint(S, pc, fmt, ...)
#define spVDO_printinc(S, pc, fmt, ...)
#define spVDO_decprint(S, pc, fmt, ...)
#define spVDO_printdec(S, pc, fmt, ...)
#endif
#endif // SMPL_DEBUG_H