summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/ggi/include/ggi/mesa/debug.h
blob: f461fee72c614a6cd50d3b1302135e6296422887 (plain)
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/* 
******************************************************************************

   GGIMesa debugging macros

   Copyright (C) 1998-1999 Marcus Sundberg	[marcus@ggi-project.org]
   Copyright (C) 1999-2000 Jon Taylor		[taylorj@ggi-project.org]
  
   Permission is hereby granted, free of charge, to any person obtaining a
   copy of this software and associated documentation files (the "Software"),
   to deal in the Software without restriction, including without limitation
   the rights to use, copy, modify, merge, publish, distribute, sublicense,
   and/or sell copies of the Software, and to permit persons to whom the
   Software is furnished to do so, subject to the following conditions:

   The above copyright notice and this permission notice shall be included in
   all copies or substantial portions of the Software.

   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
   THE AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
   IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
   CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

******************************************************************************
*/

#ifndef _GGI_MESA_INTERNAL_DEBUG_H
#define _GGI_MESA_INTERNAL_DEBUG_H

#include <stdio.h>
#include <stdarg.h>
#include <ggi/types.h>
#include <ggi/gg.h>

#ifndef DEBUG
#define DEBUG
#endif

__BEGIN_DECLS

/* Exported variables */
#ifdef BUILDING_GGIMESA
extern uint32     _ggimesaDebugState;
extern int        _ggimesaDebugSync;
#else
IMPORTVAR uint32  _ggimesaDebugState;
IMPORTVAR int     _ggimesaDebugSync;
#endif

__END_DECLS


/* Debugging types
 * bit 0 is reserved! */

#define GGIMESADEBUG_CORE		(1<<1)	/*   2 */
#define GGIMESADEBUG_MODE		(1<<2)	/*   4 */
#define GGIMESADEBUG_COLOR		(1<<3)	/*   8 */
#define GGIMESADEBUG_DRAW		(1<<4)	/*  16 */
#define GGIMESADEBUG_MISC		(1<<5)	/*  32 */
#define GGIMESADEBUG_LIBS		(1<<6)	/*  64 */
#define GGIMESADEBUG_EVENTS		(1<<7)	/* 128 */

#define GGIMESADEBUG_ALL	0xffffffff

#ifdef __GNUC__

#ifdef DEBUG
#define GGIMESADPRINT(args...)		if (_ggimesaDebugState) { ggDPrintf(_ggimesaDebugSync, "GGIMesa",args); }
#define GGIMESADPRINT_CORE(args...)	if (_ggimesaDebugState & GGIMESADEBUG_CORE) { ggDPrintf(_ggimesaDebugSync,"GGIMesa",args); }
#define GGIMESADPRINT_MODE(args...)	if (_ggimesaDebugState & GGIMESADEBUG_MODE) { ggDPrintf(_ggimesaDebugSync,"GGIMesa",args); }
#define GGIMESADPRINT_COLOR(args...)	if (_ggimesaDebugState & GGIMESADEBUG_COLOR) { ggDPrintf(_ggimesaDebugSync,"GGIMesa",args); }
#define GGIMESADPRINT_DRAW(args...)	if (_ggimesaDebugState & GGIMESADEBUG_DRAW) { ggDPrintf(_ggimesaDebugSync,"GGIMesa",args); }
#define GGIMESADPRINT_MISC(args...)	if (_ggimesaDebugState & GGIMESADEBUG_MISC) { ggDPrintf(_ggimesaDebugSync,"GGIMesa",args); }
#define GGIMESADPRINT_LIBS(args...)	if (_ggimesaDebugState & GGIMESADEBUG_LIBS) { ggDPrintf(_ggimesaDebugSync,"GGIMesa",args); }
#define GGIMESADPRINT_EVENTS(args...)	if (_ggimesaDebugState & GGIMESADEBUG_EVENTS) { ggDPrintf(_ggimesaDebugSync,"GGIMesa",args); }
#else /* DEBUG */
#define GGIMESADPRINT(args...)		do{}while(0)
#define GGIMESADPRINT_CORE(args...)	do{}while(0)
#define GGIMESADPRINT_MODE(args...)	do{}while(0)
#define GGIMESADPRINT_COLOR(args...)	do{}while(0)
#define GGIMESADPRINT_DRAW(args...)	do{}while(0)
#define GGIMESADPRINT_MISC(args...)	do{}while(0)
#define GGIMESADPRINT_LIBS(args...)	do{}while(0)
#define GGIMESADPRINT_EVENTS(args...)	do{}while(0)
#endif /* DEBUG */

#else /* __GNUC__ */

__BEGIN_DECLS

