[llvm] a562dc8 - [AArch64] Add 2 cases where insertelement lowering could be improved.
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 26 08:41:20 PDT 2020
Author: Florian Hahn
Date: 2020-10-26T15:37:17Z
New Revision: a562dc82a8d9488d35ff535302716141bc6feaa3
URL: https://github.com/llvm/llvm-project/commit/a562dc82a8d9488d35ff535302716141bc6feaa3
DIFF: https://github.com/llvm/llvm-project/commit/a562dc82a8d9488d35ff535302716141bc6feaa3.diff
LOG: [AArch64] Add 2 cases where insertelement lowering could be improved.
Added:
Modified:
llvm/test/CodeGen/AArch64/arm64-vector-insertion.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/AArch64/arm64-vector-insertion.ll b/llvm/test/CodeGen/AArch64/arm64-vector-insertion.ll
index 23f9d9060344..47a1433cd499 100644
--- a/llvm/test/CodeGen/AArch64/arm64-vector-insertion.ll
+++ b/llvm/test/CodeGen/AArch64/arm64-vector-insertion.ll
@@ -29,3 +29,35 @@ entry:
; CHECK: str q[[TEMP]], [x0]
; CHECK: ret
}
+
+; TODO: This should jsut be a dup + clearing lane 4.
+define <4 x float> @test2(float %a) {
+; CHECK-LABEL: test2:
+; CHECK: bb.0:
+; CHECK-NEXT: movi.2d v1, #0000000000000000
+; CHECK-NEXT: // kill
+; CHECK-NEXT: mov.s v1[0], v0[0]
+; CHECK-NEXT: mov.s v1[1], v0[0]
+; CHECK-NEXT: mov.s v1[2], v0[0]
+; CHECK-NEXT: mov.16b v0, v1
+; CHECK-NEXT: ret
+;
+entry:
+ %0 = insertelement <4 x float> <float undef, float undef, float undef, float 0.000000e+00>, float %a, i32 0
+ %1 = insertelement <4 x float> %0, float %a, i32 1
+ %vecinit3 = insertelement <4 x float> %1, float %a, i32 2
+ ret <4 x float> %vecinit3
+}
+
+; TODO: This should jsut be a mov.s v0[3], wzr
+define <4 x float> @test3(<4 x float> %a) #0 {
+; CHECK-LABEL: test3:
+; CHECK: bb.0:
+; CHECK-NEXT: fmov s1, wzr
+; CHECK-NEXT: mov.s v0[3], v1[0]
+; CHECK-NEXT: ret
+
+entry:
+ %vecinit5 = insertelement <4 x float> %a, float 0.000000e+00, i32 3
+ ret <4 x float> %vecinit5
+}
More information about the llvm-commits
mailing list