1
2#ifndef _TOOLS_LINUX_COMPILER_H_
3#define _TOOLS_LINUX_COMPILER_H_
4
5#include <linux/compiler_types.h>
6
7#ifndef __compiletime_error
8# define __compiletime_error(message)
9#endif
10
11#ifdef __OPTIMIZE__
12# define __compiletime_assert(condition, msg, prefix, suffix) \
13 do { \
14 extern void prefix ## suffix(void) __compiletime_error(msg); \
15 if (!(condition)) \
16 prefix ## suffix(); \
17 } while (0)
18#else
19# define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0)
20#endif
21
22#define _compiletime_assert(condition, msg, prefix, suffix) \
23 __compiletime_assert(condition, msg, prefix, suffix)
24
25
26
27
28
29
30
31
32
33
34#define compiletime_assert(condition, msg) \
35 _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__)
36
37
38
39#define barrier() __asm__ __volatile__("": : :"memory")
40
41#ifndef __always_inline
42# define __always_inline inline __attribute__((always_inline))
43#endif
44
45#ifndef noinline
46#define noinline
47#endif
48
49
50#ifndef __same_type
51# define __same_type(a, b) __builtin_types_compatible_p(typeof(a), typeof(b))
52#endif
53
54#ifdef __ANDROID__
55
56
57
58
59
60
61#undef __always_inline
62#define __always_inline inline
63#endif
64
65#define __user
66#define __rcu
67#define __read_mostly
68
69#ifndef __attribute_const__
70# define __attribute_const__
71#endif
72
73#ifndef __maybe_unused
74# define __maybe_unused __attribute__((unused))
75#endif
76
77#ifndef __used
78# define __used __attribute__((__unused__))
79#endif
80
81#ifndef __packed
82# define __packed __attribute__((__packed__))
83#endif
84
85#ifndef __force
86# define __force
87#endif
88
89#ifndef __weak
90# define __weak __attribute__((weak))
91#endif
92
93#ifndef likely
94# define likely(x) __builtin_expect(!!(x), 1)
95#endif
96
97#ifndef unlikely
98# define unlikely(x) __builtin_expect(!!(x), 0)
99#endif
100
101#ifndef __init
102# define __init
103#endif
104
105#include <linux/types.h>
106
107
108
109
110
111
112
113
114
115
116
117
118typedef __u8 __attribute__((__may_alias__)) __u8_alias_t;
119typedef __u16 __attribute__((__may_alias__)) __u16_alias_t;
120typedef __u32 __attribute__((__may_alias__)) __u32_alias_t;
121typedef __u64 __attribute__((__may_alias__)) __u64_alias_t;
122
123static __always_inline void __read_once_size(const volatile void *p, void *res, int size)
124{
125 switch (size) {
126 case 1: *(__u8_alias_t *) res = *(volatile __u8_alias_t *) p; break;
127 case 2: *(__u16_alias_t *) res = *(volatile __u16_alias_t *) p; break;
128 case 4: *(__u32_alias_t *) res = *(volatile __u32_alias_t *) p; break;
129 case 8: *(__u64_alias_t *) res = *(volatile __u64_alias_t *) p; break;
130 default:
131 barrier();
132 __builtin_memcpy((void *)res, (const void *)p, size);
133 barrier();
134 }
135}
136
137static __always_inline void __write_once_size(volatile void *p, void *res, int size)
138{
139 switch (size) {
140 case 1: *(volatile __u8_alias_t *) p = *(__u8_alias_t *) res; break;
141 case 2: *(volatile __u16_alias_t *) p = *(__u16_alias_t *) res; break;
142 case 4: *(volatile __u32_alias_t *) p = *(__u32_alias_t *) res; break;
143 case 8: *(volatile __u64_alias_t *) p = *(__u64_alias_t *) res; break;
144 default:
145 barrier();
146 __builtin_memcpy((void *)p, (const void *)res, size);
147 barrier();
148 }
149}
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172#define READ_ONCE(x) \
173({ \
174 union { typeof(x) __val; char __c[1]; } __u = \
175 { .__c = { 0 } }; \
176 __read_once_size(&(x), __u.__c, sizeof(x)); \
177 __u.__val; \
178})
179
180#define WRITE_ONCE(x, val) \
181({ \
182 union { typeof(x) __val; char __c[1]; } __u = \
183 { .__val = (val) }; \
184 __write_once_size(&(x), __u.__c, sizeof(x)); \
185 __u.__val; \
186})
187
188
189#ifndef __fallthrough
190# define __fallthrough
191#endif
192
193
194#define ___PASTE(a, b) a##b
195#define __PASTE(a, b) ___PASTE(a, b)
196
197#endif
198