static inline void GGIMESADPRINT(const char *form,...)
{
#ifdef DEBUG
	if (_ggiDebugState) {
		va_list args;

		fprintf(stderr, "GGIMesa: ");
		va_start(args, form);
		vfprintf(stderr, form, args);
		va_end(args);
		if (_ggimesaDebugSync) fflush(stderr);
	}
#endif
}

static inline void GGIMESADPRINT_CORE(const char *form,...)
{
#ifdef DEBUG
	if (_ggiDebugState & GGIDEBUG_CORE) {
		va_list args;

		fprintf(stderr, "GGIMesa: ");
		va_start(args, form);
		vfprintf(stderr, form, args);
		va_end(args);
		if (_ggimesaDebugSync) fflush(stderr);
	}
#endif
}

static inline void GGIMESADPRINT_MODE(const char *form,...)
{
#ifdef DEBUG
	if (_ggiDebugState & GGIDEBUG_MODE) {
		va_list args;

		fprintf(stderr, "GGIMesa: ");
		va_start(args, form);
		vfprintf(stderr, form, args);
		va_end(args);
		if (_ggimesaDebugSync) fflush(stderr);
	}
#endif
}

static inline void GGIMESADPRINT_COLOR(const char *form,...)
{
#ifdef DEBUG
	if (_ggiDebugState & GGIDEBUG_COLOR) {
		va_list args;

		fprintf(stderr, "GGIMesa: ");
		va_start(args, form);
		vfprintf(stderr, form, args);
		va_end(args);
		if (_ggimesaDebugSync) fflush(stderr);
	}
#endif
}

static inline void GGIMESADPRINT_DRAW(const char *form,...)
{
#ifdef DEBUG
	if (_ggiDebugState & GGIDEBUG_DRAW) {
		va_list args;

		fprintf(stderr, "GGIMesa: ");
		va_start(args, form);
		vfprintf(stderr, form, args);
		va_end(args);
		if (_ggimesaDebugSync) fflush(stderr);
	}
#endif
}

static inline void GGIMESADPRINT_MISC(const char *form,...)
{
#ifdef DEBUG
	if (_ggiDebugState & GGIDEBUG_MISC) {
		va_list args;

		fprintf(stderr, "GGIMesa: ");
		va_start(args, form);
		vfprintf(stderr, form, args);
		va_end(args);
		if (_ggimesaDebugSync) fflush(stderr);
	}
#endif
}

static inline void GGIMESADPRINT_LIBS(const char *form,...)
{
#ifdef DEBUG
	if (_ggiDebugState & GGIDEBUG_LIBS) {
		va_list args;

		fprintf(stderr, "GGIMesa: ");
		va_start(args, form);
		vfprintf(stderr, form, args);
		va_end(args);
		if (_ggimesaDebugSync) fflush(stderr);
	}
#endif
}

static inline void GGIMESADPRINT_EVENTS(const char *form,...)
{
#ifdef DEBUG
	if (_ggiDebugState & GGIDEBUG_EVENTS) {
		va_list args;

		fprintf(stderr, "GGIMesa: ");
		va_start(args, form);
		vfprintf(stderr, form, args);
		va_end(args);
		if (_ggimesaDebugSync) fflush(stderr);
	}
#endif
}

__END_DECLS

#endif /* __GNUC__ */

#ifdef DEBUG
#define GGIMESA_ASSERT(x,str) \
{ if (!(x)) { \
	fprintf(stderr,"GGIMESA:%s:%d: INTERNAL ERROR: %s\n",__FILE__,__LINE__,str); \
	exit(1); \
} }
#define GGIMESA_APPASSERT(x,str) \
{ if (!(x)) { \
	fprintf(stderr,"GGIMESA:%s:%d: APPLICATION ERROR: %s\n",__FILE__,__LINE__,str); \
	exit(1); \
} }
#else /* DEBUG */
#define GGIMESA_ASSERT(x,str)	do{}while(0)
#define GGIMESA_APPASSERT(x,str)	do{}while(0)
#endif /* DEBUG */

#ifdef DEBUG
# define GGIMESAD0(x)	x
#else
# define GGIMESAD0(x)	/* empty */
#endif

#ifdef GGIMESADLEV
# if GGIMESADLEV == 1
#  define GGIMESAD1(x)	x
#  define GGIMESAD2(x)	/* empty */
#  define GGIMESAD3(x)	/* empty */
# elif GGIMESADLEV == 2
#  define GGIMESAD1(x)	x
#  define GGIMESAD2(x)	x
#  define GGIMESAD3(x)	/* empty */
# elif GGIMESADLEV > 2
#  define GGIMESAD1(x)	x
#  define GGIMESAD2(x)	x
#  define GGIMESAD3(x)	x
# endif
#else
# define GGIMESAD1(x)	/* empty */
# define GGIMESAD2(x)	/* empty */
# define GGIMESAD3(x)	/* empty */
#endif

#endif /* _GGI_MESA_INTERNAL_DEBUG_H */