Cell: checkpoint: start to SIMD-ize texture sampling
[mesa.git] / src / mesa / pipe / p_compiler.h
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
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 TUNGSTEN GRAPHICS 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 P_COMPILER_H
29 #define P_COMPILER_H
30
31 #include <assert.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <stdio.h>
35
36
37 #if defined(_WIN32) && !defined(__WIN32__)
38 #define __WIN32__
39 #endif
40
41 #if defined(_MSC_VER) && !defined(__MSC__)
42 #define __MSC__
43 #endif
44
45
46 typedef unsigned int uint;
47 typedef unsigned char ubyte;
48 typedef unsigned char boolean;
49 typedef unsigned short ushort;
50 typedef unsigned long long uint64;
51
52
53 #if defined(__MSC__)
54
55 typedef char int8_t;
56 typedef unsigned char uint8_t;
57 typedef short int16_t;
58 typedef unsigned short uint16_t;
59 typedef long int32_t;
60 typedef unsigned long uint32_t;
61 typedef long long int64_t;
62 typedef unsigned long long uint64_t;
63
64 #if defined(_WIN64)
65 typedef unsigned __int64 uintptr_t;
66 #else
67 typedef unsigned int uintptr_t;
68 #endif
69
70 #else
71 #include <stdint.h>
72 #endif
73
74
75 #define TRUE 1
76 #define FALSE 0
77
78
79 /* Function inlining */
80 #if defined(__GNUC__)
81 # define INLINE __inline__
82 #elif defined(__MSC__)
83 # define INLINE __inline
84 #elif defined(__ICL)
85 # define INLINE __inline
86 #elif defined(__INTEL_COMPILER)
87 # define INLINE inline
88 #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100)
89 # define INLINE __inline
90 #else
91 # define INLINE
92 #endif
93
94
95 #if defined __GNUC__
96 #define ALIGN16_DECL(TYPE, NAME, SIZE) TYPE NAME##___aligned[SIZE] __attribute__(( aligned( 16 ) ))
97 #define ALIGN16_ASSIGN(NAME) NAME##___aligned
98 #define ALIGN16_ATTRIB __attribute__(( aligned( 16 ) ))
99 #else
100 #define ALIGN16_DECL(TYPE, NAME, SIZE) TYPE NAME##___unaligned[SIZE + 1]
101 #define ALIGN16_ASSIGN(NAME) align16(NAME##___unaligned)
102 #define ALIGN16_ATTRIB
103 #endif
104
105
106
107 /** For calling code-gen'd functions */
108 #if !defined(XSTDCALL)
109 #if defined(WIN32)
110 #define XSTDCALL __stdcall
111 #else
112 #define XSTDCALL
113 #endif
114 #endif
115
116
117 #endif /* P_COMPILER_H */