55152fdefaf968464e67d02ed7787e681bbc91b0
[mesa.git] / src / mesa / main / compiler.h
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
5 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
27 /**
28 * \file compiler.h
29 * Compiler-related stuff.
30 */
31
32
33 #ifndef COMPILER_H
34 #define COMPILER_H
35
36
37 #include <assert.h>
38
39 #include "util/macros.h"
40
41 #include "c99_compat.h" /* inline, __func__, etc. */
42
43
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47
48
49 /**
50 * Sun compilers define __i386 instead of the gcc-style __i386__
51 */
52 #ifdef __SUNPRO_C
53 # if !defined(__i386__) && defined(__i386)
54 # define __i386__
55 # elif !defined(__amd64__) && defined(__amd64)
56 # define __amd64__
57 # elif !defined(__sparc__) && defined(__sparc)
58 # define __sparc__
59 # endif
60 #endif
61
62
63 /* XXX: Use standard `__func__` instead */
64 #ifndef __FUNCTION__
65 # define __FUNCTION__ __func__
66 #endif
67
68 /**
69 * Either define MESA_BIG_ENDIAN or MESA_LITTLE_ENDIAN, and CPU_TO_LE32.
70 * Do not use these unless absolutely necessary!
71 * Try to use a runtime test instead.
72 * For now, only used by some DRI hardware drivers for color/texel packing.
73 */
74 #if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && BYTE_ORDER == BIG_ENDIAN
75 #if defined(__linux__)
76 #include <byteswap.h>
77 #define CPU_TO_LE32( x ) bswap_32( x )
78 #elif defined(__APPLE__)
79 #include <CoreFoundation/CFByteOrder.h>
80 #define CPU_TO_LE32( x ) CFSwapInt32HostToLittle( x )
81 #elif defined(__OpenBSD__)
82 #include <sys/types.h>
83 #define CPU_TO_LE32( x ) htole32( x )
84 #else /*__linux__ */
85 #include <sys/endian.h>
86 #define CPU_TO_LE32( x ) bswap32( x )
87 #endif /*__linux__*/
88 #define MESA_BIG_ENDIAN 1
89 #else
90 #define CPU_TO_LE32( x ) ( x )
91 #define MESA_LITTLE_ENDIAN 1
92 #endif
93 #define LE32_TO_CPU( x ) CPU_TO_LE32( x )
94
95
96
97 #define IEEE_ONE 0x3f800000
98
99
100 #ifdef __cplusplus
101 }
102 #endif
103
104
105 #endif /* COMPILER_H */