diff options
author | Sanjay Patel <spatel@rotateright.com> | 2018-06-22 13:19:25 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2018-06-22 13:19:25 +0000 |
commit | cfd9da038c5c702523f9481035c0e4e0ee9e28f3 (patch) | |
tree | d99f456b83783388aba8e351c47f994a04e7a58e | |
parent | 733ad45b9fcdd6a5c6a6df5d33d65fb6d78c7b31 (diff) | |
download | bcm5719-llvm-cfd9da038c5c702523f9481035c0e4e0ee9e28f3.tar.gz bcm5719-llvm-cfd9da038c5c702523f9481035c0e4e0ee9e28f3.zip |
[InstCombine] add tests for shuffle-with-different-binops; NFC
llvm-svn: 335345
-rw-r--r-- | llvm/test/Transforms/InstCombine/shuffle_select.ll | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/llvm/test/Transforms/InstCombine/shuffle_select.ll b/llvm/test/Transforms/InstCombine/shuffle_select.ll index ed9266a8459..97a1920acc8 100644 --- a/llvm/test/Transforms/InstCombine/shuffle_select.ll +++ b/llvm/test/Transforms/InstCombine/shuffle_select.ll @@ -239,3 +239,45 @@ define <4 x double> @frem(<4 x double> %v0) { ret <4 x double> %t3 } +; FIXME: +; Shift-left with constant shift amount can be converted to mul to enable the fold. + +define <4 x i32> @mul_shl(<4 x i32> %v0) { +; CHECK-LABEL: @mul_shl( +; CHECK-NEXT: [[T1:%.*]] = mul nuw <4 x i32> [[V0:%.*]], <i32 undef, i32 undef, i32 3, i32 4> +; CHECK-NEXT: [[T2:%.*]] = shl nuw <4 x i32> [[V0]], <i32 5, i32 6, i32 7, i32 8> +; CHECK-NEXT: [[T3:%.*]] = shufflevector <4 x i32> [[T1]], <4 x i32> [[T2]], <4 x i32> <i32 4, i32 5, i32 2, i32 3> +; CHECK-NEXT: ret <4 x i32> [[T3]] +; + %t1 = mul nuw <4 x i32> %v0, <i32 1, i32 2, i32 3, i32 4> + %t2 = shl nuw <4 x i32> %v0, <i32 5, i32 6, i32 7, i32 8> + %t3 = shufflevector <4 x i32> %t1, <4 x i32> %t2, <4 x i32> <i32 4, i32 5, i32 2, i32 3> + ret <4 x i32> %t3 +} + +define <4 x i32> @shl_mul(<4 x i32> %v0) { +; CHECK-LABEL: @shl_mul( +; CHECK-NEXT: [[T1:%.*]] = shl nsw <4 x i32> [[V0:%.*]], <i32 1, i32 2, i32 3, i32 4> +; CHECK-NEXT: [[T2:%.*]] = mul nsw <4 x i32> [[V0]], <i32 5, i32 undef, i32 undef, i32 undef> +; CHECK-NEXT: [[T3:%.*]] = shufflevector <4 x i32> [[T1]], <4 x i32> [[T2]], <4 x i32> <i32 4, i32 undef, i32 2, i32 3> +; CHECK-NEXT: ret <4 x i32> [[T3]] +; + %t1 = shl nsw <4 x i32> %v0, <i32 1, i32 2, i32 3, i32 4> + %t2 = mul nsw <4 x i32> %v0, <i32 5, i32 6, i32 7, i32 8> + %t3 = shufflevector <4 x i32> %t1, <4 x i32> %t2, <4 x i32> <i32 4, i32 undef, i32 2, i32 3> + ret <4 x i32> %t3 +} + +define <4 x i32> @shl_mul_not_constant_shift_amount(<4 x i32> %v0) { +; CHECK-LABEL: @shl_mul_not_constant_shift_amount( +; CHECK-NEXT: [[T1:%.*]] = shl <4 x i32> <i32 1, i32 2, i32 3, i32 4>, [[V0:%.*]] +; CHECK-NEXT: [[T2:%.*]] = mul <4 x i32> [[V0]], <i32 5, i32 6, i32 undef, i32 undef> +; CHECK-NEXT: [[T3:%.*]] = shufflevector <4 x i32> [[T1]], <4 x i32> [[T2]], <4 x i32> <i32 4, i32 5, i32 2, i32 3> +; CHECK-NEXT: ret <4 x i32> [[T3]] +; + %t1 = shl <4 x i32> <i32 1, i32 2, i32 3, i32 4>, %v0 + %t2 = mul <4 x i32> %v0, <i32 5, i32 6, i32 7, i32 8> + %t3 = shufflevector <4 x i32> %t1, <4 x i32> %t2, <4 x i32> <i32 4, i32 5, i32 2, i32 3> + ret <4 x i32> %t3 +} + |