1 /* Pixman uses some non-standard compiler features. This file ensures
6 * FUNC must be defined to expand to the current function
7 * PIXMAN_EXPORT should be defined to whatever is required to
8 * export functions from a shared library
9 * limits limits for various types must be defined
10 * inline must be defined
11 * force_inline must be defined
13 #if defined (__GNUC__)
14 # define FUNC ((const char*) (__PRETTY_FUNCTION__))
15 #elif defined (__sun) || (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
16 # define FUNC ((const char*) (__func__))
18 # define FUNC ((const char*) ("???"))
22 # define INT16_MIN (-32767-1)
26 # define INT16_MAX (32767)
30 # define INT32_MIN (-2147483647-1)
34 # define INT32_MAX (2147483647)
38 # define UINT32_MIN (0)
42 # define UINT32_MAX (4294967295U)
46 # define M_PI 3.14159265358979323846
50 /* 'inline' is available only in C++ in MSVC */
51 # define inline __inline
52 # define force_inline __forceinline
53 #elif defined __GNUC__ || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
54 # define inline __inline__
55 # define force_inline __inline__ __attribute__ ((__always_inline__))
58 # define force_inline inline
63 #if defined(__GNUC__) && __GNUC__ >= 4
64 # define PIXMAN_EXPORT __attribute__ ((visibility("default")))
65 /* Sun Studio 8 visibility */
66 #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
67 # define PIXMAN_EXPORT __global
69 # define PIXMAN_EXPORT
73 #if defined(TOOLCHAIN_SUPPORTS__THREAD)
75 # define PIXMAN_DEFINE_THREAD_LOCAL(type, name) \
76 static __thread type name
77 # define PIXMAN_GET_THREAD_LOCAL(name) \
80 #elif defined(_MSC_VER)
82 # define PIXMAN_DEFINE_THREAD_LOCAL(type, name) \
83 static __declspec(thread) type name
84 # define PIXMAN_GET_THREAD_LOCAL(name) \
87 #elif defined(HAVE_PTHREAD_SETSPECIFIC)
91 # define PIXMAN_DEFINE_THREAD_LOCAL(type, name) \
92 static pthread_once_t tls_ ## name ## _once_control = PTHREAD_ONCE_INIT; \
93 static pthread_key_t tls_ ## name ## _key; \
96 tls_ ## name ## _make_key (void) \
98 pthread_key_create (&tls_ ## name ## _key, NULL); \
102 tls_ ## name ## _alloc (void) \
104 type *value = calloc (1, sizeof (type)); \
106 pthread_setspecific (tls_ ## name ## _key, value); \
110 static force_inline type * \
111 tls_ ## name ## _get (void) \
113 type *value = NULL; \
114 if (pthread_once (&tls_ ## name ## _once_control, \
115 tls_ ## name ## _make_key) == 0) \
117 value = pthread_getspecific (tls_ ## name ## _key); \
119 value = tls_ ## name ## _alloc (); \
124 # define PIXMAN_GET_THREAD_LOCAL(name) \
125 tls_ ## name ## _get ()
129 # error "Unknown thread local support for this system"