| OLD | NEW |
| 1 /*===---- immintrin.h - Intel intrinsics -----------------------------------=== | 1 /*===---- immintrin.h - Intel intrinsics -----------------------------------=== |
| 2 * | 2 * |
| 3 * Permission is hereby granted, free of charge, to any person obtaining a copy | 3 * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 4 * of this software and associated documentation files (the "Software"), to deal | 4 * of this software and associated documentation files (the "Software"), to deal |
| 5 * in the Software without restriction, including without limitation the rights | 5 * in the Software without restriction, including without limitation the rights |
| 6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 7 * copies of the Software, and to permit persons to whom the Software is | 7 * copies of the Software, and to permit persons to whom the Software is |
| 8 * furnished to do so, subject to the following conditions: | 8 * furnished to do so, subject to the following conditions: |
| 9 * | 9 * |
| 10 * The above copyright notice and this permission notice shall be included in | 10 * The above copyright notice and this permission notice shall be included in |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 #endif | 41 #endif |
| 42 | 42 |
| 43 #ifdef __SSSE3__ | 43 #ifdef __SSSE3__ |
| 44 #include <tmmintrin.h> | 44 #include <tmmintrin.h> |
| 45 #endif | 45 #endif |
| 46 | 46 |
| 47 #if defined (__SSE4_2__) || defined (__SSE4_1__) | 47 #if defined (__SSE4_2__) || defined (__SSE4_1__) |
| 48 #include <smmintrin.h> | 48 #include <smmintrin.h> |
| 49 #endif | 49 #endif |
| 50 | 50 |
| 51 #if defined (__AES__) || defined (__PCLMUL__) | 51 #if defined (__AES__) |
| 52 #include <wmmintrin.h> | 52 #include <wmmintrin.h> |
| 53 #endif | 53 #endif |
| 54 | 54 |
| 55 #ifdef __AVX__ | 55 #ifdef __AVX__ |
| 56 #include <avxintrin.h> | 56 #include <avxintrin.h> |
| 57 #endif | 57 #endif |
| 58 | 58 |
| 59 #ifdef __AVX2__ |
| 60 #include <avx2intrin.h> |
| 61 #endif |
| 62 |
| 63 #ifdef __BMI__ |
| 64 #include <bmiintrin.h> |
| 65 #endif |
| 66 |
| 67 #ifdef __BMI2__ |
| 68 #include <bmi2intrin.h> |
| 69 #endif |
| 70 |
| 71 #ifdef __LZCNT__ |
| 72 #include <lzcntintrin.h> |
| 73 #endif |
| 74 |
| 59 #endif /* __IMMINTRIN_H */ | 75 #endif /* __IMMINTRIN_H */ |
| OLD | NEW |