[PATCH] D157630: [LoopVectorize] Pre-commit tests for the fix of incorrect order of invariant stores.
Igor Kirillov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 10 09:08:39 PDT 2023
igor.kirillov created this revision.
Herald added subscribers: artagnon, mgabka, shiva0217.
Herald added a project: All.
igor.kirillov requested review of this revision.
Herald added subscribers: llvm-commits, wangpc.
Herald added a project: LLVM.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D157630
Files:
llvm/test/Transforms/LoopVectorize/reduction-with-invariant-store.ll
Index: llvm/test/Transforms/LoopVectorize/reduction-with-invariant-store.ll
===================================================================
--- llvm/test/Transforms/LoopVectorize/reduction-with-invariant-store.ll
+++ llvm/test/Transforms/LoopVectorize/reduction-with-invariant-store.ll
@@ -559,3 +559,63 @@
%add.lcssa = phi i32 [ %add, %for.body ]
ret i32 %add.lcssa
}
+
+; FIXME: This tests currently shows incorrect behavior and it will fixed in the following patch
+; Make sure that if there are several reductions in the loop, the order of invariant stores sank outside of the loop is preserved
+define void @reduc_add_mul_store(ptr %dst, ptr readonly %src) {
+; CHECK-LABEL: define void @reduc_add_mul_store
+; CHECK: middle.block:
+; CHECK-NEXT: [[TMP2:%.*]] = call i32 @llvm.vector.reduce.mul.v4i32(<4 x i32> [[TMP1:%.*]])
+; CHECK-NEXT: store i32 [[TMP2]], ptr %dst, align 4
+; CHECK-NEXT: [[TMP4:%.*]] = call i32 @llvm.vector.reduce.add.v4i32(<4 x i32> [[TMP3:%.*]])
+; CHECK-NEXT: store i32 [[TMP4]], ptr %dst, align 4
+;
+entry:
+ br label %for.body
+
+for.body:
+ %sum = phi i32 [ 0, %entry ], [ %sum.next, %for.body ]
+ %mul = phi i32 [ 1, %entry ], [ %mul.next, %for.body ]
+ %iv = phi i64 [ 0, %entry ], [ %iv.next, %for.body ]
+ %gep.src = getelementptr inbounds i32, ptr %src, i64 %iv
+ %0 = load i32, ptr %gep.src, align 4
+ %sum.next = add nsw i32 %sum, %0
+ store i32 %sum.next, ptr %dst, align 4
+ %mul.next = mul nsw i32 %mul, %0
+ store i32 %mul.next, ptr %dst, align 4
+ %iv.next = add nuw nsw i64 %iv, 1
+ %exitcond = icmp eq i64 %iv.next, 1000
+ br i1 %exitcond, label %exit, label %for.body
+
+exit:
+ ret void
+}
+
+define void @reduc_mul_add_store(ptr %dst, ptr readonly %src) {
+; CHECK-LABEL: define void @reduc_mul_add_store
+; CHECK: middle.block:
+; CHECK-NEXT: [[TMP2:%.*]] = call i32 @llvm.vector.reduce.mul.v4i32(<4 x i32> [[TMP1:%.*]])
+; CHECK-NEXT: store i32 [[TMP2]], ptr %dst, align 4
+; CHECK-NEXT: [[TMP4:%.*]] = call i32 @llvm.vector.reduce.add.v4i32(<4 x i32> [[TMP3:%.*]])
+; CHECK-NEXT: store i32 [[TMP4]], ptr %dst, align 4
+;
+entry:
+ br label %for.body
+
+for.body:
+ %sum = phi i32 [ 0, %entry ], [ %sum.next, %for.body ]
+ %mul = phi i32 [ 1, %entry ], [ %mul.next, %for.body ]
+ %iv = phi i64 [ 0, %entry ], [ %iv.next, %for.body ]
+ %gep.src = getelementptr inbounds i32, ptr %src, i64 %iv
+ %0 = load i32, ptr %gep.src, align 4
+ %mul.next = mul nsw i32 %mul, %0
+ store i32 %mul.next, ptr %dst, align 4
+ %sum.next = add nsw i32 %sum, %0
+ store i32 %sum.next, ptr %dst, align 4
+ %iv.next = add nuw nsw i64 %iv, 1
+ %exitcond = icmp eq i64 %iv.next, 1000
+ br i1 %exitcond, label %exit, label %for.body
+
+exit:
+ ret void
+}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D157630.549069.patch
Type: text/x-patch
Size: 2760 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230810/36e273fa/attachment.bin>
More information about the llvm-commits
mailing list