]> granicus.if.org Git - llvm/commitdiff
[InstCombine] add possible bswap as widening shuffle test; NFC
authorSanjay Patel <spatel@rotateright.com>
Thu, 29 Aug 2019 20:57:50 +0000 (20:57 +0000)
committerSanjay Patel <spatel@rotateright.com>
Thu, 29 Aug 2019 20:57:50 +0000 (20:57 +0000)
Goes with the proposal in D66965.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@370407 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/bswap.ll

index 1f9e418284ebb5ec9626d94c6e377dda91dff2b5..9d5d499e6439c6c89550285f3ef44ed2a1762f79 100644 (file)
@@ -283,8 +283,8 @@ define i32 @shuf_4bytes_extra_use(<4 x i8> %x) {
   ret i32 %cast
 }
 
-define i128 @shuf_load_16bytes(<16 x i8> %x) {
-; CHECK-LABEL: @shuf_load_16bytes(
+define i128 @shuf_16bytes(<16 x i8> %x) {
+; CHECK-LABEL: @shuf_16bytes(
 ; CHECK-NEXT:    [[BSWAP:%.*]] = shufflevector <16 x i8> [[X:%.*]], <16 x i8> undef, <16 x i32> <i32 15, i32 14, i32 13, i32 12, i32 11, i32 10, i32 9, i32 8, i32 7, i32 6, i32 5, i32 4, i32 3, i32 2, i32 1, i32 0>
 ; CHECK-NEXT:    [[CAST:%.*]] = bitcast <16 x i8> [[BSWAP]] to i128
 ; CHECK-NEXT:    ret i128 [[CAST]]
@@ -293,3 +293,14 @@ define i128 @shuf_load_16bytes(<16 x i8> %x) {
   %cast = bitcast <16 x i8> %bswap to i128
   ret i128 %cast
 }
+
+define i32 @shuf_2bytes_widening(<2 x i8> %x) {
+; CHECK-LABEL: @shuf_2bytes_widening(
+; CHECK-NEXT:    [[BSWAP:%.*]] = shufflevector <2 x i8> [[X:%.*]], <2 x i8> undef, <4 x i32> <i32 1, i32 0, i32 undef, i32 undef>
+; CHECK-NEXT:    [[CAST:%.*]] = bitcast <4 x i8> [[BSWAP]] to i32
+; CHECK-NEXT:    ret i32 [[CAST]]
+;
+  %bswap = shufflevector <2 x i8> %x, <2 x i8> undef, <4 x i32> <i32 1, i32 0, i32 undef, i32 undef>
+  %cast = bitcast <4 x i8> %bswap to i32
+  ret i32 %cast
+}