[PATCH] D22886: [llvm] Loop Vectorization fault in collectLoopUni
Wei Mi via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 27 17:01:37 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL276943: Fix the assertion error in collectLoopUniforms caused by empty Worklist… (authored by wmi).
Changed prior to commit:
https://reviews.llvm.org/D22886?vs=65833&id=65840#toc
Repository:
rL LLVM
https://reviews.llvm.org/D22886
Files:
llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp
llvm/trunk/test/Transforms/LoopVectorize/2016-07-27-loop-vec.ll
Index: llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ llvm/trunk/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -4859,7 +4859,7 @@
// out of scope. It ensures a uniform instruction will only be used
// by uniform instructions or out of scope instructions.
unsigned idx = 0;
- do {
+ while (idx != Worklist.size()) {
Instruction *I = Worklist[idx++];
for (auto OV : I->operand_values()) {
@@ -4873,7 +4873,7 @@
DEBUG(dbgs() << "LV: Found uniform instruction: " << *OI << "\n");
}
}
- } while (idx != Worklist.size());
+ }
// For an instruction to be added into Worklist above, all its users inside
// the current loop should be already added into Worklist. This condition
Index: llvm/trunk/test/Transforms/LoopVectorize/2016-07-27-loop-vec.ll
===================================================================
--- llvm/trunk/test/Transforms/LoopVectorize/2016-07-27-loop-vec.ll
+++ llvm/trunk/test/Transforms/LoopVectorize/2016-07-27-loop-vec.ll
@@ -0,0 +1,19 @@
+; RUN: opt < %s -loop-vectorize -S
+
+define void @foo() local_unnamed_addr {
+entry:
+ %exitcond = icmp eq i64 3, 3
+ br label %for.body
+
+for.body: ; preds = %entry
+ %i.05 = phi i64 [ %inc, %for.body ], [ 0, %entry ]
+ %total1 = add nsw i64 %i.05, 3
+ %inc = add nuw nsw i64 %i.05, 1
+ br i1 %exitcond, label %for.end, label %for.body, !llvm.loop !0
+
+for.end: ; preds = %for.body
+ ret void
+}
+
+!0 = distinct !{!0, !1}
+!1 = !{!"llvm.loop.vectorize.enable", i1 true}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D22886.65840.patch
Type: text/x-patch
Size: 1717 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160728/a172c254/attachment.bin>
More information about the llvm-commits
mailing list