2 * Mesa 3-D graphics library
5 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
6 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 * Compiler-related stuff.
39 #if defined(__alpha__) && defined(CCPML)
40 #include <cpml.h> /* use Compaq's Fast Math Library on Alpha */
48 #if defined(__linux__) && defined(__i386__)
49 #include <fpu_control.h>
61 * Get standard integer types
64 typedef __int8
int8_t;
65 typedef unsigned __int8
uint8_t;
66 typedef __int16
int16_t;
67 typedef unsigned __int16
uint16_t;
68 typedef __int32
int32_t;
69 typedef unsigned __int32
uint32_t;
70 typedef __int64
int64_t;
71 typedef unsigned __int64
uint64_t;
74 typedef __int64
intptr_t;
75 typedef unsigned __int64
uintptr_t;
77 typedef __int32
intptr_t;
78 typedef unsigned __int32
uintptr_t;
81 # define INT64_C(__val) __val##i64
82 # define UINT64_C(__val) __val##ui64
89 * Sun compilers define __i386 instead of the gcc-style __i386__
92 # if !defined(__i386__) && defined(__i386)
94 # elif !defined(__amd64__) && defined(__amd64)
96 # elif !defined(__sparc__) && defined(__sparc)
99 # if !defined(__volatile)
100 # define __volatile volatile
108 #if defined(_MSC_VER)
109 # define finite _finite
110 #elif defined(__WATCOMC__)
111 # define finite _finite
116 * Disable assorted warnings
118 #if !defined(OPENSTEP) && (defined(__WIN32__) && !defined(__CYGWIN__)) && !defined(BUILD_FOR_SNAP)
119 # if !defined(__GNUC__) /* mingw environment */
120 # pragma warning( disable : 4068 ) /* unknown pragma */
121 # pragma warning( disable : 4710 ) /* function 'foo' not inlined */
122 # pragma warning( disable : 4711 ) /* function 'foo' selected for automatic inline expansion */
123 # pragma warning( disable : 4127 ) /* conditional expression is constant */
124 # if defined(MESA_MINWARN)
125 # pragma warning( disable : 4244 ) /* '=' : conversion from 'const double ' to 'float ', possible loss of data */
126 # pragma warning( disable : 4018 ) /* '<' : signed/unsigned mismatch */
127 # pragma warning( disable : 4305 ) /* '=' : truncation from 'const double ' to 'float ' */
128 # pragma warning( disable : 4550 ) /* 'function' undefined; assuming extern returning int */
129 # pragma warning( disable : 4761 ) /* integral size mismatch in argument; conversion supplied */
133 #if defined(__WATCOMC__)
134 # pragma disable_message(201) /* Disable unreachable code warnings */
142 #if defined(__GNUC__)
143 # define INLINE __inline__
144 #elif defined(__MSC__)
145 # define INLINE __inline
146 #elif defined(_MSC_VER)
147 # define INLINE __inline
149 # define INLINE __inline
150 #elif defined(__INTEL_COMPILER)
151 # define INLINE inline
152 #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
153 # define INLINE __inline
154 #elif defined(__SUNPRO_C) && defined(__C99FEATURES__)
155 # define INLINE inline
156 # define __inline inline
157 # define __inline__ inline
158 #elif (__STDC_VERSION__ >= 199901L) /* C99 */
159 # define INLINE inline
168 * If we build the library with gcc's -fvisibility=hidden flag, we'll
169 * use the PUBLIC macro to mark functions that are to be exported.
171 * We also need to define a USED attribute, so the optimizer doesn't
172 * inline a static function that we later use in an alias. - ajax
175 # if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
176 # define PUBLIC __attribute__((visibility("default")))
177 # define USED __attribute__((used))
186 * Some compilers don't like some of Mesa's const usage. In those places use
187 * CONST instead of const. Pass -DNO_CONST to compilers where this matters.
197 * __builtin_expect macros
199 #if !defined(__GNUC__)
200 # define __builtin_expect(x, y) (x)
205 # define likely(x) __builtin_expect(!!(x), 1)
206 # define unlikely(x) __builtin_expect(!!(x), 0)
208 # define likely(x) (x)
209 # define unlikely(x) (x)
214 * The __FUNCTION__ gcc variable is generally only used for debugging.
215 * If we're not using gcc, define __FUNCTION__ as a cpp symbol here.
216 * Don't define it if using a newer Windows compiler.
220 # define __FUNCTION__ "VMS$NL:"
221 # elif !defined(__GNUC__) && !defined(__xlC__) && \
222 (!defined(_MSC_VER) || _MSC_VER < 1300)
223 # if (__STDC_VERSION__ >= 199901L) /* C99 */ || \
224 (defined(__SUNPRO_C) && defined(__C99FEATURES__))
225 # define __FUNCTION__ __func__
227 # define __FUNCTION__ "<unknown>"
232 # if (__STDC_VERSION__ >= 199901L) || \
233 (defined(__SUNPRO_C) && defined(__C99FEATURES__))
234 /* __func__ is part of C99 */
235 # elif defined(_MSC_VER)
236 # if _MSC_VER >= 1300
237 # define __func__ __FUNCTION__
239 # define __func__ "<unknown>"
246 * Either define MESA_BIG_ENDIAN or MESA_LITTLE_ENDIAN, and CPU_TO_LE32.
247 * Do not use these unless absolutely necessary!
248 * Try to use a runtime test instead.
249 * For now, only used by some DRI hardware drivers for color/texel packing.
251 #if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && BYTE_ORDER == BIG_ENDIAN
252 #if defined(__linux__)
253 #include <byteswap.h>
254 #define CPU_TO_LE32( x ) bswap_32( x )
255 #elif defined(__APPLE__)
256 #include <CoreFoundation/CFByteOrder.h>
257 #define CPU_TO_LE32( x ) CFSwapInt32HostToLittle( x )
258 #elif defined(__AROS__)
259 #define CPU_TO_LE32( x ) AROS_BE2LONG( x )
260 #elif (defined(_AIX) || defined(__blrts))
261 static INLINE GLuint
CPU_TO_LE32(GLuint x
)
263 return (((x
& 0x000000ff) << 24) |
264 ((x
& 0x0000ff00) << 8) |
265 ((x
& 0x00ff0000) >> 8) |
266 ((x
& 0xff000000) >> 24));
269 #include <sys/endian.h>
270 #define CPU_TO_LE32( x ) bswap32( x )
272 #define MESA_BIG_ENDIAN 1
274 #define CPU_TO_LE32( x ) ( x )
275 #define MESA_LITTLE_ENDIAN 1
277 #define LE32_TO_CPU( x ) CPU_TO_LE32( x )
281 #if !defined(CAPI) && defined(WIN32) && !defined(BUILD_FOR_SNAP)
287 * Create a macro so that asm functions can be linked into compilers other
291 #if defined(WIN32) && !defined(BUILD_FOR_SNAP)/* was: !defined( __GNUC__ ) && !defined( VMS ) && !defined( __INTEL_COMPILER )*/
292 #define _ASMAPI __cdecl
296 #ifdef PTR_DECL_IN_FRONT
297 #define _ASMAPIP * _ASMAPI
299 #define _ASMAPIP _ASMAPI *
304 #define _NORMAPI _ASMAPI
305 #define _NORMAPIP _ASMAPIP
312 /* This is a macro on IRIX */
318 /* Turn off macro checking systems used by other libraries */
327 #if defined(__AROS__)
330 #if !defined(_WIN32_WCE)
331 #if defined(BUILD_FOR_SNAP) && defined(CHECKED)
332 # define ASSERT(X) _CHECK(X)
334 # define ASSERT(X) assert(X)
341 #define PRINTFLIKE(f, a) __attribute__ ((format(__printf__, f, a)))
343 #define PRINTFLIKE(f, a)
353 * gcc -pedantic warns about long string literals, LONGSTRING silences that.
355 #if !defined(__GNUC__)
358 # define LONGSTRING __extension__
363 #define M_PI (3.14159265358979323846)
367 #define M_E (2.7182818284590452354)
371 #define M_LOG2E (1.4426950408889634074)
374 #ifndef ONE_DIV_SQRT_LN2
375 #define ONE_DIV_SQRT_LN2 (1.201122408786449815)
379 #define FLT_MAX_EXP 128
384 * USE_IEEE: Determine if we're using IEEE floating point
386 #if defined(__i386__) || defined(__386__) || defined(__sparc__) || \
387 defined(__s390x__) || defined(__powerpc__) || \
388 defined(__x86_64__) || \
389 defined(ia64) || defined(__ia64__) || \
390 defined(__hppa__) || defined(hpux) || \
391 defined(__mips) || defined(_MIPS_ARCH) || \
392 defined(__arm__) || \
393 defined(__sh__) || defined(__m32r__) || \
394 (defined(__sun) && defined(_IEEE_754)) || \
395 (defined(__alpha__) && (defined(__IEEE_FLOAT) || !defined(VMS)))
397 #define IEEE_ONE 0x3f800000
402 * START/END_FAST_MATH macros:
404 * START_FAST_MATH: Set x86 FPU to faster, 32-bit precision mode (and save
405 * original mode to a temporary).
406 * END_FAST_MATH: Restore x86 FPU to original mode.
408 #if defined(__GNUC__) && defined(__i386__)
410 * Set the x86 FPU control word to guarentee only 32 bits of precision
411 * are stored in registers. Allowing the FPU to store more introduces
412 * differences between situations where numbers are pulled out of memory
413 * vs. situations where the compiler is able to optimize register usage.
415 * In the worst case, we force the compiler to use a memory access to
416 * truncate the float, by specifying the 'volatile' keyword.
418 /* Hardware default: All exceptions masked, extended double precision,
419 * round to nearest (IEEE compliant):
421 #define DEFAULT_X86_FPU 0x037f
422 /* All exceptions masked, single precision, round to nearest:
424 #define FAST_X86_FPU 0x003f
425 /* The fldcw instruction will cause any pending FP exceptions to be
426 * raised prior to entering the block, and we clear any pending
427 * exceptions before exiting the block. Hence, asm code has free
428 * reign over the FPU while in the fast math block.
430 #if defined(NO_FAST_MATH)
431 #define START_FAST_MATH(x) \
433 static GLuint mask = DEFAULT_X86_FPU; \
434 __asm__ ( "fnstcw %0" : "=m" (*&(x)) ); \
435 __asm__ ( "fldcw %0" : : "m" (mask) ); \
438 #define START_FAST_MATH(x) \
440 static GLuint mask = FAST_X86_FPU; \
441 __asm__ ( "fnstcw %0" : "=m" (*&(x)) ); \
442 __asm__ ( "fldcw %0" : : "m" (mask) ); \
445 /* Restore original FPU mode, and clear any exceptions that may have
446 * occurred in the FAST_MATH block.
448 #define END_FAST_MATH(x) \
450 __asm__ ( "fnclex ; fldcw %0" : : "m" (*&(x)) ); \
453 #elif defined(__WATCOMC__) && defined(__386__)
454 #define DEFAULT_X86_FPU 0x037f /* See GCC comments above */
455 #define FAST_X86_FPU 0x003f /* See GCC comments above */
456 void _watcom_start_fast_math(unsigned short *x
,unsigned short *mask
);
457 #pragma aux _watcom_start_fast_math = \
458 "fnstcw word ptr [eax]" \
459 "fldcw word ptr [ecx]" \
462 void _watcom_end_fast_math(unsigned short *x
);
463 #pragma aux _watcom_end_fast_math = \
465 "fldcw word ptr [eax]" \
468 #if defined(NO_FAST_MATH)
469 #define START_FAST_MATH(x) \
471 static GLushort mask = DEFAULT_X86_FPU; \
472 _watcom_start_fast_math(&x,&mask); \
475 #define START_FAST_MATH(x) \
477 static GLushort mask = FAST_X86_FPU; \
478 _watcom_start_fast_math(&x,&mask); \
481 #define END_FAST_MATH(x) _watcom_end_fast_math(&x)
483 #elif defined(_MSC_VER) && defined(_M_IX86)
484 #define DEFAULT_X86_FPU 0x037f /* See GCC comments above */
485 #define FAST_X86_FPU 0x003f /* See GCC comments above */
486 #if defined(NO_FAST_MATH)
487 #define START_FAST_MATH(x) do {\
488 static GLuint mask = DEFAULT_X86_FPU;\
489 __asm fnstcw word ptr [x]\
490 __asm fldcw word ptr [mask]\
493 #define START_FAST_MATH(x) do {\
494 static GLuint mask = FAST_X86_FPU;\
495 __asm fnstcw word ptr [x]\
496 __asm fldcw word ptr [mask]\
499 #define END_FAST_MATH(x) do {\
501 __asm fldcw word ptr [x]\
505 #define START_FAST_MATH(x) x = 0
506 #define END_FAST_MATH(x) (void)(x)
511 #define Elements(x) (sizeof(x)/sizeof(*(x)))
521 #endif /* COMPILER_H */