mesa: remove support for GCC older than 3.3.0
[mesa.git] / include / c99_compat.h
1 /**************************************************************************
2 *
3 * Copyright 2007-2013 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #ifndef _C99_COMPAT_H_
29 #define _C99_COMPAT_H_
30
31
32 /*
33 * MSVC hacks.
34 */
35 #if defined(_MSC_VER)
36 /*
37 * Visual Studio 2012 will complain if we define the `inline` keyword, but
38 * actually it only supports the keyword on C++.
39 *
40 * To avoid this the _ALLOW_KEYWORD_MACROS must be set.
41 */
42 # if (_MSC_VER >= 1700) && !defined(_ALLOW_KEYWORD_MACROS)
43 # define _ALLOW_KEYWORD_MACROS
44 # endif
45
46 /*
47 * XXX: MSVC has a `__restrict` keyword, but it also has a
48 * `__declspec(restrict)` modifier, so it is impossible to define a
49 * `restrict` macro without interfering with the latter. Furthermore the
50 * MSVC standard library uses __declspec(restrict) under the _CRTRESTRICT
51 * macro. For now resolve this issue by redefining _CRTRESTRICT, but going
52 * forward we should probably should stop using restrict, especially
53 * considering that our code does not obbey strict aliasing rules any way.
54 */
55 # include <crtdefs.h>
56 # undef _CRTRESTRICT
57 # define _CRTRESTRICT
58 #endif
59
60
61 /*
62 * C99 inline keyword
63 */
64 #ifndef inline
65 # ifdef __cplusplus
66 /* C++ supports inline keyword */
67 # elif defined(__GNUC__)
68 # define inline __inline__
69 # elif defined(_MSC_VER)
70 # define inline __inline
71 # elif defined(__ICL)
72 # define inline __inline
73 # elif defined(__INTEL_COMPILER)
74 /* Intel compiler supports inline keyword */
75 # elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
76 # define inline __inline
77 # elif defined(__SUNPRO_C) && defined(__C99FEATURES__)
78 /* C99 supports inline keyword */
79 # elif (__STDC_VERSION__ >= 199901L)
80 /* C99 supports inline keyword */
81 # else
82 # define inline
83 # endif
84 #endif
85
86
87 /*
88 * C99 restrict keyword
89 *
90 * See also:
91 * - http://cellperformance.beyond3d.com/articles/2006/05/demystifying-the-restrict-keyword.html
92 */
93 #ifndef restrict
94 # if (__STDC_VERSION__ >= 199901L)
95 /* C99 */
96 # elif defined(__SUNPRO_C) && defined(__C99FEATURES__)
97 /* C99 */
98 # elif defined(__GNUC__)
99 # define restrict __restrict__
100 # elif defined(_MSC_VER)
101 # define restrict __restrict
102 # else
103 # define restrict /* */
104 # endif
105 #endif
106
107
108 /*
109 * C99 __func__ macro
110 */
111 #ifndef __func__
112 # if (__STDC_VERSION__ >= 199901L)
113 /* C99 */
114 # elif defined(__SUNPRO_C) && defined(__C99FEATURES__)
115 /* C99 */
116 # elif defined(__GNUC__)
117 # define __func__ __FUNCTION__
118 # elif defined(_MSC_VER)
119 # if _MSC_VER >= 1300
120 # define __func__ __FUNCTION__
121 # else
122 # define __func__ "<unknown>"
123 # endif
124 # else
125 # define __func__ "<unknown>"
126 # endif
127 #endif
128
129
130 /* Simple test case for debugging */
131 #if 0
132 static inline const char *
133 test_c99_compat_h(const void * restrict a,
134 const void * restrict b)
135 {
136 return __func__;
137 }
138 #endif
139
140
141 #endif /* _C99_COMPAT_H_ */