r100: Use shared debug code.
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_debug.h
1 /*
2 * Copyright © 2009 Pauli Nieminen
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
16 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
17 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
19 * USE OR OTHER DEALINGS IN THE SOFTWARE.
20 *
21 * The above copyright notice and this permission notice (including the
22 * next paragraph) shall be included in all copies or substantial portions
23 * of the Software.
24 */
25 /*
26 * Authors:
27 * Pauli Nieminen <suokkos@gmail.com>
28 */
29
30 #ifndef RADEON_DEBUG_H_INCLUDED
31 #define RADEON_DEBUG_H_INCLUDED
32
33 #include <stdarg.h>
34 #include <stdio.h>
35
36 typedef enum radeon_debug_levels {
37 RADEON_CRITICAL = 0, /* Only errors */
38 RADEON_IMPORTANT = 1, /* Important warnings and messages */
39 RADEON_NORMAL = 2, /* Normal log messages usefull for debugging */
40 RADEON_VERBOSE = 3, /* Extra details to debugging */
41 RADEON_TRACE = 4 /* Log about everything that happens */
42 } radeon_debug_level_t;
43
44 /**
45 * Compile time option to change level of debugging compiled to dri driver.
46 */
47 #ifndef RADEON_DEBUG_LEVEL
48 #define RADEON_DEBUG_LEVEL RADEON_NORMAL
49 #endif
50
51 typedef enum radeon_debug_types {
52 RADEON_TEXTURE = 0x00001,
53 RADEON_STATE = 0x00002,
54 RADEON_IOCTL = 0x00004,
55 RADEON_RENDER = 0x00008,
56 RADEON_SWRENDER = 0x00010,
57 RADEON_FALLBACKS = 0x00020,
58 RADEON_VFMT = 0x00040,
59 RADEON_SHADER = 0x00080,
60 RADEON_CS = 0x00100,
61 RADEON_DRI = 0x00200,
62 RADEON_DMA = 0x00400,
63 RADEON_SANITY = 0x00800,
64 RADEON_SYNC = 0x01000,
65 RADEON_PIXEL = 0x02000,
66 RADEON_MEMORY = 0x04000,
67 RADEON_VERTS = 0x08000,
68 RADEON_GENERAL = 0x10000 /* Used for errors and warnings */
69 } radeon_debug_type_t;
70
71 extern radeon_debug_type_t radeon_enabled_debug_types;
72
73 /**
74 * Compabibility layer for old debug code
75 **/
76 #define RADEON_DEBUG radeon_enabled_debug_types
77
78 static inline int radeon_is_debug_enabled(const radeon_debug_type_t type,
79 const radeon_debug_level_t level)
80 {
81 return RADEON_DEBUG_LEVEL <= level
82 && (type & radeon_enabled_debug_types);
83 }
84
85 /**
86 * Print out debug message if channel specified by type is enabled
87 * and compile time debugging level is at least as high as level parameter
88 */
89 static inline void radeon_print(const radeon_debug_type_t type,
90 const radeon_debug_level_t level,
91 const char* message,
92 ...)
93 {
94 /* Compile out if level of message is too high */
95 if (radeon_is_debug_enabled(type, level)) {
96
97 va_list values;
98 va_start( values, message );
99 vfprintf(stderr, message, values);
100 va_end( values );
101 }
102 }
103
104 /**
105 * printf style function for writing error messages.
106 */
107 static inline void radeon_error(const char* message, ...)
108 {
109 va_list values;
110 va_start( values, message );
111 radeon_print(RADEON_GENERAL, RADEON_CRITICAL, message, values);
112 va_end( values );
113 }
114
115 /**
116 * printf style function for writing warnings.
117 */
118 static inline void radeon_warning(const char* message, ...)
119 {
120 va_list values;
121 va_start( values, message );
122 radeon_print(RADEON_GENERAL, RADEON_IMPORTANT, message, values);
123 va_end( values );
124 }
125
126
127 extern void radeon_init_debug(void);
128
129 /* From http://gcc. gnu.org/onlinedocs/gcc-3.2.3/gcc/Variadic-Macros.html .
130 I suppose we could inline this and use macro to fetch out __LINE__ and stuff in case we run into trouble
131 with other compilers ... GLUE!
132 */
133 #define WARN_ONCE(a, ...) { \
134 static int warn##__LINE__=1; \
135 if(warn##__LINE__){ \
136 radeon_warning("*********************************WARN_ONCE*********************************\n"); \
137 radeon_warning("File %s function %s line %d\n", \
138 __FILE__, __FUNCTION__, __LINE__); \
139 radeon_warning( (a), ## __VA_ARGS__);\
140 radeon_warning("***************************************************************************\n"); \
141 warn##__LINE__=0;\
142 } \
143 }
144
145
146 #endif