[llvm-commits] [llvm] r55689 - in /llvm/trunk: lib/VMCore/ConstantFold.cpp test/Transforms/InstCombine/2008-09-02-VectorCrash.ll
Nick Lewycky
nicholas at mxc.ca
Tue Sep 2 22:54:33 PDT 2008
Author: nicholas
Date: Wed Sep 3 00:54:33 2008
New Revision: 55689
URL: http://llvm.org/viewvc/llvm-project?rev=55689&view=rev
Log:
Don't crash when trying to constant fold a vector with some elements that can't
be folded. Instead, fail to fold the entire vector.
We could also return a vector with some elements folded and some not. If anyone
thinks that's a better approach, please speak up!
Added:
llvm/trunk/test/Transforms/InstCombine/2008-09-02-VectorCrash.ll
Modified:
llvm/trunk/lib/VMCore/ConstantFold.cpp
Modified: llvm/trunk/lib/VMCore/ConstantFold.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/ConstantFold.cpp?rev=55689&r1=55688&r2=55689&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/ConstantFold.cpp (original)
+++ llvm/trunk/lib/VMCore/ConstantFold.cpp Wed Sep 3 00:54:33 2008
@@ -238,9 +238,12 @@
std::vector<Constant*> res;
const VectorType *DestVecTy = cast<VectorType>(DestTy);
const Type *DstEltTy = DestVecTy->getElementType();
- for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
- res.push_back(ConstantFoldCastInstruction(opc, V->getOperand(i),
- DstEltTy));
+ for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i) {
+ Constant *C = ConstantFoldCastInstruction(opc, CV->getOperand(i),
+ DstEltTy);
+ if (!C) return 0; // Can't fold operand.
+ res.push_back(C);
+ }
return ConstantVector::get(DestVecTy, res);
}
return 0; // Can't fold.
@@ -268,9 +271,12 @@
std::vector<Constant*> res;
const VectorType *DestVecTy = cast<VectorType>(DestTy);
const Type *DstEltTy = DestVecTy->getElementType();
- for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i)
- res.push_back(ConstantFoldCastInstruction(opc, V->getOperand(i),
- DstEltTy));
+ for (unsigned i = 0, e = CV->getType()->getNumElements(); i != e; ++i) {
+ Constant *C = ConstantFoldCastInstruction(opc, CV->getOperand(i),
+ DstEltTy);
+ if (!C) return 0; // Can't fold operand.
+ res.push_back(C);
+ }
return ConstantVector::get(DestVecTy, res);
}
return 0;
Added: llvm/trunk/test/Transforms/InstCombine/2008-09-02-VectorCrash.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/2008-09-02-VectorCrash.ll?rev=55689&view=auto
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/2008-09-02-VectorCrash.ll (added)
+++ llvm/trunk/test/Transforms/InstCombine/2008-09-02-VectorCrash.ll Wed Sep 3 00:54:33 2008
@@ -0,0 +1,27 @@
+; RUN: llvm-as < %s | opt -instcombine
+
+define void @entry(i32 %m_task_id, i32 %start_x, i32 %end_x, i32 %start_y, i32 %end_y) {
+ br label %1
+
+; <label>:1 ; preds = %4, %0
+ %2 = icmp slt i32 0, %end_y ; <i1> [#uses=1]
+ br i1 %2, label %4, label %3
+
+; <label>:3 ; preds = %1
+ ret void
+
+; <label>:4 ; preds = %6, %1
+ %5 = icmp slt i32 0, %end_x ; <i1> [#uses=1]
+ br i1 %5, label %6, label %1
+
+; <label>:6 ; preds = %4
+ %7 = srem <2 x i32> zeroinitializer, zeroinitializer ; <<2 x i32>> [#uses=1]
+ %8 = extractelement <2 x i32> %7, i32 1 ; <i32> [#uses=1]
+ %9 = select i1 false, i32 0, i32 %8 ; <i32> [#uses=1]
+ %10 = insertelement <2 x i32> zeroinitializer, i32 %9, i32 1 ; <<2 x i32>> [#uses=1]
+ %11 = extractelement <2 x i32> %10, i32 1 ; <i32> [#uses=1]
+ %12 = insertelement <4 x i32> zeroinitializer, i32 %11, i32 3 ; <<4 x i32>> [#uses=1]
+ %13 = sitofp <4 x i32> %12 to <4 x float> ; <<4 x float>> [#uses=1]
+ store <4 x float> %13, <4 x float>* null
+ br label %4
+}
More information about the llvm-commits
mailing list