[llvm] r270517 - [LoopUnrollAnalyzer] Fix a crash in UnrolledInstAnalyzer::visitCastInst.
Michael Zolotukhin via llvm-commits
llvm-commits at lists.llvm.org
Mon May 23 17:51:05 PDT 2016
Author: mzolotukhin
Date: Mon May 23 19:51:01 2016
New Revision: 270517
URL: http://llvm.org/viewvc/llvm-project?rev=270517&view=rev
Log:
[LoopUnrollAnalyzer] Fix a crash in UnrolledInstAnalyzer::visitCastInst.
This fixes PR27847.
Modified:
llvm/trunk/lib/Analysis/LoopUnrollAnalyzer.cpp
llvm/trunk/test/Transforms/LoopUnroll/full-unroll-crashers.ll
Modified: llvm/trunk/lib/Analysis/LoopUnrollAnalyzer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LoopUnrollAnalyzer.cpp?rev=270517&r1=270516&r2=270517&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LoopUnrollAnalyzer.cpp (original)
+++ llvm/trunk/lib/Analysis/LoopUnrollAnalyzer.cpp Mon May 23 19:51:01 2016
@@ -141,12 +141,17 @@ bool UnrolledInstAnalyzer::visitCastInst
Constant *COp = dyn_cast<Constant>(I.getOperand(0));
if (!COp)
COp = SimplifiedValues.lookup(I.getOperand(0));
- if (COp)
+ if (COp) {
+ if (COp->getType() == I.getType()) {
+ SimplifiedValues[&I] = cast<Constant>(COp);
+ return true;
+ }
if (Constant *C =
ConstantExpr::getCast(I.getOpcode(), COp, I.getType())) {
SimplifiedValues[&I] = C;
return true;
}
+ }
return Base::visitCastInst(I);
}
Modified: llvm/trunk/test/Transforms/LoopUnroll/full-unroll-crashers.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/LoopUnroll/full-unroll-crashers.ll?rev=270517&r1=270516&r2=270517&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/LoopUnroll/full-unroll-crashers.ll (original)
+++ llvm/trunk/test/Transforms/LoopUnroll/full-unroll-crashers.ll Mon May 23 19:51:01 2016
@@ -1,5 +1,5 @@
; Check that we don't crash on corner cases.
-; RUN: opt < %s -S -loop-unroll -unroll-max-iteration-count-to-analyze=1000 -unroll-threshold=10 -unroll-percent-dynamic-cost-saved-threshold=20 -o /dev/null
+; RUN: opt < %s -S -loop-unroll -unroll-max-iteration-count-to-analyze=1000 -unroll-threshold=1 -unroll-percent-dynamic-cost-saved-threshold=20 -o /dev/null
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
@known_constant = internal unnamed_addr constant [10 x i32] [i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1, i32 1], align 16
@@ -100,3 +100,22 @@ for.body:
for.exit:
ret <4 x i32> %r
}
+
+define void @ptrtoint_cast() optsize {
+entry:
+ br label %for.body
+
+for.body:
+ br i1 true, label %for.inc, label %if.then
+
+if.then:
+ %arraydecay = getelementptr inbounds [1 x i32], [1 x i32]* null, i64 0, i64 0
+ %x = ptrtoint i32* %arraydecay to i64
+ br label %for.inc
+
+for.inc:
+ br i1 false, label %for.body, label %for.cond.cleanup
+
+for.cond.cleanup:
+ ret void
+}
More information about the llvm-commits
mailing list