Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /* |
| 16 | Copyright (c) 2005 Eliot Dresselhaus |
| 17 | |
| 18 | Permission is hereby granted, free of charge, to any person obtaining |
| 19 | a copy of this software and associated documentation files (the |
| 20 | "Software"), to deal in the Software without restriction, including |
| 21 | without limitation the rights to use, copy, modify, merge, publish, |
| 22 | distribute, sublicense, and/or sell copies of the Software, and to |
| 23 | permit persons to whom the Software is furnished to do so, subject to |
| 24 | the following conditions: |
| 25 | |
| 26 | The above copyright notice and this permission notice shall be |
| 27 | included in all copies or substantial portions of the Software. |
| 28 | |
| 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 30 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 31 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 32 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 33 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 34 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 35 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 36 | */ |
| 37 | |
| 38 | #ifndef included_vector_sse2_h |
| 39 | #define included_vector_sse2_h |
| 40 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 41 | #include <vppinfra/error_bootstrap.h> /* for ASSERT */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 42 | #include <x86intrin.h> |
| 43 | |
| 44 | /* 128 bit interleaves. */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 45 | always_inline u8x16 |
| 46 | u8x16_interleave_hi (u8x16 a, u8x16 b) |
| 47 | { |
| 48 | return (u8x16) _mm_unpackhi_epi8 ((__m128i) a, (__m128i) b); |
| 49 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 50 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 51 | always_inline u8x16 |
| 52 | u8x16_interleave_lo (u8x16 a, u8x16 b) |
| 53 | { |
| 54 | return (u8x16) _mm_unpacklo_epi8 ((__m128i) a, (__m128i) b); |
| 55 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 56 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 57 | always_inline u16x8 |
| 58 | u16x8_interleave_hi (u16x8 a, u16x8 b) |
| 59 | { |
| 60 | return (u16x8) _mm_unpackhi_epi16 ((__m128i) a, (__m128i) b); |
| 61 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 63 | always_inline u16x8 |
| 64 | u16x8_interleave_lo (u16x8 a, u16x8 b) |
| 65 | { |
| 66 | return (u16x8) _mm_unpacklo_epi16 ((__m128i) a, (__m128i) b); |
| 67 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 68 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 69 | always_inline u32x4 |
| 70 | u32x4_interleave_hi (u32x4 a, u32x4 b) |
| 71 | { |
| 72 | return (u32x4) _mm_unpackhi_epi32 ((__m128i) a, (__m128i) b); |
| 73 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 74 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 75 | always_inline u32x4 |
| 76 | u32x4_interleave_lo (u32x4 a, u32x4 b) |
| 77 | { |
| 78 | return (u32x4) _mm_unpacklo_epi32 ((__m128i) a, (__m128i) b); |
| 79 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 80 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 81 | always_inline u64x2 |
| 82 | u64x2_interleave_hi (u64x2 a, u64x2 b) |
| 83 | { |
| 84 | return (u64x2) _mm_unpackhi_epi64 ((__m128i) a, (__m128i) b); |
| 85 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 86 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 87 | always_inline u64x2 |
| 88 | u64x2_interleave_lo (u64x2 a, u64x2 b) |
| 89 | { |
| 90 | return (u64x2) _mm_unpacklo_epi64 ((__m128i) a, (__m128i) b); |
| 91 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 92 | |
| 93 | /* 64 bit interleaves. */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 94 | always_inline u8x8 |
| 95 | u8x8_interleave_hi (u8x8 a, u8x8 b) |
| 96 | { |
| 97 | return (u8x8) _m_punpckhbw ((__m64) a, (__m64) b); |
| 98 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 99 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 100 | always_inline u8x8 |
| 101 | u8x8_interleave_lo (u8x8 a, u8x8 b) |
| 102 | { |
| 103 | return (u8x8) _m_punpcklbw ((__m64) a, (__m64) b); |
| 104 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 105 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 106 | always_inline u16x4 |
| 107 | u16x4_interleave_hi (u16x4 a, u16x4 b) |
| 108 | { |
| 109 | return (u16x4) _m_punpckhwd ((__m64) a, (__m64) b); |
| 110 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 111 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 112 | always_inline u16x4 |
| 113 | u16x4_interleave_lo (u16x4 a, u16x4 b) |
| 114 | { |
| 115 | return (u16x4) _m_punpcklwd ((__m64) a, (__m64) b); |
| 116 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 117 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 118 | always_inline u32x2 |
| 119 | u32x2_interleave_hi (u32x2 a, u32x2 b) |
| 120 | { |
| 121 | return (u32x2) _m_punpckhdq ((__m64) a, (__m64) b); |
| 122 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 123 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 124 | always_inline u32x2 |
| 125 | u32x2_interleave_lo (u32x2 a, u32x2 b) |
| 126 | { |
| 127 | return (u32x2) _m_punpckldq ((__m64) a, (__m64) b); |
| 128 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 129 | |
| 130 | /* 128 bit packs. */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 131 | always_inline u8x16 |
| 132 | u16x8_pack (u16x8 lo, u16x8 hi) |
| 133 | { |
| 134 | return (u8x16) _mm_packus_epi16 ((__m128i) lo, (__m128i) hi); |
| 135 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 136 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 137 | always_inline i8x16 |
| 138 | i16x8_pack (i16x8 lo, i16x8 hi) |
| 139 | { |
| 140 | return (i8x16) _mm_packs_epi16 ((__m128i) lo, (__m128i) hi); |
| 141 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 142 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 143 | always_inline u16x8 |
| 144 | u32x4_pack (u32x4 lo, u32x4 hi) |
| 145 | { |
| 146 | return (u16x8) _mm_packs_epi32 ((__m128i) lo, (__m128i) hi); |
| 147 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | |
| 149 | /* 64 bit packs. */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 150 | always_inline u8x8 |
| 151 | u16x4_pack (u16x4 lo, u16x4 hi) |
| 152 | { |
| 153 | return (u8x8) _m_packuswb ((__m64) lo, (__m64) hi); |
| 154 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 155 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 156 | always_inline i8x8 |
| 157 | i16x4_pack (i16x4 lo, i16x4 hi) |
| 158 | { |
| 159 | return (i8x8) _m_packsswb ((__m64) lo, (__m64) hi); |
| 160 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 161 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 162 | always_inline u16x4 |
| 163 | u32x2_pack (u32x2 lo, u32x2 hi) |
| 164 | { |
| 165 | return (u16x4) _m_packssdw ((__m64) lo, (__m64) hi); |
| 166 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 168 | always_inline i16x4 |
| 169 | i32x2_pack (i32x2 lo, i32x2 hi) |
| 170 | { |
| 171 | return (i16x4) _m_packssdw ((__m64) lo, (__m64) hi); |
| 172 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 173 | |
| 174 | /* Splats: replicate scalar value into vector. */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 175 | always_inline u64x2 |
| 176 | u64x2_splat (u64 a) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 178 | u64x2 x = { a }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 179 | x = u64x2_interleave_lo (x, x); |
| 180 | return x; |
| 181 | } |
| 182 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 183 | always_inline u32x4 |
| 184 | u32x4_splat (u32 a) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 185 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 186 | u32x4 x = { a }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 187 | x = u32x4_interleave_lo (x, x); |
| 188 | x = (u32x4) u64x2_interleave_lo ((u64x2) x, (u64x2) x); |
| 189 | return x; |
| 190 | } |
| 191 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 192 | always_inline u16x8 |
| 193 | u16x8_splat (u16 a) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 194 | { |
| 195 | u32 t = (u32) a | ((u32) a << 16); |
| 196 | return (u16x8) u32x4_splat (t); |
| 197 | } |
| 198 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 199 | always_inline u8x16 |
| 200 | u8x16_splat (u8 a) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 201 | { |
| 202 | u32 t = (u32) a | ((u32) a << 8); |
| 203 | t |= t << 16; |
| 204 | return (u8x16) u16x8_splat (t); |
| 205 | } |
| 206 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 207 | always_inline u32x2 |
| 208 | u32x2_splat (u32 a) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 209 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 210 | u32x2 x = { a }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 211 | x = u32x2_interleave_lo (x, x); |
| 212 | return x; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 213 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 214 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 215 | always_inline u16x4 |
| 216 | u16x4_splat (u16 a) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 217 | { |
| 218 | u32 t = (u32) a | ((u32) a << 16); |
| 219 | return (u16x4) u32x2_splat (t); |
| 220 | } |
| 221 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 222 | always_inline u8x8 |
| 223 | u8x8_splat (u8 a) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 224 | { |
| 225 | u32 t = (u32) a | ((u32) a << 8); |
| 226 | t |= t << 16; |
| 227 | return (u8x8) u32x2_splat (t); |
| 228 | } |
| 229 | |
| 230 | #define i64x2_splat u64x2_splat |
| 231 | #define i32x4_splat u32x4_splat |
| 232 | #define i16x8_splat u16x8_splat |
| 233 | #define i8x16_splat u8x16_splat |
| 234 | #define i32x2_splat u32x2_splat |
| 235 | #define i16x4_splat u16x4_splat |
| 236 | #define i8x8_splat u8x8_splat |
| 237 | |
| 238 | #ifndef __ICC |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 239 | always_inline u64x2 |
| 240 | u64x2_read_lo (u64x2 x, u64 * a) |
| 241 | { |
| 242 | return (u64x2) _mm_loadl_pi ((__m128) x, (__m64 *) a); |
| 243 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 244 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 245 | always_inline u64x2 |
| 246 | u64x2_read_hi (u64x2 x, u64 * a) |
| 247 | { |
| 248 | return (u64x2) _mm_loadh_pi ((__m128) x, (__m64 *) a); |
| 249 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 250 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 251 | always_inline void |
| 252 | u64x2_write_lo (u64x2 x, u64 * a) |
| 253 | { |
| 254 | _mm_storel_pi ((__m64 *) a, (__m128) x); |
| 255 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 256 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 257 | always_inline void |
| 258 | u64x2_write_hi (u64x2 x, u64 * a) |
| 259 | { |
| 260 | _mm_storeh_pi ((__m64 *) a, (__m128) x); |
| 261 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 262 | #endif |
| 263 | |
| 264 | /* Unaligned loads/stores. */ |
| 265 | |
| 266 | #define _(t) \ |
| 267 | always_inline void t##_store_unaligned (t x, t * a) \ |
| 268 | { _mm_storeu_si128 ((__m128i *) a, (__m128i) x); } \ |
| 269 | always_inline t t##_load_unaligned (t * a) \ |
| 270 | { return (t) _mm_loadu_si128 ((__m128i *) a); } |
| 271 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 272 | _(u8x16) _(u16x8) _(u32x4) _(u64x2) _(i8x16) _(i16x8) _(i32x4) _(i64x2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 273 | #undef _ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 274 | #define _signed_binop(n,m,f,g) \ |
| 275 | /* Unsigned */ \ |
| 276 | always_inline u##n##x##m \ |
| 277 | u##n##x##m##_##f (u##n##x##m x, u##n##x##m y) \ |
| 278 | { return (u##n##x##m) _mm_##g##n ((__m128i) x, (__m128i) y); } \ |
| 279 | \ |
| 280 | /* Signed */ \ |
| 281 | always_inline i##n##x##m \ |
| 282 | i##n##x##m##_##f (i##n##x##m x, i##n##x##m y) \ |
| 283 | { return (i##n##x##m) _mm_##g##n ((__m128i) x, (__m128i) y); } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 284 | /* Addition/subtraction. */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 285 | _signed_binop (8, 16, add, add_epi) |
| 286 | _signed_binop (16, 8, add, add_epi) |
| 287 | _signed_binop (32, 4, add, add_epi) |
| 288 | _signed_binop (64, 2, add, add_epi) |
| 289 | _signed_binop (8, 16, sub, sub_epi) |
| 290 | _signed_binop (16, 8, sub, sub_epi) |
| 291 | _signed_binop (32, 4, sub, sub_epi) _signed_binop (64, 2, sub, sub_epi) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 292 | /* Addition/subtraction with saturation. */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 293 | _signed_binop (8, 16, add_saturate, adds_epu) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 294 | _signed_binop (16, 8, add_saturate, adds_epu) |
| 295 | _signed_binop (8, 16, sub_saturate, subs_epu) |
| 296 | _signed_binop (16, 8, sub_saturate, subs_epu) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 297 | /* Multiplication. */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 298 | always_inline i16x8 i16x8_mul_lo (i16x8 x, i16x8 y) |
| 299 | { |
| 300 | return (i16x8) _mm_mullo_epi16 ((__m128i) x, (__m128i) y); |
| 301 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 302 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 303 | always_inline u16x8 |
| 304 | u16x8_mul_lo (u16x8 x, u16x8 y) |
| 305 | { |
| 306 | return (u16x8) _mm_mullo_epi16 ((__m128i) x, (__m128i) y); |
| 307 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 308 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 309 | always_inline i16x8 |
| 310 | i16x8_mul_hi (i16x8 x, i16x8 y) |
| 311 | { |
| 312 | return (i16x8) _mm_mulhi_epu16 ((__m128i) x, (__m128i) y); |
| 313 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 314 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 315 | always_inline u16x8 |
| 316 | u16x8_mul_hi (u16x8 x, u16x8 y) |
| 317 | { |
| 318 | return (u16x8) _mm_mulhi_epu16 ((__m128i) x, (__m128i) y); |
| 319 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 320 | |
| 321 | /* 128 bit shifts. */ |
| 322 | |
| 323 | #define _(p,a,b,c,f) \ |
| 324 | always_inline p##a##x##b p##a##x##b##_ishift_##c (p##a##x##b x, int i) \ |
| 325 | { return (p##a##x##b) _mm_##f##i_epi##a ((__m128i) x, i); } \ |
| 326 | \ |
| 327 | always_inline p##a##x##b p##a##x##b##_shift_##c (p##a##x##b x, p##a##x##b y) \ |
| 328 | { return (p##a##x##b) _mm_##f##_epi##a ((__m128i) x, (__m128i) y); } |
| 329 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 330 | _(u, 16, 8, left, sll) |
| 331 | _(u, 32, 4, left, sll) |
| 332 | _(u, 64, 2, left, sll) |
| 333 | _(u, 16, 8, right, srl) |
| 334 | _(u, 32, 4, right, srl) |
| 335 | _(u, 64, 2, right, srl) |
| 336 | _(i, 16, 8, left, sll) |
| 337 | _(i, 32, 4, left, sll) |
| 338 | _(i, 64, 2, left, sll) _(i, 16, 8, right, sra) _(i, 32, 4, right, sra) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 339 | #undef _ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 340 | /* 64 bit shifts. */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 341 | always_inline u16x4 |
| 342 | u16x4_shift_left (u16x4 x, u16x4 i) |
| 343 | { |
| 344 | return (u16x4) _m_psllw ((__m64) x, (__m64) i); |
| 345 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 346 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 347 | always_inline u32x2 |
| 348 | u32x2_shift_left (u32x2 x, u32x2 i) |
| 349 | { |
| 350 | return (u32x2) _m_pslld ((__m64) x, (__m64) i); |
| 351 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 352 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 353 | always_inline u16x4 |
| 354 | u16x4_shift_right (u16x4 x, u16x4 i) |
| 355 | { |
| 356 | return (u16x4) _m_psrlw ((__m64) x, (__m64) i); |
| 357 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 358 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 359 | always_inline u32x2 |
| 360 | u32x2_shift_right (u32x2 x, u32x2 i) |
| 361 | { |
| 362 | return (u32x2) _m_psrld ((__m64) x, (__m64) i); |
| 363 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 364 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 365 | always_inline i16x4 |
| 366 | i16x4_shift_left (i16x4 x, i16x4 i) |
| 367 | { |
| 368 | return (i16x4) _m_psllw ((__m64) x, (__m64) i); |
| 369 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 370 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 371 | always_inline i32x2 |
| 372 | i32x2_shift_left (i32x2 x, i32x2 i) |
| 373 | { |
| 374 | return (i32x2) _m_pslld ((__m64) x, (__m64) i); |
| 375 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 376 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 377 | always_inline i16x4 |
| 378 | i16x4_shift_right (i16x4 x, i16x4 i) |
| 379 | { |
| 380 | return (i16x4) _m_psraw ((__m64) x, (__m64) i); |
| 381 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 382 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 383 | always_inline i32x2 |
| 384 | i32x2_shift_right (i32x2 x, i32x2 i) |
| 385 | { |
| 386 | return (i32x2) _m_psrad ((__m64) x, (__m64) i); |
| 387 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 388 | |
| 389 | #define u8x16_word_shift_left(a,n) (u8x16) _mm_slli_si128((__m128i) a, n) |
| 390 | #define u8x16_word_shift_right(a,n) (u8x16) _mm_srli_si128((__m128i) a, n) |
| 391 | |
| 392 | #define i8x16_word_shift_left(a,n) \ |
| 393 | ((i8x16) u8x16_word_shift_left((u8x16) (a), (n))) |
| 394 | #define i8x16_word_shift_right(a,n) \ |
| 395 | ((i8x16) u8x16_word_shift_right((u8x16) (a), (n))) |
| 396 | |
| 397 | #define u16x8_word_shift_left(a,n) \ |
| 398 | ((u16x8) u8x16_word_shift_left((u8x16) (a), (n) * sizeof (u16))) |
| 399 | #define i16x8_word_shift_left(a,n) \ |
| 400 | ((u16x8) u8x16_word_shift_left((u8x16) (a), (n) * sizeof (u16))) |
| 401 | #define u16x8_word_shift_right(a,n) \ |
| 402 | ((u16x8) u8x16_word_shift_right((u8x16) (a), (n) * sizeof (u16))) |
| 403 | #define i16x8_word_shift_right(a,n) \ |
| 404 | ((i16x8) u8x16_word_shift_right((u8x16) (a), (n) * sizeof (u16))) |
| 405 | |
| 406 | #define u32x4_word_shift_left(a,n) \ |
| 407 | ((u32x4) u8x16_word_shift_left((u8x16) (a), (n) * sizeof (u32))) |
| 408 | #define i32x4_word_shift_left(a,n) \ |
| 409 | ((u32x4) u8x16_word_shift_left((u8x16) (a), (n) * sizeof (u32))) |
| 410 | #define u32x4_word_shift_right(a,n) \ |
| 411 | ((u32x4) u8x16_word_shift_right((u8x16) (a), (n) * sizeof (u32))) |
| 412 | #define i32x4_word_shift_right(a,n) \ |
| 413 | ((i32x4) u8x16_word_shift_right((u8x16) (a), (n) * sizeof (u32))) |
| 414 | |
| 415 | #define u64x2_word_shift_left(a,n) \ |
| 416 | ((u64x2) u8x16_word_shift_left((u8x16) (a), (n) * sizeof (u64))) |
| 417 | #define i64x2_word_shift_left(a,n) \ |
| 418 | ((u64x2) u8x16_word_shift_left((u8x16) (a), (n) * sizeof (u64))) |
| 419 | #define u64x2_word_shift_right(a,n) \ |
| 420 | ((u64x2) u8x16_word_shift_right((u8x16) (a), (n) * sizeof (u64))) |
| 421 | #define i64x2_word_shift_right(a,n) \ |
| 422 | ((i64x2) u8x16_word_shift_right((u8x16) (a), (n) * sizeof (u64))) |
| 423 | |
| 424 | /* SSE2 has no rotate instructions: use shifts to simulate them. */ |
| 425 | #define _(t,n,lr1,lr2) \ |
| 426 | always_inline t##x##n \ |
| 427 | t##x##n##_irotate_##lr1 (t##x##n w, int i) \ |
| 428 | { \ |
| 429 | ASSERT (i >= 0 && i <= BITS (t)); \ |
| 430 | return (t##x##n##_ishift_##lr1 (w, i) \ |
| 431 | | t##x##n##_ishift_##lr2 (w, BITS (t) - i)); \ |
| 432 | } \ |
| 433 | \ |
| 434 | always_inline t##x##n \ |
| 435 | t##x##n##_rotate_##lr1 (t##x##n w, t##x##n i) \ |
| 436 | { \ |
| 437 | t##x##n j = t##x##n##_splat (BITS (t)); \ |
| 438 | return (t##x##n##_shift_##lr1 (w, i) \ |
| 439 | | t##x##n##_shift_##lr2 (w, j - i)); \ |
| 440 | } |
| 441 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 442 | _(u16, 8, left, right); |
| 443 | _(u16, 8, right, left); |
| 444 | _(u32, 4, left, right); |
| 445 | _(u32, 4, right, left); |
| 446 | _(u64, 2, left, right); |
| 447 | _(u64, 2, right, left); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 448 | |
| 449 | #undef _ |
| 450 | |
| 451 | #ifndef __clang__ |
| 452 | #define _(t,n,lr1,lr2) \ |
| 453 | always_inline t##x##n \ |
| 454 | t##x##n##_word_rotate2_##lr1 (t##x##n w0, t##x##n w1, int i) \ |
| 455 | { \ |
| 456 | int m = sizeof (t##x##n) / sizeof (t); \ |
| 457 | ASSERT (i >= 0 && i < m); \ |
| 458 | return (t##x##n##_word_shift_##lr1 (w0, i) \ |
| 459 | | t##x##n##_word_shift_##lr2 (w1, m - i)); \ |
| 460 | } \ |
| 461 | \ |
| 462 | always_inline t##x##n \ |
| 463 | t##x##n##_word_rotate_##lr1 (t##x##n w0, int i) \ |
| 464 | { return t##x##n##_word_rotate2_##lr1 (w0, w0, i); } |
| 465 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 466 | _(u8, 16, left, right); |
| 467 | _(u8, 16, right, left); |
| 468 | _(u16, 8, left, right); |
| 469 | _(u16, 8, right, left); |
| 470 | _(u32, 4, left, right); |
| 471 | _(u32, 4, right, left); |
| 472 | _(u64, 2, left, right); |
| 473 | _(u64, 2, right, left); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 474 | |
| 475 | #undef _ |
| 476 | #endif |
| 477 | |
| 478 | /* Compare operations. */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 479 | always_inline u8x16 |
| 480 | u8x16_is_equal (u8x16 x, u8x16 y) |
| 481 | { |
| 482 | return (u8x16) _mm_cmpeq_epi8 ((__m128i) x, (__m128i) y); |
| 483 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 484 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 485 | always_inline i8x16 |
| 486 | i8x16_is_equal (i8x16 x, i8x16 y) |
| 487 | { |
| 488 | return (i8x16) _mm_cmpeq_epi8 ((__m128i) x, (__m128i) y); |
| 489 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 490 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 491 | always_inline u16x8 |
| 492 | u16x8_is_equal (u16x8 x, u16x8 y) |
| 493 | { |
| 494 | return (u16x8) _mm_cmpeq_epi16 ((__m128i) x, (__m128i) y); |
| 495 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 496 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 497 | always_inline i16x8 |
| 498 | i16x8_is_equal (i16x8 x, i16x8 y) |
| 499 | { |
| 500 | return (i16x8) _mm_cmpeq_epi16 ((__m128i) x, (__m128i) y); |
| 501 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 502 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 503 | always_inline u32x4 |
| 504 | u32x4_is_equal (u32x4 x, u32x4 y) |
| 505 | { |
| 506 | return (u32x4) _mm_cmpeq_epi32 ((__m128i) x, (__m128i) y); |
| 507 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 508 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 509 | always_inline i32x4 |
| 510 | i32x4_is_equal (i32x4 x, i32x4 y) |
| 511 | { |
| 512 | return (i32x4) _mm_cmpeq_epi32 ((__m128i) x, (__m128i) y); |
| 513 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 514 | |
| 515 | always_inline u8x16 |
| 516 | i8x16_is_greater (i8x16 x, i8x16 y) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 517 | { |
| 518 | return (u8x16) _mm_cmpgt_epi8 ((__m128i) x, (__m128i) y); |
| 519 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 520 | |
| 521 | always_inline u16x8 |
| 522 | i16x8_is_greater (i16x8 x, i16x8 y) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 523 | { |
| 524 | return (u16x8) _mm_cmpgt_epi16 ((__m128i) x, (__m128i) y); |
| 525 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 526 | |
| 527 | always_inline u32x4 |
| 528 | i32x4_is_greater (i32x4 x, i32x4 y) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 529 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 530 | return (u32x4) _mm_cmpgt_epi32 ((__m128i) x, (__m128i) y); |
| 531 | } |
| 532 | |
| 533 | always_inline u8x16 |
| 534 | u8x16_is_zero (u8x16 x) |
| 535 | { |
| 536 | u8x16 zero = { 0 }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 537 | return u8x16_is_equal (x, zero); |
| 538 | } |
| 539 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 540 | always_inline u16x8 |
| 541 | u16x8_is_zero (u16x8 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 542 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 543 | u16x8 zero = { 0 }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 544 | return u16x8_is_equal (x, zero); |
| 545 | } |
| 546 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 547 | always_inline u32x4 |
| 548 | u32x4_is_zero (u32x4 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 549 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 550 | u32x4 zero = { 0 }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 551 | return u32x4_is_equal (x, zero); |
| 552 | } |
| 553 | |
| 554 | #define u32x4_select(A,MASK) \ |
| 555 | ({ \ |
| 556 | u32x4 _x, _y; \ |
| 557 | _x = (A); \ |
| 558 | asm volatile ("pshufd %[mask], %[x], %[y]" \ |
| 559 | : /* outputs */ [y] "=x" (_y) \ |
| 560 | : /* inputs */ [x] "x" (_x), [mask] "i" (MASK)); \ |
| 561 | _y; \ |
| 562 | }) |
| 563 | |
| 564 | #define u32x4_splat_word(x,i) \ |
| 565 | u32x4_select ((x), (((i) << (2*0)) \ |
| 566 | | ((i) << (2*1)) \ |
| 567 | | ((i) << (2*2)) \ |
| 568 | | ((i) << (2*3)))) |
| 569 | |
| 570 | /* Extract low order 32 bit word. */ |
| 571 | always_inline u32 |
| 572 | u32x4_get0 (u32x4 x) |
| 573 | { |
| 574 | u32 result; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 575 | asm volatile ("movd %[x], %[result]": /* outputs */ [result] "=r" (result) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 576 | : /* inputs */ [x] "x" (x)); |
| 577 | return result; |
| 578 | } |
| 579 | |
| 580 | always_inline u32x4 |
| 581 | u32x4_set0 (u32 x) |
| 582 | { |
| 583 | u32x4 result; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 584 | asm volatile ("movd %[x], %[result]": /* outputs */ [result] "=x" (result) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 585 | : /* inputs */ [x] "r" (x)); |
| 586 | return result; |
| 587 | } |
| 588 | |
| 589 | always_inline i32x4 |
| 590 | i32x4_set0 (i32 x) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 591 | { |
| 592 | return (i32x4) u32x4_set0 ((u32) x); |
| 593 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 594 | |
| 595 | always_inline i32 |
| 596 | i32x4_get0 (i32x4 x) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 597 | { |
| 598 | return (i32) u32x4_get0 ((u32x4) x); |
| 599 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 600 | |
| 601 | /* Converts all ones/zeros compare mask to bitmap. */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 602 | always_inline u32 |
| 603 | u8x16_compare_byte_mask (u8x16 x) |
| 604 | { |
| 605 | return _mm_movemask_epi8 ((__m128i) x); |
| 606 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 607 | |
Damjan Marion | b8abf87 | 2016-03-14 20:02:35 +0100 | [diff] [blame] | 608 | extern u8 u32x4_compare_word_mask_table[256]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 609 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 610 | always_inline u32 |
| 611 | u32x4_compare_word_mask (u32x4 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 612 | { |
| 613 | u32 m = u8x16_compare_byte_mask ((u8x16) x); |
| 614 | return (u32x4_compare_word_mask_table[(m >> 0) & 0xff] |
| 615 | | (u32x4_compare_word_mask_table[(m >> 8) & 0xff] << 2)); |
| 616 | } |
| 617 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 618 | always_inline u32 |
| 619 | u8x16_zero_byte_mask (u8x16 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 620 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 621 | u8x16 zero = { 0 }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 622 | return u8x16_compare_byte_mask (u8x16_is_equal (x, zero)); |
| 623 | } |
| 624 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 625 | always_inline u32 |
| 626 | u16x8_zero_byte_mask (u16x8 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 627 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 628 | u16x8 zero = { 0 }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 629 | return u8x16_compare_byte_mask ((u8x16) u16x8_is_equal (x, zero)); |
| 630 | } |
| 631 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 632 | always_inline u32 |
| 633 | u32x4_zero_byte_mask (u32x4 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 634 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 635 | u32x4 zero = { 0 }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 636 | return u8x16_compare_byte_mask ((u8x16) u32x4_is_equal (x, zero)); |
| 637 | } |
| 638 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 639 | always_inline u8x16 |
| 640 | u8x16_max (u8x16 x, u8x16 y) |
| 641 | { |
| 642 | return (u8x16) _mm_max_epu8 ((__m128i) x, (__m128i) y); |
| 643 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 644 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 645 | always_inline u32 |
| 646 | u8x16_max_scalar (u8x16 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 647 | { |
| 648 | x = u8x16_max (x, u8x16_word_shift_right (x, 8)); |
| 649 | x = u8x16_max (x, u8x16_word_shift_right (x, 4)); |
| 650 | x = u8x16_max (x, u8x16_word_shift_right (x, 2)); |
| 651 | x = u8x16_max (x, u8x16_word_shift_right (x, 1)); |
| 652 | return _mm_extract_epi16 ((__m128i) x, 0) & 0xff; |
| 653 | } |
| 654 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 655 | always_inline u8x16 |
| 656 | u8x16_min (u8x16 x, u8x16 y) |
| 657 | { |
| 658 | return (u8x16) _mm_min_epu8 ((__m128i) x, (__m128i) y); |
| 659 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 660 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 661 | always_inline u8 |
| 662 | u8x16_min_scalar (u8x16 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 663 | { |
| 664 | x = u8x16_min (x, u8x16_word_shift_right (x, 8)); |
| 665 | x = u8x16_min (x, u8x16_word_shift_right (x, 4)); |
| 666 | x = u8x16_min (x, u8x16_word_shift_right (x, 2)); |
| 667 | x = u8x16_min (x, u8x16_word_shift_right (x, 1)); |
| 668 | return _mm_extract_epi16 ((__m128i) x, 0) & 0xff; |
| 669 | } |
| 670 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 671 | always_inline i16x8 |
| 672 | i16x8_max (i16x8 x, i16x8 y) |
| 673 | { |
| 674 | return (i16x8) _mm_max_epi16 ((__m128i) x, (__m128i) y); |
| 675 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 676 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 677 | always_inline i16 |
| 678 | i16x8_max_scalar (i16x8 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 679 | { |
| 680 | x = i16x8_max (x, i16x8_word_shift_right (x, 4)); |
| 681 | x = i16x8_max (x, i16x8_word_shift_right (x, 2)); |
| 682 | x = i16x8_max (x, i16x8_word_shift_right (x, 1)); |
| 683 | return _mm_extract_epi16 ((__m128i) x, 0); |
| 684 | } |
| 685 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 686 | always_inline i16x8 |
| 687 | i16x8_min (i16x8 x, i16x8 y) |
| 688 | { |
| 689 | return (i16x8) _mm_min_epi16 ((__m128i) x, (__m128i) y); |
| 690 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 691 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 692 | always_inline i16 |
| 693 | i16x8_min_scalar (i16x8 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 694 | { |
| 695 | x = i16x8_min (x, i16x8_word_shift_right (x, 4)); |
| 696 | x = i16x8_min (x, i16x8_word_shift_right (x, 2)); |
| 697 | x = i16x8_min (x, i16x8_word_shift_right (x, 1)); |
| 698 | return _mm_extract_epi16 ((__m128i) x, 0); |
| 699 | } |
| 700 | |
| 701 | #undef _signed_binop |
| 702 | |
| 703 | #endif /* included_vector_sse2_h */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 704 | |
| 705 | /* |
| 706 | * fd.io coding-style-patch-verification: ON |
| 707 | * |
| 708 | * Local Variables: |
| 709 | * eval: (c-set-style "gnu") |
| 710 | * End: |
| 711 | */ |