]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/Headers/intrin.h
Merge ^/head r320573 through r320970.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / Headers / intrin.h
1 /* ===-------- intrin.h ---------------------------------------------------===
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  *
21  *===-----------------------------------------------------------------------===
22  */
23
24 /* Only include this if we're compiling for the windows platform. */
25 #ifndef _MSC_VER
26 #include_next <intrin.h>
27 #else
28
29 #ifndef __INTRIN_H
30 #define __INTRIN_H
31
32 /* First include the standard intrinsics. */
33 #if defined(__i386__) || defined(__x86_64__)
34 #include <x86intrin.h>
35 #endif
36
37 #if defined(__arm__)
38 #include <armintr.h>
39 #endif
40
41 /* For the definition of jmp_buf. */
42 #if __STDC_HOSTED__
43 #include <setjmp.h>
44 #endif
45
46 /* Define the default attributes for the functions in this file. */
47 #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__))
48
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
52
53 #if defined(__MMX__)
54 /* And the random ones that aren't in those files. */
55 __m64 _m_from_float(float);
56 float _m_to_float(__m64);
57 #endif
58
59 /* Other assorted instruction intrinsics. */
60 void __addfsbyte(unsigned long, unsigned char);
61 void __addfsdword(unsigned long, unsigned long);
62 void __addfsword(unsigned long, unsigned short);
63 void __code_seg(const char *);
64 static __inline__
65 void __cpuid(int[4], int);
66 static __inline__
67 void __cpuidex(int[4], int, int);
68 static __inline__
69 __int64 __emul(int, int);
70 static __inline__
71 unsigned __int64 __emulu(unsigned int, unsigned int);
72 unsigned int __getcallerseflags(void);
73 static __inline__
74 void __halt(void);
75 unsigned char __inbyte(unsigned short);
76 void __inbytestring(unsigned short, unsigned char *, unsigned long);
77 void __incfsbyte(unsigned long);
78 void __incfsdword(unsigned long);
79 void __incfsword(unsigned long);
80 unsigned long __indword(unsigned short);
81 void __indwordstring(unsigned short, unsigned long *, unsigned long);
82 void __invlpg(void *);
83 unsigned short __inword(unsigned short);
84 void __inwordstring(unsigned short, unsigned short *, unsigned long);
85 void __lidt(void *);
86 unsigned __int64 __ll_lshift(unsigned __int64, int);
87 __int64 __ll_rshift(__int64, int);
88 unsigned int __lzcnt(unsigned int);
89 unsigned short __lzcnt16(unsigned short);
90 static __inline__
91 void __movsb(unsigned char *, unsigned char const *, size_t);
92 static __inline__
93 void __movsd(unsigned long *, unsigned long const *, size_t);
94 static __inline__
95 void __movsw(unsigned short *, unsigned short const *, size_t);
96 static __inline__
97 void __nop(void);
98 void __nvreg_restore_fence(void);
99 void __nvreg_save_fence(void);
100 void __outbyte(unsigned short, unsigned char);
101 void __outbytestring(unsigned short, unsigned char *, unsigned long);
102 void __outdword(unsigned short, unsigned long);
103 void __outdwordstring(unsigned short, unsigned long *, unsigned long);
104 void __outword(unsigned short, unsigned short);
105 void __outwordstring(unsigned short, unsigned short *, unsigned long);
106 unsigned long __readcr0(void);
107 unsigned long __readcr2(void);
108 static __inline__
109 unsigned long __readcr3(void);
110 unsigned long __readcr4(void);
111 unsigned long __readcr8(void);
112 unsigned int __readdr(unsigned int);
113 #ifdef __i386__
114 static __inline__
115 unsigned char __readfsbyte(unsigned long);
116 static __inline__
117 unsigned __int64 __readfsqword(unsigned long);
118 static __inline__
119 unsigned short __readfsword(unsigned long);
120 #endif
121 static __inline__
122 unsigned __int64 __readmsr(unsigned long);
123 unsigned __int64 __readpmc(unsigned long);
124 unsigned long __segmentlimit(unsigned long);
125 void __sidt(void *);
126 static __inline__
127 void __stosb(unsigned char *, unsigned char, size_t);
128 static __inline__
129 void __stosd(unsigned long *, unsigned long, size_t);
130 static __inline__
131 void __stosw(unsigned short *, unsigned short, size_t);
132 void __svm_clgi(void);
133 void __svm_invlpga(void *, int);
134 void __svm_skinit(int);
135 void __svm_stgi(void);
136 void __svm_vmload(size_t);
137 void __svm_vmrun(size_t);
138 void __svm_vmsave(size_t);
139 unsigned __int64 __ull_rshift(unsigned __int64, int);
140 void __vmx_off(void);
141 void __vmx_vmptrst(unsigned __int64 *);
142 void __wbinvd(void);
143 void __writecr0(unsigned int);
144 static __inline__
145 void __writecr3(unsigned int);
146 void __writecr4(unsigned int);
147 void __writecr8(unsigned int);
148 void __writedr(unsigned int, unsigned int);
149 void __writefsbyte(unsigned long, unsigned char);
150 void __writefsdword(unsigned long, unsigned long);
151 void __writefsqword(unsigned long, unsigned __int64);
152 void __writefsword(unsigned long, unsigned short);
153 void __writemsr(unsigned long, unsigned __int64);
154 static __inline__
155 void *_AddressOfReturnAddress(void);
156 static __inline__
157 unsigned char _BitScanForward(unsigned long *_Index, unsigned long _Mask);
158 static __inline__
159 unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask);
160 static __inline__
161 unsigned char _bittest(long const *, long);
162 static __inline__
163 unsigned char _bittestandcomplement(long *, long);
164 static __inline__
165 unsigned char _bittestandreset(long *, long);
166 static __inline__
167 unsigned char _bittestandset(long *, long);
168 void __cdecl _disable(void);
169 void __cdecl _enable(void);
170 long _InterlockedAddLargeStatistic(__int64 volatile *_Addend, long _Value);
171 unsigned char _interlockedbittestandreset(long volatile *, long);
172 unsigned char _interlockedbittestandset(long volatile *, long);
173 long _InterlockedCompareExchange_HLEAcquire(long volatile *, long, long);
174 long _InterlockedCompareExchange_HLERelease(long volatile *, long, long);
175 __int64 _InterlockedcompareExchange64_HLEAcquire(__int64 volatile *, __int64,
176                                                  __int64);
177 __int64 _InterlockedCompareExchange64_HLERelease(__int64 volatile *, __int64,
178                                                  __int64);
179 void *_InterlockedCompareExchangePointer_HLEAcquire(void *volatile *, void *,
180                                                     void *);
181 void *_InterlockedCompareExchangePointer_HLERelease(void *volatile *, void *,
182                                                     void *);
183 long _InterlockedExchangeAdd_HLEAcquire(long volatile *, long);
184 long _InterlockedExchangeAdd_HLERelease(long volatile *, long);
185 __int64 _InterlockedExchangeAdd64_HLEAcquire(__int64 volatile *, __int64);
186 __int64 _InterlockedExchangeAdd64_HLERelease(__int64 volatile *, __int64);
187 void __cdecl _invpcid(unsigned int, void *);
188 static __inline__ void
189 __attribute__((__deprecated__("use other intrinsics or C++11 atomics instead")))
190 _ReadBarrier(void);
191 static __inline__ void
192 __attribute__((__deprecated__("use other intrinsics or C++11 atomics instead")))
193 _ReadWriteBarrier(void);
194 unsigned int _rorx_u32(unsigned int, const unsigned int);
195 int _sarx_i32(int, unsigned int);
196 #if __STDC_HOSTED__
197 int __cdecl _setjmp(jmp_buf);
198 #endif
199 unsigned int _shlx_u32(unsigned int, unsigned int);
200 unsigned int _shrx_u32(unsigned int, unsigned int);
201 void _Store_HLERelease(long volatile *, long);
202 void _Store64_HLERelease(__int64 volatile *, __int64);
203 void _StorePointer_HLERelease(void *volatile *, void *);
204 static __inline__ void
205 __attribute__((__deprecated__("use other intrinsics or C++11 atomics instead")))
206 _WriteBarrier(void);
207 unsigned __int32 xbegin(void);
208 void _xend(void);
209 static __inline__
210 #define _XCR_XFEATURE_ENABLED_MASK 0
211 unsigned __int64 __cdecl _xgetbv(unsigned int);
212 void __cdecl _xsetbv(unsigned int, unsigned __int64);
213
214 /* These additional intrinsics are turned on in x64/amd64/x86_64 mode. */
215 #ifdef __x86_64__
216 void __addgsbyte(unsigned long, unsigned char);
217 void __addgsdword(unsigned long, unsigned long);
218 void __addgsqword(unsigned long, unsigned __int64);
219 void __addgsword(unsigned long, unsigned short);
220 static __inline__
221 void __faststorefence(void);
222 void __incgsbyte(unsigned long);
223 void __incgsdword(unsigned long);
224 void __incgsqword(unsigned long);
225 void __incgsword(unsigned long);
226 unsigned __int64 __lzcnt64(unsigned __int64);
227 static __inline__
228 void __movsq(unsigned long long *, unsigned long long const *, size_t);
229 static __inline__
230 unsigned char __readgsbyte(unsigned long);
231 static __inline__
232 unsigned long __readgsdword(unsigned long);
233 static __inline__
234 unsigned __int64 __readgsqword(unsigned long);
235 unsigned short __readgsword(unsigned long);
236 unsigned __int64 __shiftleft128(unsigned __int64 _LowPart,
237                                 unsigned __int64 _HighPart,
238                                 unsigned char _Shift);
239 unsigned __int64 __shiftright128(unsigned __int64 _LowPart,
240                                  unsigned __int64 _HighPart,
241                                  unsigned char _Shift);
242 static __inline__
243 void __stosq(unsigned __int64 *, unsigned __int64, size_t);
244 unsigned char __vmx_on(unsigned __int64 *);
245 unsigned char __vmx_vmclear(unsigned __int64 *);
246 unsigned char __vmx_vmlaunch(void);
247 unsigned char __vmx_vmptrld(unsigned __int64 *);
248 unsigned char __vmx_vmread(size_t, size_t *);
249 unsigned char __vmx_vmresume(void);
250 unsigned char __vmx_vmwrite(size_t, size_t);
251 void __writegsbyte(unsigned long, unsigned char);
252 void __writegsdword(unsigned long, unsigned long);
253 void __writegsqword(unsigned long, unsigned __int64);
254 void __writegsword(unsigned long, unsigned short);
255 static __inline__
256 unsigned char _BitScanForward64(unsigned long *_Index, unsigned __int64 _Mask);
257 static __inline__
258 unsigned char _BitScanReverse64(unsigned long *_Index, unsigned __int64 _Mask);
259 static __inline__
260 unsigned char _bittest64(__int64 const *, __int64);
261 static __inline__
262 unsigned char _bittestandcomplement64(__int64 *, __int64);
263 static __inline__
264 unsigned char _bittestandreset64(__int64 *, __int64);
265 static __inline__
266 unsigned char _bittestandset64(__int64 *, __int64);
267 long _InterlockedAnd_np(long volatile *_Value, long _Mask);
268 short _InterlockedAnd16_np(short volatile *_Value, short _Mask);
269 __int64 _InterlockedAnd64_np(__int64 volatile *_Value, __int64 _Mask);
270 char _InterlockedAnd8_np(char volatile *_Value, char _Mask);
271 unsigned char _interlockedbittestandreset64(__int64 volatile *, __int64);
272 static __inline__
273 unsigned char _interlockedbittestandset64(__int64 volatile *, __int64);
274 long _InterlockedCompareExchange_np(long volatile *_Destination, long _Exchange,
275                                     long _Comparand);
276 unsigned char _InterlockedCompareExchange128(__int64 volatile *_Destination,
277                                              __int64 _ExchangeHigh,
278                                              __int64 _ExchangeLow,
279                                              __int64 *_CompareandResult);
280 unsigned char _InterlockedCompareExchange128_np(__int64 volatile *_Destination,
281                                                 __int64 _ExchangeHigh,
282                                                 __int64 _ExchangeLow,
283                                                 __int64 *_ComparandResult);
284 short _InterlockedCompareExchange16_np(short volatile *_Destination,
285                                        short _Exchange, short _Comparand);
286 __int64 _InterlockedCompareExchange64_HLEAcquire(__int64 volatile *, __int64,
287                                                  __int64);
288 __int64 _InterlockedCompareExchange64_HLERelease(__int64 volatile *, __int64,
289                                                  __int64);
290 __int64 _InterlockedCompareExchange64_np(__int64 volatile *_Destination,
291                                          __int64 _Exchange, __int64 _Comparand);
292 void *_InterlockedCompareExchangePointer_np(void *volatile *_Destination,
293                                             void *_Exchange, void *_Comparand);
294 long _InterlockedOr_np(long volatile *_Value, long _Mask);
295 short _InterlockedOr16_np(short volatile *_Value, short _Mask);
296 __int64 _InterlockedOr64_np(__int64 volatile *_Value, __int64 _Mask);
297 char _InterlockedOr8_np(char volatile *_Value, char _Mask);
298 long _InterlockedXor_np(long volatile *_Value, long _Mask);
299 short _InterlockedXor16_np(short volatile *_Value, short _Mask);
300 __int64 _InterlockedXor64_np(__int64 volatile *_Value, __int64 _Mask);
301 char _InterlockedXor8_np(char volatile *_Value, char _Mask);
302 unsigned __int64 _rorx_u64(unsigned __int64, const unsigned int);
303 __int64 _sarx_i64(__int64, unsigned int);
304 unsigned __int64 _shlx_u64(unsigned __int64, unsigned int);
305 unsigned __int64 _shrx_u64(unsigned __int64, unsigned int);
306 static __inline__
307 __int64 __mulh(__int64, __int64);
308 static __inline__
309 unsigned __int64 __umulh(unsigned __int64, unsigned __int64);
310 static __inline__
311 __int64 _mul128(__int64, __int64, __int64*);
312 static __inline__
313 unsigned __int64 _umul128(unsigned __int64,
314                           unsigned __int64,
315                           unsigned __int64*);
316
317 #endif /* __x86_64__ */
318
319 #if defined(__x86_64__) || defined(__arm__)
320
321 static __inline__
322 __int64 _InterlockedDecrement64(__int64 volatile *_Addend);
323 static __inline__
324 __int64 _InterlockedExchange64(__int64 volatile *_Target, __int64 _Value);
325 static __inline__
326 __int64 _InterlockedExchangeAdd64(__int64 volatile *_Addend, __int64 _Value);
327 static __inline__
328 __int64 _InterlockedExchangeSub64(__int64 volatile *_Subend, __int64 _Value);
329 static __inline__
330 __int64 _InterlockedIncrement64(__int64 volatile *_Addend);
331 static __inline__
332 __int64 _InterlockedOr64(__int64 volatile *_Value, __int64 _Mask);
333 static __inline__
334 __int64 _InterlockedXor64(__int64 volatile *_Value, __int64 _Mask);
335 static __inline__
336 __int64 _InterlockedAnd64(__int64 volatile *_Value, __int64 _Mask);
337
338 #endif
339
340 /*----------------------------------------------------------------------------*\
341 |* Bit Counting and Testing
342 \*----------------------------------------------------------------------------*/
343 static __inline__ unsigned char __DEFAULT_FN_ATTRS
344 _bittest(long const *_BitBase, long _BitPos) {
345   return (*_BitBase >> _BitPos) & 1;
346 }
347 static __inline__ unsigned char __DEFAULT_FN_ATTRS
348 _bittestandcomplement(long *_BitBase, long _BitPos) {
349   unsigned char _Res = (*_BitBase >> _BitPos) & 1;
350   *_BitBase = *_BitBase ^ (1 << _BitPos);
351   return _Res;
352 }
353 static __inline__ unsigned char __DEFAULT_FN_ATTRS
354 _bittestandreset(long *_BitBase, long _BitPos) {
355   unsigned char _Res = (*_BitBase >> _BitPos) & 1;
356   *_BitBase = *_BitBase & ~(1 << _BitPos);
357   return _Res;
358 }
359 static __inline__ unsigned char __DEFAULT_FN_ATTRS
360 _bittestandset(long *_BitBase, long _BitPos) {
361   unsigned char _Res = (*_BitBase >> _BitPos) & 1;
362   *_BitBase = *_BitBase | (1 << _BitPos);
363   return _Res;
364 }
365 #if defined(__arm__) || defined(__aarch64__)
366 static __inline__ unsigned char __DEFAULT_FN_ATTRS
367 _interlockedbittestandset_acq(long volatile *_BitBase, long _BitPos) {
368   long _PrevVal = __atomic_fetch_or(_BitBase, 1l << _BitPos, __ATOMIC_ACQUIRE);
369   return (_PrevVal >> _BitPos) & 1;
370 }
371 static __inline__ unsigned char __DEFAULT_FN_ATTRS
372 _interlockedbittestandset_nf(long volatile *_BitBase, long _BitPos) {
373   long _PrevVal = __atomic_fetch_or(_BitBase, 1l << _BitPos, __ATOMIC_RELAXED);
374   return (_PrevVal >> _BitPos) & 1;
375 }
376 static __inline__ unsigned char __DEFAULT_FN_ATTRS
377 _interlockedbittestandset_rel(long volatile *_BitBase, long _BitPos) {
378   long _PrevVal = __atomic_fetch_or(_BitBase, 1l << _BitPos, __ATOMIC_RELEASE);
379   return (_PrevVal >> _BitPos) & 1;
380 }
381 #endif
382 #ifdef __x86_64__
383 static __inline__ unsigned char __DEFAULT_FN_ATTRS
384 _bittest64(__int64 const *_BitBase, __int64 _BitPos) {
385   return (*_BitBase >> _BitPos) & 1;
386 }
387 static __inline__ unsigned char __DEFAULT_FN_ATTRS
388 _bittestandcomplement64(__int64 *_BitBase, __int64 _BitPos) {
389   unsigned char _Res = (*_BitBase >> _BitPos) & 1;
390   *_BitBase = *_BitBase ^ (1ll << _BitPos);
391   return _Res;
392 }
393 static __inline__ unsigned char __DEFAULT_FN_ATTRS
394 _bittestandreset64(__int64 *_BitBase, __int64 _BitPos) {
395   unsigned char _Res = (*_BitBase >> _BitPos) & 1;
396   *_BitBase = *_BitBase & ~(1ll << _BitPos);
397   return _Res;
398 }
399 static __inline__ unsigned char __DEFAULT_FN_ATTRS
400 _bittestandset64(__int64 *_BitBase, __int64 _BitPos) {
401   unsigned char _Res = (*_BitBase >> _BitPos) & 1;
402   *_BitBase = *_BitBase | (1ll << _BitPos);
403   return _Res;
404 }
405 static __inline__ unsigned char __DEFAULT_FN_ATTRS
406 _interlockedbittestandset64(__int64 volatile *_BitBase, __int64 _BitPos) {
407   long long _PrevVal =
408       __atomic_fetch_or(_BitBase, 1ll << _BitPos, __ATOMIC_SEQ_CST);
409   return (_PrevVal >> _BitPos) & 1;
410 }
411 #endif
412 /*----------------------------------------------------------------------------*\
413 |* Interlocked Exchange Add
414 \*----------------------------------------------------------------------------*/
415 #if defined(__arm__) || defined(__aarch64__)
416 static __inline__ char __DEFAULT_FN_ATTRS
417 _InterlockedExchangeAdd8_acq(char volatile *_Addend, char _Value) {
418   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_ACQUIRE);
419 }
420 static __inline__ char __DEFAULT_FN_ATTRS
421 _InterlockedExchangeAdd8_nf(char volatile *_Addend, char _Value) {
422   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_RELAXED);
423 }
424 static __inline__ char __DEFAULT_FN_ATTRS
425 _InterlockedExchangeAdd8_rel(char volatile *_Addend, char _Value) {
426   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_RELAXED);
427 }
428 static __inline__ short __DEFAULT_FN_ATTRS
429 _InterlockedExchangeAdd16_acq(short volatile *_Addend, short _Value) {
430   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_ACQUIRE);
431 }
432 static __inline__ short __DEFAULT_FN_ATTRS
433 _InterlockedExchangeAdd16_nf(short volatile *_Addend, short _Value) {
434   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_RELAXED);
435 }
436 static __inline__ short __DEFAULT_FN_ATTRS
437 _InterlockedExchangeAdd16_rel(short volatile *_Addend, short _Value) {
438   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_RELEASE);
439 }
440 static __inline__ long __DEFAULT_FN_ATTRS
441 _InterlockedExchangeAdd_acq(long volatile *_Addend, long _Value) {
442   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_ACQUIRE);
443 }
444 static __inline__ long __DEFAULT_FN_ATTRS
445 _InterlockedExchangeAdd_nf(long volatile *_Addend, long _Value) {
446   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_RELAXED);
447 }
448 static __inline__ long __DEFAULT_FN_ATTRS
449 _InterlockedExchangeAdd_rel(long volatile *_Addend, long _Value) {
450   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_RELEASE);
451 }
452 static __inline__ __int64 __DEFAULT_FN_ATTRS
453 _InterlockedExchangeAdd64_acq(__int64 volatile *_Addend, __int64 _Value) {
454   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_ACQUIRE);
455 }
456 static __inline__ __int64 __DEFAULT_FN_ATTRS
457 _InterlockedExchangeAdd64_nf(__int64 volatile *_Addend, __int64 _Value) {
458   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_RELAXED);
459 }
460 static __inline__ __int64 __DEFAULT_FN_ATTRS
461 _InterlockedExchangeAdd64_rel(__int64 volatile *_Addend, __int64 _Value) {
462   return __atomic_fetch_add(_Addend, _Value, __ATOMIC_RELEASE);
463 }
464 #endif
465 /*----------------------------------------------------------------------------*\
466 |* Interlocked Increment
467 \*----------------------------------------------------------------------------*/
468 #if defined(__arm__) || defined(__aarch64__)
469 static __inline__ short __DEFAULT_FN_ATTRS
470 _InterlockedIncrement16_acq(short volatile *_Value) {
471   return __atomic_add_fetch(_Value, 1, __ATOMIC_ACQUIRE);
472 }
473 static __inline__ short __DEFAULT_FN_ATTRS
474 _InterlockedIncrement16_nf(short volatile *_Value) {
475   return __atomic_add_fetch(_Value, 1, __ATOMIC_RELAXED);
476 }
477 static __inline__ short __DEFAULT_FN_ATTRS
478 _InterlockedIncrement16_rel(short volatile *_Value) {
479   return __atomic_add_fetch(_Value, 1, __ATOMIC_RELEASE);
480 }
481 static __inline__ long __DEFAULT_FN_ATTRS
482 _InterlockedIncrement_acq(long volatile *_Value) {
483   return __atomic_add_fetch(_Value, 1, __ATOMIC_ACQUIRE);
484 }
485 static __inline__ long __DEFAULT_FN_ATTRS
486 _InterlockedIncrement_nf(long volatile *_Value) {
487   return __atomic_add_fetch(_Value, 1, __ATOMIC_RELAXED);
488 }
489 static __inline__ long __DEFAULT_FN_ATTRS
490 _InterlockedIncrement_rel(long volatile *_Value) {
491   return __atomic_add_fetch(_Value, 1, __ATOMIC_RELEASE);
492 }
493 static __inline__ __int64 __DEFAULT_FN_ATTRS
494 _InterlockedIncrement64_acq(__int64 volatile *_Value) {
495   return __atomic_add_fetch(_Value, 1, __ATOMIC_ACQUIRE);
496 }
497 static __inline__ __int64 __DEFAULT_FN_ATTRS
498 _InterlockedIncrement64_nf(__int64 volatile *_Value) {
499   return __atomic_add_fetch(_Value, 1, __ATOMIC_RELAXED);
500 }
501 static __inline__ __int64 __DEFAULT_FN_ATTRS
502 _InterlockedIncrement64_rel(__int64 volatile *_Value) {
503   return __atomic_add_fetch(_Value, 1, __ATOMIC_RELEASE);
504 }
505 #endif
506 /*----------------------------------------------------------------------------*\
507 |* Interlocked Decrement
508 \*----------------------------------------------------------------------------*/
509 #if defined(__arm__) || defined(__aarch64__)
510 static __inline__ short __DEFAULT_FN_ATTRS
511 _InterlockedDecrement16_acq(short volatile *_Value) {
512   return __atomic_sub_fetch(_Value, 1, __ATOMIC_ACQUIRE);
513 }
514 static __inline__ short __DEFAULT_FN_ATTRS
515 _InterlockedDecrement16_nf(short volatile *_Value) {
516   return __atomic_sub_fetch(_Value, 1, __ATOMIC_RELAXED);
517 }
518 static __inline__ short __DEFAULT_FN_ATTRS
519 _InterlockedDecrement16_rel(short volatile *_Value) {
520   return __atomic_sub_fetch(_Value, 1, __ATOMIC_RELEASE);
521 }
522 static __inline__ long __DEFAULT_FN_ATTRS
523 _InterlockedDecrement_acq(long volatile *_Value) {
524   return __atomic_sub_fetch(_Value, 1, __ATOMIC_ACQUIRE);
525 }
526 static __inline__ long __DEFAULT_FN_ATTRS
527 _InterlockedDecrement_nf(long volatile *_Value) {
528   return __atomic_sub_fetch(_Value, 1, __ATOMIC_RELAXED);
529 }
530 static __inline__ long __DEFAULT_FN_ATTRS
531 _InterlockedDecrement_rel(long volatile *_Value) {
532   return __atomic_sub_fetch(_Value, 1, __ATOMIC_RELEASE);
533 }
534 static __inline__ __int64 __DEFAULT_FN_ATTRS
535 _InterlockedDecrement64_acq(__int64 volatile *_Value) {
536   return __atomic_sub_fetch(_Value, 1, __ATOMIC_ACQUIRE);
537 }
538 static __inline__ __int64 __DEFAULT_FN_ATTRS
539 _InterlockedDecrement64_nf(__int64 volatile *_Value) {
540   return __atomic_sub_fetch(_Value, 1, __ATOMIC_RELAXED);
541 }
542 static __inline__ __int64 __DEFAULT_FN_ATTRS
543 _InterlockedDecrement64_rel(__int64 volatile *_Value) {
544   return __atomic_sub_fetch(_Value, 1, __ATOMIC_RELEASE);
545 }
546 #endif
547 /*----------------------------------------------------------------------------*\
548 |* Interlocked And
549 \*----------------------------------------------------------------------------*/
550 #if defined(__arm__) || defined(__aarch64__)
551 static __inline__ char __DEFAULT_FN_ATTRS
552 _InterlockedAnd8_acq(char volatile *_Value, char _Mask) {
553   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_ACQUIRE);
554 }
555 static __inline__ char __DEFAULT_FN_ATTRS
556 _InterlockedAnd8_nf(char volatile *_Value, char _Mask) {
557   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_RELAXED);
558 }
559 static __inline__ char __DEFAULT_FN_ATTRS
560 _InterlockedAnd8_rel(char volatile *_Value, char _Mask) {
561   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_RELEASE);
562 }
563 static __inline__ short __DEFAULT_FN_ATTRS
564 _InterlockedAnd16_acq(short volatile *_Value, short _Mask) {
565   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_ACQUIRE);
566 }
567 static __inline__ short __DEFAULT_FN_ATTRS
568 _InterlockedAnd16_nf(short volatile *_Value, short _Mask) {
569   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_RELAXED);
570 }
571 static __inline__ short __DEFAULT_FN_ATTRS
572 _InterlockedAnd16_rel(short volatile *_Value, short _Mask) {
573   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_RELEASE);
574 }
575 static __inline__ long __DEFAULT_FN_ATTRS
576 _InterlockedAnd_acq(long volatile *_Value, long _Mask) {
577   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_ACQUIRE);
578 }
579 static __inline__ long __DEFAULT_FN_ATTRS
580 _InterlockedAnd_nf(long volatile *_Value, long _Mask) {
581   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_RELAXED);
582 }
583 static __inline__ long __DEFAULT_FN_ATTRS
584 _InterlockedAnd_rel(long volatile *_Value, long _Mask) {
585   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_RELEASE);
586 }
587 static __inline__ __int64 __DEFAULT_FN_ATTRS
588 _InterlockedAnd64_acq(__int64 volatile *_Value, __int64 _Mask) {
589   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_ACQUIRE);
590 }
591 static __inline__ __int64 __DEFAULT_FN_ATTRS
592 _InterlockedAnd64_nf(__int64 volatile *_Value, __int64 _Mask) {
593   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_RELAXED);
594 }
595 static __inline__ __int64 __DEFAULT_FN_ATTRS
596 _InterlockedAnd64_rel(__int64 volatile *_Value, __int64 _Mask) {
597   return __atomic_fetch_and(_Value, _Mask, __ATOMIC_RELEASE);
598 }
599 #endif
600 /*----------------------------------------------------------------------------*\
601 |* Interlocked Or
602 \*----------------------------------------------------------------------------*/
603 #if defined(__arm__) || defined(__aarch64__)
604 static __inline__ char __DEFAULT_FN_ATTRS
605 _InterlockedOr8_acq(char volatile *_Value, char _Mask) {
606   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_ACQUIRE);
607 }
608 static __inline__ char __DEFAULT_FN_ATTRS
609 _InterlockedOr8_nf(char volatile *_Value, char _Mask) {
610   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_RELAXED);
611 }
612 static __inline__ char __DEFAULT_FN_ATTRS
613 _InterlockedOr8_rel(char volatile *_Value, char _Mask) {
614   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_RELEASE);
615 }
616 static __inline__ short __DEFAULT_FN_ATTRS
617 _InterlockedOr16_acq(short volatile *_Value, short _Mask) {
618   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_ACQUIRE);
619 }
620 static __inline__ short __DEFAULT_FN_ATTRS
621 _InterlockedOr16_nf(short volatile *_Value, short _Mask) {
622   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_RELAXED);
623 }
624 static __inline__ short __DEFAULT_FN_ATTRS
625 _InterlockedOr16_rel(short volatile *_Value, short _Mask) {
626   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_RELEASE);
627 }
628 static __inline__ long __DEFAULT_FN_ATTRS
629 _InterlockedOr_acq(long volatile *_Value, long _Mask) {
630   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_ACQUIRE);
631 }
632 static __inline__ long __DEFAULT_FN_ATTRS
633 _InterlockedOr_nf(long volatile *_Value, long _Mask) {
634   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_RELAXED);
635 }
636 static __inline__ long __DEFAULT_FN_ATTRS
637 _InterlockedOr_rel(long volatile *_Value, long _Mask) {
638   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_RELEASE);
639 }
640 static __inline__ __int64 __DEFAULT_FN_ATTRS
641 _InterlockedOr64_acq(__int64 volatile *_Value, __int64 _Mask) {
642   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_ACQUIRE);
643 }
644 static __inline__ __int64 __DEFAULT_FN_ATTRS
645 _InterlockedOr64_nf(__int64 volatile *_Value, __int64 _Mask) {
646   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_RELAXED);
647 }
648 static __inline__ __int64 __DEFAULT_FN_ATTRS
649 _InterlockedOr64_rel(__int64 volatile *_Value, __int64 _Mask) {
650   return __atomic_fetch_or(_Value, _Mask, __ATOMIC_RELEASE);
651 }
652 #endif
653 /*----------------------------------------------------------------------------*\
654 |* Interlocked Xor
655 \*----------------------------------------------------------------------------*/
656 #if defined(__arm__) || defined(__aarch64__)
657 static __inline__ char __DEFAULT_FN_ATTRS
658 _InterlockedXor8_acq(char volatile *_Value, char _Mask) {
659   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_ACQUIRE);
660 }
661 static __inline__ char __DEFAULT_FN_ATTRS
662 _InterlockedXor8_nf(char volatile *_Value, char _Mask) {
663   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_RELAXED);
664 }
665 static __inline__ char __DEFAULT_FN_ATTRS
666 _InterlockedXor8_rel(char volatile *_Value, char _Mask) {
667   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_RELEASE);
668 }
669 static __inline__ short __DEFAULT_FN_ATTRS
670 _InterlockedXor16_acq(short volatile *_Value, short _Mask) {
671   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_ACQUIRE);
672 }
673 static __inline__ short __DEFAULT_FN_ATTRS
674 _InterlockedXor16_nf(short volatile *_Value, short _Mask) {
675   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_RELAXED);
676 }
677 static __inline__ short __DEFAULT_FN_ATTRS
678 _InterlockedXor16_rel(short volatile *_Value, short _Mask) {
679   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_RELEASE);
680 }
681 static __inline__ long __DEFAULT_FN_ATTRS
682 _InterlockedXor_acq(long volatile *_Value, long _Mask) {
683   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_ACQUIRE);
684 }
685 static __inline__ long __DEFAULT_FN_ATTRS
686 _InterlockedXor_nf(long volatile *_Value, long _Mask) {
687   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_RELAXED);
688 }
689 static __inline__ long __DEFAULT_FN_ATTRS
690 _InterlockedXor_rel(long volatile *_Value, long _Mask) {
691   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_RELEASE);
692 }
693 static __inline__ __int64 __DEFAULT_FN_ATTRS
694 _InterlockedXor64_acq(__int64 volatile *_Value, __int64 _Mask) {
695   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_ACQUIRE);
696 }
697 static __inline__ __int64 __DEFAULT_FN_ATTRS
698 _InterlockedXor64_nf(__int64 volatile *_Value, __int64 _Mask) {
699   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_RELAXED);
700 }
701 static __inline__ __int64 __DEFAULT_FN_ATTRS
702 _InterlockedXor64_rel(__int64 volatile *_Value, __int64 _Mask) {
703   return __atomic_fetch_xor(_Value, _Mask, __ATOMIC_RELEASE);
704 }
705 #endif
706 /*----------------------------------------------------------------------------*\
707 |* Interlocked Exchange
708 \*----------------------------------------------------------------------------*/
709 #if defined(__arm__) || defined(__aarch64__)
710 static __inline__ char __DEFAULT_FN_ATTRS
711 _InterlockedExchange8_acq(char volatile *_Target, char _Value) {
712   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_ACQUIRE);
713   return _Value;
714 }
715 static __inline__ char __DEFAULT_FN_ATTRS
716 _InterlockedExchange8_nf(char volatile *_Target, char _Value) {
717   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_RELAXED);
718   return _Value;
719 }
720 static __inline__ char __DEFAULT_FN_ATTRS
721 _InterlockedExchange8_rel(char volatile *_Target, char _Value) {
722   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_RELEASE);
723   return _Value;
724 }
725 static __inline__ short __DEFAULT_FN_ATTRS
726 _InterlockedExchange16_acq(short volatile *_Target, short _Value) {
727   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_ACQUIRE);
728   return _Value;
729 }
730 static __inline__ short __DEFAULT_FN_ATTRS
731 _InterlockedExchange16_nf(short volatile *_Target, short _Value) {
732   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_RELAXED);
733   return _Value;
734 }
735 static __inline__ short __DEFAULT_FN_ATTRS
736 _InterlockedExchange16_rel(short volatile *_Target, short _Value) {
737   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_RELEASE);
738   return _Value;
739 }
740 static __inline__ long __DEFAULT_FN_ATTRS
741 _InterlockedExchange_acq(long volatile *_Target, long _Value) {
742   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_ACQUIRE);
743   return _Value;
744 }
745 static __inline__ long __DEFAULT_FN_ATTRS
746 _InterlockedExchange_nf(long volatile *_Target, long _Value) {
747   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_RELAXED);
748   return _Value;
749 }
750 static __inline__ long __DEFAULT_FN_ATTRS
751 _InterlockedExchange_rel(long volatile *_Target, long _Value) {
752   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_RELEASE);
753   return _Value;
754 }
755 static __inline__ __int64 __DEFAULT_FN_ATTRS
756 _InterlockedExchange64_acq(__int64 volatile *_Target, __int64 _Value) {
757   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_ACQUIRE);
758   return _Value;
759 }
760 static __inline__ __int64 __DEFAULT_FN_ATTRS
761 _InterlockedExchange64_nf(__int64 volatile *_Target, __int64 _Value) {
762   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_RELAXED);
763   return _Value;
764 }
765 static __inline__ __int64 __DEFAULT_FN_ATTRS
766 _InterlockedExchange64_rel(__int64 volatile *_Target, __int64 _Value) {
767   __atomic_exchange(_Target, &_Value, &_Value, __ATOMIC_RELEASE);
768   return _Value;
769 }
770 #endif
771 /*----------------------------------------------------------------------------*\
772 |* Interlocked Compare Exchange
773 \*----------------------------------------------------------------------------*/
774 #if defined(__arm__) || defined(__aarch64__)
775 static __inline__ char __DEFAULT_FN_ATTRS
776 _InterlockedCompareExchange8_acq(char volatile *_Destination,
777                              char _Exchange, char _Comparand) {
778   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
779                             __ATOMIC_SEQ_CST, __ATOMIC_ACQUIRE);
780   return _Comparand;
781 }
782 static __inline__ char __DEFAULT_FN_ATTRS
783 _InterlockedCompareExchange8_nf(char volatile *_Destination,
784                              char _Exchange, char _Comparand) {
785   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
786                             __ATOMIC_SEQ_CST, __ATOMIC_RELAXED);
787   return _Comparand;
788 }
789 static __inline__ char __DEFAULT_FN_ATTRS
790 _InterlockedCompareExchange8_rel(char volatile *_Destination,
791                              char _Exchange, char _Comparand) {
792   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
793                             __ATOMIC_SEQ_CST, __ATOMIC_RELEASE);
794   return _Comparand;
795 }
796 static __inline__ short __DEFAULT_FN_ATTRS
797 _InterlockedCompareExchange16_acq(short volatile *_Destination,
798                               short _Exchange, short _Comparand) {
799   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
800                             __ATOMIC_SEQ_CST, __ATOMIC_ACQUIRE);
801   return _Comparand;
802 }
803 static __inline__ short __DEFAULT_FN_ATTRS
804 _InterlockedCompareExchange16_nf(short volatile *_Destination,
805                               short _Exchange, short _Comparand) {
806   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
807                             __ATOMIC_SEQ_CST, __ATOMIC_RELAXED);
808   return _Comparand;
809 }
810 static __inline__ short __DEFAULT_FN_ATTRS
811 _InterlockedCompareExchange16_rel(short volatile *_Destination,
812                               short _Exchange, short _Comparand) {
813   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
814                             __ATOMIC_SEQ_CST, __ATOMIC_RELEASE);
815   return _Comparand;
816 }
817 static __inline__ long __DEFAULT_FN_ATTRS
818 _InterlockedCompareExchange_acq(long volatile *_Destination,
819                               long _Exchange, long _Comparand) {
820   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
821                             __ATOMIC_SEQ_CST, __ATOMIC_ACQUIRE);
822   return _Comparand;
823 }
824 static __inline__ long __DEFAULT_FN_ATTRS
825 _InterlockedCompareExchange_nf(long volatile *_Destination,
826                               long _Exchange, long _Comparand) {
827   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
828                             __ATOMIC_SEQ_CST, __ATOMIC_RELAXED);
829   return _Comparand;
830 }
831 static __inline__ short __DEFAULT_FN_ATTRS
832 _InterlockedCompareExchange_rel(long volatile *_Destination,
833                               long _Exchange, long _Comparand) {
834   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
835                             __ATOMIC_SEQ_CST, __ATOMIC_RELEASE);
836   return _Comparand;
837 }
838 static __inline__ __int64 __DEFAULT_FN_ATTRS
839 _InterlockedCompareExchange64_acq(__int64 volatile *_Destination,
840                               __int64 _Exchange, __int64 _Comparand) {
841   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
842                             __ATOMIC_SEQ_CST, __ATOMIC_ACQUIRE);
843   return _Comparand;
844 }
845 static __inline__ __int64 __DEFAULT_FN_ATTRS
846 _InterlockedCompareExchange64_nf(__int64 volatile *_Destination,
847                               __int64 _Exchange, __int64 _Comparand) {
848   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
849                             __ATOMIC_SEQ_CST, __ATOMIC_RELAXED);
850   return _Comparand;
851 }
852 static __inline__ __int64 __DEFAULT_FN_ATTRS
853 _InterlockedCompareExchange64_rel(__int64 volatile *_Destination,
854                               __int64 _Exchange, __int64 _Comparand) {
855   __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0,
856                             __ATOMIC_SEQ_CST, __ATOMIC_RELEASE);
857   return _Comparand;
858 }
859 #endif
860
861 /*----------------------------------------------------------------------------*\
862 |* movs, stos
863 \*----------------------------------------------------------------------------*/
864 #if defined(__i386__) || defined(__x86_64__)
865 static __inline__ void __DEFAULT_FN_ATTRS
866 __movsb(unsigned char *__dst, unsigned char const *__src, size_t __n) {
867   __asm__("rep movsb" : : "D"(__dst), "S"(__src), "c"(__n));
868 }
869 static __inline__ void __DEFAULT_FN_ATTRS
870 __movsd(unsigned long *__dst, unsigned long const *__src, size_t __n) {
871   __asm__("rep movsl" : : "D"(__dst), "S"(__src), "c"(__n));
872 }
873 static __inline__ void __DEFAULT_FN_ATTRS
874 __movsw(unsigned short *__dst, unsigned short const *__src, size_t __n) {
875   __asm__("rep movsw" : : "D"(__dst), "S"(__src), "c"(__n));
876 }
877 static __inline__ void __DEFAULT_FN_ATTRS
878 __stosd(unsigned long *__dst, unsigned long __x, size_t __n) {
879   __asm__("rep stosl" : : "D"(__dst), "a"(__x), "c"(__n));
880 }
881 static __inline__ void __DEFAULT_FN_ATTRS
882 __stosw(unsigned short *__dst, unsigned short __x, size_t __n) {
883   __asm__("rep stosw" : : "D"(__dst), "a"(__x), "c"(__n));
884 }
885 #endif
886 #ifdef __x86_64__
887 static __inline__ void __DEFAULT_FN_ATTRS
888 __movsq(unsigned long long *__dst, unsigned long long const *__src, size_t __n) {
889   __asm__("rep movsq" : : "D"(__dst), "S"(__src), "c"(__n));
890 }
891 static __inline__ void __DEFAULT_FN_ATTRS
892 __stosq(unsigned __int64 *__dst, unsigned __int64 __x, size_t __n) {
893   __asm__("rep stosq" : : "D"(__dst), "a"(__x), "c"(__n));
894 }
895 #endif
896
897 /*----------------------------------------------------------------------------*\
898 |* Misc
899 \*----------------------------------------------------------------------------*/
900 #if defined(__i386__) || defined(__x86_64__)
901 static __inline__ void __DEFAULT_FN_ATTRS
902 __cpuid(int __info[4], int __level) {
903   __asm__ ("cpuid" : "=a"(__info[0]), "=b" (__info[1]), "=c"(__info[2]), "=d"(__info[3])
904                    : "a"(__level));
905 }
906 static __inline__ void __DEFAULT_FN_ATTRS
907 __cpuidex(int __info[4], int __level, int __ecx) {
908   __asm__ ("cpuid" : "=a"(__info[0]), "=b" (__info[1]), "=c"(__info[2]), "=d"(__info[3])
909                    : "a"(__level), "c"(__ecx));
910 }
911 static __inline__ unsigned __int64 __cdecl __DEFAULT_FN_ATTRS
912 _xgetbv(unsigned int __xcr_no) {
913   unsigned int __eax, __edx;
914   __asm__ ("xgetbv" : "=a" (__eax), "=d" (__edx) : "c" (__xcr_no));
915   return ((unsigned __int64)__edx << 32) | __eax;
916 }
917 static __inline__ void __DEFAULT_FN_ATTRS
918 __halt(void) {
919   __asm__ volatile ("hlt");
920 }
921 static __inline__ void __DEFAULT_FN_ATTRS
922 __nop(void) {
923   __asm__ volatile ("nop");
924 }
925 #endif
926
927 /*----------------------------------------------------------------------------*\
928 |* Privileged intrinsics
929 \*----------------------------------------------------------------------------*/
930 #if defined(__i386__) || defined(__x86_64__)
931 static __inline__ unsigned __int64 __DEFAULT_FN_ATTRS
932 __readmsr(unsigned long __register) {
933   // Loads the contents of a 64-bit model specific register (MSR) specified in
934   // the ECX register into registers EDX:EAX. The EDX register is loaded with
935   // the high-order 32 bits of the MSR and the EAX register is loaded with the
936   // low-order 32 bits. If less than 64 bits are implemented in the MSR being
937   // read, the values returned to EDX:EAX in unimplemented bit locations are
938   // undefined.
939   unsigned long __edx;
940   unsigned long __eax;
941   __asm__ ("rdmsr" : "=d"(__edx), "=a"(__eax) : "c"(__register));
942   return (((unsigned __int64)__edx) << 32) | (unsigned __int64)__eax;
943 }
944
945 static __inline__ unsigned long __DEFAULT_FN_ATTRS
946 __readcr3(void) {
947   unsigned long __cr3_val;
948   __asm__ __volatile__ ("mov %%cr3, %0" : "=q"(__cr3_val) : : "memory");
949   return __cr3_val;
950 }
951
952 static __inline__ void __DEFAULT_FN_ATTRS
953 __writecr3(unsigned int __cr3_val) {
954   __asm__ ("mov %0, %%cr3" : : "q"(__cr3_val) : "memory");
955 }
956 #endif
957
958 #ifdef __cplusplus
959 }
960 #endif
961
962 #undef __DEFAULT_FN_ATTRS
963
964 #endif /* __INTRIN_H */
965 #endif /* _MSC_VER */