avx512vlbitalgintrin.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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_ATTRS __attribute__((__always_inline__, __nodebug__, __target__("avx512vl,avx512bitalg")))
  31. static __inline__ __m256i __DEFAULT_FN_ATTRS
  32. _mm256_popcnt_epi16(__m256i __A)
  33. {
  34. return (__m256i) __builtin_ia32_vpopcntw_256((__v16hi) __A);
  35. }
  36. static __inline__ __m256i __DEFAULT_FN_ATTRS
  37. _mm256_mask_popcnt_epi16(__m256i __A, __mmask16 __U, __m256i __B)
  38. {
  39. return (__m256i) __builtin_ia32_selectw_256((__mmask16) __U,
  40. (__v16hi) _mm256_popcnt_epi16(__B),
  41. (__v16hi) __A);
  42. }
  43. static __inline__ __m256i __DEFAULT_FN_ATTRS
  44. _mm256_maskz_popcnt_epi16(__mmask16 __U, __m256i __B)
  45. {
  46. return _mm256_mask_popcnt_epi16((__m256i) _mm256_setzero_si256(),
  47. __U,
  48. __B);
  49. }
  50. static __inline__ __m128i __DEFAULT_FN_ATTRS
  51. _mm128_popcnt_epi16(__m128i __A)
  52. {
  53. return (__m128i) __builtin_ia32_vpopcntw_128((__v8hi) __A);
  54. }
  55. static __inline__ __m128i __DEFAULT_FN_ATTRS
  56. _mm128_mask_popcnt_epi16(__m128i __A, __mmask8 __U, __m128i __B)
  57. {
  58. return (__m128i) __builtin_ia32_selectw_128((__mmask8) __U,
  59. (__v8hi) _mm128_popcnt_epi16(__B),
  60. (__v8hi) __A);
  61. }
  62. static __inline__ __m128i __DEFAULT_FN_ATTRS
  63. _mm128_maskz_popcnt_epi16(__mmask8 __U, __m128i __B)
  64. {
  65. return _mm128_mask_popcnt_epi16((__m128i) _mm_setzero_si128(),
  66. __U,
  67. __B);
  68. }
  69. static __inline__ __m256i __DEFAULT_FN_ATTRS
  70. _mm256_popcnt_epi8(__m256i __A)
  71. {
  72. return (__m256i) __builtin_ia32_vpopcntb_256((__v32qi) __A);
  73. }
  74. static __inline__ __m256i __DEFAULT_FN_ATTRS
  75. _mm256_mask_popcnt_epi8(__m256i __A, __mmask32 __U, __m256i __B)
  76. {
  77. return (__m256i) __builtin_ia32_selectb_256((__mmask32) __U,
  78. (__v32qi) _mm256_popcnt_epi8(__B),
  79. (__v32qi) __A);
  80. }
  81. static __inline__ __m256i __DEFAULT_FN_ATTRS
  82. _mm256_maskz_popcnt_epi8(__mmask32 __U, __m256i __B)
  83. {
  84. return _mm256_mask_popcnt_epi8((__m256i) _mm256_setzero_si256(),
  85. __U,
  86. __B);
  87. }
  88. static __inline__ __m128i __DEFAULT_FN_ATTRS
  89. _mm128_popcnt_epi8(__m128i __A)
  90. {
  91. return (__m128i) __builtin_ia32_vpopcntb_128((__v16qi) __A);
  92. }
  93. static __inline__ __m128i __DEFAULT_FN_ATTRS
  94. _mm128_mask_popcnt_epi8(__m128i __A, __mmask16 __U, __m128i __B)
  95. {
  96. return (__m128i) __builtin_ia32_selectb_128((__mmask16) __U,
  97. (__v16qi) _mm128_popcnt_epi8(__B),
  98. (__v16qi) __A);
  99. }
  100. static __inline__ __m128i __DEFAULT_FN_ATTRS
  101. _mm128_maskz_popcnt_epi8(__mmask16 __U, __m128i __B)
  102. {
  103. return _mm128_mask_popcnt_epi8((__m128i) _mm_setzero_si128(),
  104. __U,
  105. __B);
  106. }
  107. static __inline__ __mmask32 __DEFAULT_FN_ATTRS
  108. _mm256_mask_bitshuffle_epi32_mask(__mmask32 __U, __m256i __A, __m256i __B)
  109. {
  110. return (__mmask32) __builtin_ia32_vpshufbitqmb256_mask((__v32qi) __A,
  111. (__v32qi) __B,
  112. __U);
  113. }
  114. static __inline__ __mmask32 __DEFAULT_FN_ATTRS
  115. _mm256_bitshuffle_epi32_mask(__m256i __A, __m256i __B)
  116. {
  117. return _mm256_mask_bitshuffle_epi32_mask((__mmask32) -1,
  118. __A,
  119. __B);
  120. }
  121. static __inline__ __mmask16 __DEFAULT_FN_ATTRS
  122. _mm128_mask_bitshuffle_epi16_mask(__mmask16 __U, __m128i __A, __m128i __B)
  123. {
  124. return (__mmask16) __builtin_ia32_vpshufbitqmb128_mask((__v16qi) __A,
  125. (__v16qi) __B,
  126. __U);
  127. }
  128. static __inline__ __mmask16 __DEFAULT_FN_ATTRS
  129. _mm128_bitshuffle_epi16_mask(__m128i __A, __m128i __B)
  130. {
  131. return _mm128_mask_bitshuffle_epi16_mask((__mmask16) -1,
  132. __A,
  133. __B);
  134. }
  135. #undef __DEFAULT_FN_ATTRS
  136. #endif