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