You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 22, 2021. It is now read-only.
@AndrewScheidecker mentioned in his review of #1 the possibility of including vectorized rotate instructions to match the existing scalar instructions. They would have these signatures:
i8x16.rotl(x: v128, n: i32) -> v128
i16x8.rotl(x: v128, n: i32) -> v128
i32x4.rotl(x: v128, n: i32) -> v128
i64x2.rotl(x: v128, n: i32) -> v128
i8x16.rotr(x: v128, n: i32) -> v128
i16x8.rotr(x: v128, n: i32) -> v128
i32x4.rotr(x: v128, n: i32) -> v128
i64x2.rotr(x: v128, n: i32) -> v128
The semantics would be to rotate the lanes independently by the scalar n. This can be expressed in terms of the vectorized shift operators: