Mercurial > games > semicongine
comparison fuhtark_test/include/intrin.h @ 1500:91c8c3b7cbf0
add: futhark tests for generating vulkan api
| author | sam <sam@basx.dev> |
|---|---|
| date | Wed, 26 Nov 2025 21:36:48 +0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1499:1f58458b7ef7 | 1500:91c8c3b7cbf0 |
|---|---|
| 1 /** | |
| 2 * This file has no copyright assigned and is placed in the Public Domain. | |
| 3 * This file is part of the w64 mingw-runtime package. | |
| 4 * No warranty is given; refer to the file DISCLAIMER within this package. | |
| 5 */ | |
| 6 #ifndef __INTRIN_H_ | |
| 7 #define __INTRIN_H_ | |
| 8 #ifndef RC_INVOKED | |
| 9 | |
| 10 #include <_mingw.h> | |
| 11 #include <setjmp.h> | |
| 12 #include <stddef.h> | |
| 13 | |
| 14 #if defined(__cplusplus) | |
| 15 extern "C" { | |
| 16 #endif | |
| 17 | |
| 18 #if defined(__GNUC__) && \ | |
| 19 (defined(__i386__) || defined(__x86_64__)) | |
| 20 extern unsigned int __builtin_ia32_crc32qi (unsigned int, unsigned char); | |
| 21 extern unsigned int __builtin_ia32_crc32hi (unsigned int, unsigned short); | |
| 22 extern unsigned int __builtin_ia32_crc32si (unsigned int, unsigned int); | |
| 23 #ifndef _MM_MALLOC_H_INCLUDED | |
| 24 #define _MM_MALLOC_H_INCLUDED | |
| 25 #include <stdlib.h> | |
| 26 #include <errno.h> | |
| 27 /* Make sure _mm_malloc and _mm_free are defined. */ | |
| 28 #include <malloc.h> | |
| 29 #endif | |
| 30 #include <x86intrin.h> | |
| 31 #endif | |
| 32 | |
| 33 #ifndef __MMX__ | |
| 34 typedef union __m64 { char v[7]; } __m64; | |
| 35 #endif | |
| 36 #ifndef __SSE__ | |
| 37 typedef union __m128 { char v[16]; } __m128; | |
| 38 #endif | |
| 39 #ifndef __SSE2__ | |
| 40 typedef union __m128d { char v[16]; } __m128d; | |
| 41 typedef union __m128i { char v[16]; } __m128i; | |
| 42 #endif | |
| 43 | |
| 44 #ifndef WINAPI | |
| 45 #define WINAPI __stdcall | |
| 46 #endif | |
| 47 | |
| 48 #if (defined(_X86_) && !defined(__x86_64)) | |
| 49 #include <mm3dnow.h> | |
| 50 #if defined(__cplusplus) | |
| 51 #include <dvec.h> | |
| 52 #include <fvec.h> | |
| 53 #include <ivec.h> | |
| 54 #endif | |
| 55 #endif | |
| 56 | |
| 57 #define __MACHINEX64 __MACHINE | |
| 58 #define __MACHINEARMX __MACHINE | |
| 59 #define __MACHINECC __MACHINE | |
| 60 #define __MACHINECE __MACHINE | |
| 61 #define __MACHINEI __MACHINE | |
| 62 #define __MACHINEIA32 __MACHINE | |
| 63 #define __MACHINEX86X __MACHINE | |
| 64 #define __MACHINEX86X_NOX64 __MACHINE | |
| 65 #define __MACHINEX86X_NOIA64 __MACHINE | |
| 66 #define __MACHINEX86X_NOWIN64 __MACHINE | |
| 67 #define __MACHINEIA64 __MACHINE | |
| 68 #define __MACHINESA __MACHINE | |
| 69 #define __MACHINEIW64 __MACHINE | |
| 70 #define __MACHINEW64 __MACHINE | |
| 71 | |
| 72 #define __MACHINE(X) X; | |
| 73 #define __MACHINEZ(X) | |
| 74 | |
| 75 #if !(defined(_X86_) && !defined(__x86_64)) | |
| 76 #undef __MACHINEIA32 | |
| 77 #define __MACHINEIA32 __MACHINEZ | |
| 78 #endif | |
| 79 | |
| 80 #if !(_X86_ || __x86_64 || __ia64__) | |
| 81 #undef __MACHINEIW64 | |
| 82 #define __MACHINEIW64 __MACHINEZ | |
| 83 #endif | |
| 84 | |
| 85 #if !(__ia64__) | |
| 86 #undef __MACHINEIA64 | |
| 87 #define __MACHINEIA64 __MACHINEZ | |
| 88 #endif | |
| 89 | |
| 90 #if !(__ia64__ || __x86_64) | |
| 91 #undef __MACHINEW64 | |
| 92 #define __MACHINEW64 __MACHINEZ | |
| 93 #endif | |
| 94 | |
| 95 #if !(_X86_ || __x86_64) | |
| 96 #undef __MACHINEX86X | |
| 97 #define __MACHINEX86X __MACHINEZ | |
| 98 #endif | |
| 99 | |
| 100 #if !(_X86_) || __x86_64 | |
| 101 #undef __MACHINEX86X_NOX64 | |
| 102 #define __MACHINEX86X_NOX64 __MACHINEZ | |
| 103 #endif | |
| 104 | |
| 105 #if !(defined(_X86_) && !defined(__x86_64)) || __ia64__ | |
| 106 #undef __MACHINEX86X_NOIA64 | |
| 107 #define __MACHINEX86X_NOIA64 __MACHINEZ | |
| 108 #endif | |
| 109 | |
| 110 #if !(_X86_) || __x86_64 || __ia64__ | |
| 111 #undef __MACHINEX86X_NOWIN64 | |
| 112 #define __MACHINEX86X_NOWIN64 __MACHINEZ | |
| 113 #endif | |
| 114 | |
| 115 #if !(_M_ARM) | |
| 116 #undef __MACHINESA | |
| 117 #undef __MACHINEARMX | |
| 118 #undef __MACHINECC | |
| 119 #define __MACHINESA __MACHINEZ | |
| 120 #define __MACHINEARMX __MACHINEZ | |
| 121 #define __MACHINECC __MACHINEZ | |
| 122 #endif | |
| 123 | |
| 124 #if !(__x86_64) | |
| 125 #undef __MACHINEX64 | |
| 126 #define __MACHINEX64 __MACHINEZ | |
| 127 #endif | |
| 128 | |
| 129 #if !defined(_WIN32_WCE) | |
| 130 #undef __MACHINECE | |
| 131 #define __MACHINECE __MACHINEZ | |
| 132 #endif | |
| 133 | |
| 134 __MACHINEIA64(__MINGW_EXTENSION void _AcquireSpinLock(unsigned __int64 *)) | |
| 135 #ifdef __GNUC__ | |
| 136 #undef _alloca | |
| 137 #define _alloca(x) __builtin_alloca((x)) | |
| 138 #else | |
| 139 __MACHINE(void *__cdecl _alloca(size_t)) | |
| 140 #endif | |
| 141 __MACHINE(int __cdecl abs(int)) | |
| 142 __MACHINEIA64(void __break(int)) | |
| 143 __MACHINECE(__MINGW_EXTENSION __int64 __cdecl _abs64(__int64)) | |
| 144 __MACHINE(unsigned short __cdecl _byteswap_ushort(unsigned short value)) | |
| 145 __MACHINE(unsigned long __cdecl _byteswap_ulong(unsigned long value)) | |
| 146 __MACHINE(__MINGW_EXTENSION unsigned __int64 __cdecl _byteswap_uint64(unsigned __int64 value)) | |
| 147 __MACHINECE(void __CacheRelease(void *)) | |
| 148 __MACHINECE(void __CacheWriteback(void *)) | |
| 149 __MACHINECE(double ceil(double)) | |
| 150 __MACHINEX64(double ceil(double)) | |
| 151 __MACHINECE(double ceil(double)) | |
| 152 __MACHINECE(__MINGW_EXTENSION double _CopyDoubleFromInt64(__int64)) | |
| 153 __MACHINECE(float _CopyFloatFromInt32(__int32)) | |
| 154 __MACHINECE(__MINGW_EXTENSION __int64 _CopyInt64FromDouble(double)) | |
| 155 __MACHINECE(__int32 _CopyInt32FromFloat(float)) | |
| 156 __MACHINECE(unsigned _CountLeadingOnes(long)) | |
| 157 __MACHINECE(__MINGW_EXTENSION unsigned _CountLeadingOnes64(__int64)) | |
| 158 __MACHINECE(unsigned _CountLeadingSigns(long)) | |
| 159 __MACHINECE(__MINGW_EXTENSION unsigned _CountLeadingSigns64(__int64)) | |
| 160 __MACHINECE(unsigned _CountLeadingZeros(long)) | |
| 161 __MACHINECE(__MINGW_EXTENSION unsigned _CountLeadingZeros64(__int64)) | |
| 162 __MACHINECE(unsigned _CountOneBits(long)) | |
| 163 __MACHINECE(__MINGW_EXTENSION unsigned _CountOneBits64(__int64)) | |
| 164 __MACHINE(void __cdecl __debugbreak(void)) | |
| 165 __MACHINEI(void __cdecl _disable(void)) | |
| 166 __MACHINEIA64(void __cdecl _disable(void)) | |
| 167 __MACHINEIA64(void __dsrlz(void)) | |
| 168 __MACHINEI(__MINGW_EXTENSION __int64 __emul(int,int)) | |
| 169 __MACHINEI(__MINGW_EXTENSION unsigned __int64 __emulu(unsigned int,unsigned int)) | |
| 170 __MACHINEI(void __cdecl _enable(void)) | |
| 171 __MACHINEIA64(void __cdecl _enable(void)) | |
| 172 __MACHINEIA64(__MINGW_EXTENSION void __fc(__int64)) | |
| 173 __MACHINEIA64(void __fclrf(void)) | |
| 174 __MACHINEIA64(void __fsetc(int,int)) | |
| 175 __MACHINEIA64(void __fwb(void)) | |
| 176 __MACHINEIA64(__MINGW_EXTENSION unsigned __int64 __getReg(int)) | |
| 177 __MACHINEIA64(__MINGW_EXTENSION unsigned __int64 __getPSP(void)) | |
| 178 __MACHINEIA64(__MINGW_EXTENSION unsigned __int64 __getCFS(void)) | |
| 179 __MACHINECE(void __ICacheRefresh(void *)) | |
| 180 __MACHINEIA64(long _InterlockedAdd(long volatile *,long)) | |
| 181 __MACHINEIA64(long _InterlockedAdd_acq(long volatile *,long)) | |
| 182 __MACHINEIA64(long _InterlockedAdd_rel(long volatile *,long)) | |
| 183 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedAdd64(__int64 volatile *,__int64)) | |
| 184 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedAdd64_acq(__int64 volatile *,__int64)) | |
| 185 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedAdd64_rel(__int64 volatile *,__int64)) | |
| 186 __MACHINEI(long __cdecl _InterlockedDecrement(long volatile *)) | |
| 187 __MACHINEIA64(long _InterlockedDecrement(long volatile *)) | |
| 188 __MACHINEIA64(long _InterlockedDecrement_acq(long volatile *)) | |
| 189 __MACHINEIA64(long _InterlockedDecrement_rel(long volatile *)) | |
| 190 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedDecrement64(__int64 volatile *)) | |
| 191 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedDecrement64_acq(__int64 volatile *)) | |
| 192 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedDecrement64_rel(__int64 volatile *)) | |
| 193 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedDecrement64(__int64 volatile *)) | |
| 194 __MACHINEI(long _InterlockedExchange(long volatile *,long)) | |
| 195 __MACHINEIA64(long _InterlockedExchange(long volatile *,long)) | |
| 196 __MACHINEIA64(long _InterlockedExchange_acq(long volatile *,long)) | |
| 197 __MACHINESA(long WINAPI _InterlockedExchange(long volatile *,long)) | |
| 198 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedExchange64(__int64 volatile *,__int64)) | |
| 199 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedExchange64_acq(__int64 volatile *,__int64)) | |
| 200 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedExchange64(__int64 volatile *,__int64)) | |
| 201 __MACHINEIA64(void *_InterlockedExchangePointer(void *volatile *,void *)) | |
| 202 __MACHINEIA64(void *_InterlockedExchangePointer_acq(void *volatile *,void volatile *)) | |
| 203 __MACHINEX64(void *_InterlockedExchangePointer(void *volatile *,void *)) | |
| 204 __MACHINEI(long _InterlockedExchangeAdd(long volatile *,long)) | |
| 205 __MACHINEIA64(long _InterlockedExchangeAdd(long volatile *,long)) | |
| 206 __MACHINEIA64(long _InterlockedExchangeAdd_acq(long volatile *,long)) | |
| 207 __MACHINEIA64(long _InterlockedExchangeAdd_rel(long volatile *,long)) | |
| 208 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedExchangeAdd64(__int64 volatile *,__int64)) | |
| 209 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedExchangeAdd64_acq(__int64 volatile *,__int64)) | |
| 210 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedExchangeAdd64_rel(__int64 volatile *,__int64)) | |
| 211 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedExchangeAdd64(__int64 volatile *,__int64)) | |
| 212 __MACHINEI(long _InterlockedCompareExchange (long volatile *,long,long)) | |
| 213 __MACHINEIA64(long _InterlockedCompareExchange (long volatile *,long,long)) | |
| 214 __MACHINEIA64(long _InterlockedCompareExchange_acq (long volatile *,long,long)) | |
| 215 __MACHINEIA64(long _InterlockedCompareExchange_rel (long volatile *,long,long)) | |
| 216 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedCompareExchange64(__int64 volatile *,__int64,__int64)) | |
| 217 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedCompareExchange64_acq(__int64 volatile *,__int64,__int64)) | |
| 218 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedCompareExchange64_rel(__int64 volatile *,__int64,__int64)) | |
| 219 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand)) | |
| 220 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128_acq(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand)) | |
| 221 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128_rel(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand)) | |
| 222 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand)) | |
| 223 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128_acq(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand)) | |
| 224 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128_rel(__int64 volatile *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand)) | |
| 225 __MACHINEIA64(void *_InterlockedCompareExchangePointer (void *volatile *,void *,void *)) | |
| 226 __MACHINEIA64(void *_InterlockedCompareExchangePointer_acq (void *volatile *,void *,void *)) | |
| 227 __MACHINEIA64(void *_InterlockedCompareExchangePointer_rel (void *volatile *,void *,void *)) | |
| 228 __MACHINEI(__MINGW_EXTENSION __int64 _InterlockedCompareExchange64(__int64 volatile *,__int64,__int64)) | |
| 229 __MACHINEX64(void *_InterlockedCompareExchangePointer (void *volatile *,void *,void *)) | |
| 230 __MACHINEI(long __cdecl _InterlockedIncrement(long volatile *)) | |
| 231 __MACHINEIA64(long _InterlockedIncrement(long volatile *)) | |
| 232 __MACHINEIA64(long _InterlockedIncrement_acq(long volatile *)) | |
| 233 __MACHINEIA64(long _InterlockedIncrement_rel(long volatile *)) | |
| 234 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedIncrement64(__int64 volatile *)) | |
| 235 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedIncrement64_acq(__int64 volatile *)) | |
| 236 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedIncrement64_rel(__int64 volatile *)) | |
| 237 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedIncrement64(__int64 volatile *)) | |
| 238 __MACHINEIW64(long _InterlockedOr(long volatile *,long)) | |
| 239 __MACHINEIW64(char _InterlockedOr8(char volatile *,char)) | |
| 240 __MACHINEIW64(short _InterlockedOr16(short volatile *,short)) | |
| 241 __MACHINEW64(__MINGW_EXTENSION __int64 _InterlockedOr64(__int64 volatile *,__int64)) | |
| 242 __MACHINEIA64(long _InterlockedOr_acq(long volatile *,long)) | |
| 243 __MACHINEIA64(char _InterlockedOr8_acq(char volatile *,char)) | |
| 244 __MACHINEIA64(short _InterlockedOr16_acq(short volatile *,short)) | |
| 245 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedOr64_acq(__int64 volatile *,__int64)) | |
| 246 __MACHINEIA64(long _InterlockedOr_rel(long volatile *,long)) | |
| 247 __MACHINEIA64(char _InterlockedOr8_rel(char volatile *,char)) | |
| 248 __MACHINEIA64(short _InterlockedOr16_rel(short volatile *,short)) | |
| 249 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedOr64_rel(__int64 volatile *,__int64)) | |
| 250 __MACHINEIW64(long _InterlockedXor(long volatile *,long)) | |
| 251 __MACHINEIW64(char _InterlockedXor8(char volatile *,char)) | |
| 252 __MACHINEIW64(short _InterlockedXor16(short volatile *,short)) | |
| 253 __MACHINEW64(__MINGW_EXTENSION __int64 _InterlockedXor64(__int64 volatile *,__int64)) | |
| 254 __MACHINEIA64(long _InterlockedXor_acq(long volatile *,long)) | |
| 255 __MACHINEIA64(char _InterlockedXor8_acq(char volatile *,char)) | |
| 256 __MACHINEIA64(short _InterlockedXor16_acq(short volatile *,short)) | |
| 257 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedXor64_acq(__int64 volatile *,__int64)) | |
| 258 __MACHINEIA64(long _InterlockedXor_rel(long volatile *,long)) | |
| 259 __MACHINEIA64(char _InterlockedXor8_rel(char volatile *,char)) | |
| 260 __MACHINEIA64(short _InterlockedXor16_rel(short volatile *,short)) | |
| 261 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedXor64_rel(__int64 volatile *,__int64)) | |
| 262 __MACHINEIW64(long _InterlockedAnd(long volatile *,long)) | |
| 263 __MACHINEIW64(char _InterlockedAnd8(char volatile *,char)) | |
| 264 __MACHINEIW64(short _InterlockedAnd16(short volatile *,short)) | |
| 265 __MACHINEW64(__MINGW_EXTENSION __int64 _InterlockedAnd64(__int64 volatile *,__int64)) | |
| 266 __MACHINEIA64(long _InterlockedAnd_acq(long volatile *,long)) | |
| 267 __MACHINEIA64(char _InterlockedAnd8_acq(char volatile *,char)) | |
| 268 __MACHINEIA64(short _InterlockedAnd16_acq(short volatile *,short)) | |
| 269 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedAnd64_acq(__int64 volatile *,__int64)) | |
| 270 __MACHINEIA64(long _InterlockedAnd_rel(long volatile *,long)) | |
| 271 __MACHINEIA64(char _InterlockedAnd8_rel(char volatile *,char)) | |
| 272 __MACHINEIA64(short _InterlockedAnd16_rel(short volatile *,short)) | |
| 273 __MACHINEIA64(__MINGW_EXTENSION __int64 _InterlockedAnd64_rel(__int64 volatile *,__int64)) | |
| 274 __MACHINEIA32(__MINGW_EXTENSION long _InterlockedAddLargeStatistic(__int64 volatile *,long)) | |
| 275 __MACHINEI(int __cdecl _inp(unsigned short)) | |
| 276 __MACHINEI(int __cdecl inp(unsigned short)) | |
| 277 __MACHINEI(unsigned long __cdecl _inpd(unsigned short)) | |
| 278 __MACHINEI(unsigned long __cdecl inpd(unsigned short)) | |
| 279 __MACHINEI(unsigned short __cdecl _inpw(unsigned short)) | |
| 280 __MACHINEI(unsigned short __cdecl inpw(unsigned short)) | |
| 281 __MACHINEIA64(int __isNat(int)) | |
| 282 __MACHINEIA64(void __isrlz(void)) | |
| 283 __MACHINEIA64(void __invalat(void)) | |
| 284 __MACHINECE(int _isnan(double)) | |
| 285 __MACHINECE(int _isnanf(float)) | |
| 286 __MACHINECE(int _isunordered(double,double)) | |
| 287 __MACHINECE(int _isunorderedf(float,float)) | |
| 288 __MACHINE(long __cdecl labs(long)) | |
| 289 __MACHINEIA64(void __lfetch(int,void const *)) | |
| 290 __MACHINEIA64(void __lfetchfault(int,void const *)) | |
| 291 __MACHINEIA64(void __lfetch_excl(int,void const *)) | |
| 292 __MACHINEIA64(void __lfetchfault_excl(int,void const *)) | |
| 293 __MACHINEIA64(__MINGW_EXTENSION __int64 __load128(void *,__int64 *)) | |
| 294 __MACHINEIA64(__MINGW_EXTENSION __int64 __load128_acq(void *,__int64 *)) | |
| 295 __MACHINEZ(void __cdecl longjmp(jmp_buf,int)) | |
| 296 #pragma push_macro ("_lrotl") | |
| 297 #pragma push_macro ("_lrotr") | |
| 298 #undef _lrotl | |
| 299 #undef _lrotr | |
| 300 #ifdef __x86_64__ | |
| 301 __MACHINE(__MINGW_EXTENSION unsigned long long __cdecl _lrotl(unsigned long long,int)) | |
| 302 __MACHINE(__MINGW_EXTENSION unsigned long long __cdecl _lrotr(unsigned long long,int)) | |
| 303 #else | |
| 304 __MACHINE(unsigned long __cdecl _lrotl(unsigned long,int)) | |
| 305 __MACHINE(unsigned long __cdecl _lrotr(unsigned long,int)) | |
| 306 #endif | |
| 307 #pragma pop_macro ("_lrotl") | |
| 308 #pragma pop_macro ("_lrotr") | |
| 309 __MACHINEI(__MINGW_EXTENSION unsigned __int64 __ll_lshift(unsigned __int64,int)) | |
| 310 __MACHINEI(__MINGW_EXTENSION __int64 __ll_rshift(__int64,int)) | |
| 311 __MACHINEIA64(__m64 __m64_czx1l(__m64)) | |
| 312 __MACHINEIA64(__m64 __m64_czx1r(__m64)) | |
| 313 __MACHINEIA64(__m64 __m64_czx2l(__m64)) | |
| 314 __MACHINEIA64(__m64 __m64_czx2r(__m64)) | |
| 315 __MACHINEIA64(__m64 __m64_dep_mi(const int,__m64,const int,const int)) | |
| 316 __MACHINEIA64(__m64 __m64_dep_mr(__m64,__m64,const int,const int)) | |
| 317 __MACHINEIA64(__m64 __m64_dep_zi(const int,const int,const int)) | |
| 318 __MACHINEIA64(__m64 __m64_dep_zr(__m64,const int,const int)) | |
| 319 __MACHINEIA64(__m64 __m64_extr(__m64,const int,const int)) | |
| 320 __MACHINEIA64(__m64 __m64_extru(__m64,const int,const int)) | |
| 321 __MACHINEIA64(__m64 __m64_mix1l(__m64,__m64)) | |
| 322 __MACHINEIA64(__m64 __m64_mix1r(__m64,__m64)) | |
| 323 __MACHINEIA64(__m64 __m64_mix2l(__m64,__m64)) | |
| 324 __MACHINEIA64(__m64 __m64_mix2r(__m64,__m64)) | |
| 325 __MACHINEIA64(__m64 __m64_mix4l(__m64,__m64)) | |
| 326 __MACHINEIA64(__m64 __m64_mix4r(__m64,__m64)) | |
| 327 __MACHINEIA64(__m64 __m64_mux1(__m64,const int)) | |
| 328 __MACHINEIA64(__m64 __m64_mux2(__m64,const int)) | |
| 329 __MACHINEIA64(__m64 __m64_muladd64hi(__m64,__m64,__m64)) | |
| 330 __MACHINEIA64(__m64 __m64_muladd64hi_u(__m64,__m64,__m64)) | |
| 331 __MACHINEIA64(__m64 __m64_muladd64lo(__m64,__m64,__m64)) | |
| 332 __MACHINEIA64(__m64 __m64_padd1uus(__m64,__m64)) | |
| 333 __MACHINEIA64(__m64 __m64_padd2uus(__m64,__m64)) | |
| 334 __MACHINEIA64(__m64 __m64_pavg1_nraz(__m64,__m64)) | |
| 335 __MACHINEIA64(__m64 __m64_pavg2_nraz(__m64,__m64)) | |
| 336 __MACHINEIA64(__m64 __m64_pavgsub1(__m64,__m64)) | |
| 337 __MACHINEIA64(__m64 __m64_pavgsub2(__m64,__m64)) | |
| 338 __MACHINEIA64(__m64 __m64_pmpy2l(__m64,__m64)) | |
| 339 __MACHINEIA64(__m64 __m64_pmpy2r(__m64,__m64)) | |
| 340 __MACHINEIA64(__m64 __m64_pmpyshr2(__m64,__m64,const int)) | |
| 341 __MACHINEIA64(__m64 __m64_pmpyshr2u(__m64,__m64,const int)) | |
| 342 __MACHINEIA64(__m64 __m64_popcnt(__m64)) | |
| 343 __MACHINEIA64(__m64 __m64_pshladd2(__m64,const int,__m64)) | |
| 344 __MACHINEIA64(__m64 __m64_pshradd2(__m64,const int,__m64)) | |
| 345 __MACHINEIA64(__m64 __m64_psub1uus(__m64,__m64)) | |
| 346 __MACHINEIA64(__m64 __m64_psub2uus(__m64,__m64)) | |
| 347 __MACHINEIA64(__m64 __m64_shladd(__m64,const int,__m64)) | |
| 348 __MACHINEIA64(__m64 __m64_shrp(__m64,__m64,const int)) | |
| 349 __MACHINECE(_CONST_RETURN void *__cdecl memchr(const void *,int,size_t)) | |
| 350 __MACHINE(int __cdecl memcmp(const void *,const void *,size_t)) | |
| 351 __MACHINE(void *__cdecl memcpy(void *,const void *,size_t)) | |
| 352 __MACHINE(void *__cdecl memset(void *,int,size_t)) | |
| 353 __MACHINEIA64(void __mf(void)) | |
| 354 __MACHINEIA64(void __mfa(void)) | |
| 355 __MACHINECE(long _MulHigh(long,long)) | |
| 356 __MACHINECE(unsigned long _MulUnsignedHigh (unsigned long,unsigned long)) | |
| 357 __MACHINEI(int __cdecl _outp(unsigned short,int)) | |
| 358 __MACHINEI(int __cdecl outp(unsigned short,int)) | |
| 359 __MACHINEI(unsigned long __cdecl _outpd(unsigned short,unsigned long)) | |
| 360 __MACHINEI(unsigned long __cdecl outpd(unsigned short,unsigned long)) | |
| 361 __MACHINEI(unsigned short __cdecl _outpw(unsigned short,unsigned short)) | |
| 362 __MACHINEI(unsigned short __cdecl outpw(unsigned short,unsigned short)) | |
| 363 __MACHINECE(void __cdecl __prefetch(unsigned long *addr)) | |
| 364 __MACHINEIA64(__MINGW_EXTENSION void __ptcl(__int64,__int64)) | |
| 365 __MACHINEIA64(__MINGW_EXTENSION void __ptcg(__int64,__int64)) | |
| 366 __MACHINEIA64(__MINGW_EXTENSION void __ptcga(__int64,__int64)) | |
| 367 __MACHINEIA64(__MINGW_EXTENSION void __ptrd(__int64,__int64)) | |
| 368 __MACHINEIA64(__MINGW_EXTENSION void __ptri(__int64,__int64)) | |
| 369 __MACHINEIA64(void *_rdteb(void)) | |
| 370 __MACHINESA(int _ReadStatusReg(int)) | |
| 371 __MACHINECE(void _ReadWriteBarrier(void)) | |
| 372 __MACHINEIA64(__MINGW_EXTENSION void _ReleaseSpinLock(unsigned __int64 *)) | |
| 373 __MACHINEI(void *_ReturnAddress(void)) | |
| 374 __MACHINEIA64(void *_ReturnAddress(void)) | |
| 375 __MACHINESA(void *_ReturnAddress(void)) | |
| 376 __MACHINECE(void *_ReturnAddress(void)) | |
| 377 #pragma push_macro ("_rotl") | |
| 378 #pragma push_macro ("_rotr") | |
| 379 #undef _rotl | |
| 380 #undef _rotr | |
| 381 __MACHINE(unsigned int __cdecl _rotl(unsigned int,int)) | |
| 382 __MACHINE(unsigned int __cdecl _rotr(unsigned int,int)) | |
| 383 #pragma pop_macro ("_rotr") | |
| 384 #pragma pop_macro ("_rotl") | |
| 385 #undef _rotl64 | |
| 386 #undef _rotr64 | |
| 387 __MACHINECE(__MINGW_EXTENSION unsigned __int64 __cdecl _rotl64(unsigned __int64,int)) | |
| 388 __MACHINECE(__MINGW_EXTENSION unsigned __int64 __cdecl _rotr64(unsigned __int64,int)) | |
| 389 #define _rotl64 __rolq | |
| 390 #define _rotr64 __rorq | |
| 391 __MACHINEIA64(void __rsm(int)) | |
| 392 __MACHINEIA64(void __rum(int)) | |
| 393 #ifndef USE_NO_MINGW_SETJMP_TWO_ARGS | |
| 394 __MACHINE(int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) _setjmp(jmp_buf,void *)) | |
| 395 __MACHINEIA64(int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) _setjmpex(jmp_buf,void *)) | |
| 396 __MACHINEX64(int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) _setjmpex(jmp_buf,void *)) | |
| 397 #else | |
| 398 __MACHINE(int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) _setjmp(jmp_buf)) | |
| 399 __MACHINEIA64(int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) _setjmpex(jmp_buf)) | |
| 400 __MACHINEX64(int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) _setjmpex(jmp_buf)) | |
| 401 #endif | |
| 402 __MACHINEIA64(__MINGW_EXTENSION void __setReg(int,unsigned __int64)) | |
| 403 __MACHINEARMX(void _SmulAdd_SL_ACC(int,int)) | |
| 404 __MACHINEARMX(void _SmulAddPack_2SW_ACC(int,int)) | |
| 405 __MACHINEARMX(void _SmulAddLo_SW_ACC(int,int)) | |
| 406 __MACHINEARMX(void _SmulAddHi_SW_ACC(int,int)) | |
| 407 __MACHINEARMX(void _SmulAddHiLo_SW_ACC(int,int)) | |
| 408 __MACHINEARMX(void _SmulAddLoHi_SW_ACC(int,int)) | |
| 409 __MACHINEIA64(__MINGW_EXTENSION void __store128(void *,__int64,__int64)) | |
| 410 __MACHINEIA64(__MINGW_EXTENSION void __store128_rel(void *,__int64,__int64)) | |
| 411 __MACHINE(char *__cdecl strcat(char *,const char *)) | |
| 412 __MACHINE(int __cdecl strcmp(const char *,const char *)) | |
| 413 __MACHINE(char *__cdecl strcpy(char *,const char *)) | |
| 414 __MACHINE(size_t __cdecl strlen(const char *)) | |
| 415 __MACHINECE(int __cdecl strncmp(const char *,const char *,size_t)) | |
| 416 __MACHINECE(char *__cdecl strncpy(char *,const char *,size_t)) | |
| 417 __MACHINE(char *__cdecl _strset(char *,int)) | |
| 418 __MACHINE(char *__cdecl strset(char *,int)) | |
| 419 __MACHINEIA64(void __ssm(int)) | |
| 420 __MACHINEIA64(void __sum(int)) | |
| 421 __MACHINESA(int __swi(unsigned,...)) | |
| 422 __MACHINEIA64(void __synci(void)) | |
| 423 __MACHINEIA64(__MINGW_EXTENSION __int64 __thash(__int64)) | |
| 424 __MACHINEIA64(__MINGW_EXTENSION __int64 __ttag(__int64)) | |
| 425 __MACHINECE(int __trap(int,...)) | |
| 426 __MACHINEI(__MINGW_EXTENSION unsigned __int64 __ull_rshift(unsigned __int64,int)) | |
| 427 __MACHINEIA64(__MINGW_EXTENSION unsigned __int64 __UMULH(unsigned __int64 a,unsigned __int64 b)) | |
| 428 __MACHINECE(wchar_t *__cdecl wcscat(wchar_t *,const wchar_t *)) | |
| 429 __MACHINECE(int __cdecl wcscmp(const wchar_t *,const wchar_t *)) | |
| 430 __MACHINECE(wchar_t *__cdecl wcscpy(wchar_t *,const wchar_t *)) | |
| 431 __MACHINECE(size_t __cdecl wcslen(const wchar_t *)) | |
| 432 __MACHINECE(int __cdecl wcsncmp(const wchar_t *,const wchar_t *,size_t)) | |
| 433 __MACHINECE(wchar_t *__cdecl wcsncpy(wchar_t *,const wchar_t *,size_t)) | |
| 434 __MACHINECE(wchar_t *__cdecl _wcsset(wchar_t *,wchar_t)) | |
| 435 __MACHINECE(void _WriteBarrier(void)) | |
| 436 __MACHINESA(void _WriteStatusReg(int,int,int)) | |
| 437 __MACHINEI(void *_AddressOfReturnAddress(void)) | |
| 438 __MACHINEIA64(void __yield(void)) | |
| 439 __MACHINEIA64(void __fci(void*)) | |
| 440 | |
| 441 __MACHINEX86X_NOX64(void _m_empty(void)) | |
| 442 __MACHINEX86X_NOX64(__m64 _m_from_int(int)) | |
| 443 __MACHINEX86X_NOX64(int _m_to_int(__m64)) | |
| 444 __MACHINEX86X_NOX64(__m64 _m_packsswb(__m64,__m64)) | |
| 445 __MACHINEX86X_NOX64(__m64 _m_packssdw(__m64,__m64)) | |
| 446 __MACHINEX86X_NOX64(__m64 _m_packuswb(__m64,__m64)) | |
| 447 __MACHINEX86X_NOX64(__m64 _m_punpckhbw(__m64,__m64)) | |
| 448 __MACHINEX86X_NOX64(__m64 _m_punpckhwd(__m64,__m64)) | |
| 449 __MACHINEX86X_NOX64(__m64 _m_punpckhdq(__m64,__m64)) | |
| 450 __MACHINEX86X_NOX64(__m64 _m_punpcklbw(__m64,__m64)) | |
| 451 __MACHINEX86X_NOX64(__m64 _m_punpcklwd(__m64,__m64)) | |
| 452 __MACHINEX86X_NOX64(__m64 _m_punpckldq(__m64,__m64)) | |
| 453 __MACHINEX86X_NOX64(__m64 _m_paddb(__m64,__m64)) | |
| 454 __MACHINEX86X_NOX64(__m64 _m_paddw(__m64,__m64)) | |
| 455 __MACHINEX86X_NOX64(__m64 _m_paddd(__m64,__m64)) | |
| 456 __MACHINEX86X_NOX64(__m64 _m_paddsb(__m64,__m64)) | |
| 457 __MACHINEX86X_NOX64(__m64 _m_paddsw(__m64,__m64)) | |
| 458 __MACHINEX86X_NOX64(__m64 _m_paddusb(__m64,__m64)) | |
| 459 __MACHINEX86X_NOX64(__m64 _m_paddusw(__m64,__m64)) | |
| 460 __MACHINEX86X_NOX64(__m64 _m_psubb(__m64,__m64)) | |
| 461 __MACHINEX86X_NOX64(__m64 _m_psubw(__m64,__m64)) | |
| 462 __MACHINEX86X_NOX64(__m64 _m_psubd(__m64,__m64)) | |
| 463 __MACHINEX86X_NOX64(__m64 _m_psubsb(__m64,__m64)) | |
| 464 __MACHINEX86X_NOX64(__m64 _m_psubsw(__m64,__m64)) | |
| 465 __MACHINEX86X_NOX64(__m64 _m_psubusb(__m64,__m64)) | |
| 466 __MACHINEX86X_NOX64(__m64 _m_psubusw(__m64,__m64)) | |
| 467 __MACHINEX86X_NOX64(__m64 _m_pmaddwd(__m64,__m64)) | |
| 468 __MACHINEX86X_NOX64(__m64 _m_pmulhw(__m64,__m64)) | |
| 469 __MACHINEX86X_NOX64(__m64 _m_pmullw(__m64,__m64)) | |
| 470 __MACHINEX86X_NOX64(__m64 _m_psllw(__m64,__m64)) | |
| 471 __MACHINEX86X_NOX64(__m64 _m_psllwi(__m64,int)) | |
| 472 __MACHINEX86X_NOX64(__m64 _m_pslld(__m64,__m64)) | |
| 473 __MACHINEX86X_NOX64(__m64 _m_pslldi(__m64,int)) | |
| 474 __MACHINEX86X_NOX64(__m64 _m_psllq(__m64,__m64)) | |
| 475 __MACHINEX86X_NOX64(__m64 _m_psllqi(__m64,int)) | |
| 476 __MACHINEX86X_NOX64(__m64 _m_psraw(__m64,__m64)) | |
| 477 __MACHINEX86X_NOX64(__m64 _m_psrawi(__m64,int)) | |
| 478 __MACHINEX86X_NOX64(__m64 _m_psrad(__m64,__m64)) | |
| 479 __MACHINEX86X_NOX64(__m64 _m_psradi(__m64,int)) | |
| 480 __MACHINEX86X_NOX64(__m64 _m_psrlw(__m64,__m64)) | |
| 481 __MACHINEX86X_NOX64(__m64 _m_psrlwi(__m64,int)) | |
| 482 __MACHINEX86X_NOX64(__m64 _m_psrld(__m64,__m64)) | |
| 483 __MACHINEX86X_NOX64(__m64 _m_psrldi(__m64,int)) | |
| 484 __MACHINEX86X_NOX64(__m64 _m_psrlq(__m64,__m64)) | |
| 485 __MACHINEX86X_NOX64(__m64 _m_psrlqi(__m64,int)) | |
| 486 __MACHINEX86X_NOX64(__m64 _m_pand(__m64,__m64)) | |
| 487 __MACHINEX86X_NOX64(__m64 _m_pandn(__m64,__m64)) | |
| 488 __MACHINEX86X_NOX64(__m64 _m_por(__m64,__m64)) | |
| 489 __MACHINEX86X_NOX64(__m64 _m_pxor(__m64,__m64)) | |
| 490 __MACHINEX86X_NOX64(__m64 _m_pcmpeqb(__m64,__m64)) | |
| 491 __MACHINEX86X_NOX64(__m64 _m_pcmpeqw(__m64,__m64)) | |
| 492 __MACHINEX86X_NOX64(__m64 _m_pcmpeqd(__m64,__m64)) | |
| 493 __MACHINEX86X_NOX64(__m64 _m_pcmpgtb(__m64,__m64)) | |
| 494 __MACHINEX86X_NOX64(__m64 _m_pcmpgtw(__m64,__m64)) | |
| 495 __MACHINEX86X_NOX64(__m64 _m_pcmpgtd(__m64,__m64)) | |
| 496 __MACHINEX86X_NOX64(__m64 _mm_setzero_si64(void)) | |
| 497 __MACHINEX86X_NOX64(__m64 _mm_set_pi32(int,int)) | |
| 498 __MACHINEX86X_NOX64(__m64 _mm_set_pi16(short,short,short,short)) | |
| 499 __MACHINEX86X_NOX64(__m64 _mm_set_pi8(char,char,char,char,char,char,char,char)) | |
| 500 __MACHINEX86X_NOX64(__m64 _mm_set1_pi32(int)) | |
| 501 __MACHINEX86X_NOX64(__m64 _mm_set1_pi16(short)) | |
| 502 __MACHINEX86X_NOX64(__m64 _mm_set1_pi8(char)) | |
| 503 __MACHINEX86X_NOX64(__m64 _mm_setr_pi32(int,int)) | |
| 504 __MACHINEX86X_NOX64(__m64 _mm_setr_pi16(short,short,short,short)) | |
| 505 __MACHINEX86X_NOX64(__m64 _mm_setr_pi8(char,char,char,char,char,char,char,char)) | |
| 506 __MACHINEX86X_NOX64(int _m_pextrw(__m64,int)) | |
| 507 __MACHINEX86X_NOX64(__m64 _m_pinsrw(__m64,int,int)) | |
| 508 __MACHINEX86X_NOX64(__m64 _m_pmaxsw(__m64,__m64)) | |
| 509 __MACHINEX86X_NOX64(__m64 _m_pmaxub(__m64,__m64)) | |
| 510 __MACHINEX86X_NOX64(__m64 _m_pminsw(__m64,__m64)) | |
| 511 __MACHINEX86X_NOX64(__m64 _m_pminub(__m64,__m64)) | |
| 512 __MACHINEX86X_NOX64(int _m_pmovmskb(__m64)) | |
| 513 __MACHINEX86X_NOX64(__m64 _m_pmulhuw(__m64,__m64)) | |
| 514 __MACHINEX86X_NOX64(__m64 _m_pshufw(__m64,int)) | |
| 515 __MACHINEX86X_NOX64(void _m_maskmovq(__m64,__m64,char*)) | |
| 516 __MACHINEX86X_NOX64(__m64 _m_pavgb(__m64,__m64)) | |
| 517 __MACHINEX86X_NOX64(__m64 _m_pavgw(__m64,__m64)) | |
| 518 __MACHINEX86X_NOX64(__m64 _m_psadbw(__m64,__m64)) | |
| 519 __MACHINEX86X_NOWIN64(__m64 _m_from_float(float)) | |
| 520 __MACHINEX86X_NOWIN64(float _m_to_float(__m64)) | |
| 521 __MACHINEX86X_NOIA64(__m128 _mm_add_ss(__m128,__m128)) | |
| 522 __MACHINEX86X_NOIA64(__m128 _mm_add_ps(__m128,__m128)) | |
| 523 __MACHINEX86X_NOIA64(__m128 _mm_sub_ss(__m128,__m128)) | |
| 524 __MACHINEX86X_NOIA64(__m128 _mm_sub_ps(__m128,__m128)) | |
| 525 __MACHINEX86X_NOIA64(__m128 _mm_mul_ss(__m128,__m128)) | |
| 526 __MACHINEX86X_NOIA64(__m128 _mm_mul_ps(__m128,__m128)) | |
| 527 __MACHINEX86X_NOIA64(__m128 _mm_div_ss(__m128,__m128)) | |
| 528 __MACHINEX86X_NOIA64(__m128 _mm_div_ps(__m128,__m128)) | |
| 529 __MACHINEX86X_NOIA64(__m128 _mm_sqrt_ss(__m128)) | |
| 530 __MACHINEX86X_NOIA64(__m128 _mm_sqrt_ps(__m128)) | |
| 531 __MACHINEX86X_NOIA64(__m128 _mm_rcp_ss(__m128)) | |
| 532 __MACHINEX86X_NOIA64(__m128 _mm_rcp_ps(__m128)) | |
| 533 __MACHINEX86X_NOIA64(__m128 _mm_rsqrt_ss(__m128)) | |
| 534 __MACHINEX86X_NOIA64(__m128 _mm_rsqrt_ps(__m128)) | |
| 535 __MACHINEX86X_NOIA64(__m128 _mm_min_ss(__m128,__m128)) | |
| 536 __MACHINEX86X_NOIA64(__m128 _mm_min_ps(__m128,__m128)) | |
| 537 __MACHINEX86X_NOIA64(__m128 _mm_max_ss(__m128,__m128)) | |
| 538 __MACHINEX86X_NOIA64(__m128 _mm_max_ps(__m128,__m128)) | |
| 539 __MACHINEX86X_NOIA64(__m128 _mm_and_ps(__m128,__m128)) | |
| 540 __MACHINEX86X_NOIA64(__m128 _mm_andnot_ps(__m128,__m128)) | |
| 541 __MACHINEX86X_NOIA64(__m128 _mm_or_ps(__m128,__m128)) | |
| 542 __MACHINEX86X_NOIA64(__m128 _mm_xor_ps(__m128,__m128)) | |
| 543 __MACHINEX86X_NOIA64(__m128 _mm_cmpeq_ss(__m128,__m128)) | |
| 544 __MACHINEX86X_NOIA64(__m128 _mm_cmpeq_ps(__m128,__m128)) | |
| 545 __MACHINEX86X_NOIA64(__m128 _mm_cmplt_ss(__m128,__m128)) | |
| 546 __MACHINEX86X_NOIA64(__m128 _mm_cmplt_ps(__m128,__m128)) | |
| 547 __MACHINEX86X_NOIA64(__m128 _mm_cmple_ss(__m128,__m128)) | |
| 548 __MACHINEX86X_NOIA64(__m128 _mm_cmple_ps(__m128,__m128)) | |
| 549 __MACHINEX86X_NOIA64(__m128 _mm_cmpgt_ss(__m128,__m128)) | |
| 550 __MACHINEX86X_NOIA64(__m128 _mm_cmpgt_ps(__m128,__m128)) | |
| 551 __MACHINEX86X_NOIA64(__m128 _mm_cmpge_ss(__m128,__m128)) | |
| 552 __MACHINEX86X_NOIA64(__m128 _mm_cmpge_ps(__m128,__m128)) | |
| 553 __MACHINEX86X_NOIA64(__m128 _mm_cmpneq_ss(__m128,__m128)) | |
| 554 __MACHINEX86X_NOIA64(__m128 _mm_cmpneq_ps(__m128,__m128)) | |
| 555 __MACHINEX86X_NOIA64(__m128 _mm_cmpnlt_ss(__m128,__m128)) | |
| 556 __MACHINEX86X_NOIA64(__m128 _mm_cmpnlt_ps(__m128,__m128)) | |
| 557 __MACHINEX86X_NOIA64(__m128 _mm_cmpnle_ss(__m128,__m128)) | |
| 558 __MACHINEX86X_NOIA64(__m128 _mm_cmpnle_ps(__m128,__m128)) | |
| 559 __MACHINEX86X_NOIA64(__m128 _mm_cmpngt_ss(__m128,__m128)) | |
| 560 __MACHINEX86X_NOIA64(__m128 _mm_cmpngt_ps(__m128,__m128)) | |
| 561 __MACHINEX86X_NOIA64(__m128 _mm_cmpnge_ss(__m128,__m128)) | |
| 562 __MACHINEX86X_NOIA64(__m128 _mm_cmpnge_ps(__m128,__m128)) | |
| 563 __MACHINEX86X_NOIA64(__m128 _mm_cmpord_ss(__m128,__m128)) | |
| 564 __MACHINEX86X_NOIA64(__m128 _mm_cmpord_ps(__m128,__m128)) | |
| 565 __MACHINEX86X_NOIA64(__m128 _mm_cmpunord_ss(__m128,__m128)) | |
| 566 __MACHINEX86X_NOIA64(__m128 _mm_cmpunord_ps(__m128,__m128)) | |
| 567 __MACHINEX86X_NOIA64(int _mm_comieq_ss(__m128,__m128)) | |
| 568 __MACHINEX86X_NOIA64(int _mm_comilt_ss(__m128,__m128)) | |
| 569 __MACHINEX86X_NOIA64(int _mm_comile_ss(__m128,__m128)) | |
| 570 __MACHINEX86X_NOIA64(int _mm_comigt_ss(__m128,__m128)) | |
| 571 __MACHINEX86X_NOIA64(int _mm_comige_ss(__m128,__m128)) | |
| 572 __MACHINEX86X_NOIA64(int _mm_comineq_ss(__m128,__m128)) | |
| 573 __MACHINEX86X_NOIA64(int _mm_ucomieq_ss(__m128,__m128)) | |
| 574 __MACHINEX86X_NOIA64(int _mm_ucomilt_ss(__m128,__m128)) | |
| 575 __MACHINEX86X_NOIA64(int _mm_ucomile_ss(__m128,__m128)) | |
| 576 __MACHINEX86X_NOIA64(int _mm_ucomigt_ss(__m128,__m128)) | |
| 577 __MACHINEX86X_NOIA64(int _mm_ucomige_ss(__m128,__m128)) | |
| 578 __MACHINEX86X_NOIA64(int _mm_ucomineq_ss(__m128,__m128)) | |
| 579 __MACHINEX86X_NOIA64(int _mm_cvt_ss2si(__m128)) | |
| 580 __MACHINEX86X_NOWIN64(__m64 _mm_cvt_ps2pi(__m128)) | |
| 581 __MACHINEX86X_NOIA64(int _mm_cvtt_ss2si(__m128)) | |
| 582 __MACHINEX86X_NOWIN64(__m64 _mm_cvtt_ps2pi(__m128)) | |
| 583 __MACHINEX86X_NOIA64(__m128 _mm_cvt_si2ss(__m128,int)) | |
| 584 __MACHINEX86X_NOWIN64(__m128 _mm_cvt_pi2ps(__m128,__m64)) | |
| 585 __MACHINEX86X_NOIA64(__m128 _mm_shuffle_ps(__m128,__m128,unsigned int)) | |
| 586 __MACHINEX86X_NOIA64(__m128 _mm_unpackhi_ps(__m128,__m128)) | |
| 587 __MACHINEX86X_NOIA64(__m128 _mm_unpacklo_ps(__m128,__m128)) | |
| 588 __MACHINEX86X_NOIA64(__m128 _mm_loadh_pi(__m128,__m64 const*)) | |
| 589 __MACHINEX86X_NOIA64(void _mm_storeh_pi(__m64*,__m128)) | |
| 590 __MACHINEX86X_NOIA64(__m128 _mm_loadl_pi(__m128,__m64 const*)) | |
| 591 __MACHINEX86X_NOIA64(void _mm_storel_pi(__m64*,__m128)) | |
| 592 __MACHINEX86X_NOIA64(int _mm_movemask_ps(__m128)) | |
| 593 __MACHINEX86X_NOIA64(__m128 _mm_set_ss(float)) | |
| 594 __MACHINEX86X_NOIA64(__m128 _mm_set_ps1(float)) | |
| 595 __MACHINEX86X_NOIA64(__m128 _mm_set_ps(float,float,float,float)) | |
| 596 __MACHINEX86X_NOIA64(__m128 _mm_setr_ps(float,float,float,float)) | |
| 597 __MACHINEX86X_NOIA64(__m128 _mm_setzero_ps(void)) | |
| 598 __MACHINEX86X_NOIA64(__m128 _mm_load_ss(float const*)) | |
| 599 __MACHINEX86X_NOIA64(__m128 _mm_load_ps1(float const*)) | |
| 600 __MACHINEX86X_NOIA64(__m128 _mm_load_ps(float const*)) | |
| 601 __MACHINEX86X_NOIA64(__m128 _mm_loadr_ps(float const*)) | |
| 602 __MACHINEX86X_NOIA64(__m128 _mm_loadu_ps(float const*)) | |
| 603 __MACHINEX86X_NOIA64(__m128 _mm_move_ss(__m128,__m128)) | |
| 604 __MACHINEX86X_NOIA64(void _mm_store_ss(float*,__m128)) | |
| 605 __MACHINEX86X_NOIA64(void _mm_store_ps1(float*,__m128)) | |
| 606 __MACHINEX86X_NOIA64(void _mm_store_ps(float*,__m128)) | |
| 607 __MACHINEX86X_NOIA64(void _mm_storer_ps(float*,__m128)) | |
| 608 __MACHINEX86X_NOIA64(void _mm_storeu_ps(float*,__m128)) | |
| 609 /* __MACHINEX86X_NOIA64(void _mm_prefetch(char const*,int)) */ | |
| 610 __MACHINEX86X_NOWIN64(void _mm_stream_pi(__m64*,__m64)) | |
| 611 __MACHINEX86X_NOIA64(void _mm_stream_ps(float*,__m128)) | |
| 612 __MACHINEX86X_NOIA64(void _mm_sfence(void)) | |
| 613 __MACHINEX86X_NOIA64(unsigned int _mm_getcsr(void)) | |
| 614 __MACHINEX86X_NOIA64(void _mm_setcsr(unsigned int)) | |
| 615 __MACHINEX86X_NOIA64(__m128 _mm_movelh_ps(__m128,__m128)) | |
| 616 __MACHINEX86X_NOIA64(__m128 _mm_movehl_ps(__m128,__m128)) | |
| 617 __MACHINEX86X_NOIA64(void _m_prefetch(void*)) | |
| 618 __MACHINEX86X_NOIA64(void _m_prefetchw(void*_Source)) | |
| 619 __MACHINEX86X_NOWIN64(void _m_femms(void)) | |
| 620 __MACHINEX86X_NOWIN64(__m64 _m_pavgusb(__m64,__m64)) | |
| 621 __MACHINEX86X_NOWIN64(__m64 _m_pf2id(__m64)) | |
| 622 __MACHINEX86X_NOWIN64(__m64 _m_pfacc(__m64,__m64)) | |
| 623 __MACHINEX86X_NOWIN64(__m64 _m_pfadd(__m64,__m64)) | |
| 624 __MACHINEX86X_NOWIN64(__m64 _m_pfcmpeq(__m64,__m64)) | |
| 625 __MACHINEX86X_NOWIN64(__m64 _m_pfcmpge(__m64,__m64)) | |
| 626 __MACHINEX86X_NOWIN64(__m64 _m_pfcmpgt(__m64,__m64)) | |
| 627 __MACHINEX86X_NOWIN64(__m64 _m_pfmax(__m64,__m64)) | |
| 628 __MACHINEX86X_NOWIN64(__m64 _m_pfmin(__m64,__m64)) | |
| 629 __MACHINEX86X_NOWIN64(__m64 _m_pfmul(__m64,__m64)) | |
| 630 __MACHINEX86X_NOWIN64(__m64 _m_pfrcp(__m64)) | |
| 631 __MACHINEX86X_NOWIN64(__m64 _m_pfrcpit1(__m64,__m64)) | |
| 632 __MACHINEX86X_NOWIN64(__m64 _m_pfrcpit2(__m64,__m64)) | |
| 633 __MACHINEX86X_NOWIN64(__m64 _m_pfrsqrt(__m64)) | |
| 634 __MACHINEX86X_NOWIN64(__m64 _m_pfrsqit1(__m64,__m64)) | |
| 635 __MACHINEX86X_NOWIN64(__m64 _m_pfsub(__m64,__m64)) | |
| 636 __MACHINEX86X_NOWIN64(__m64 _m_pfsubr(__m64,__m64)) | |
| 637 __MACHINEX86X_NOWIN64(__m64 _m_pi2fd(__m64)) | |
| 638 __MACHINEX86X_NOWIN64(__m64 _m_pmulhrw(__m64,__m64)) | |
| 639 __MACHINEX86X_NOWIN64(__m64 _m_pf2iw(__m64)) | |
| 640 __MACHINEX86X_NOWIN64(__m64 _m_pfnacc(__m64,__m64)) | |
| 641 __MACHINEX86X_NOWIN64(__m64 _m_pfpnacc(__m64,__m64)) | |
| 642 __MACHINEX86X_NOWIN64(__m64 _m_pi2fw(__m64)) | |
| 643 __MACHINEX86X_NOWIN64(__m64 _m_pswapd(__m64)) | |
| 644 __MACHINEX86X(__m128d _mm_add_sd(__m128d,__m128d)) | |
| 645 __MACHINEX86X(__m128d _mm_add_pd(__m128d,__m128d)) | |
| 646 __MACHINEX86X(__m128d _mm_div_sd(__m128d,__m128d)) | |
| 647 __MACHINEX86X(__m128d _mm_div_pd(__m128d,__m128d)) | |
| 648 __MACHINEX86X(__m128d _mm_max_sd(__m128d,__m128d)) | |
| 649 __MACHINEX86X(__m128d _mm_max_pd(__m128d,__m128d)) | |
| 650 __MACHINEX86X(__m128d _mm_min_sd(__m128d,__m128d)) | |
| 651 __MACHINEX86X(__m128d _mm_min_pd(__m128d,__m128d)) | |
| 652 __MACHINEX86X(__m128d _mm_mul_sd(__m128d,__m128d)) | |
| 653 __MACHINEX86X(__m128d _mm_mul_pd(__m128d,__m128d)) | |
| 654 __MACHINEX86X(__m128d _mm_sqrt_sd(__m128d,__m128d)) | |
| 655 __MACHINEX86X(__m128d _mm_sqrt_pd(__m128d)) | |
| 656 __MACHINEX86X(__m128d _mm_sub_sd(__m128d,__m128d)) | |
| 657 __MACHINEX86X(__m128d _mm_sub_pd(__m128d,__m128d)) | |
| 658 __MACHINEX86X(__m128d _mm_and_pd(__m128d,__m128d)) | |
| 659 __MACHINEX86X(__m128d _mm_andnot_pd(__m128d,__m128d)) | |
| 660 __MACHINEX86X(__m128d _mm_or_pd(__m128d,__m128d)) | |
| 661 __MACHINEX86X(__m128d _mm_xor_pd(__m128d,__m128d)) | |
| 662 __MACHINEX86X(__m128d _mm_cmpeq_sd(__m128d,__m128d)) | |
| 663 __MACHINEX86X(__m128d _mm_cmpeq_pd(__m128d,__m128d)) | |
| 664 __MACHINEX86X(__m128d _mm_cmplt_sd(__m128d,__m128d)) | |
| 665 __MACHINEX86X(__m128d _mm_cmplt_pd(__m128d,__m128d)) | |
| 666 __MACHINEX86X(__m128d _mm_cmple_sd(__m128d,__m128d)) | |
| 667 __MACHINEX86X(__m128d _mm_cmple_pd(__m128d,__m128d)) | |
| 668 __MACHINEX86X(__m128d _mm_cmpgt_sd(__m128d,__m128d)) | |
| 669 __MACHINEX86X(__m128d _mm_cmpgt_pd(__m128d,__m128d)) | |
| 670 __MACHINEX86X(__m128d _mm_cmpge_sd(__m128d,__m128d)) | |
| 671 __MACHINEX86X(__m128d _mm_cmpge_pd(__m128d,__m128d)) | |
| 672 __MACHINEX86X(__m128d _mm_cmpneq_sd(__m128d,__m128d)) | |
| 673 __MACHINEX86X(__m128d _mm_cmpneq_pd(__m128d,__m128d)) | |
| 674 __MACHINEX86X(__m128d _mm_cmpnlt_sd(__m128d,__m128d)) | |
| 675 __MACHINEX86X(__m128d _mm_cmpnlt_pd(__m128d,__m128d)) | |
| 676 __MACHINEX86X(__m128d _mm_cmpnle_sd(__m128d,__m128d)) | |
| 677 __MACHINEX86X(__m128d _mm_cmpnle_pd(__m128d,__m128d)) | |
| 678 __MACHINEX86X(__m128d _mm_cmpngt_sd(__m128d,__m128d)) | |
| 679 __MACHINEX86X(__m128d _mm_cmpngt_pd(__m128d,__m128d)) | |
| 680 __MACHINEX86X(__m128d _mm_cmpnge_sd(__m128d,__m128d)) | |
| 681 __MACHINEX86X(__m128d _mm_cmpnge_pd(__m128d,__m128d)) | |
| 682 __MACHINEX86X(__m128d _mm_cmpord_sd(__m128d,__m128d)) | |
| 683 __MACHINEX86X(__m128d _mm_cmpord_pd(__m128d,__m128d)) | |
| 684 __MACHINEX86X(__m128d _mm_cmpunord_sd(__m128d,__m128d)) | |
| 685 __MACHINEX86X(__m128d _mm_cmpunord_pd(__m128d,__m128d)) | |
| 686 __MACHINEX86X(int _mm_comieq_sd(__m128d,__m128d)) | |
| 687 __MACHINEX86X(int _mm_comilt_sd(__m128d,__m128d)) | |
| 688 __MACHINEX86X(int _mm_comile_sd(__m128d,__m128d)) | |
| 689 __MACHINEX86X(int _mm_comigt_sd(__m128d,__m128d)) | |
| 690 __MACHINEX86X(int _mm_comige_sd(__m128d,__m128d)) | |
| 691 __MACHINEX86X(int _mm_comineq_sd(__m128d,__m128d)) | |
| 692 __MACHINEX86X(int _mm_ucomieq_sd(__m128d,__m128d)) | |
| 693 __MACHINEX86X(int _mm_ucomilt_sd(__m128d,__m128d)) | |
| 694 __MACHINEX86X(int _mm_ucomile_sd(__m128d,__m128d)) | |
| 695 __MACHINEX86X(int _mm_ucomigt_sd(__m128d,__m128d)) | |
| 696 __MACHINEX86X(int _mm_ucomige_sd(__m128d,__m128d)) | |
| 697 __MACHINEX86X(int _mm_ucomineq_sd(__m128d,__m128d)) | |
| 698 __MACHINEX86X(__m128 _mm_cvtpd_ps(__m128d)) | |
| 699 __MACHINEX86X(__m128d _mm_cvtps_pd(__m128)) | |
| 700 __MACHINEX86X(__m128d _mm_cvtepi32_pd(__m128i)) | |
| 701 __MACHINEX86X(__m128i _mm_cvtpd_epi32(__m128d)) | |
| 702 __MACHINEX86X(int _mm_cvtsd_si32(__m128d)) | |
| 703 __MACHINEX86X(__m128 _mm_cvtsd_ss(__m128,__m128d)) | |
| 704 __MACHINEX86X(__m128d _mm_cvtsi32_sd(__m128d,int)) | |
| 705 __MACHINEX86X(__m128d _mm_cvtss_sd(__m128d,__m128)) | |
| 706 __MACHINEX86X(__m128i _mm_cvttpd_epi32(__m128d)) | |
| 707 __MACHINEX86X(int _mm_cvttsd_si32(__m128d)) | |
| 708 __MACHINEX86X(__m128 _mm_cvtepi32_ps(__m128i)) | |
| 709 __MACHINEX86X(__m128i _mm_cvtps_epi32(__m128)) | |
| 710 __MACHINEX86X(__m128i _mm_cvttps_epi32(__m128)) | |
| 711 __MACHINEX86X_NOX64(__m64 _mm_cvtpd_pi32(__m128d)) | |
| 712 __MACHINEX86X_NOX64(__m64 _mm_cvttpd_pi32(__m128d)) | |
| 713 __MACHINEX86X_NOX64(__m128d _mm_cvtpi32_pd(__m64)) | |
| 714 __MACHINEX86X(__m128d _mm_unpackhi_pd(__m128d,__m128d)) | |
| 715 __MACHINEX86X(__m128d _mm_unpacklo_pd(__m128d,__m128d)) | |
| 716 __MACHINEX86X(int _mm_movemask_pd(__m128d)) | |
| 717 // __MACHINEX86X(__m128d _mm_shuffle_pd(__m128d,__m128d,int)) | |
| 718 __MACHINEX86X(__m128d _mm_load_pd(double const*)) | |
| 719 __MACHINEX86X(__m128d _mm_load1_pd(double const*)) | |
| 720 __MACHINEX86X(__m128d _mm_loadr_pd(double const*)) | |
| 721 __MACHINEX86X(__m128d _mm_loadu_pd(double const*)) | |
| 722 __MACHINEX86X(__m128d _mm_load_sd(double const*)) | |
| 723 __MACHINEX86X(__m128d _mm_loadh_pd(__m128d,double const*)) | |
| 724 __MACHINEX86X(__m128d _mm_loadl_pd(__m128d,double const*)) | |
| 725 __MACHINEX86X(__m128d _mm_set_sd(double)) | |
| 726 __MACHINEX86X(__m128d _mm_set1_pd(double)) | |
| 727 __MACHINEX86X(__m128d _mm_set_pd(double,double)) | |
| 728 __MACHINEX86X(__m128d _mm_setr_pd(double,double)) | |
| 729 __MACHINEX86X(__m128d _mm_setzero_pd(void)) | |
| 730 __MACHINEX86X(__m128d _mm_move_sd(__m128d,__m128d)) | |
| 731 __MACHINEX86X(void _mm_store_sd(double*,__m128d)) | |
| 732 __MACHINEX86X(void _mm_store1_pd(double*,__m128d)) | |
| 733 __MACHINEX86X(void _mm_store_pd(double*,__m128d)) | |
| 734 __MACHINEX86X(void _mm_storeu_pd(double*,__m128d)) | |
| 735 __MACHINEX86X(void _mm_storer_pd(double*,__m128d)) | |
| 736 __MACHINEX86X(void _mm_storeh_pd(double*,__m128d)) | |
| 737 __MACHINEX86X(void _mm_storel_pd(double*,__m128d)) | |
| 738 __MACHINEX86X(__m128i _mm_add_epi8(__m128i,__m128i)) | |
| 739 __MACHINEX86X(__m128i _mm_add_epi16(__m128i,__m128i)) | |
| 740 __MACHINEX86X(__m128i _mm_add_epi32(__m128i,__m128i)) | |
| 741 __MACHINEX86X_NOX64(__m64 _mm_add_si64(__m64,__m64)) | |
| 742 __MACHINEX86X(__m128i _mm_add_epi64(__m128i,__m128i)) | |
| 743 __MACHINEX86X(__m128i _mm_adds_epi8(__m128i,__m128i)) | |
| 744 __MACHINEX86X(__m128i _mm_adds_epi16(__m128i,__m128i)) | |
| 745 __MACHINEX86X(__m128i _mm_adds_epu8(__m128i,__m128i)) | |
| 746 __MACHINEX86X(__m128i _mm_adds_epu16(__m128i,__m128i)) | |
| 747 __MACHINEX86X(__m128i _mm_avg_epu8(__m128i,__m128i)) | |
| 748 __MACHINEX86X(__m128i _mm_avg_epu16(__m128i,__m128i)) | |
| 749 __MACHINEX86X(__m128i _mm_madd_epi16(__m128i,__m128i)) | |
| 750 __MACHINEX86X(__m128i _mm_max_epi16(__m128i,__m128i)) | |
| 751 __MACHINEX86X(__m128i _mm_max_epu8(__m128i,__m128i)) | |
| 752 __MACHINEX86X(__m128i _mm_min_epi16(__m128i,__m128i)) | |
| 753 __MACHINEX86X(__m128i _mm_min_epu8(__m128i,__m128i)) | |
| 754 __MACHINEX86X(__m128i _mm_mulhi_epi16(__m128i,__m128i)) | |
| 755 __MACHINEX86X(__m128i _mm_mulhi_epu16(__m128i,__m128i)) | |
| 756 __MACHINEX86X(__m128i _mm_mullo_epi16(__m128i,__m128i)) | |
| 757 __MACHINEX86X_NOX64(__m64 _mm_mul_su32(__m64,__m64)) | |
| 758 __MACHINEX86X(__m128i _mm_mul_epu32(__m128i,__m128i)) | |
| 759 __MACHINEX86X(__m128i _mm_sad_epu8(__m128i,__m128i)) | |
| 760 __MACHINEX86X(__m128i _mm_sub_epi8(__m128i,__m128i)) | |
| 761 __MACHINEX86X(__m128i _mm_sub_epi16(__m128i,__m128i)) | |
| 762 __MACHINEX86X(__m128i _mm_sub_epi32(__m128i,__m128i)) | |
| 763 __MACHINEX86X_NOX64(__m64 _mm_sub_si64(__m64,__m64)) | |
| 764 __MACHINEX86X(__m128i _mm_sub_epi64(__m128i,__m128i)) | |
| 765 __MACHINEX86X(__m128i _mm_subs_epi8(__m128i,__m128i)) | |
| 766 __MACHINEX86X(__m128i _mm_subs_epi16(__m128i,__m128i)) | |
| 767 __MACHINEX86X(__m128i _mm_subs_epu8(__m128i,__m128i)) | |
| 768 __MACHINEX86X(__m128i _mm_subs_epu16(__m128i,__m128i)) | |
| 769 __MACHINEX86X(__m128i _mm_andnot_si128(__m128i,__m128i)) | |
| 770 __MACHINEX86X(__m128i _mm_and_si128(__m128i,__m128i)) | |
| 771 __MACHINEX86X(__m128i _mm_or_si128(__m128i,__m128i)) | |
| 772 __MACHINEX86X(__m128i _mm_xor_si128(__m128i,__m128i)) | |
| 773 // __MACHINEX86X(__m128i _mm_slli_si128(__m128i,int)) | |
| 774 // __MACHINEX86X(__m128i _mm_slli_epi16(__m128i,int)) | |
| 775 __MACHINEX86X(__m128i _mm_sll_epi16(__m128i,__m128i)) | |
| 776 // __MACHINEX86X(__m128i _mm_slli_epi32(__m128i,int)) | |
| 777 __MACHINEX86X(__m128i _mm_sll_epi32(__m128i,__m128i)) | |
| 778 // __MACHINEX86X(__m128i _mm_slli_epi64(__m128i,int)) | |
| 779 __MACHINEX86X(__m128i _mm_sll_epi64(__m128i,__m128i)) | |
| 780 // __MACHINEX86X(__m128i _mm_srai_epi16(__m128i,int)) | |
| 781 __MACHINEX86X(__m128i _mm_sra_epi16(__m128i,__m128i)) | |
| 782 // __MACHINEX86X(__m128i _mm_srai_epi32(__m128i,int)) | |
| 783 __MACHINEX86X(__m128i _mm_sra_epi32(__m128i,__m128i)) | |
| 784 // __MACHINEX86X(__m128i _mm_srli_si128(__m128i,int)) | |
| 785 // __MACHINEX86X(__m128i _mm_srli_epi16(__m128i,int)) | |
| 786 __MACHINEX86X(__m128i _mm_srl_epi16(__m128i,__m128i)) | |
| 787 // __MACHINEX86X(__m128i _mm_srli_epi32(__m128i,int)) | |
| 788 __MACHINEX86X(__m128i _mm_srl_epi32(__m128i,__m128i)) | |
| 789 // __MACHINEX86X(__m128i _mm_srli_epi64(__m128i,int)) | |
| 790 __MACHINEX86X(__m128i _mm_srl_epi64(__m128i,__m128i)) | |
| 791 __MACHINEX86X(__m128i _mm_cmpeq_epi8(__m128i,__m128i)) | |
| 792 __MACHINEX86X(__m128i _mm_cmpeq_epi16(__m128i,__m128i)) | |
| 793 __MACHINEX86X(__m128i _mm_cmpeq_epi32(__m128i,__m128i)) | |
| 794 __MACHINEX86X(__m128i _mm_cmpgt_epi8(__m128i,__m128i)) | |
| 795 __MACHINEX86X(__m128i _mm_cmpgt_epi16(__m128i,__m128i)) | |
| 796 __MACHINEX86X(__m128i _mm_cmpgt_epi32(__m128i,__m128i)) | |
| 797 __MACHINEX86X(__m128i _mm_cmplt_epi8(__m128i,__m128i)) | |
| 798 __MACHINEX86X(__m128i _mm_cmplt_epi16(__m128i,__m128i)) | |
| 799 __MACHINEX86X(__m128i _mm_cmplt_epi32(__m128i,__m128i)) | |
| 800 __MACHINEX86X(__m128i _mm_cvtsi32_si128(int)) | |
| 801 __MACHINEX86X(int _mm_cvtsi128_si32(__m128i)) | |
| 802 __MACHINEX86X(__m128i _mm_packs_epi16(__m128i,__m128i)) | |
| 803 __MACHINEX86X(__m128i _mm_packs_epi32(__m128i,__m128i)) | |
| 804 __MACHINEX86X(__m128i _mm_packus_epi16(__m128i,__m128i)) | |
| 805 // __MACHINEX86X(int _mm_extract_epi16(__m128i,int)) | |
| 806 // __MACHINEX86X(__m128i _mm_insert_epi16(__m128i,int,int)) | |
| 807 __MACHINEX86X(int _mm_movemask_epi8(__m128i)) | |
| 808 // __MACHINEX86X(__m128i _mm_shuffle_epi32(__m128i,int)) | |
| 809 // __MACHINEX86X(__m128i _mm_shufflehi_epi16(__m128i,int)) | |
| 810 // __MACHINEX86X(__m128i _mm_shufflelo_epi16(__m128i,int)) | |
| 811 __MACHINEX86X(__m128i _mm_unpackhi_epi8(__m128i,__m128i)) | |
| 812 __MACHINEX86X(__m128i _mm_unpackhi_epi16(__m128i,__m128i)) | |
| 813 __MACHINEX86X(__m128i _mm_unpackhi_epi32(__m128i,__m128i)) | |
| 814 __MACHINEX86X(__m128i _mm_unpackhi_epi64(__m128i,__m128i)) | |
| 815 __MACHINEX86X(__m128i _mm_unpacklo_epi8(__m128i,__m128i)) | |
| 816 __MACHINEX86X(__m128i _mm_unpacklo_epi16(__m128i,__m128i)) | |
| 817 __MACHINEX86X(__m128i _mm_unpacklo_epi32(__m128i,__m128i)) | |
| 818 __MACHINEX86X(__m128i _mm_unpacklo_epi64(__m128i,__m128i)) | |
| 819 __MACHINEX86X(__m128i _mm_load_si128(__m128i const*)) | |
| 820 __MACHINEX86X(__m128i _mm_loadu_si128(__m128i const*)) | |
| 821 __MACHINEX86X(__m128i _mm_loadl_epi64(__m128i const*)) | |
| 822 __MACHINEX86X_NOX64(__m128i _mm_set_epi64(__m64,__m64)) | |
| 823 __MACHINEX86X(__m128i _mm_set_epi32(int,int,int,int)) | |
| 824 __MACHINEX86X(__m128i _mm_set_epi16(short,short,short,short,short,short,short,short)) | |
| 825 __MACHINEX86X(__m128i _mm_set_epi8(char,char,char,char,char,char,char,char,char,char,char,char,char,char,char,char)) | |
| 826 __MACHINEX86X_NOX64(__m128i _mm_set1_epi64(__m64)) | |
| 827 __MACHINEX86X(__m128i _mm_set1_epi32(int)) | |
| 828 __MACHINEX86X(__m128i _mm_set1_epi16(short)) | |
| 829 __MACHINEX86X(__m128i _mm_set1_epi8(char)) | |
| 830 __MACHINEX86X(__m128i _mm_setl_epi64(__m128i)) | |
| 831 __MACHINEX86X_NOX64(__m128i _mm_setr_epi64(__m64,__m64)) | |
| 832 __MACHINEX86X(__m128i _mm_setr_epi32(int,int,int,int)) | |
| 833 __MACHINEX86X(__m128i _mm_setr_epi16(short,short,short,short,short,short,short,short)) | |
| 834 __MACHINEX86X(__m128i _mm_setr_epi8(char,char,char,char,char,char,char,char,char,char,char,char,char,char,char,char)) | |
| 835 __MACHINEX86X(__m128i _mm_setzero_si128(void)) | |
| 836 __MACHINEX86X(void _mm_store_si128(__m128i*,__m128i)) | |
| 837 __MACHINEX86X(void _mm_storeu_si128(__m128i*,__m128i)) | |
| 838 __MACHINEX86X(void _mm_storel_epi64(__m128i*,__m128i)) | |
| 839 __MACHINEX86X(void _mm_maskmoveu_si128(__m128i,__m128i,char*)) | |
| 840 __MACHINEX86X(__m128i _mm_move_epi64(__m128i)) | |
| 841 __MACHINEX86X_NOX64(__m128i _mm_movpi64_epi64(__m64)) | |
| 842 __MACHINEX86X_NOX64(__m64 _mm_movepi64_pi64(__m128i)) | |
| 843 __MACHINEX86X(void _mm_stream_pd(double*,__m128d)) | |
| 844 __MACHINEX86X(void _mm_stream_si128(__m128i*,__m128i)) | |
| 845 __MACHINEX86X(void _mm_clflush(void const *)) | |
| 846 __MACHINEX86X(void _mm_lfence(void)) | |
| 847 __MACHINEX86X(void _mm_mfence(void)) | |
| 848 __MACHINEX86X(void _mm_stream_si32(int*,int)) | |
| 849 __MACHINEX86X(void _mm_pause(void)) | |
| 850 __MACHINEX86X(__m128 _mm_addsub_ps(__m128,__m128)) | |
| 851 __MACHINEX86X(__m128d _mm_addsub_pd(__m128d,__m128d)) | |
| 852 __MACHINEX86X(__m128 _mm_hadd_ps(__m128,__m128)) | |
| 853 __MACHINEX86X(__m128d _mm_hadd_pd(__m128d,__m128d)) | |
| 854 __MACHINEX86X(__m128 _mm_hsub_ps(__m128,__m128)) | |
| 855 __MACHINEX86X(__m128d _mm_hsub_pd(__m128d,__m128d)) | |
| 856 __MACHINEX86X(__m128i _mm_lddqu_si128(__m128i const*)) | |
| 857 __MACHINEX86X(void _mm_monitor(void const*,unsigned int,unsigned int)) | |
| 858 __MACHINEX86X(__m128d _mm_movedup_pd(__m128d)) | |
| 859 __MACHINEX86X(__m128d _mm_loaddup_pd(double const*)) | |
| 860 __MACHINEX86X(__m128 _mm_movehdup_ps(__m128)) | |
| 861 __MACHINEX86X(__m128 _mm_moveldup_ps(__m128)) | |
| 862 __MACHINEX86X(void _mm_mwait(unsigned int,unsigned int)) | |
| 863 __MACHINEI(void _WriteBarrier(void)) | |
| 864 __MACHINEI(void _ReadWriteBarrier(void)) | |
| 865 __MACHINEIA64(void _WriteBarrier(void)) | |
| 866 __MACHINEIA64(void _ReadWriteBarrier(void)) | |
| 867 __MACHINEX64(void __faststorefence(void)) | |
| 868 __MACHINEX64(__MINGW_EXTENSION __int64 __mulh(__int64,__int64)) | |
| 869 __MACHINEX64(__MINGW_EXTENSION unsigned __int64 __umulh(unsigned __int64,unsigned __int64)) | |
| 870 __MACHINEX64(__MINGW_EXTENSION unsigned __int64 __readcr0(void)) | |
| 871 __MACHINEX64(__MINGW_EXTENSION unsigned __int64 __readcr2(void)) | |
| 872 __MACHINEX64(__MINGW_EXTENSION unsigned __int64 __readcr3(void)) | |
| 873 __MACHINEX64(__MINGW_EXTENSION unsigned __int64 __readcr4(void)) | |
| 874 __MACHINEX64(__MINGW_EXTENSION unsigned __int64 __readcr8(void)) | |
| 875 __MACHINEIA32(unsigned long __readcr0(void)) | |
| 876 __MACHINEIA32(unsigned long __readcr2(void)) | |
| 877 __MACHINEIA32(unsigned long __readcr3(void)) | |
| 878 __MACHINEIA32(unsigned long __readcr4(void)) | |
| 879 __MACHINEX64(__MINGW_EXTENSION void __writecr0(unsigned __int64)) | |
| 880 __MACHINEX64(__MINGW_EXTENSION void __writecr3(unsigned __int64)) | |
| 881 __MACHINEX64(__MINGW_EXTENSION void __writecr4(unsigned __int64)) | |
| 882 __MACHINEX64(__MINGW_EXTENSION void __writecr8(unsigned __int64)) | |
| 883 __MACHINEIA32(void __writecr0(unsigned)) | |
| 884 __MACHINEIA32(void __writecr3(unsigned)) | |
| 885 __MACHINEIA32(void __writecr4(unsigned)) | |
| 886 __MACHINEI(void __wbinvd(void)) | |
| 887 __MACHINEI(void __invlpg(void*)) | |
| 888 __MACHINEI(__MINGW_EXTENSION unsigned __int64 __readmsr(unsigned long)) | |
| 889 __MACHINEI(__MINGW_EXTENSION void __writemsr(unsigned long,unsigned __int64)) | |
| 890 __MACHINEI(__MINGW_EXTENSION unsigned __int64 __rdtsc(void)) | |
| 891 __MACHINEI(void __movsb(unsigned char *,unsigned char const *,size_t)) | |
| 892 __MACHINEI(void __movsw(unsigned short *,unsigned short const *,size_t)) | |
| 893 __MACHINEI(void __movsd(unsigned long *,unsigned long const *,size_t)) | |
| 894 __MACHINEX64(__MINGW_EXTENSION void __movsq(unsigned long long *,unsigned long long const *,size_t)) | |
| 895 __MACHINEX64(unsigned char __readgsbyte(unsigned long Offset)) | |
| 896 __MACHINEX64(unsigned short __readgsword(unsigned long Offset)) | |
| 897 __MACHINEX64(unsigned long __readgsdword(unsigned long Offset)) | |
| 898 __MACHINEX64(__MINGW_EXTENSION unsigned __int64 __readgsqword(unsigned long Offset)) | |
| 899 __MACHINEX64(void __writegsbyte(unsigned long Offset,unsigned char Data)) | |
| 900 __MACHINEX64(void __writegsword(unsigned long Offset,unsigned short Data)) | |
| 901 __MACHINEX64(void __writegsdword(unsigned long Offset,unsigned long Data)) | |
| 902 __MACHINEX64(__MINGW_EXTENSION void __writegsqword(unsigned long Offset,unsigned __int64 Data)) | |
| 903 __MACHINEI(unsigned char __inbyte(unsigned short Port)) | |
| 904 __MACHINEI(unsigned short __inword(unsigned short Port)) | |
| 905 __MACHINEI(unsigned long __indword(unsigned short Port)) | |
| 906 __MACHINEI(void __outbyte(unsigned short Port,unsigned char Data)) | |
| 907 __MACHINEI(void __outword(unsigned short Port,unsigned short Data)) | |
| 908 __MACHINEI(void __outdword(unsigned short Port,unsigned long Data)) | |
| 909 __MACHINEI(void __inbytestring(unsigned short Port,unsigned char *Buffer,unsigned long Count)) | |
| 910 __MACHINEI(void __inwordstring(unsigned short Port,unsigned short *Buffer,unsigned long Count)) | |
| 911 __MACHINEI(void __indwordstring(unsigned short Port,unsigned long *Buffer,unsigned long Count)) | |
| 912 __MACHINEI(void __outbytestring(unsigned short Port,unsigned char *Buffer,unsigned long Count)) | |
| 913 __MACHINEI(void __outwordstring(unsigned short Port,unsigned short *Buffer,unsigned long Count)) | |
| 914 __MACHINEI(void __outdwordstring(unsigned short Port,unsigned long *Buffer,unsigned long Count)) | |
| 915 __MACHINEI(unsigned int __getcallerseflags()) | |
| 916 __MACHINEX64(__MINGW_EXTENSION __m128i _mm_set_epi64x(__int64 i1,__int64 i0)) | |
| 917 __MACHINEX64(__MINGW_EXTENSION __m128i _mm_set1_epi64x(__int64 i)) | |
| 918 __MACHINEX64(__MINGW_EXTENSION __int64 _mm_cvtsd_si64x(__m128d a)) | |
| 919 __MACHINEX64(__MINGW_EXTENSION __m128d _mm_cvtsi64x_sd(__m128d a,__int64 b)) | |
| 920 __MACHINEX64(__MINGW_EXTENSION __m128 _mm_cvtsi64x_ss(__m128 a,__int64 b)) | |
| 921 __MACHINEX64(__MINGW_EXTENSION __int64 _mm_cvtss_si64x(__m128 a)) | |
| 922 __MACHINEX64(__MINGW_EXTENSION __int64 _mm_cvttsd_si64x(__m128d a)) | |
| 923 __MACHINEX64(__MINGW_EXTENSION __int64 _mm_cvttss_si64x(__m128 a)) | |
| 924 __MACHINEX64(__MINGW_EXTENSION __m128i _mm_cvtsi64x_si128(__int64 a)) | |
| 925 __MACHINEX64(__MINGW_EXTENSION __int64 _mm_cvtsi128_si64x(__m128i a)) | |
| 926 __MACHINEX64(__MINGW_EXTENSION void _mm_stream_si64x(__int64 *,__int64)) | |
| 927 __MACHINEI(void __stosb(unsigned char *,unsigned char,size_t)) | |
| 928 __MACHINEI(void __stosw(unsigned short *,unsigned short,size_t)) | |
| 929 __MACHINEI(void __stosd(unsigned long *,unsigned long,size_t)) | |
| 930 __MACHINEX64(__MINGW_EXTENSION void __stosq(unsigned __int64 *,unsigned __int64,size_t)) | |
| 931 __MACHINEIW64(unsigned char _bittest(long const *a,long b)) | |
| 932 __MACHINEIW64(unsigned char _bittestandset(long *a,long b)) | |
| 933 __MACHINEIW64(unsigned char _bittestandreset(long *a,long b)) | |
| 934 __MACHINEIW64(unsigned char _bittestandcomplement(long *a,long b)) | |
| 935 __MACHINEI(unsigned char _interlockedbittestandset(long *a,long b)) | |
| 936 __MACHINEI(unsigned char _interlockedbittestandreset(long *a,long b)) | |
| 937 __MACHINEW64(__MINGW_EXTENSION unsigned char _bittest64(__int64 const *a,__int64 b)) | |
| 938 __MACHINEW64(__MINGW_EXTENSION unsigned char _bittestandset64(__int64 *a,__int64 b)) | |
| 939 __MACHINEW64(__MINGW_EXTENSION unsigned char _bittestandreset64(__int64 *a,__int64 b)) | |
| 940 __MACHINEW64(__MINGW_EXTENSION unsigned char _bittestandcomplement64(__int64 *a,__int64 b)) | |
| 941 __MACHINEX64(__MINGW_EXTENSION unsigned char _interlockedbittestandset64(__int64 *a,__int64 b)) | |
| 942 __MACHINEX64(__MINGW_EXTENSION unsigned char _interlockedbittestandreset64(__int64 *a,__int64 b)) | |
| 943 __MACHINEI(void __cpuid(int a[4],int b)) | |
| 944 __MACHINEI(__MINGW_EXTENSION unsigned __int64 __readpmc(unsigned long a)) | |
| 945 __MACHINEI(unsigned long __segmentlimit(unsigned long a)) | |
| 946 | |
| 947 __MACHINEIA32(unsigned char __readfsbyte(unsigned long Offset)) | |
| 948 __MACHINEIA32(unsigned short __readfsword(unsigned long Offset)) | |
| 949 __MACHINEIA32(unsigned long __readfsdword(unsigned long Offset)) | |
| 950 __MACHINEIA32(__MINGW_EXTENSION unsigned __int64 __readfsqword(unsigned long Offset)) | |
| 951 __MACHINEIA32(void __writefsbyte(unsigned long Offset,unsigned char Data)) | |
| 952 __MACHINEIA32(void __writefsword(unsigned long Offset,unsigned short Data)) | |
| 953 __MACHINEIA32(void __writefsdword(unsigned long Offset,unsigned long Data)) | |
| 954 __MACHINEIA32(__MINGW_EXTENSION void __writefsqword(unsigned long Offset,unsigned __int64 Data)) | |
| 955 | |
| 956 __MACHINE(__MINGW_EXTENSION unsigned __int64 __cdecl _rotl64(unsigned __int64,int)) | |
| 957 __MACHINE(__MINGW_EXTENSION unsigned __int64 __cdecl _rotr64(unsigned __int64,int)) | |
| 958 __MACHINE(__MINGW_EXTENSION __int64 __cdecl _abs64(__int64)) | |
| 959 | |
| 960 __MACHINEIW64(unsigned char _BitScanForward(unsigned long *Index,unsigned long Mask)) | |
| 961 __MACHINEIW64(unsigned char _BitScanReverse(unsigned long *Index,unsigned long Mask)) | |
| 962 __MACHINEW64(__MINGW_EXTENSION unsigned char _BitScanForward64(unsigned long *Index,unsigned __int64 Mask)) | |
| 963 __MACHINEW64(__MINGW_EXTENSION unsigned char _BitScanReverse64(unsigned long *Index,unsigned __int64 Mask)) | |
| 964 __MACHINEIW64(wchar_t *__cdecl wcscat(wchar_t *,const wchar_t *)) | |
| 965 __MACHINEIW64(int __cdecl wcscmp(const wchar_t *,const wchar_t *)) | |
| 966 __MACHINEIW64(wchar_t *__cdecl wcscpy(wchar_t *,const wchar_t *)) | |
| 967 __MACHINEIW64(size_t __cdecl wcslen(const wchar_t *)) | |
| 968 __MACHINEIW64(_CRTIMP wchar_t *__cdecl _wcsset(wchar_t *,wchar_t)) | |
| 969 __MACHINEW64(__MINGW_EXTENSION unsigned __int64 __shiftleft128(unsigned __int64 LowPart,unsigned __int64 HighPart,unsigned char Shift)) | |
| 970 __MACHINEW64(__MINGW_EXTENSION unsigned __int64 __shiftright128(unsigned __int64 LowPart,unsigned __int64 HighPart,unsigned char Shift)) | |
| 971 __MACHINEW64(__MINGW_EXTENSION unsigned __int64 _umul128(unsigned __int64 multiplier,unsigned __int64 multiplicand,unsigned __int64 *highproduct)) | |
| 972 __MACHINEW64(__MINGW_EXTENSION __int64 _mul128(__int64 multiplier,__int64 multiplicand,__int64 *highproduct)) | |
| 973 __MACHINEI(void __int2c(void)) | |
| 974 __MACHINEIW64(void _ReadBarrier(void)) | |
| 975 __MACHINEIW64(unsigned char _rotr8(unsigned char value,unsigned char shift)) | |
| 976 __MACHINEIW64(unsigned short _rotr16(unsigned short value,unsigned char shift)) | |
| 977 __MACHINEIW64(unsigned char _rotl8(unsigned char value,unsigned char shift)) | |
| 978 __MACHINEIW64(unsigned short _rotl16(unsigned short value,unsigned char shift)) | |
| 979 __MACHINEIW64(short _InterlockedIncrement16(short volatile *Addend)) | |
| 980 __MACHINEIW64(short _InterlockedDecrement16(short volatile *Addend)) | |
| 981 __MACHINEIW64(short _InterlockedCompareExchange16(short volatile *Destination,short Exchange,short Comparand)) | |
| 982 __MACHINEIA64(short _InterlockedIncrement16_acq(short volatile *Addend)) | |
| 983 __MACHINEIA64(short _InterlockedIncrement16_rel(short volatile *Addend)) | |
| 984 __MACHINEIA64(short _InterlockedDecrement16_acq(short volatile *Addend)) | |
| 985 __MACHINEIA64(short _InterlockedDecrement16_rel(short volatile *Addend)) | |
| 986 __MACHINEIA64(short _InterlockedCompareExchange16_acq(short volatile *Destination,short Exchange,short Comparand)) | |
| 987 __MACHINEIA64(short _InterlockedCompareExchange16_rel(short volatile *Destination,short Exchange,short Comparand)) | |
| 988 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paddb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 989 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paddw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 990 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paddd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 991 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paddsb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 992 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paddsw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 993 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paddsd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 994 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paddusb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 995 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paddusw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 996 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paddusd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 997 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psubb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 998 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psubw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 999 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psubd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1000 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psubsb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1001 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psubsw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1002 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psubsd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1003 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psubusb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1004 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psubusw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1005 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psubusd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1006 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmaddwd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1007 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmadduwd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1008 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmulhw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1009 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmulhuw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1010 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmullw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1011 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmullw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1012 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmacsw(unsigned __int64 m1,unsigned __int64 m2,unsigned __int64 m3)) | |
| 1013 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmacuw(unsigned __int64 m1,unsigned __int64 m2,unsigned __int64 m3)) | |
| 1014 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmacszw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1015 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_padduzw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1016 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paccb(unsigned __int64 m1)) | |
| 1017 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paccw(unsigned __int64 m1)) | |
| 1018 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paccd(unsigned __int64 m1)) | |
| 1019 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmia(unsigned __int64 m1,int i1,int i0)) | |
| 1020 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmiaph(unsigned __int64 m1,int i1,int i0)) | |
| 1021 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmiabb(unsigned __int64 m1,int i1,int i0)) | |
| 1022 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmiabt(unsigned __int64 m1,int i1,int i0)) | |
| 1023 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmiatb(unsigned __int64 m1,int i1,int i0)) | |
| 1024 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmiatt(unsigned __int64 m1,int i1,int i0)) | |
| 1025 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psllw(unsigned __int64 m1,unsigned __int64 count)) | |
| 1026 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psllwi(unsigned __int64 m1,int count)) | |
| 1027 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pslld(unsigned __int64 m1,unsigned __int64 count)) | |
| 1028 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pslldi(unsigned __int64 m1,int count)) | |
| 1029 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psllq(unsigned __int64 m1,unsigned __int64 count)) | |
| 1030 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psllqi(unsigned __int64 m1,int count)) | |
| 1031 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psraw(unsigned __int64 m1,unsigned __int64 count)) | |
| 1032 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psrawi(unsigned __int64 m1,int count)) | |
| 1033 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psrad(unsigned __int64 m1,unsigned __int64 count)) | |
| 1034 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psradi(unsigned __int64 m1,int count)) | |
| 1035 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psraq(unsigned __int64 m1,unsigned __int64 count)) | |
| 1036 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psraqi(unsigned __int64 m1,int count)) | |
| 1037 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psrlw(unsigned __int64 m1,unsigned __int64 count)) | |
| 1038 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psrlwi(unsigned __int64 m1,int count)) | |
| 1039 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psrld(unsigned __int64 m1,unsigned __int64 count)) | |
| 1040 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psrldi(unsigned __int64 m1,int count)) | |
| 1041 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psrlq(unsigned __int64 m1,unsigned __int64 count)) | |
| 1042 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psrlqi(unsigned __int64 m1,int count)) | |
| 1043 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_prorw(unsigned __int64 m1,unsigned __int64 count)) | |
| 1044 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_prorwi(unsigned __int64 m1,int count)) | |
| 1045 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_prord(unsigned __int64 m1,unsigned __int64 count)) | |
| 1046 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_prordi(unsigned __int64 m1,int count)) | |
| 1047 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_prorq(unsigned __int64 m1,unsigned __int64 count)) | |
| 1048 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_prorqi(unsigned __int64 m1,int count)) | |
| 1049 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pand(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1050 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pandn(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1051 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_por(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1052 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pxor(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1053 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pcmpeqb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1054 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pcmpeqw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1055 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pcmpeqd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1056 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pcmpgtb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1057 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pcmpgtub(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1058 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pcmpgtw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1059 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pcmpgtuw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1060 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pcmpgtd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1061 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pcmpgtud(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1062 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_packsswb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1063 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_packssdw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1064 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_packssqd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1065 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_packuswb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1066 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_packusdw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1067 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_packusqd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1068 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckhbw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1069 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckhwd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1070 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckhdq(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1071 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpcklbw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1072 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpcklwd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1073 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckldq(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1074 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckehsbw(unsigned __int64 m1)) | |
| 1075 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckehswd(unsigned __int64 m1)) | |
| 1076 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckehsdq(unsigned __int64 m1)) | |
| 1077 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckehubw(unsigned __int64 m1)) | |
| 1078 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckehuwd(unsigned __int64 m1)) | |
| 1079 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckehudq(unsigned __int64 m1)) | |
| 1080 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckelsbw(unsigned __int64 m1)) | |
| 1081 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckelswd(unsigned __int64 m1)) | |
| 1082 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckelsdq(unsigned __int64 m1)) | |
| 1083 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckelubw(unsigned __int64 m1)) | |
| 1084 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckeluwd(unsigned __int64 m1)) | |
| 1085 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_punpckeludq(unsigned __int64 m1)) | |
| 1086 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _mm_setzero_si64()) | |
| 1087 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _mm_set_pi32(int i1,int i0)) | |
| 1088 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _mm_set_pi16(short s3,short s2,short s1,short s0)) | |
| 1089 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _mm_set_pi8(char b7,char b6,char b5,char b4,char b3,char b2,char b1,char b0)) | |
| 1090 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _mm_set1_pi32(int i)) | |
| 1091 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _mm_set1_pi16(short s)) | |
| 1092 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _mm_set1_pi8(char b)) | |
| 1093 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _mm_setr_pi32(int i1,int i0)) | |
| 1094 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _mm_setr_pi16(short s3,short s2,short s1,short s0)) | |
| 1095 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _mm_setr_pi8(char b7,char b6,char b5,char b4,char b3,char b2,char b1,char b0)) | |
| 1096 __MACHINECC(void _mm_setwcx(int i1,int i0)) | |
| 1097 __MACHINECC(int _mm_getwcx(int i)) | |
| 1098 __MACHINECC(__MINGW_EXTENSION int _m_pextrb(unsigned __int64 m1,const int c)) | |
| 1099 __MACHINECC(__MINGW_EXTENSION int _m_pextrw(unsigned __int64 m1,const int c)) | |
| 1100 __MACHINECC(__MINGW_EXTENSION int _m_pextrd(unsigned __int64 m1,const int c)) | |
| 1101 __MACHINECC(__MINGW_EXTENSION unsigned int _m_pextrub(unsigned __int64 m1,const int c)) | |
| 1102 __MACHINECC(__MINGW_EXTENSION unsigned int _m_pextruw(unsigned __int64 m1,const int c)) | |
| 1103 __MACHINECC(__MINGW_EXTENSION unsigned int _m_pextrud(unsigned __int64 m1,const int c)) | |
| 1104 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pinsrb(unsigned __int64 m1,int i,const int c)) | |
| 1105 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pinsrw(unsigned __int64 m1,int i,const int c)) | |
| 1106 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pinsrd(unsigned __int64 m1,int i,const int c)) | |
| 1107 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmaxsb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1108 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmaxsw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1109 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmaxsd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1110 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmaxub(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1111 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmaxuw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1112 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pmaxud(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1113 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pminsb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1114 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pminsw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1115 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pminsd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1116 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pminub(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1117 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pminuw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1118 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pminud(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1119 __MACHINECC(__MINGW_EXTENSION int _m_pmovmskb(unsigned __int64 m1)) | |
| 1120 __MACHINECC(__MINGW_EXTENSION int _m_pmovmskw(unsigned __int64 m1)) | |
| 1121 __MACHINECC(__MINGW_EXTENSION int _m_pmovmskd(unsigned __int64 m1)) | |
| 1122 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pshufw(unsigned __int64 m1,int i)) | |
| 1123 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pavgb(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1124 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pavgw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1125 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pavg2b(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1126 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_pavg2w(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1127 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psadbw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1128 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psadwd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1129 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psadzbw(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1130 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_psadzwd(unsigned __int64 m1,unsigned __int64 m2)) | |
| 1131 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_paligniq(unsigned __int64 m1,unsigned __int64 m2,int i)) | |
| 1132 __MACHINECC(__MINGW_EXTENSION unsigned __int64 _m_cvt_si2pi(__int64 i)) | |
| 1133 __MACHINECC(__MINGW_EXTENSION __int64 _m_cvt_pi2si(unsigned __int64 m1)) | |
| 1134 __MACHINEIW64(void __nvreg_save_fence(void)) | |
| 1135 __MACHINEIW64(void __nvreg_restore_fence(void)) | |
| 1136 | |
| 1137 __MACHINEX64(short _InterlockedCompareExchange16_np(short volatile *Destination,short Exchange,short Comparand)) | |
| 1138 __MACHINEX64(long _InterlockedCompareExchange_np (long *,long,long)) | |
| 1139 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedCompareExchange64_np(__int64 *,__int64,__int64)) | |
| 1140 __MACHINEX64(void *_InterlockedCompareExchangePointer_np (void **,void *,void *)) | |
| 1141 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128_np(__int64 *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand)) | |
| 1142 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128_acq_np(__int64 *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand)) | |
| 1143 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedCompare64Exchange128_rel_np(__int64 *Destination,__int64 ExchangeHigh,__int64 ExchangeLow,__int64 Comparand)) | |
| 1144 __MACHINEX64(long _InterlockedAnd_np(long *,long)) | |
| 1145 __MACHINEX64(char _InterlockedAnd8_np(char *,char)) | |
| 1146 __MACHINEX64(short _InterlockedAnd16_np(short *,short)) | |
| 1147 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedAnd64_np(__int64 *,__int64)) | |
| 1148 __MACHINEX64(long _InterlockedOr_np(long *,long)) | |
| 1149 __MACHINEX64(char _InterlockedOr8_np(char *,char)) | |
| 1150 __MACHINEX64(short _InterlockedOr16_np(short *,short)) | |
| 1151 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedOr64_np(__int64 *,__int64)) | |
| 1152 __MACHINEX64(long _InterlockedXor_np(long *,long)) | |
| 1153 __MACHINEX64(char _InterlockedXor8_np(char *,char)) | |
| 1154 __MACHINEX64(short _InterlockedXor16_np(short *,short)) | |
| 1155 __MACHINEX64(__MINGW_EXTENSION __int64 _InterlockedXor64_np(__int64 *,__int64)) | |
| 1156 | |
| 1157 #if defined(__ia64__) | |
| 1158 | |
| 1159 #define __REG_IA64_Ip 1016 | |
| 1160 | |
| 1161 #define __REG_IA64_IntR0 1024 | |
| 1162 #define __REG_IA64_IntR1 1025 | |
| 1163 #define __REG_IA64_IntR2 1026 | |
| 1164 #define __REG_IA64_IntR3 1027 | |
| 1165 #define __REG_IA64_IntR4 1028 | |
| 1166 #define __REG_IA64_IntR5 1029 | |
| 1167 #define __REG_IA64_IntR6 1030 | |
| 1168 #define __REG_IA64_IntR7 1031 | |
| 1169 #define __REG_IA64_IntR8 1032 | |
| 1170 #define __REG_IA64_IntR9 1033 | |
| 1171 #define __REG_IA64_IntR10 1034 | |
| 1172 #define __REG_IA64_IntR11 1035 | |
| 1173 #define __REG_IA64_IntR12 1036 | |
| 1174 #define __REG_IA64_IntR13 1037 | |
| 1175 #define __REG_IA64_IntR14 1038 | |
| 1176 #define __REG_IA64_IntR15 1039 | |
| 1177 #define __REG_IA64_IntR16 1040 | |
| 1178 #define __REG_IA64_IntR17 1041 | |
| 1179 #define __REG_IA64_IntR18 1042 | |
| 1180 #define __REG_IA64_IntR19 1043 | |
| 1181 #define __REG_IA64_IntR20 1044 | |
| 1182 #define __REG_IA64_IntR21 1045 | |
| 1183 #define __REG_IA64_IntR22 1046 | |
| 1184 #define __REG_IA64_IntR23 1047 | |
| 1185 #define __REG_IA64_IntR24 1048 | |
| 1186 #define __REG_IA64_IntR25 1049 | |
| 1187 #define __REG_IA64_IntR26 1050 | |
| 1188 #define __REG_IA64_IntR27 1051 | |
| 1189 #define __REG_IA64_IntR28 1052 | |
| 1190 #define __REG_IA64_IntR29 1053 | |
| 1191 #define __REG_IA64_IntR30 1054 | |
| 1192 #define __REG_IA64_IntR31 1055 | |
| 1193 | |
| 1194 #define __REG_IA64_IntR32 1056 | |
| 1195 #define __REG_IA64_IntR33 1057 | |
| 1196 #define __REG_IA64_IntR34 1058 | |
| 1197 #define __REG_IA64_IntR35 1059 | |
| 1198 #define __REG_IA64_IntR36 1060 | |
| 1199 #define __REG_IA64_IntR37 1061 | |
| 1200 #define __REG_IA64_IntR38 1062 | |
| 1201 #define __REG_IA64_IntR39 1063 | |
| 1202 #define __REG_IA64_IntR40 1064 | |
| 1203 #define __REG_IA64_IntR41 1065 | |
| 1204 #define __REG_IA64_IntR42 1066 | |
| 1205 #define __REG_IA64_IntR43 1067 | |
| 1206 #define __REG_IA64_IntR44 1068 | |
| 1207 #define __REG_IA64_IntR45 1069 | |
| 1208 #define __REG_IA64_IntR46 1070 | |
| 1209 #define __REG_IA64_IntR47 1071 | |
| 1210 #define __REG_IA64_IntR48 1072 | |
| 1211 #define __REG_IA64_IntR49 1073 | |
| 1212 #define __REG_IA64_IntR50 1074 | |
| 1213 #define __REG_IA64_IntR51 1075 | |
| 1214 #define __REG_IA64_IntR52 1076 | |
| 1215 #define __REG_IA64_IntR53 1077 | |
| 1216 #define __REG_IA64_IntR54 1078 | |
| 1217 #define __REG_IA64_IntR55 1079 | |
| 1218 #define __REG_IA64_IntR56 1080 | |
| 1219 #define __REG_IA64_IntR57 1081 | |
| 1220 #define __REG_IA64_IntR58 1082 | |
| 1221 #define __REG_IA64_IntR59 1083 | |
| 1222 #define __REG_IA64_IntR60 1084 | |
| 1223 #define __REG_IA64_IntR61 1085 | |
| 1224 #define __REG_IA64_IntR62 1086 | |
| 1225 #define __REG_IA64_IntR63 1087 | |
| 1226 #define __REG_IA64_IntR64 1088 | |
| 1227 #define __REG_IA64_IntR65 1089 | |
| 1228 #define __REG_IA64_IntR66 1090 | |
| 1229 #define __REG_IA64_IntR67 1091 | |
| 1230 #define __REG_IA64_IntR68 1092 | |
| 1231 #define __REG_IA64_IntR69 1093 | |
| 1232 #define __REG_IA64_IntR70 1094 | |
| 1233 #define __REG_IA64_IntR71 1095 | |
| 1234 #define __REG_IA64_IntR72 1096 | |
| 1235 #define __REG_IA64_IntR73 1097 | |
| 1236 #define __REG_IA64_IntR74 1098 | |
| 1237 #define __REG_IA64_IntR75 1099 | |
| 1238 #define __REG_IA64_IntR76 1100 | |
| 1239 #define __REG_IA64_IntR77 1101 | |
| 1240 #define __REG_IA64_IntR78 1102 | |
| 1241 #define __REG_IA64_IntR79 1103 | |
| 1242 #define __REG_IA64_IntR80 1104 | |
| 1243 #define __REG_IA64_IntR81 1105 | |
| 1244 #define __REG_IA64_IntR82 1106 | |
| 1245 #define __REG_IA64_IntR83 1107 | |
| 1246 #define __REG_IA64_IntR84 1108 | |
| 1247 #define __REG_IA64_IntR85 1109 | |
| 1248 #define __REG_IA64_IntR86 1110 | |
| 1249 #define __REG_IA64_IntR87 1111 | |
| 1250 #define __REG_IA64_IntR88 1112 | |
| 1251 #define __REG_IA64_IntR89 1113 | |
| 1252 #define __REG_IA64_IntR90 1114 | |
| 1253 #define __REG_IA64_IntR91 1115 | |
| 1254 #define __REG_IA64_IntR92 1116 | |
| 1255 #define __REG_IA64_IntR93 1117 | |
| 1256 #define __REG_IA64_IntR94 1118 | |
| 1257 #define __REG_IA64_IntR95 1119 | |
| 1258 #define __REG_IA64_IntR96 1120 | |
| 1259 #define __REG_IA64_IntR97 1121 | |
| 1260 #define __REG_IA64_IntR98 1122 | |
| 1261 #define __REG_IA64_IntR99 1123 | |
| 1262 #define __REG_IA64_IntR100 1124 | |
| 1263 #define __REG_IA64_IntR101 1125 | |
| 1264 #define __REG_IA64_IntR102 1126 | |
| 1265 #define __REG_IA64_IntR103 1127 | |
| 1266 #define __REG_IA64_IntR104 1128 | |
| 1267 #define __REG_IA64_IntR105 1129 | |
| 1268 #define __REG_IA64_IntR106 1130 | |
| 1269 #define __REG_IA64_IntR107 1131 | |
| 1270 #define __REG_IA64_IntR108 1132 | |
| 1271 #define __REG_IA64_IntR109 1133 | |
| 1272 #define __REG_IA64_IntR110 1134 | |
| 1273 #define __REG_IA64_IntR111 1135 | |
| 1274 #define __REG_IA64_IntR112 1136 | |
| 1275 #define __REG_IA64_IntR113 1137 | |
| 1276 #define __REG_IA64_IntR114 1138 | |
| 1277 #define __REG_IA64_IntR115 1139 | |
| 1278 #define __REG_IA64_IntR116 1140 | |
| 1279 #define __REG_IA64_IntR117 1141 | |
| 1280 #define __REG_IA64_IntR118 1142 | |
| 1281 #define __REG_IA64_IntR119 1143 | |
| 1282 #define __REG_IA64_IntR120 1144 | |
| 1283 #define __REG_IA64_IntR121 1145 | |
| 1284 #define __REG_IA64_IntR122 1146 | |
| 1285 #define __REG_IA64_IntR123 1147 | |
| 1286 #define __REG_IA64_IntR124 1148 | |
| 1287 #define __REG_IA64_IntR125 1149 | |
| 1288 #define __REG_IA64_IntR126 1150 | |
| 1289 #define __REG_IA64_IntR127 1151 | |
| 1290 | |
| 1291 #define __REG_IA64_ApKR0 3072 | |
| 1292 #define __REG_IA64_ApKR1 3073 | |
| 1293 #define __REG_IA64_ApKR2 3074 | |
| 1294 #define __REG_IA64_ApKR3 3075 | |
| 1295 #define __REG_IA64_ApKR4 3076 | |
| 1296 #define __REG_IA64_ApKR5 3077 | |
| 1297 #define __REG_IA64_ApKR6 3078 | |
| 1298 #define __REG_IA64_ApKR7 3079 | |
| 1299 #define __REG_IA64_AR8 3080 | |
| 1300 #define __REG_IA64_AR9 3081 | |
| 1301 #define __REG_IA64_AR10 3082 | |
| 1302 #define __REG_IA64_AR11 3083 | |
| 1303 #define __REG_IA64_AR12 3084 | |
| 1304 #define __REG_IA64_AR13 3085 | |
| 1305 #define __REG_IA64_AR14 3086 | |
| 1306 #define __REG_IA64_AR15 3087 | |
| 1307 #define __REG_IA64_RsRSC 3088 | |
| 1308 #define __REG_IA64_RsBSP 3089 | |
| 1309 #define __REG_IA64_RsBSPSTORE 3090 | |
| 1310 #define __REG_IA64_RsRNAT 3091 | |
| 1311 #define __REG_IA64_AR20 3092 | |
| 1312 #define __REG_IA64_StFCR 3093 | |
| 1313 #define __REG_IA64_AR22 3094 | |
| 1314 #define __REG_IA64_AR23 3095 | |
| 1315 #define __REG_IA64_EFLAG 3096 | |
| 1316 #define __REG_IA64_CSD 3097 | |
| 1317 #define __REG_IA64_SSD 3098 | |
| 1318 #define __REG_IA64_CFLG 3099 | |
| 1319 #define __REG_IA64_StFSR 3100 | |
| 1320 #define __REG_IA64_StFIR 3101 | |
| 1321 #define __REG_IA64_StFDR 3102 | |
| 1322 #define __REG_IA64_AR31 3103 | |
| 1323 #define __REG_IA64_ApCCV 3104 | |
| 1324 #define __REG_IA64_AR33 3105 | |
| 1325 #define __REG_IA64_AR34 3106 | |
| 1326 #define __REG_IA64_AR35 3107 | |
| 1327 #define __REG_IA64_ApUNAT 3108 | |
| 1328 #define __REG_IA64_AR37 3109 | |
| 1329 #define __REG_IA64_AR38 3110 | |
| 1330 #define __REG_IA64_AR39 3111 | |
| 1331 #define __REG_IA64_StFPSR 3112 | |
| 1332 #define __REG_IA64_AR41 3113 | |
| 1333 #define __REG_IA64_AR42 3114 | |
| 1334 #define __REG_IA64_AR43 3115 | |
| 1335 #define __REG_IA64_ApITC 3116 | |
| 1336 #define __REG_IA64_AR45 3117 | |
| 1337 #define __REG_IA64_AR46 3118 | |
| 1338 #define __REG_IA64_AR47 3119 | |
| 1339 #define __REG_IA64_AR48 3120 | |
| 1340 #define __REG_IA64_AR49 3121 | |
| 1341 #define __REG_IA64_AR50 3122 | |
| 1342 #define __REG_IA64_AR51 3123 | |
| 1343 #define __REG_IA64_AR52 3124 | |
| 1344 #define __REG_IA64_AR53 3125 | |
| 1345 #define __REG_IA64_AR54 3126 | |
| 1346 #define __REG_IA64_AR55 3127 | |
| 1347 #define __REG_IA64_AR56 3128 | |
| 1348 #define __REG_IA64_AR57 3129 | |
| 1349 #define __REG_IA64_AR58 3130 | |
| 1350 #define __REG_IA64_AR59 3131 | |
| 1351 #define __REG_IA64_AR60 3132 | |
| 1352 #define __REG_IA64_AR61 3133 | |
| 1353 #define __REG_IA64_AR62 3134 | |
| 1354 #define __REG_IA64_AR63 3135 | |
| 1355 #define __REG_IA64_RsPFS 3136 | |
| 1356 #define __REG_IA64_ApLC 3137 | |
| 1357 #define __REG_IA64_ApEC 3138 | |
| 1358 #define __REG_IA64_AR67 3139 | |
| 1359 #define __REG_IA64_AR68 3140 | |
| 1360 #define __REG_IA64_AR69 3141 | |
| 1361 #define __REG_IA64_AR70 3142 | |
| 1362 #define __REG_IA64_AR71 3143 | |
| 1363 #define __REG_IA64_AR72 3144 | |
| 1364 #define __REG_IA64_AR73 3145 | |
| 1365 #define __REG_IA64_AR74 3146 | |
| 1366 #define __REG_IA64_AR75 3147 | |
| 1367 #define __REG_IA64_AR76 3148 | |
| 1368 #define __REG_IA64_AR77 3149 | |
| 1369 #define __REG_IA64_AR78 3150 | |
| 1370 #define __REG_IA64_AR79 3151 | |
| 1371 #define __REG_IA64_AR80 3152 | |
| 1372 #define __REG_IA64_AR81 3153 | |
| 1373 #define __REG_IA64_AR82 3154 | |
| 1374 #define __REG_IA64_AR83 3155 | |
| 1375 #define __REG_IA64_AR84 3156 | |
| 1376 #define __REG_IA64_AR85 3157 | |
| 1377 #define __REG_IA64_AR86 3158 | |
| 1378 #define __REG_IA64_AR87 3159 | |
| 1379 #define __REG_IA64_AR88 3160 | |
| 1380 #define __REG_IA64_AR89 3161 | |
| 1381 #define __REG_IA64_AR90 3162 | |
| 1382 #define __REG_IA64_AR91 3163 | |
| 1383 #define __REG_IA64_AR92 3164 | |
| 1384 #define __REG_IA64_AR93 3165 | |
| 1385 #define __REG_IA64_AR94 3166 | |
| 1386 #define __REG_IA64_AR95 3167 | |
| 1387 #define __REG_IA64_AR96 3168 | |
| 1388 #define __REG_IA64_AR97 3169 | |
| 1389 #define __REG_IA64_AR98 3170 | |
| 1390 #define __REG_IA64_AR99 3171 | |
| 1391 #define __REG_IA64_AR100 3172 | |
| 1392 #define __REG_IA64_AR101 3173 | |
| 1393 #define __REG_IA64_AR102 3174 | |
| 1394 #define __REG_IA64_AR103 3175 | |
| 1395 #define __REG_IA64_AR104 3176 | |
| 1396 #define __REG_IA64_AR105 3177 | |
| 1397 #define __REG_IA64_AR106 3178 | |
| 1398 #define __REG_IA64_AR107 3179 | |
| 1399 #define __REG_IA64_AR108 3180 | |
| 1400 #define __REG_IA64_AR109 3181 | |
| 1401 #define __REG_IA64_AR110 3182 | |
| 1402 #define __REG_IA64_AR111 3183 | |
| 1403 #define __REG_IA64_AR112 3184 | |
| 1404 #define __REG_IA64_AR113 3185 | |
| 1405 #define __REG_IA64_AR114 3186 | |
| 1406 #define __REG_IA64_AR115 3187 | |
| 1407 #define __REG_IA64_AR116 3188 | |
| 1408 #define __REG_IA64_AR117 3189 | |
| 1409 #define __REG_IA64_AR118 3190 | |
| 1410 #define __REG_IA64_AR119 3191 | |
| 1411 #define __REG_IA64_AR120 3192 | |
| 1412 #define __REG_IA64_AR121 3193 | |
| 1413 #define __REG_IA64_AR122 3194 | |
| 1414 #define __REG_IA64_AR123 3195 | |
| 1415 #define __REG_IA64_AR124 3196 | |
| 1416 #define __REG_IA64_AR125 3197 | |
| 1417 #define __REG_IA64_AR126 3198 | |
| 1418 #define __REG_IA64_AR127 3199 | |
| 1419 | |
| 1420 #define __REG_IA64_CPUID0 3328 | |
| 1421 #define __REG_IA64_CPUID1 3329 | |
| 1422 #define __REG_IA64_CPUID2 3330 | |
| 1423 #define __REG_IA64_CPUID3 3331 | |
| 1424 #define __REG_IA64_CPUID4 3332 | |
| 1425 | |
| 1426 #define __REG_IA64_ApDCR 4096 | |
| 1427 #define __REG_IA64_ApITM 4097 | |
| 1428 #define __REG_IA64_ApIVA 4098 | |
| 1429 #define __REG_IA64_ApPTA 4104 | |
| 1430 #define __REG_IA64_ApGPTA 4105 | |
| 1431 #define __REG_IA64_StIPSR 4112 | |
| 1432 #define __REG_IA64_StISR 4113 | |
| 1433 #define __REG_IA64_StIIP 4115 | |
| 1434 #define __REG_IA64_StIFA 4116 | |
| 1435 #define __REG_IA64_StITIR 4117 | |
| 1436 #define __REG_IA64_StIIPA 4118 | |
| 1437 #define __REG_IA64_StIFS 4119 | |
| 1438 #define __REG_IA64_StIIM 4120 | |
| 1439 #define __REG_IA64_StIHA 4121 | |
| 1440 #define __REG_IA64_SaLID 4160 | |
| 1441 #define __REG_IA64_SaIVR 4161 | |
| 1442 #define __REG_IA64_SaTPR 4162 | |
| 1443 #define __REG_IA64_SaEOI 4163 | |
| 1444 #define __REG_IA64_SaIRR0 4164 | |
| 1445 #define __REG_IA64_SaIRR1 4165 | |
| 1446 #define __REG_IA64_SaIRR2 4166 | |
| 1447 #define __REG_IA64_SaIRR3 4167 | |
| 1448 #define __REG_IA64_SaITV 4168 | |
| 1449 #define __REG_IA64_SaPMV 4169 | |
| 1450 #define __REG_IA64_SaCMCV 4170 | |
| 1451 #define __REG_IA64_SaLRR0 4176 | |
| 1452 #define __REG_IA64_SaLRR1 4177 | |
| 1453 | |
| 1454 #define __REG_IA64_PFD0 7168 | |
| 1455 #define __REG_IA64_PFD1 7169 | |
| 1456 #define __REG_IA64_PFD2 7170 | |
| 1457 #define __REG_IA64_PFD3 7171 | |
| 1458 #define __REG_IA64_PFD4 7172 | |
| 1459 #define __REG_IA64_PFD5 7173 | |
| 1460 #define __REG_IA64_PFD6 7174 | |
| 1461 #define __REG_IA64_PFD7 7175 | |
| 1462 #define __REG_IA64_PFD8 7176 | |
| 1463 #define __REG_IA64_PFD9 7177 | |
| 1464 #define __REG_IA64_PFD10 7178 | |
| 1465 #define __REG_IA64_PFD11 7179 | |
| 1466 #define __REG_IA64_PFD12 7180 | |
| 1467 #define __REG_IA64_PFD13 7181 | |
| 1468 #define __REG_IA64_PFD14 7182 | |
| 1469 #define __REG_IA64_PFD15 7183 | |
| 1470 #define __REG_IA64_PFD16 7184 | |
| 1471 #define __REG_IA64_PFD17 7185 | |
| 1472 | |
| 1473 #define __REG_IA64_PFC0 7424 | |
| 1474 #define __REG_IA64_PFC1 7425 | |
| 1475 #define __REG_IA64_PFC2 7426 | |
| 1476 #define __REG_IA64_PFC3 7427 | |
| 1477 #define __REG_IA64_PFC4 7428 | |
| 1478 #define __REG_IA64_PFC5 7429 | |
| 1479 #define __REG_IA64_PFC6 7430 | |
| 1480 #define __REG_IA64_PFC7 7431 | |
| 1481 #define __REG_IA64_PFC8 7432 | |
| 1482 #define __REG_IA64_PFC9 7433 | |
| 1483 #define __REG_IA64_PFC10 7434 | |
| 1484 #define __REG_IA64_PFC11 7435 | |
| 1485 #define __REG_IA64_PFC12 7436 | |
| 1486 #define __REG_IA64_PFC13 7437 | |
| 1487 #define __REG_IA64_PFC14 7438 | |
| 1488 #define __REG_IA64_PFC15 7439 | |
| 1489 | |
| 1490 #define __REG_IA64_DbI0 8448 | |
| 1491 #define __REG_IA64_DbI1 8449 | |
| 1492 #define __REG_IA64_DbI2 8450 | |
| 1493 #define __REG_IA64_DbI3 8451 | |
| 1494 #define __REG_IA64_DbI4 8452 | |
| 1495 #define __REG_IA64_DbI5 8453 | |
| 1496 #define __REG_IA64_DbI6 8454 | |
| 1497 #define __REG_IA64_DbI7 8455 | |
| 1498 | |
| 1499 #define __REG_IA64_DbD0 8576 | |
| 1500 #define __REG_IA64_DbD1 8577 | |
| 1501 #define __REG_IA64_DbD2 8578 | |
| 1502 #define __REG_IA64_DbD3 8579 | |
| 1503 #define __REG_IA64_DbD4 8580 | |
| 1504 #define __REG_IA64_DbD5 8581 | |
| 1505 #define __REG_IA64_DbD6 8582 | |
| 1506 #define __REG_IA64_DbD7 8583 | |
| 1507 #endif | |
| 1508 | |
| 1509 #if defined(_NO_PREFETCHW) | |
| 1510 #if defined(__x86_64) | |
| 1511 | |
| 1512 #define _InterlockedCompareExchange16 _InterlockedCompareExchange16_np | |
| 1513 #define _InterlockedCompareExchange _InterlockedCompareExchange_np | |
| 1514 #define _InterlockedCompareExchange64 _InterlockedCompareExchange64_np | |
| 1515 #define _InterlockedCompareExchangePointer _InterlockedCompareExchangePointer_np | |
| 1516 #define _InterlockedCompare64Exchange128 _InterlockedCompare64Exchange128_np | |
| 1517 #define _InterlockedCompare64Exchange128_acq _InterlockedCompare64Exchange128_acq_np | |
| 1518 #define _InterlockedCompare64Exchange128_rel _InterlockedCompare64Exchange128_rel_np | |
| 1519 #define _InterlockedAnd _InterlockedAnd_np | |
| 1520 #define _InterlockedAnd8 _InterlockedAnd8_np | |
| 1521 #define _InterlockedAnd16 _InterlockedAnd16_np | |
| 1522 #define _InterlockedAnd64 _InterlockedAnd64_np | |
| 1523 #define _InterlockedOr _InterlockedOr_np | |
| 1524 #define _InterlockedOr8 _InterlockedOr8_np | |
| 1525 #define _InterlockedOr16 _InterlockedOr16_np | |
| 1526 #define _InterlockedOr64 _InterlockedOr64_np | |
| 1527 #define _InterlockedXor _InterlockedXor_np | |
| 1528 #define _InterlockedXor8 _InterlockedXor8_np | |
| 1529 #define _InterlockedXor16 _InterlockedXor16_np | |
| 1530 #define _InterlockedXor64 _InterlockedXor64_np | |
| 1531 #endif | |
| 1532 #endif | |
| 1533 | |
| 1534 #if defined(__cplusplus) | |
| 1535 } | |
| 1536 #endif | |
| 1537 #endif | |
| 1538 | |
| 1539 #endif /* end __INTRIN_H_ */ |
