avx512vlbitalgintrin.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /*===---- avx512vlbitalgintrin.h - BITALG intrinsics -----------------------===
  2. *
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to deal
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. * THE SOFTWARE.
  21. *
  22. *===-----------------------------------------------------------------------===
  23. */
  24. #ifndef __IMMINTRIN_H
  25. #error "Never use <avx512vlbitalgintrin.h> directly; include <immintrin.h> instead."
  26. #endif
  27. #ifndef __AVX512VLBITALGINTRIN_H
  28. #define __AVX512VLBITALGINTRIN_H
  29. /* Define the default attributes for the functions in this file. */
  30. #define __DEFAULT_FN_ATTRS128 __attribute__((__always_inline__, __nodebug__, __target__("avx512vl,avx512bitalg"), __min_vector_width__(128)))
  31. #define __DEFAULT_FN_ATTRS256 __attribute__((__always_inline__, __nodebug__, __target__("avx512vl,avx512bitalg"), __min_vector_width__(256)))
  32. static __inline__ __m256i __DEFAULT_FN_ATTRS256
  33. _mm256_popcnt_epi16(__m256i __A)
  34. {
  35. return (__m256i) __builtin_ia32_vpopcntw_256((__v16hi) __A);
  36. }
  37. static __inline__ __m256i __DEFAULT_FN_ATTRS256
  38. _mm256_mask_popcnt_epi16(__m256i __A, __mmask16 __U, __m256i __B)
  39. {
  40. return (__m256i) __builtin_ia32_selectw_256((__mmask16) __U,
  41. (__v16hi) _mm256_popcnt_epi16(__B),
  42. (__v16hi) __A);
  43. }
  44. static __inline__ __m256i __DEFAULT_FN_ATTRS256
  45. _mm256_maskz_popcnt_epi16(__mmask16 __U, __m256i __B)
  46. {
  47. return _mm256_mask_popcnt_epi16((__m256i) _mm256_setzero_si256(),
  48. __U,
  49. __B);
  50. }
  51. static __inline__ __m128i __DEFAULT_FN_ATTRS128
  52. _mm_popcnt_epi16(__m128i __A)
  53. {
  54. return (__m128i) __builtin_ia32_vpopcntw_128((__v8hi) __A);
  55. }
  56. static __inline__ __m128i __DEFAULT_FN_ATTRS128
  57. _mm_mask_popcnt_epi16(__m128i __A, __mmask8 __U, __m128i __B)
  58. {
  59. return (__m128i) __builtin_ia32_selectw_128((__mmask8) __U,
  60. (__v8hi) _mm_popcnt_epi16(__B),
  61. (__v8hi) __A);
  62. }
  63. static __inline__ __m128i __DEFAULT_FN_ATTRS128
  64. _mm_maskz_popcnt_epi16(__mmask8 __U, __m128i __B)
  65. {
  66. return _mm_mask_popcnt_epi16((__m128i) _mm_setzero_si128(),
  67. __U,
  68. __B);
  69. }
  70. static __inline__ __m256i __DEFAULT_FN_ATTRS256
  71. _mm256_popcnt_epi8(__m256i __A)
  72. {
  73. return (__m256i) __builtin_ia32_vpopcntb_256((__v32qi) __A);
  74. }
  75. static __inline__ __m256i __DEFAULT_FN_ATTRS256
  76. _mm256_mask_popcnt_epi8(__m256i __A, __mmask32 __U, __m256i __B)
  77. {
  78. return (__m256i) __builtin_ia32_selectb_256((__mmask32) __U,
  79. (__v32qi) _mm256_popcnt_epi8(__B),
  80. (__v32qi) __A);
  81. }
  82. static __inline__ __m256i __DEFAULT_FN_ATTRS256
  83. _mm256_maskz_popcnt_epi8(__mmask32 __U, __m256i __B)
  84. {
  85. return _mm256_mask_popcnt_epi8((__m256i) _mm256_setzero_si256(),
  86. __U,
  87. __B);
  88. }
  89. static __inline__ __m128i __DEFAULT_FN_ATTRS128
  90. _mm_popcnt_epi8(__m128i __A)
  91. {
  92. return (__m128i) __builtin_ia32_vpopcntb_128((__v16qi) __A);
  93. }
  94. static __inline__ __m128i __DEFAULT_FN_ATTRS128
  95. _mm_mask_popcnt_epi8(__m128i __A, __mmask16 __U, __m128i __B)
  96. {
  97. return (__m128i) __builtin_ia32_selectb_128((__mmask16) __U,
  98. (__v16qi) _mm_popcnt_epi8(__B),
  99. (__v16qi) __A);
  100. }
  101. static __inline__ __m128i __DEFAULT_FN_ATTRS128
  102. _mm_maskz_popcnt_epi8(__mmask16 __U, __m128i __B)
  103. {
  104. return _mm_mask_popcnt_epi8((__m128i) _mm_setzero_si128(),
  105. __U,
  106. __B);
  107. }
  108. static __inline__ __mmask32 __DEFAULT_FN_ATTRS256
  109. _mm256_mask_bitshuffle_epi64_mask(__mmask32 __U, __m256i __A, __m256i __B)
  110. {
  111. return (__mmask32) __builtin_ia32_vpshufbitqmb256_mask((__v32qi) __A,
  112. (__v32qi) __B,
  113. __U);
  114. }
  115. static __inline__ __mmask32 __DEFAULT_FN_ATTRS256
  116. _mm256_bitshuffle_epi64_mask(__m256i __A, __m256i __B)
  117. {
  118. return _mm256_mask_bitshuffle_epi64_mask((__mmask32) -1,
  119. __A,
  120. __B);
  121. }
  122. static __inline__ __mmask16 __DEFAULT_FN_ATTRS128
  123. _mm_mask_bitshuffle_epi64_mask(__mmask16 __U, __m128i __A, __m128i __B)
  124. {
  125. return (__mmask16) __builtin_ia32_vpshufbitqmb128_mask((__v16qi) __A,
  126. (__v16qi) __B,
  127. __U);
  128. }
  129. static __inline__ __mmask16 __DEFAULT_FN_ATTRS128
  130. _mm_bitshuffle_epi64_mask(__m128i __A, __m128i __B)
  131. {
  132. return _mm_mask_bitshuffle_epi64_mask((__mmask16) -1,
  133. __A,
  134. __B);
  135. }
  136. #undef __DEFAULT_FN_ATTRS128
  137. #undef __DEFAULT_FN_ATTRS256
  138. #endif