1 /**************************************************************************
3 * Copyright 2007-2008 VMware, Inc.
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:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
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.
26 **************************************************************************/
32 #include "c99_compat.h" /* inline, __func__, etc. */
36 #include "util/macros.h"
45 #if defined(_WIN32) && !defined(__WIN32__)
51 /* Avoid 'expression is always true' warning */
52 #pragma warning(disable: 4296)
58 * Alternative stdint.h and stdbool.h headers are supplied in include/c99 for
59 * systems that lack it.
61 #ifndef __STDC_LIMIT_MACROS
62 #define __STDC_LIMIT_MACROS 1
73 #if !defined(__HAIKU__) && !defined(__USE_MISC)
74 #if !defined(PIPE_OS_ANDROID)
75 typedef unsigned int uint
;
77 typedef unsigned short ushort
;
79 typedef unsigned char ubyte
;
81 typedef unsigned char boolean
;
91 #define va_copy(dest, src) __va_copy((dest), (src))
93 #define va_copy(dest, src) (dest) = (src)
97 /* Forced function inlining */
100 # define ALWAYS_INLINE inline __attribute__((always_inline))
101 # elif defined(_MSC_VER)
102 # define ALWAYS_INLINE __forceinline
104 # define ALWAYS_INLINE inline
109 /* XXX: Use standard `__func__` instead */
111 # define __FUNCTION__ __func__
115 /* This should match linux gcc cdecl semantics everywhere, so that we
116 * just codegen one calling convention on all platforms.
119 #define PIPE_CDECL __cdecl
126 #if defined(__GNUC__)
127 #define PIPE_DEPRECATED __attribute__((__deprecated__))
129 #define PIPE_DEPRECATED
134 /* Macros for data alignment. */
135 #if defined(__GNUC__)
137 /* See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Type-Attributes.html */
138 #define PIPE_ALIGN_TYPE(_alignment, _type) _type __attribute__((aligned(_alignment)))
140 /* See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Variable-Attributes.html */
141 #define PIPE_ALIGN_VAR(_alignment) __attribute__((aligned(_alignment)))
143 #if defined(__GNUC__) && !defined(PIPE_ARCH_X86_64)
144 #define PIPE_ALIGN_STACK __attribute__((force_align_arg_pointer))
146 #define PIPE_ALIGN_STACK
149 #elif defined(_MSC_VER)
151 /* See http://msdn.microsoft.com/en-us/library/83ythb65.aspx */
152 #define PIPE_ALIGN_TYPE(_alignment, _type) __declspec(align(_alignment)) _type
153 #define PIPE_ALIGN_VAR(_alignment) __declspec(align(_alignment))
155 #define PIPE_ALIGN_STACK
159 #define PIPE_ALIGN_TYPE(_alignment, _type) _type
160 #define PIPE_ALIGN_VAR(_alignment)
162 #define PIPE_ALIGN_STACK
166 #error "Unsupported compiler"
171 #if defined(__GNUC__)
173 #define PIPE_READ_WRITE_BARRIER() __asm__("":::"memory")
175 #elif defined(_MSC_VER)
177 void _ReadWriteBarrier(void);
178 #pragma intrinsic(_ReadWriteBarrier)
179 #define PIPE_READ_WRITE_BARRIER() _ReadWriteBarrier()
183 #warning "Unsupported compiler"
184 #define PIPE_READ_WRITE_BARRIER() /* */
188 #if defined(__cplusplus)
193 #endif /* P_COMPILER_H */