]> wimlib.net Git - wimlib/blob - include/wimlib/compiler-gcc.h
db6e3249b68ee92d06335bb02bb4a73460907198
[wimlib] / include / wimlib / compiler-gcc.h
1 /*
2  * compiler-gcc.h
3  *
4  * The author dedicates this file to the public domain.
5  * You can do whatever you want with this file.
6  */
7
8 #ifndef _WIMLIB_COMPILER_GCC_H
9 #define _WIMLIB_COMPILER_GCC_H
10
11 #ifdef __WIN32__
12 #  define WIMLIBAPI __declspec(dllexport)
13 #else
14 #  define WIMLIBAPI __attribute__((visibility("default")))
15 #endif
16
17 #define _packed_attribute       __attribute__((packed))
18 #define _aligned_attribute(n)   __attribute__((aligned(n)))
19 #define _may_alias_attribute    __attribute__((may_alias))
20 #define likely(expr)            __builtin_expect(!!(expr), 1)
21 #define unlikely(expr)          __builtin_expect(!!(expr), 0)
22 #define prefetch(addr)          __builtin_prefetch(addr)
23 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
24 #  define _cold_attribute       __attribute__((cold))
25 #endif
26 #define _malloc_attribute       __attribute__((malloc))
27 #define inline                  inline __attribute__((always_inline))
28
29 #define CPU_IS_BIG_ENDIAN       (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)
30
31 #if defined(__x86_64__) || defined(__i386__)
32 #  define UNALIGNED_ACCESS_SPEED 3
33 #elif defined(__ARM_FEATURE_UNALIGNED) && (__ARM_FEATURE_UNALIGNED == 1)
34 #  define UNALIGNED_ACCESS_SPEED 2
35 #else
36 #  define UNALIGNED_ACCESS_SPEED 0
37 #endif
38
39 #define typeof     __typeof__
40
41 #ifndef min
42 #  define min(a, b)  ({ typeof(a) _a = (a); typeof(b) _b = (b); \
43                         (_a < _b) ? _a : _b; })
44 #endif
45
46 #ifndef max
47 #  define max(a, b)  ({ typeof(a) _a = (a); typeof(b) _b = (b); \
48                         (_a > _b) ? _a : _b; })
49 #endif
50
51 #ifndef swap
52 #  define swap(a, b) ({ typeof(a) _a = (a); (a) = (b); (b) = _a; })
53 #endif
54
55 #if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
56 #  define compiler_bswap32 __builtin_bswap32
57 #  define compiler_bswap64 __builtin_bswap64
58 #endif
59
60 #if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
61 #  define compiler_bswap16 __builtin_bswap16
62 #endif
63
64 #define compiler_fls32(n)       (31 - __builtin_clz(n))
65 #define compiler_fls64(n)       (63 - __builtin_clzll(n))
66 #define compiler_ffs32(n)       __builtin_ctz(n)
67 #define compiler_ffs64(n)       __builtin_ctzll(n)
68
69 #endif /* _WIMLIB_COMPILER_GCC_H */