2e2f90f587c08c1364606ded52fa47bde0f911a0
[mesa.git] / src / util / macros.h
1 /*
2 * Copyright © 2014 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #ifndef UTIL_MACROS_H
25 #define UTIL_MACROS_H
26
27 /* Compute the size of an array */
28 #ifndef ARRAY_SIZE
29 # define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x)))
30 #endif
31
32
33 /**
34 * __builtin_expect macros
35 */
36 #if !defined(HAVE___BUILTIN_EXPECT)
37 # define __builtin_expect(x, y) (x)
38 #endif
39
40 #ifndef likely
41 # ifdef HAVE___BUILTIN_EXPECT
42 # define likely(x) __builtin_expect(!!(x), 1)
43 # define unlikely(x) __builtin_expect(!!(x), 0)
44 # else
45 # define likely(x) (x)
46 # define unlikely(x) (x)
47 # endif
48 #endif
49
50
51 /**
52 * Static (compile-time) assertion.
53 * Basically, use COND to dimension an array. If COND is false/zero the
54 * array size will be -1 and we'll get a compilation error.
55 */
56 #define STATIC_ASSERT(COND) \
57 do { \
58 (void) sizeof(char [1 - 2*!(COND)]); \
59 } while (0)
60
61
62 /**
63 * Unreachable macro. Useful for suppressing "control reaches end of non-void
64 * function" warnings.
65 */
66 #ifdef HAVE___BUILTIN_UNREACHABLE
67 #define unreachable(str) \
68 do { \
69 assert(!str); \
70 __builtin_unreachable(); \
71 } while (0)
72 #endif
73
74 #ifndef unreachable
75 #define unreachable(str)
76 #endif
77
78
79 #if (__GNUC__ >= 3)
80 #define PRINTFLIKE(f, a) __attribute__ ((format(__printf__, f, a)))
81 #else
82 #define PRINTFLIKE(f, a)
83 #endif
84
85
86 /* Used to optionally mark structures with misaligned elements or size as
87 * packed, to trade off performance for space.
88 */
89 #if (__GNUC__ >= 3)
90 #define PACKED __attribute__((__packed__))
91 #else
92 #define PACKED
93 #endif
94
95
96 #ifdef __cplusplus
97 /**
98 * Macro function that evaluates to true if T is a trivially
99 * destructible type -- that is, if its (non-virtual) destructor
100 * performs no action and all member variables and base classes are
101 * trivially destructible themselves.
102 */
103 # if defined(__GNUC__)
104 # if ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)))
105 # define HAS_TRIVIAL_DESTRUCTOR(T) __has_trivial_destructor(T)
106 # endif
107 # elif (defined(__clang__) && defined(__has_feature))
108 # if __has_feature(has_trivial_destructor)
109 # define HAS_TRIVIAL_DESTRUCTOR(T) __has_trivial_destructor(T)
110 # endif
111 # endif
112 # ifndef HAS_TRIVIAL_DESTRUCTOR
113 /* It's always safe (if inefficient) to assume that a
114 * destructor is non-trivial.
115 */
116 # define HAS_TRIVIAL_DESTRUCTOR(T) (false)
117 # endif
118 #endif
119
120 #endif /* UTIL_MACROS_H */