1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79 #ifndef UCX_COMMON_H
80 #define UCX_COMMON_H
81
82
83 #define UCX_VERSION_MAJOR 4
84
85
86 #define UCX_VERSION_MINOR 0
87
88
89 #define UCX_VERSION (((
UCX_VERSION_MAJOR)<<
16)|
UCX_VERSION_MINOR)
90
91
92
93
94
95 #include <stdlib.h>
96 #include <stddef.h>
97 #include <stdbool.h>
98 #include <stdint.h>
99 #include <sys/types.h>
100
101
102
103
104
105 #ifndef INTPTR_MAX
106 #error Missing
INTPTR_MAX definition
107 #endif
108 #if INTPTR_MAX ==
INT64_MAX
109
110
111
112 #define CX_WORDSIZE 64
113 #elif INTPTR_MAX ==
INT32_MAX
114
115
116
117 #define CX_WORDSIZE 32
118 #else
119 #error Unknown pointer size or missing size macros!
120 #endif
121
122
123
124
125
126 #ifndef __GNUC__
127
128
129
130 #define __attribute__(x)
131 #endif
132
133
134
135
136 #define cx_attr_fallthrough __attribute__((__fallthrough__))
137
138
139
140
141 #define cx_attr_nonnull __attribute__((__nonnull__))
142
143
144
145
146 #define cx_attr_nonnull_arg(...) __attribute__((__nonnull__(
__VA_ARGS__)))
147
148
149
150
151 #define cx_attr_returns_nonnull __attribute__((__returns_nonnull__))
152
153
154
155
156 #define cx_attr_malloc __attribute__((__malloc__))
157
158 #if !defined(__clang__) &&
__GNUC__ >=
11
159
160
161
162
163
164
165
166 #define cx_attr_dealloc(freefunc, freefunc_arg) \
167 __attribute__((__malloc__(freefunc, freefunc_arg)))
168 #else
169
170
171
172 #define cx_attr_dealloc(...)
173 #endif
174
175
176
177
178 #define cx_attr_dealloc_ucx cx_attr_dealloc(cxFree,
2)
179
180
181
182
183 #define cx_attr_allocsize(...) __attribute__((__alloc_size__(
__VA_ARGS__)))
184
185
186 #ifdef __clang__
187
188
189
190 #define cx_attr_cstr_arg(idx)
191
192
193
194 #define cx_attr_access(mode, ...)
195 #else
196 #if __GNUC__ <
10
197
198
199
200 #define cx_attr_access(mode, ...)
201 #else
202
203
204
205 #define cx_attr_access(mode, ...) __attribute__((__access__(mode,
__VA_ARGS__)))
206 #endif
207 #if __GNUC__ <
14
208
209
210
211 #define cx_attr_cstr_arg(idx)
212 #else
213
214
215
216
217
218 #define cx_attr_cstr_arg(idx) \
219 __attribute__((__null_terminated_string_arg__(idx)))
220 #endif
221 #endif
222
223
224
225
226
227
228
229
230 #define cx_attr_access_r(...) cx_attr_access(__read_only__,
__VA_ARGS__)
231
232
233
234
235
236
237
238 #define cx_attr_access_rw(...) cx_attr_access(__read_write__,
__VA_ARGS__)
239
240
241
242
243
244
245
246 #define cx_attr_access_w(...) cx_attr_access(__write_only__,
__VA_ARGS__)
247
248
249
250
251 #define cx_attr_unused __attribute__((__unused__))
252
253
254
255
256 #define cx_attr_nodiscard __attribute__((__warn_unused_result__))
257
258
259
260
261
262
263 #ifdef _MSC_VER
264
265 #define _Thread_local __declspec(thread)
266 #endif
267
268
269
270
271
272 #if defined(
CX_WINDLL_EXPORT)
273 #define CX_EXPORT __declspec(dllexport)
274 #elif defined(
CX_WINDLL)
275 #define CX_EXPORT __declspec(dllimport)
276 #else
277
278 #define CX_EXPORT
279 #endif
280
281 #ifdef __GNUC__
282
283
284
285 #define CX_INLINE __attribute__((always_inline))
static inline
286 #else
287
288
289
290 #define CX_INLINE static inline
291 #endif
292
293
294
295 #define CX_CPPDECL static inline
296
297
298
299
300
301
302
303
304 typedef size_t (*cx_write_func)(
const void*,
size_t,
size_t,
void*);
305
306
307
308
309 typedef size_t (*cx_read_func)(
void*,
size_t,
size_t,
void*);
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324 #define cx_nmemb(arr) (
sizeof(arr)/
sizeof((arr)[
0]))
325
326
327
328
329
330 #if (
__GNUC__ >=
5 || defined(__clang__)) && !defined(
CX_NO_SZMUL_BUILTIN)
331 #define CX_SZMUL_BUILTIN
332 #define cx_szmul(a, b, result) __builtin_mul_overflow(a, b, result)
333 #else
334
335
336
337
338
339
340
341
342
343
344 #define cx_szmul(a, b, result) cx_szmul_impl(a, b, result)
345
346
347
348
349
350
351
352
353
354
355
356
357
358 #if __cplusplus
359 extern "C"
360 #endif
361 CX_EXPORT int cx_szmul_impl(
size_t a,
size_t b,
size_t *result);
362 #endif
363
364 #endif
365