Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 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. */ |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 33 | #if defined(__i386__) || defined(__x86_64__) |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 34 | #include <x86intrin.h> |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 35 | #endif |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 36 | |
Hans Wennborg | 1fd6dd3 | 2014-01-28 23:01:59 +0000 | [diff] [blame] | 37 | /* For the definition of jmp_buf. */ |
Nico Weber | a62cffa | 2014-07-08 18:34:46 +0000 | [diff] [blame] | 38 | #if __STDC_HOSTED__ |
Hans Wennborg | 1fd6dd3 | 2014-01-28 23:01:59 +0000 | [diff] [blame] | 39 | #include <setjmp.h> |
Nico Weber | a62cffa | 2014-07-08 18:34:46 +0000 | [diff] [blame] | 40 | #endif |
Hans Wennborg | 1fd6dd3 | 2014-01-28 23:01:59 +0000 | [diff] [blame] | 41 | |
Eric Christopher | 5a9bec1 | 2015-06-15 23:20:35 +0000 | [diff] [blame] | 42 | /* Define the default attributes for the functions in this file. */ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 43 | #define __DEFAULT_FN_ATTRS __attribute__((__always_inline__, __nodebug__)) |
Eric Christopher | 5a9bec1 | 2015-06-15 23:20:35 +0000 | [diff] [blame] | 44 | |
Eric Christopher | 0db88a7 | 2013-09-18 22:24:01 +0000 | [diff] [blame] | 45 | #ifdef __cplusplus |
| 46 | extern "C" { |
| 47 | #endif |
| 48 | |
Saleem Abdulrasool | c4ebb12 | 2014-07-08 05:46:04 +0000 | [diff] [blame] | 49 | #if defined(__MMX__) |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 50 | /* And the random ones that aren't in those files. */ |
| 51 | __m64 _m_from_float(float); |
| 52 | __m64 _m_from_int(int _l); |
| 53 | void _m_prefetch(void *); |
| 54 | float _m_to_float(__m64); |
| 55 | int _m_to_int(__m64 _M); |
Saleem Abdulrasool | c4ebb12 | 2014-07-08 05:46:04 +0000 | [diff] [blame] | 56 | #endif |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 57 | |
| 58 | /* Other assorted instruction intrinsics. */ |
| 59 | void __addfsbyte(unsigned long, unsigned char); |
| 60 | void __addfsdword(unsigned long, unsigned long); |
| 61 | void __addfsword(unsigned long, unsigned short); |
| 62 | void __code_seg(const char *); |
Hans Wennborg | 854f7d3 | 2014-01-16 23:39:35 +0000 | [diff] [blame] | 63 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 64 | void __cpuid(int[4], int); |
Hans Wennborg | 12fb89e | 2014-01-31 19:44:55 +0000 | [diff] [blame] | 65 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 66 | void __cpuidex(int[4], int, int); |
Eric Christopher | 0db88a7 | 2013-09-18 22:24:01 +0000 | [diff] [blame] | 67 | void __debugbreak(void); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 68 | __int64 __emul(int, int); |
| 69 | unsigned __int64 __emulu(unsigned int, unsigned int); |
Eric Christopher | 0db88a7 | 2013-09-18 22:24:01 +0000 | [diff] [blame] | 70 | void __cdecl __fastfail(unsigned int); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 71 | unsigned int __getcallerseflags(void); |
Hans Wennborg | 740a4d6 | 2014-01-28 22:55:01 +0000 | [diff] [blame] | 72 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 73 | void __halt(void); |
| 74 | unsigned char __inbyte(unsigned short); |
| 75 | void __inbytestring(unsigned short, unsigned char *, unsigned long); |
| 76 | void __incfsbyte(unsigned long); |
| 77 | void __incfsdword(unsigned long); |
| 78 | void __incfsword(unsigned long); |
| 79 | unsigned long __indword(unsigned short); |
| 80 | void __indwordstring(unsigned short, unsigned long *, unsigned long); |
| 81 | void __int2c(void); |
| 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 | void __llwpcb(void *); |
| 89 | unsigned char __lwpins32(unsigned int, unsigned int, unsigned int); |
| 90 | void __lwpval32(unsigned int, unsigned int, unsigned int); |
| 91 | unsigned int __lzcnt(unsigned int); |
| 92 | unsigned short __lzcnt16(unsigned short); |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 93 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 94 | void __movsb(unsigned char *, unsigned char const *, size_t); |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 95 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 96 | void __movsd(unsigned long *, unsigned long const *, size_t); |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 97 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 98 | void __movsw(unsigned short *, unsigned short const *, size_t); |
| 99 | void __nop(void); |
| 100 | void __nvreg_restore_fence(void); |
| 101 | void __nvreg_save_fence(void); |
| 102 | void __outbyte(unsigned short, unsigned char); |
| 103 | void __outbytestring(unsigned short, unsigned char *, unsigned long); |
| 104 | void __outdword(unsigned short, unsigned long); |
| 105 | void __outdwordstring(unsigned short, unsigned long *, unsigned long); |
| 106 | void __outword(unsigned short, unsigned short); |
| 107 | void __outwordstring(unsigned short, unsigned short *, unsigned long); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 108 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 109 | unsigned int __popcnt(unsigned int); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 110 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 111 | unsigned short __popcnt16(unsigned short); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 112 | unsigned long __readcr0(void); |
| 113 | unsigned long __readcr2(void); |
Reid Kleckner | 592dc61 | 2014-04-08 00:28:22 +0000 | [diff] [blame] | 114 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 115 | unsigned long __readcr3(void); |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 116 | unsigned long __readcr4(void); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 117 | unsigned long __readcr8(void); |
| 118 | unsigned int __readdr(unsigned int); |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 119 | #ifdef __i386__ |
| 120 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 121 | unsigned char __readfsbyte(unsigned long); |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 122 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 123 | unsigned long __readfsdword(unsigned long); |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 124 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 125 | unsigned __int64 __readfsqword(unsigned long); |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 126 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 127 | unsigned short __readfsword(unsigned long); |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 128 | #endif |
Reid Kleckner | 592dc61 | 2014-04-08 00:28:22 +0000 | [diff] [blame] | 129 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 130 | unsigned __int64 __readmsr(unsigned long); |
| 131 | unsigned __int64 __readpmc(unsigned long); |
| 132 | unsigned long __segmentlimit(unsigned long); |
| 133 | void __sidt(void *); |
| 134 | void *__slwpcb(void); |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 135 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 136 | void __stosb(unsigned char *, unsigned char, size_t); |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 137 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 138 | void __stosd(unsigned long *, unsigned long, size_t); |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 139 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 140 | void __stosw(unsigned short *, unsigned short, size_t); |
| 141 | void __svm_clgi(void); |
| 142 | void __svm_invlpga(void *, int); |
| 143 | void __svm_skinit(int); |
| 144 | void __svm_stgi(void); |
| 145 | void __svm_vmload(size_t); |
| 146 | void __svm_vmrun(size_t); |
| 147 | void __svm_vmsave(size_t); |
| 148 | void __ud2(void); |
| 149 | unsigned __int64 __ull_rshift(unsigned __int64, int); |
| 150 | void __vmx_off(void); |
| 151 | void __vmx_vmptrst(unsigned __int64 *); |
| 152 | void __wbinvd(void); |
| 153 | void __writecr0(unsigned int); |
Reid Kleckner | 592dc61 | 2014-04-08 00:28:22 +0000 | [diff] [blame] | 154 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 155 | void __writecr3(unsigned int); |
| 156 | void __writecr4(unsigned int); |
| 157 | void __writecr8(unsigned int); |
| 158 | void __writedr(unsigned int, unsigned int); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 159 | void __writefsbyte(unsigned long, unsigned char); |
| 160 | void __writefsdword(unsigned long, unsigned long); |
| 161 | void __writefsqword(unsigned long, unsigned __int64); |
| 162 | void __writefsword(unsigned long, unsigned short); |
| 163 | void __writemsr(unsigned long, unsigned __int64); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 164 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 165 | void *_AddressOfReturnAddress(void); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 166 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 167 | unsigned char _BitScanForward(unsigned long *_Index, unsigned long _Mask); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 168 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 169 | unsigned char _BitScanReverse(unsigned long *_Index, unsigned long _Mask); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 170 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 171 | unsigned char _bittest(long const *, long); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 172 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 173 | unsigned char _bittestandcomplement(long *, long); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 174 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 175 | unsigned char _bittestandreset(long *, long); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 176 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 177 | unsigned char _bittestandset(long *, long); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 178 | unsigned __int64 __cdecl _byteswap_uint64(unsigned __int64); |
| 179 | unsigned long __cdecl _byteswap_ulong(unsigned long); |
| 180 | unsigned short __cdecl _byteswap_ushort(unsigned short); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 181 | void __cdecl _disable(void); |
| 182 | void __cdecl _enable(void); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 183 | long _InterlockedAddLargeStatistic(__int64 volatile *_Addend, long _Value); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 184 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 185 | long _InterlockedAnd(long volatile *_Value, long _Mask); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 186 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 187 | short _InterlockedAnd16(short volatile *_Value, short _Mask); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 188 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 189 | char _InterlockedAnd8(char volatile *_Value, char _Mask); |
| 190 | unsigned char _interlockedbittestandreset(long volatile *, long); |
Hans Wennborg | a316933 | 2014-03-13 17:05:09 +0000 | [diff] [blame] | 191 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 192 | unsigned char _interlockedbittestandset(long volatile *, long); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 193 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 194 | long __cdecl _InterlockedCompareExchange(long volatile *_Destination, |
| 195 | long _Exchange, long _Comparand); |
| 196 | long _InterlockedCompareExchange_HLEAcquire(long volatile *, long, long); |
| 197 | long _InterlockedCompareExchange_HLERelease(long volatile *, long, long); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 198 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 199 | short _InterlockedCompareExchange16(short volatile *_Destination, |
| 200 | short _Exchange, short _Comparand); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 201 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 202 | __int64 _InterlockedCompareExchange64(__int64 volatile *_Destination, |
| 203 | __int64 _Exchange, __int64 _Comparand); |
| 204 | __int64 _InterlockedcompareExchange64_HLEAcquire(__int64 volatile *, __int64, |
| 205 | __int64); |
| 206 | __int64 _InterlockedCompareExchange64_HLERelease(__int64 volatile *, __int64, |
| 207 | __int64); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 208 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 209 | char _InterlockedCompareExchange8(char volatile *_Destination, char _Exchange, |
| 210 | char _Comparand); |
| 211 | void *_InterlockedCompareExchangePointer_HLEAcquire(void *volatile *, void *, |
| 212 | void *); |
| 213 | void *_InterlockedCompareExchangePointer_HLERelease(void *volatile *, void *, |
| 214 | void *); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 215 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 216 | long __cdecl _InterlockedDecrement(long volatile *_Addend); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 217 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 218 | short _InterlockedDecrement16(short volatile *_Addend); |
Saleem Abdulrasool | 114efe0 | 2014-06-18 20:51:10 +0000 | [diff] [blame] | 219 | long _InterlockedExchange(long volatile *_Target, long _Value); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 220 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 221 | short _InterlockedExchange16(short volatile *_Target, short _Value); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 222 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 223 | char _InterlockedExchange8(char volatile *_Target, char _Value); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 224 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 225 | long __cdecl _InterlockedExchangeAdd(long volatile *_Addend, long _Value); |
| 226 | long _InterlockedExchangeAdd_HLEAcquire(long volatile *, long); |
| 227 | long _InterlockedExchangeAdd_HLERelease(long volatile *, long); |
Reid Kleckner | 924eb2a | 2014-01-27 18:48:02 +0000 | [diff] [blame] | 228 | static __inline__ |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 229 | short _InterlockedExchangeAdd16(short volatile *_Addend, short _Value); |
| 230 | __int64 _InterlockedExchangeAdd64_HLEAcquire(__int64 volatile *, __int64); |
| 231 | __int64 _InterlockedExchangeAdd64_HLERelease(__int64 volatile *, __int64); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 232 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 233 | char _InterlockedExchangeAdd8(char volatile *_Addend, char _Value); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 234 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 235 | long __cdecl _InterlockedIncrement(long volatile *_Addend); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 236 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 237 | short _InterlockedIncrement16(short volatile *_Addend); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 238 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 239 | long _InterlockedOr(long volatile *_Value, long _Mask); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 240 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 241 | short _InterlockedOr16(short volatile *_Value, short _Mask); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 242 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 243 | char _InterlockedOr8(char volatile *_Value, char _Mask); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 244 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 245 | long _InterlockedXor(long volatile *_Value, long _Mask); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 246 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 247 | short _InterlockedXor16(short volatile *_Value, short _Mask); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 248 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 249 | char _InterlockedXor8(char volatile *_Value, char _Mask); |
| 250 | void __cdecl _invpcid(unsigned int, void *); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 251 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 252 | unsigned long __cdecl _lrotl(unsigned long, int); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 253 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 254 | unsigned long __cdecl _lrotr(unsigned long, int); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 255 | static __inline__ |
Reid Kleckner | 00d33a5 | 2013-10-17 01:29:48 +0000 | [diff] [blame] | 256 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 257 | void _ReadBarrier(void); |
Reid Kleckner | 00d33a5 | 2013-10-17 01:29:48 +0000 | [diff] [blame] | 258 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 259 | void _ReadWriteBarrier(void); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 260 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 261 | void *_ReturnAddress(void); |
| 262 | unsigned int _rorx_u32(unsigned int, const unsigned int); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 263 | static __inline__ |
Eric Christopher | fb4b433 | 2013-08-31 00:27:38 +0000 | [diff] [blame] | 264 | unsigned int __cdecl _rotl(unsigned int _Value, int _Shift); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 265 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 266 | unsigned short _rotl16(unsigned short _Value, unsigned char _Shift); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 267 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 268 | unsigned __int64 __cdecl _rotl64(unsigned __int64 _Value, int _Shift); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 269 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 270 | unsigned char _rotl8(unsigned char _Value, unsigned char _Shift); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 271 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 272 | unsigned int __cdecl _rotr(unsigned int _Value, int _Shift); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 273 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 274 | unsigned short _rotr16(unsigned short _Value, unsigned char _Shift); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 275 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 276 | unsigned __int64 __cdecl _rotr64(unsigned __int64 _Value, int _Shift); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 277 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 278 | unsigned char _rotr8(unsigned char _Value, unsigned char _Shift); |
| 279 | int _sarx_i32(int, unsigned int); |
Nico Weber | a62cffa | 2014-07-08 18:34:46 +0000 | [diff] [blame] | 280 | #if __STDC_HOSTED__ |
Hans Wennborg | 1fd6dd3 | 2014-01-28 23:01:59 +0000 | [diff] [blame] | 281 | int __cdecl _setjmp(jmp_buf); |
Nico Weber | a62cffa | 2014-07-08 18:34:46 +0000 | [diff] [blame] | 282 | #endif |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 283 | unsigned int _shlx_u32(unsigned int, unsigned int); |
| 284 | unsigned int _shrx_u32(unsigned int, unsigned int); |
| 285 | void _Store_HLERelease(long volatile *, long); |
| 286 | void _Store64_HLERelease(__int64 volatile *, __int64); |
| 287 | void _StorePointer_HLERelease(void *volatile *, void *); |
Reid Kleckner | 00d33a5 | 2013-10-17 01:29:48 +0000 | [diff] [blame] | 288 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 289 | void _WriteBarrier(void); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 290 | unsigned __int32 xbegin(void); |
| 291 | void _xend(void); |
Hans Wennborg | 854f7d3 | 2014-01-16 23:39:35 +0000 | [diff] [blame] | 292 | static __inline__ |
Hans Wennborg | 2e56d95 | 2015-01-27 23:34:35 +0000 | [diff] [blame] | 293 | #define _XCR_XFEATURE_ENABLED_MASK 0 |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 294 | unsigned __int64 __cdecl _xgetbv(unsigned int); |
| 295 | void __cdecl _xrstor(void const *, unsigned __int64); |
| 296 | void __cdecl _xsave(void *, unsigned __int64); |
| 297 | void __cdecl _xsaveopt(void *, unsigned __int64); |
| 298 | void __cdecl _xsetbv(unsigned int, unsigned __int64); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 299 | |
| 300 | /* These additional intrinsics are turned on in x64/amd64/x86_64 mode. */ |
Warren Hunt | 3f98794 | 2013-09-30 21:08:05 +0000 | [diff] [blame] | 301 | #ifdef __x86_64__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 302 | void __addgsbyte(unsigned long, unsigned char); |
| 303 | void __addgsdword(unsigned long, unsigned long); |
| 304 | void __addgsqword(unsigned long, unsigned __int64); |
| 305 | void __addgsword(unsigned long, unsigned short); |
Reid Kleckner | f08d658 | 2014-01-27 19:16:35 +0000 | [diff] [blame] | 306 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 307 | void __faststorefence(void); |
| 308 | void __incgsbyte(unsigned long); |
| 309 | void __incgsdword(unsigned long); |
| 310 | void __incgsqword(unsigned long); |
| 311 | void __incgsword(unsigned long); |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 312 | unsigned char __lwpins64(unsigned __int64, unsigned int, unsigned int); |
| 313 | void __lwpval64(unsigned __int64, unsigned int, unsigned int); |
| 314 | unsigned __int64 __lzcnt64(unsigned __int64); |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 315 | static __inline__ |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 316 | void __movsq(unsigned long long *, unsigned long long const *, size_t); |
| 317 | __int64 __mulh(__int64, __int64); |
Reid Kleckner | 924eb2a | 2014-01-27 18:48:02 +0000 | [diff] [blame] | 318 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 319 | unsigned __int64 __popcnt64(unsigned __int64); |
Hans Wennborg | a4421e0 | 2014-03-12 21:09:05 +0000 | [diff] [blame] | 320 | static __inline__ |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 321 | unsigned char __readgsbyte(unsigned long); |
Hans Wennborg | a4421e0 | 2014-03-12 21:09:05 +0000 | [diff] [blame] | 322 | static __inline__ |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 323 | unsigned long __readgsdword(unsigned long); |
Hans Wennborg | a4421e0 | 2014-03-12 21:09:05 +0000 | [diff] [blame] | 324 | static __inline__ |
| 325 | unsigned __int64 __readgsqword(unsigned long); |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 326 | unsigned short __readgsword(unsigned long); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 327 | unsigned __int64 __shiftleft128(unsigned __int64 _LowPart, |
| 328 | unsigned __int64 _HighPart, |
| 329 | unsigned char _Shift); |
| 330 | unsigned __int64 __shiftright128(unsigned __int64 _LowPart, |
| 331 | unsigned __int64 _HighPart, |
| 332 | unsigned char _Shift); |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 333 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 334 | void __stosq(unsigned __int64 *, unsigned __int64, size_t); |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 335 | unsigned char __vmx_on(unsigned __int64 *); |
| 336 | unsigned char __vmx_vmclear(unsigned __int64 *); |
| 337 | unsigned char __vmx_vmlaunch(void); |
| 338 | unsigned char __vmx_vmptrld(unsigned __int64 *); |
| 339 | unsigned char __vmx_vmread(size_t, size_t *); |
| 340 | unsigned char __vmx_vmresume(void); |
| 341 | unsigned char __vmx_vmwrite(size_t, size_t); |
| 342 | void __writegsbyte(unsigned long, unsigned char); |
| 343 | void __writegsdword(unsigned long, unsigned long); |
| 344 | void __writegsqword(unsigned long, unsigned __int64); |
| 345 | void __writegsword(unsigned long, unsigned short); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 346 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 347 | unsigned char _BitScanForward64(unsigned long *_Index, unsigned __int64 _Mask); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 348 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 349 | unsigned char _BitScanReverse64(unsigned long *_Index, unsigned __int64 _Mask); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 350 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 351 | unsigned char _bittest64(__int64 const *, __int64); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 352 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 353 | unsigned char _bittestandcomplement64(__int64 *, __int64); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 354 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 355 | unsigned char _bittestandreset64(__int64 *, __int64); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 356 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 357 | unsigned char _bittestandset64(__int64 *, __int64); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 358 | unsigned __int64 __cdecl _byteswap_uint64(unsigned __int64); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 359 | long _InterlockedAnd_np(long volatile *_Value, long _Mask); |
| 360 | short _InterlockedAnd16_np(short volatile *_Value, short _Mask); |
| 361 | __int64 _InterlockedAnd64_np(__int64 volatile *_Value, __int64 _Mask); |
| 362 | char _InterlockedAnd8_np(char volatile *_Value, char _Mask); |
| 363 | unsigned char _interlockedbittestandreset64(__int64 volatile *, __int64); |
Hans Wennborg | a316933 | 2014-03-13 17:05:09 +0000 | [diff] [blame] | 364 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 365 | unsigned char _interlockedbittestandset64(__int64 volatile *, __int64); |
| 366 | long _InterlockedCompareExchange_np(long volatile *_Destination, long _Exchange, |
| 367 | long _Comparand); |
| 368 | unsigned char _InterlockedCompareExchange128(__int64 volatile *_Destination, |
| 369 | __int64 _ExchangeHigh, |
| 370 | __int64 _ExchangeLow, |
| 371 | __int64 *_CompareandResult); |
| 372 | unsigned char _InterlockedCompareExchange128_np(__int64 volatile *_Destination, |
| 373 | __int64 _ExchangeHigh, |
| 374 | __int64 _ExchangeLow, |
| 375 | __int64 *_ComparandResult); |
| 376 | short _InterlockedCompareExchange16_np(short volatile *_Destination, |
| 377 | short _Exchange, short _Comparand); |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 378 | __int64 _InterlockedCompareExchange64_HLEAcquire(__int64 volatile *, __int64, |
| 379 | __int64); |
| 380 | __int64 _InterlockedCompareExchange64_HLERelease(__int64 volatile *, __int64, |
| 381 | __int64); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 382 | __int64 _InterlockedCompareExchange64_np(__int64 volatile *_Destination, |
| 383 | __int64 _Exchange, __int64 _Comparand); |
Eric Christopher | 58b4043 | 2014-01-25 01:38:30 +0000 | [diff] [blame] | 384 | void *_InterlockedCompareExchangePointer(void *volatile *_Destination, |
| 385 | void *_Exchange, void *_Comparand); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 386 | void *_InterlockedCompareExchangePointer_np(void *volatile *_Destination, |
| 387 | void *_Exchange, void *_Comparand); |
Reid Kleckner | 924eb2a | 2014-01-27 18:48:02 +0000 | [diff] [blame] | 388 | static __inline__ |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 389 | __int64 _InterlockedDecrement64(__int64 volatile *_Addend); |
Reid Kleckner | 924eb2a | 2014-01-27 18:48:02 +0000 | [diff] [blame] | 390 | static __inline__ |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 391 | __int64 _InterlockedExchange64(__int64 volatile *_Target, __int64 _Value); |
Reid Kleckner | 924eb2a | 2014-01-27 18:48:02 +0000 | [diff] [blame] | 392 | static __inline__ |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 393 | __int64 _InterlockedExchangeAdd64(__int64 volatile *_Addend, __int64 _Value); |
| 394 | void *_InterlockedExchangePointer(void *volatile *_Target, void *_Value); |
Reid Kleckner | 924eb2a | 2014-01-27 18:48:02 +0000 | [diff] [blame] | 395 | static __inline__ |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 396 | __int64 _InterlockedIncrement64(__int64 volatile *_Addend); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 397 | long _InterlockedOr_np(long volatile *_Value, long _Mask); |
| 398 | short _InterlockedOr16_np(short volatile *_Value, short _Mask); |
Reid Kleckner | 924eb2a | 2014-01-27 18:48:02 +0000 | [diff] [blame] | 399 | static __inline__ |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 400 | __int64 _InterlockedOr64(__int64 volatile *_Value, __int64 _Mask); |
Warren Hunt | 41a993f | 2013-09-28 00:15:41 +0000 | [diff] [blame] | 401 | __int64 _InterlockedOr64_np(__int64 volatile *_Value, __int64 _Mask); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 402 | char _InterlockedOr8_np(char volatile *_Value, char _Mask); |
| 403 | long _InterlockedXor_np(long volatile *_Value, long _Mask); |
| 404 | short _InterlockedXor16_np(short volatile *_Value, short _Mask); |
Reid Kleckner | 924eb2a | 2014-01-27 18:48:02 +0000 | [diff] [blame] | 405 | static __inline__ |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 406 | __int64 _InterlockedXor64(__int64 volatile *_Value, __int64 _Mask); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 407 | __int64 _InterlockedXor64_np(__int64 volatile *_Value, __int64 _Mask); |
| 408 | char _InterlockedXor8_np(char volatile *_Value, char _Mask); |
Reid Kleckner | 924eb2a | 2014-01-27 18:48:02 +0000 | [diff] [blame] | 409 | static __inline__ |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 410 | __int64 _mul128(__int64 _Multiplier, __int64 _Multiplicand, |
| 411 | __int64 *_HighProduct); |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 412 | unsigned __int64 _rorx_u64(unsigned __int64, const unsigned int); |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 413 | __int64 _sarx_i64(__int64, unsigned int); |
Nico Weber | a62cffa | 2014-07-08 18:34:46 +0000 | [diff] [blame] | 414 | #if __STDC_HOSTED__ |
| 415 | int __cdecl _setjmpex(jmp_buf); |
| 416 | #endif |
Eric Christopher | 439137e | 2014-01-24 12:13:47 +0000 | [diff] [blame] | 417 | unsigned __int64 _shlx_u64(unsigned __int64, unsigned int); |
David Majnemer | 5450763 | 2014-12-02 23:30:26 +0000 | [diff] [blame] | 418 | unsigned __int64 _shrx_u64(unsigned __int64, unsigned int); |
David Majnemer | 5f9afc5 | 2014-12-02 23:30:24 +0000 | [diff] [blame] | 419 | /* |
| 420 | * Multiply two 64-bit integers and obtain a 64-bit result. |
| 421 | * The low-half is returned directly and the high half is in an out parameter. |
| 422 | */ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 423 | static __inline__ unsigned __int64 __DEFAULT_FN_ATTRS |
David Majnemer | 5f9afc5 | 2014-12-02 23:30:24 +0000 | [diff] [blame] | 424 | _umul128(unsigned __int64 _Multiplier, unsigned __int64 _Multiplicand, |
| 425 | unsigned __int64 *_HighProduct) { |
| 426 | unsigned __int128 _FullProduct = |
| 427 | (unsigned __int128)_Multiplier * (unsigned __int128)_Multiplicand; |
David Majnemer | 00973ce | 2014-12-02 23:44:40 +0000 | [diff] [blame] | 428 | *_HighProduct = _FullProduct >> 64; |
| 429 | return _FullProduct; |
David Majnemer | 5f9afc5 | 2014-12-02 23:30:24 +0000 | [diff] [blame] | 430 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 431 | static __inline__ unsigned __int64 __DEFAULT_FN_ATTRS |
Reid Kleckner | baf7709 | 2014-12-03 23:36:14 +0000 | [diff] [blame] | 432 | __umulh(unsigned __int64 _Multiplier, unsigned __int64 _Multiplicand) { |
| 433 | unsigned __int128 _FullProduct = |
| 434 | (unsigned __int128)_Multiplier * (unsigned __int128)_Multiplicand; |
| 435 | return _FullProduct >> 64; |
| 436 | } |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 437 | void __cdecl _xrstor64(void const *, unsigned __int64); |
| 438 | void __cdecl _xsave64(void *, unsigned __int64); |
| 439 | void __cdecl _xsaveopt64(void *, unsigned __int64); |
Eric Christopher | 0db88a7 | 2013-09-18 22:24:01 +0000 | [diff] [blame] | 440 | |
Warren Hunt | 3f98794 | 2013-09-30 21:08:05 +0000 | [diff] [blame] | 441 | #endif /* __x86_64__ */ |
Reid Kleckner | f0e2322 | 2013-09-19 00:19:53 +0000 | [diff] [blame] | 442 | |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 443 | /*----------------------------------------------------------------------------*\ |
| 444 | |* Bit Twiddling |
| 445 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 446 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 447 | _rotl8(unsigned char _Value, unsigned char _Shift) { |
| 448 | _Shift &= 0x7; |
| 449 | return _Shift ? (_Value << _Shift) | (_Value >> (8 - _Shift)) : _Value; |
| 450 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 451 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 452 | _rotr8(unsigned char _Value, unsigned char _Shift) { |
| 453 | _Shift &= 0x7; |
| 454 | return _Shift ? (_Value >> _Shift) | (_Value << (8 - _Shift)) : _Value; |
| 455 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 456 | static __inline__ unsigned short __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 457 | _rotl16(unsigned short _Value, unsigned char _Shift) { |
| 458 | _Shift &= 0xf; |
| 459 | return _Shift ? (_Value << _Shift) | (_Value >> (16 - _Shift)) : _Value; |
| 460 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 461 | static __inline__ unsigned short __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 462 | _rotr16(unsigned short _Value, unsigned char _Shift) { |
| 463 | _Shift &= 0xf; |
| 464 | return _Shift ? (_Value >> _Shift) | (_Value << (16 - _Shift)) : _Value; |
| 465 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 466 | static __inline__ unsigned int __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 467 | _rotl(unsigned int _Value, int _Shift) { |
| 468 | _Shift &= 0x1f; |
| 469 | return _Shift ? (_Value << _Shift) | (_Value >> (32 - _Shift)) : _Value; |
| 470 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 471 | static __inline__ unsigned int __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 472 | _rotr(unsigned int _Value, int _Shift) { |
| 473 | _Shift &= 0x1f; |
| 474 | return _Shift ? (_Value >> _Shift) | (_Value << (32 - _Shift)) : _Value; |
| 475 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 476 | static __inline__ unsigned long __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 477 | _lrotl(unsigned long _Value, int _Shift) { |
| 478 | _Shift &= 0x1f; |
| 479 | return _Shift ? (_Value << _Shift) | (_Value >> (32 - _Shift)) : _Value; |
| 480 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 481 | static __inline__ unsigned long __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 482 | _lrotr(unsigned long _Value, int _Shift) { |
| 483 | _Shift &= 0x1f; |
| 484 | return _Shift ? (_Value >> _Shift) | (_Value << (32 - _Shift)) : _Value; |
| 485 | } |
| 486 | static |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 487 | __inline__ unsigned __int64 __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 488 | _rotl64(unsigned __int64 _Value, int _Shift) { |
| 489 | _Shift &= 0x3f; |
| 490 | return _Shift ? (_Value << _Shift) | (_Value >> (64 - _Shift)) : _Value; |
| 491 | } |
| 492 | static |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 493 | __inline__ unsigned __int64 __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 494 | _rotr64(unsigned __int64 _Value, int _Shift) { |
| 495 | _Shift &= 0x3f; |
| 496 | return _Shift ? (_Value >> _Shift) | (_Value << (64 - _Shift)) : _Value; |
| 497 | } |
| 498 | /*----------------------------------------------------------------------------*\ |
| 499 | |* Bit Counting and Testing |
| 500 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 501 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 502 | _BitScanForward(unsigned long *_Index, unsigned long _Mask) { |
| 503 | if (!_Mask) |
| 504 | return 0; |
| 505 | *_Index = __builtin_ctzl(_Mask); |
| 506 | return 1; |
| 507 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 508 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 509 | _BitScanReverse(unsigned long *_Index, unsigned long _Mask) { |
| 510 | if (!_Mask) |
| 511 | return 0; |
| 512 | *_Index = 31 - __builtin_clzl(_Mask); |
| 513 | return 1; |
| 514 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 515 | static __inline__ unsigned short __DEFAULT_FN_ATTRS |
David Majnemer | 8dadce7 | 2015-07-13 02:53:23 +0000 | [diff] [blame^] | 516 | __popcnt16(unsigned short _Value) { |
| 517 | return __builtin_popcount((int)_Value); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 518 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 519 | static __inline__ unsigned int __DEFAULT_FN_ATTRS |
David Majnemer | 8dadce7 | 2015-07-13 02:53:23 +0000 | [diff] [blame^] | 520 | __popcnt(unsigned int _Value) { |
| 521 | return __builtin_popcount(_Value); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 522 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 523 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
David Majnemer | 8dadce7 | 2015-07-13 02:53:23 +0000 | [diff] [blame^] | 524 | _bittest(long const *__BitBase, long __BitPos) { |
| 525 | return (*__BitBase >> __BitPos) & 1; |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 526 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 527 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
David Majnemer | 8dadce7 | 2015-07-13 02:53:23 +0000 | [diff] [blame^] | 528 | _bittestandcomplement(long *__BitBase, long __BitPos) { |
| 529 | unsigned char __Res = (*__BitBase >> __BitPos) & 1; |
| 530 | *__BitBase = *__BitBase ^ (1 << __BitPos); |
| 531 | return __Res; |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 532 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 533 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
David Majnemer | 8dadce7 | 2015-07-13 02:53:23 +0000 | [diff] [blame^] | 534 | _bittestandreset(long *__BitBase, long __BitPos) { |
| 535 | unsigned char __Res = (*__BitBase >> __BitPos) & 1; |
| 536 | *__BitBase = *__BitBase & ~(1 << __BitPos); |
| 537 | return __Res; |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 538 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 539 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
David Majnemer | 8dadce7 | 2015-07-13 02:53:23 +0000 | [diff] [blame^] | 540 | _bittestandset(long *__BitBase, long __BitPos) { |
| 541 | unsigned char __Res = (*__BitBase >> __BitPos) & 1; |
| 542 | *__BitBase = *__BitBase | (1 << __BitPos); |
| 543 | return __Res; |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 544 | } |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 545 | #if defined(__i386__) || defined(__x86_64__) |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 546 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
Hans Wennborg | a316933 | 2014-03-13 17:05:09 +0000 | [diff] [blame] | 547 | _interlockedbittestandset(long volatile *__BitBase, long __BitPos) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 548 | return (__atomic_fetch_or(__BitBase, 1l << __BitPos, 5) >> __BitPos) & 1; |
Hans Wennborg | a316933 | 2014-03-13 17:05:09 +0000 | [diff] [blame] | 549 | } |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 550 | #endif |
Warren Hunt | 3f98794 | 2013-09-30 21:08:05 +0000 | [diff] [blame] | 551 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 552 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 553 | _BitScanForward64(unsigned long *_Index, unsigned __int64 _Mask) { |
| 554 | if (!_Mask) |
| 555 | return 0; |
| 556 | *_Index = __builtin_ctzll(_Mask); |
| 557 | return 1; |
| 558 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 559 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 560 | _BitScanReverse64(unsigned long *_Index, unsigned __int64 _Mask) { |
| 561 | if (!_Mask) |
| 562 | return 0; |
| 563 | *_Index = 63 - __builtin_clzll(_Mask); |
| 564 | return 1; |
| 565 | } |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 566 | static __inline__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 567 | unsigned __int64 __DEFAULT_FN_ATTRS |
David Majnemer | 8dadce7 | 2015-07-13 02:53:23 +0000 | [diff] [blame^] | 568 | __popcnt64(unsigned __int64 _Value) { |
| 569 | return __builtin_popcountll(_Value); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 570 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 571 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
David Majnemer | 8dadce7 | 2015-07-13 02:53:23 +0000 | [diff] [blame^] | 572 | _bittest64(__int64 const *__BitBase, __int64 __BitPos) { |
| 573 | return (*__BitBase >> __BitPos) & 1; |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 574 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 575 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
David Majnemer | 8dadce7 | 2015-07-13 02:53:23 +0000 | [diff] [blame^] | 576 | _bittestandcomplement64(__int64 *__BitBase, __int64 __BitPos) { |
| 577 | unsigned char __Res = (*__BitBase >> __BitPos) & 1; |
| 578 | *__BitBase = *__BitBase ^ (1ll << __BitPos); |
| 579 | return __Res; |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 580 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 581 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
David Majnemer | 8dadce7 | 2015-07-13 02:53:23 +0000 | [diff] [blame^] | 582 | _bittestandreset64(__int64 *__BitBase, __int64 __BitPos) { |
| 583 | unsigned char __Res = (*__BitBase >> __BitPos) & 1; |
| 584 | *__BitBase = *__BitBase & ~(1ll << __BitPos); |
| 585 | return __Res; |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 586 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 587 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
David Majnemer | 8dadce7 | 2015-07-13 02:53:23 +0000 | [diff] [blame^] | 588 | _bittestandset64(__int64 *__BitBase, __int64 __BitPos) { |
| 589 | unsigned char __Res = (*__BitBase >> __BitPos) & 1; |
| 590 | *__BitBase = *__BitBase | (1ll << __BitPos); |
| 591 | return __Res; |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 592 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 593 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
Hans Wennborg | a316933 | 2014-03-13 17:05:09 +0000 | [diff] [blame] | 594 | _interlockedbittestandset64(__int64 volatile *__BitBase, __int64 __BitPos) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 595 | return (__atomic_fetch_or(__BitBase, 1ll << __BitPos, 5) >> __BitPos) & 1; |
Hans Wennborg | a316933 | 2014-03-13 17:05:09 +0000 | [diff] [blame] | 596 | } |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 597 | #endif |
| 598 | /*----------------------------------------------------------------------------*\ |
| 599 | |* Interlocked Exchange Add |
| 600 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 601 | static __inline__ char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 602 | _InterlockedExchangeAdd8(char volatile *_Addend, char _Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 603 | return __atomic_fetch_add(_Addend, _Value, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 604 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 605 | static __inline__ short __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 606 | _InterlockedExchangeAdd16(short volatile *_Addend, short _Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 607 | return __atomic_fetch_add(_Addend, _Value, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 608 | } |
Warren Hunt | 3f98794 | 2013-09-30 21:08:05 +0000 | [diff] [blame] | 609 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 610 | static __inline__ __int64 __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 611 | _InterlockedExchangeAdd64(__int64 volatile *_Addend, __int64 _Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 612 | return __atomic_fetch_add(_Addend, _Value, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 613 | } |
| 614 | #endif |
| 615 | /*----------------------------------------------------------------------------*\ |
| 616 | |* Interlocked Exchange Sub |
| 617 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 618 | static __inline__ char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 619 | _InterlockedExchangeSub8(char volatile *_Subend, char _Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 620 | return __atomic_fetch_sub(_Subend, _Value, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 621 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 622 | static __inline__ short __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 623 | _InterlockedExchangeSub16(short volatile *_Subend, short _Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 624 | return __atomic_fetch_sub(_Subend, _Value, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 625 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 626 | static __inline__ long __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 627 | _InterlockedExchangeSub(long volatile *_Subend, long _Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 628 | return __atomic_fetch_sub(_Subend, _Value, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 629 | } |
Warren Hunt | 3f98794 | 2013-09-30 21:08:05 +0000 | [diff] [blame] | 630 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 631 | static __inline__ __int64 __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 632 | _InterlockedExchangeSub64(__int64 volatile *_Subend, __int64 _Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 633 | return __atomic_fetch_sub(_Subend, _Value, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 634 | } |
| 635 | #endif |
| 636 | /*----------------------------------------------------------------------------*\ |
| 637 | |* Interlocked Increment |
| 638 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 639 | static __inline__ short __DEFAULT_FN_ATTRS |
Hans Wennborg | 2ed8880 | 2014-01-23 19:15:39 +0000 | [diff] [blame] | 640 | _InterlockedIncrement16(short volatile *_Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 641 | return __atomic_add_fetch(_Value, 1, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 642 | } |
Warren Hunt | 3f98794 | 2013-09-30 21:08:05 +0000 | [diff] [blame] | 643 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 644 | static __inline__ __int64 __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 645 | _InterlockedIncrement64(__int64 volatile *_Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 646 | return __atomic_add_fetch(_Value, 1, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 647 | } |
| 648 | #endif |
| 649 | /*----------------------------------------------------------------------------*\ |
| 650 | |* Interlocked Decrement |
| 651 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 652 | static __inline__ short __DEFAULT_FN_ATTRS |
Hans Wennborg | 2ed8880 | 2014-01-23 19:15:39 +0000 | [diff] [blame] | 653 | _InterlockedDecrement16(short volatile *_Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 654 | return __atomic_sub_fetch(_Value, 1, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 655 | } |
Warren Hunt | 3f98794 | 2013-09-30 21:08:05 +0000 | [diff] [blame] | 656 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 657 | static __inline__ __int64 __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 658 | _InterlockedDecrement64(__int64 volatile *_Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 659 | return __atomic_sub_fetch(_Value, 1, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 660 | } |
| 661 | #endif |
| 662 | /*----------------------------------------------------------------------------*\ |
| 663 | |* Interlocked And |
| 664 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 665 | static __inline__ char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 666 | _InterlockedAnd8(char volatile *_Value, char _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 667 | return __atomic_and_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 668 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 669 | static __inline__ short __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 670 | _InterlockedAnd16(short volatile *_Value, short _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 671 | return __atomic_and_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 672 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 673 | static __inline__ long __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 674 | _InterlockedAnd(long volatile *_Value, long _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 675 | return __atomic_and_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 676 | } |
Warren Hunt | 3f98794 | 2013-09-30 21:08:05 +0000 | [diff] [blame] | 677 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 678 | static __inline__ __int64 __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 679 | _InterlockedAnd64(__int64 volatile *_Value, __int64 _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 680 | return __atomic_and_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 681 | } |
| 682 | #endif |
| 683 | /*----------------------------------------------------------------------------*\ |
| 684 | |* Interlocked Or |
| 685 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 686 | static __inline__ char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 687 | _InterlockedOr8(char volatile *_Value, char _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 688 | return __atomic_or_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 689 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 690 | static __inline__ short __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 691 | _InterlockedOr16(short volatile *_Value, short _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 692 | return __atomic_or_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 693 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 694 | static __inline__ long __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 695 | _InterlockedOr(long volatile *_Value, long _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 696 | return __atomic_or_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 697 | } |
Warren Hunt | 3f98794 | 2013-09-30 21:08:05 +0000 | [diff] [blame] | 698 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 699 | static __inline__ __int64 __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 700 | _InterlockedOr64(__int64 volatile *_Value, __int64 _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 701 | return __atomic_or_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 702 | } |
| 703 | #endif |
| 704 | /*----------------------------------------------------------------------------*\ |
| 705 | |* Interlocked Xor |
| 706 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 707 | static __inline__ char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 708 | _InterlockedXor8(char volatile *_Value, char _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 709 | return __atomic_xor_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 710 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 711 | static __inline__ short __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 712 | _InterlockedXor16(short volatile *_Value, short _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 713 | return __atomic_xor_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 714 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 715 | static __inline__ long __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 716 | _InterlockedXor(long volatile *_Value, long _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 717 | return __atomic_xor_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 718 | } |
Warren Hunt | 3f98794 | 2013-09-30 21:08:05 +0000 | [diff] [blame] | 719 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 720 | static __inline__ __int64 __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 721 | _InterlockedXor64(__int64 volatile *_Value, __int64 _Mask) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 722 | return __atomic_xor_fetch(_Value, _Mask, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 723 | } |
| 724 | #endif |
| 725 | /*----------------------------------------------------------------------------*\ |
| 726 | |* Interlocked Exchange |
| 727 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 728 | static __inline__ char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 729 | _InterlockedExchange8(char volatile *_Target, char _Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 730 | __atomic_exchange(_Target, &_Value, &_Value, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 731 | return _Value; |
| 732 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 733 | static __inline__ short __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 734 | _InterlockedExchange16(short volatile *_Target, short _Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 735 | __atomic_exchange(_Target, &_Value, &_Value, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 736 | return _Value; |
| 737 | } |
Warren Hunt | 3f98794 | 2013-09-30 21:08:05 +0000 | [diff] [blame] | 738 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 739 | static __inline__ __int64 __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 740 | _InterlockedExchange64(__int64 volatile *_Target, __int64 _Value) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 741 | __atomic_exchange(_Target, &_Value, &_Value, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 742 | return _Value; |
| 743 | } |
| 744 | #endif |
| 745 | /*----------------------------------------------------------------------------*\ |
| 746 | |* Interlocked Compare Exchange |
| 747 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 748 | static __inline__ char __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 749 | _InterlockedCompareExchange8(char volatile *_Destination, |
| 750 | char _Exchange, char _Comparand) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 751 | __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0, 5, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 752 | return _Comparand; |
| 753 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 754 | static __inline__ short __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 755 | _InterlockedCompareExchange16(short volatile *_Destination, |
| 756 | short _Exchange, short _Comparand) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 757 | __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0, 5, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 758 | return _Comparand; |
| 759 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 760 | static __inline__ __int64 __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 761 | _InterlockedCompareExchange64(__int64 volatile *_Destination, |
| 762 | __int64 _Exchange, __int64 _Comparand) { |
David Majnemer | 3c8ea5f | 2015-07-13 02:53:19 +0000 | [diff] [blame] | 763 | __atomic_compare_exchange(_Destination, &_Comparand, &_Exchange, 0, 5, 5); |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 764 | return _Comparand; |
| 765 | } |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 766 | /*----------------------------------------------------------------------------*\ |
Reid Kleckner | 00d33a5 | 2013-10-17 01:29:48 +0000 | [diff] [blame] | 767 | |* Barriers |
| 768 | \*----------------------------------------------------------------------------*/ |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 769 | #if defined(__i386__) || defined(__x86_64__) |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 770 | static __inline__ void __DEFAULT_FN_ATTRS |
David Majnemer | 1cf22e6 | 2015-02-04 00:26:10 +0000 | [diff] [blame] | 771 | __attribute__((__deprecated__("use other intrinsics or C++11 atomics instead"))) |
Reid Kleckner | 00d33a5 | 2013-10-17 01:29:48 +0000 | [diff] [blame] | 772 | _ReadWriteBarrier(void) { |
| 773 | __asm__ volatile ("" : : : "memory"); |
| 774 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 775 | static __inline__ void __DEFAULT_FN_ATTRS |
David Majnemer | 1cf22e6 | 2015-02-04 00:26:10 +0000 | [diff] [blame] | 776 | __attribute__((__deprecated__("use other intrinsics or C++11 atomics instead"))) |
Reid Kleckner | 00d33a5 | 2013-10-17 01:29:48 +0000 | [diff] [blame] | 777 | _ReadBarrier(void) { |
| 778 | __asm__ volatile ("" : : : "memory"); |
| 779 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 780 | static __inline__ void __DEFAULT_FN_ATTRS |
David Majnemer | 1cf22e6 | 2015-02-04 00:26:10 +0000 | [diff] [blame] | 781 | __attribute__((__deprecated__("use other intrinsics or C++11 atomics instead"))) |
Reid Kleckner | 00d33a5 | 2013-10-17 01:29:48 +0000 | [diff] [blame] | 782 | _WriteBarrier(void) { |
| 783 | __asm__ volatile ("" : : : "memory"); |
| 784 | } |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 785 | #endif |
Reid Kleckner | f08d658 | 2014-01-27 19:16:35 +0000 | [diff] [blame] | 786 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 787 | static __inline__ void __DEFAULT_FN_ATTRS |
Reid Kleckner | f08d658 | 2014-01-27 19:16:35 +0000 | [diff] [blame] | 788 | __faststorefence(void) { |
| 789 | __asm__ volatile("lock orq $0, (%%rsp)" : : : "memory"); |
| 790 | } |
| 791 | #endif |
Reid Kleckner | 00d33a5 | 2013-10-17 01:29:48 +0000 | [diff] [blame] | 792 | /*----------------------------------------------------------------------------*\ |
Hans Wennborg | a4421e0 | 2014-03-12 21:09:05 +0000 | [diff] [blame] | 793 | |* readfs, readgs |
| 794 | |* (Pointers in address space #256 and #257 are relative to the GS and FS |
| 795 | |* segment registers, respectively.) |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 796 | \*----------------------------------------------------------------------------*/ |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 797 | #define __ptr_to_addr_space(__addr_space_nbr, __type, __offset) \ |
| 798 | ((volatile __type __attribute__((__address_space__(__addr_space_nbr)))*) \ |
| 799 | (__offset)) |
| 800 | |
Hans Wennborg | a4421e0 | 2014-03-12 21:09:05 +0000 | [diff] [blame] | 801 | #ifdef __i386__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 802 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 803 | __readfsbyte(unsigned long __offset) { |
| 804 | return *__ptr_to_addr_space(257, unsigned char, __offset); |
| 805 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 806 | static __inline__ unsigned __int64 __DEFAULT_FN_ATTRS |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 807 | __readfsqword(unsigned long __offset) { |
| 808 | return *__ptr_to_addr_space(257, unsigned __int64, __offset); |
| 809 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 810 | static __inline__ unsigned short __DEFAULT_FN_ATTRS |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 811 | __readfsword(unsigned long __offset) { |
| 812 | return *__ptr_to_addr_space(257, unsigned short, __offset); |
| 813 | } |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 814 | #endif |
Hans Wennborg | a4421e0 | 2014-03-12 21:09:05 +0000 | [diff] [blame] | 815 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 816 | static __inline__ unsigned char __DEFAULT_FN_ATTRS |
Hans Wennborg | a4421e0 | 2014-03-12 21:09:05 +0000 | [diff] [blame] | 817 | __readgsbyte(unsigned long __offset) { |
| 818 | return *__ptr_to_addr_space(256, unsigned char, __offset); |
| 819 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 820 | static __inline__ unsigned long __DEFAULT_FN_ATTRS |
Hans Wennborg | a4421e0 | 2014-03-12 21:09:05 +0000 | [diff] [blame] | 821 | __readgsdword(unsigned long __offset) { |
| 822 | return *__ptr_to_addr_space(256, unsigned long, __offset); |
| 823 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 824 | static __inline__ unsigned __int64 __DEFAULT_FN_ATTRS |
Hans Wennborg | a4421e0 | 2014-03-12 21:09:05 +0000 | [diff] [blame] | 825 | __readgsqword(unsigned long __offset) { |
| 826 | return *__ptr_to_addr_space(256, unsigned __int64, __offset); |
| 827 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 828 | static __inline__ unsigned short __DEFAULT_FN_ATTRS |
Hans Wennborg | a4421e0 | 2014-03-12 21:09:05 +0000 | [diff] [blame] | 829 | __readgsword(unsigned long __offset) { |
| 830 | return *__ptr_to_addr_space(256, unsigned short, __offset); |
| 831 | } |
| 832 | #endif |
| 833 | #undef __ptr_to_addr_space |
Hans Wennborg | 74ca0c4 | 2014-01-24 00:52:39 +0000 | [diff] [blame] | 834 | /*----------------------------------------------------------------------------*\ |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 835 | |* movs, stos |
| 836 | \*----------------------------------------------------------------------------*/ |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 837 | #if defined(__i386__) || defined(__x86_64__) |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 838 | static __inline__ void __DEFAULT_FN_ATTRS |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 839 | __movsb(unsigned char *__dst, unsigned char const *__src, size_t __n) { |
| 840 | __asm__("rep movsb" : : "D"(__dst), "S"(__src), "c"(__n) |
| 841 | : "%edi", "%esi", "%ecx"); |
| 842 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 843 | static __inline__ void __DEFAULT_FN_ATTRS |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 844 | __movsd(unsigned long *__dst, unsigned long const *__src, size_t __n) { |
| 845 | __asm__("rep movsl" : : "D"(__dst), "S"(__src), "c"(__n) |
| 846 | : "%edi", "%esi", "%ecx"); |
| 847 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 848 | static __inline__ void __DEFAULT_FN_ATTRS |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 849 | __movsw(unsigned short *__dst, unsigned short const *__src, size_t __n) { |
| 850 | __asm__("rep movsh" : : "D"(__dst), "S"(__src), "c"(__n) |
| 851 | : "%edi", "%esi", "%ecx"); |
| 852 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 853 | static __inline__ void __DEFAULT_FN_ATTRS |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 854 | __stosb(unsigned char *__dst, unsigned char __x, size_t __n) { |
| 855 | __asm__("rep stosb" : : "D"(__dst), "a"(__x), "c"(__n) |
| 856 | : "%edi", "%ecx"); |
| 857 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 858 | static __inline__ void __DEFAULT_FN_ATTRS |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 859 | __stosd(unsigned long *__dst, unsigned long __x, size_t __n) { |
| 860 | __asm__("rep stosl" : : "D"(__dst), "a"(__x), "c"(__n) |
| 861 | : "%edi", "%ecx"); |
| 862 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 863 | static __inline__ void __DEFAULT_FN_ATTRS |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 864 | __stosw(unsigned short *__dst, unsigned short __x, size_t __n) { |
| 865 | __asm__("rep stosh" : : "D"(__dst), "a"(__x), "c"(__n) |
| 866 | : "%edi", "%ecx"); |
| 867 | } |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 868 | #endif |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 869 | #ifdef __x86_64__ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 870 | static __inline__ void __DEFAULT_FN_ATTRS |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 871 | __movsq(unsigned long long *__dst, unsigned long long const *__src, size_t __n) { |
| 872 | __asm__("rep movsq" : : "D"(__dst), "S"(__src), "c"(__n) |
| 873 | : "%edi", "%esi", "%ecx"); |
| 874 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 875 | static __inline__ void __DEFAULT_FN_ATTRS |
Hans Wennborg | d9be72e | 2014-03-12 22:00:32 +0000 | [diff] [blame] | 876 | __stosq(unsigned __int64 *__dst, unsigned __int64 __x, size_t __n) { |
| 877 | __asm__("rep stosq" : : "D"(__dst), "a"(__x), "c"(__n) |
| 878 | : "%edi", "%ecx"); |
| 879 | } |
| 880 | #endif |
| 881 | |
| 882 | /*----------------------------------------------------------------------------*\ |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 883 | |* Misc |
| 884 | \*----------------------------------------------------------------------------*/ |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 885 | static __inline__ void * __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 886 | _AddressOfReturnAddress(void) { |
| 887 | return (void*)((char*)__builtin_frame_address(0) + sizeof(void*)); |
| 888 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 889 | static __inline__ void * __DEFAULT_FN_ATTRS |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 890 | _ReturnAddress(void) { |
| 891 | return __builtin_return_address(0); |
| 892 | } |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 893 | #if defined(__i386__) || defined(__x86_64__) |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 894 | static __inline__ void __DEFAULT_FN_ATTRS |
Hans Wennborg | 854f7d3 | 2014-01-16 23:39:35 +0000 | [diff] [blame] | 895 | __cpuid(int __info[4], int __level) { |
Hans Wennborg | 854f7d3 | 2014-01-16 23:39:35 +0000 | [diff] [blame] | 896 | __asm__ ("cpuid" : "=a"(__info[0]), "=b" (__info[1]), "=c"(__info[2]), "=d"(__info[3]) |
Hans Wennborg | 12fb89e | 2014-01-31 19:44:55 +0000 | [diff] [blame] | 897 | : "a"(__level)); |
| 898 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 899 | static __inline__ void __DEFAULT_FN_ATTRS |
Hans Wennborg | 12fb89e | 2014-01-31 19:44:55 +0000 | [diff] [blame] | 900 | __cpuidex(int __info[4], int __level, int __ecx) { |
| 901 | __asm__ ("cpuid" : "=a"(__info[0]), "=b" (__info[1]), "=c"(__info[2]), "=d"(__info[3]) |
| 902 | : "a"(__level), "c"(__ecx)); |
Hans Wennborg | 854f7d3 | 2014-01-16 23:39:35 +0000 | [diff] [blame] | 903 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 904 | static __inline__ unsigned __int64 __cdecl __DEFAULT_FN_ATTRS |
Hans Wennborg | 854f7d3 | 2014-01-16 23:39:35 +0000 | [diff] [blame] | 905 | _xgetbv(unsigned int __xcr_no) { |
| 906 | unsigned int __eax, __edx; |
| 907 | __asm__ ("xgetbv" : "=a" (__eax), "=d" (__edx) : "c" (__xcr_no)); |
| 908 | return ((unsigned __int64)__edx << 32) | __eax; |
| 909 | } |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 910 | static __inline__ void __DEFAULT_FN_ATTRS |
Hans Wennborg | 740a4d6 | 2014-01-28 22:55:01 +0000 | [diff] [blame] | 911 | __halt(void) { |
| 912 | __asm__ volatile ("hlt"); |
| 913 | } |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 914 | #endif |
Warren Hunt | d6ffae9 | 2013-09-27 23:57:26 +0000 | [diff] [blame] | 915 | |
Reid Kleckner | 592dc61 | 2014-04-08 00:28:22 +0000 | [diff] [blame] | 916 | /*----------------------------------------------------------------------------*\ |
| 917 | |* Privileged intrinsics |
| 918 | \*----------------------------------------------------------------------------*/ |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 919 | #if defined(__i386__) || defined(__x86_64__) |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 920 | static __inline__ unsigned __int64 __DEFAULT_FN_ATTRS |
Reid Kleckner | 592dc61 | 2014-04-08 00:28:22 +0000 | [diff] [blame] | 921 | __readmsr(unsigned long __register) { |
| 922 | // Loads the contents of a 64-bit model specific register (MSR) specified in |
| 923 | // the ECX register into registers EDX:EAX. The EDX register is loaded with |
| 924 | // the high-order 32 bits of the MSR and the EAX register is loaded with the |
| 925 | // low-order 32 bits. If less than 64 bits are implemented in the MSR being |
| 926 | // read, the values returned to EDX:EAX in unimplemented bit locations are |
| 927 | // undefined. |
| 928 | unsigned long __edx; |
| 929 | unsigned long __eax; |
Reid Kleckner | 6df5254 | 2014-04-08 17:49:16 +0000 | [diff] [blame] | 930 | __asm__ ("rdmsr" : "=d"(__edx), "=a"(__eax) : "c"(__register)); |
Reid Kleckner | 592dc61 | 2014-04-08 00:28:22 +0000 | [diff] [blame] | 931 | return (((unsigned __int64)__edx) << 32) | (unsigned __int64)__eax; |
| 932 | } |
| 933 | |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 934 | static __inline__ unsigned long __DEFAULT_FN_ATTRS |
Reid Kleckner | 592dc61 | 2014-04-08 00:28:22 +0000 | [diff] [blame] | 935 | __readcr3(void) { |
Reid Kleckner | 6df5254 | 2014-04-08 17:49:16 +0000 | [diff] [blame] | 936 | unsigned long __cr3_val; |
| 937 | __asm__ __volatile__ ("mov %%cr3, %0" : "=q"(__cr3_val) : : "memory"); |
| 938 | return __cr3_val; |
Reid Kleckner | 592dc61 | 2014-04-08 00:28:22 +0000 | [diff] [blame] | 939 | } |
| 940 | |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 941 | static __inline__ void __DEFAULT_FN_ATTRS |
Reid Kleckner | 6df5254 | 2014-04-08 17:49:16 +0000 | [diff] [blame] | 942 | __writecr3(unsigned int __cr3_val) { |
| 943 | __asm__ ("mov %0, %%cr3" : : "q"(__cr3_val) : "memory"); |
Reid Kleckner | 592dc61 | 2014-04-08 00:28:22 +0000 | [diff] [blame] | 944 | } |
Saleem Abdulrasool | 702eefe | 2014-06-25 16:48:40 +0000 | [diff] [blame] | 945 | #endif |
Reid Kleckner | 592dc61 | 2014-04-08 00:28:22 +0000 | [diff] [blame] | 946 | |
Eric Christopher | cc87253 | 2013-09-18 22:40:18 +0000 | [diff] [blame] | 947 | #ifdef __cplusplus |
Eric Christopher | 0db88a7 | 2013-09-18 22:24:01 +0000 | [diff] [blame] | 948 | } |
Eric Christopher | d1428bf | 2013-08-31 00:22:48 +0000 | [diff] [blame] | 949 | #endif |
Reid Kleckner | f0e2322 | 2013-09-19 00:19:53 +0000 | [diff] [blame] | 950 | |
Michael Kuperstein | e45af54 | 2015-06-30 13:36:19 +0000 | [diff] [blame] | 951 | #undef __DEFAULT_FN_ATTRS |
Eric Christopher | 5a9bec1 | 2015-06-15 23:20:35 +0000 | [diff] [blame] | 952 | |
Reid Kleckner | f0e2322 | 2013-09-19 00:19:53 +0000 | [diff] [blame] | 953 | #endif /* __INTRIN_H */ |
| 954 | #endif /* _MSC_VER */ |