From: Chris Lattner Date: Thu, 26 Jan 2012 02:54:54 +0000 (+0000) Subject: simplify by using ShuffleVectorInst::getMaskValue. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=71a494d6974f5105f008601a3e7c7474bf508139;p=oota-llvm.git simplify by using ShuffleVectorInst::getMaskValue. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149029 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/ConstantFold.cpp b/lib/VMCore/ConstantFold.cpp index abc019ff4e0..9c2919ea1d8 100644 --- a/lib/VMCore/ConstantFold.cpp +++ b/lib/VMCore/ConstantFold.cpp @@ -787,24 +787,22 @@ Constant *llvm::ConstantFoldShuffleVectorInstruction(Constant *V1, // Undefined shuffle mask -> undefined value. if (isa(Mask)) return UndefValue::get(V1->getType()); - unsigned MaskNumElts = cast(Mask->getType())->getNumElements(); - unsigned SrcNumElts = cast(V1->getType())->getNumElements(); - Type *EltTy = cast(V1->getType())->getElementType(); + unsigned MaskNumElts = Mask->getType()->getVectorNumElements(); + unsigned SrcNumElts = V1->getType()->getVectorNumElements(); + Type *EltTy = V1->getType()->getVectorElementType(); // Loop over the shuffle mask, evaluating each element. SmallVector Result; for (unsigned i = 0; i != MaskNumElts; ++i) { - Constant *InElt = Mask->getAggregateElement(i); - if (InElt == 0) return 0; - - if (isa(InElt)) { + int Elt = ShuffleVectorInst::getMaskValue(Mask, i); + if (Elt == -1) { Result.push_back(UndefValue::get(EltTy)); continue; } - unsigned Elt = cast(InElt)->getZExtValue(); - if (Elt >= SrcNumElts*2) + Constant *InElt; + if (unsigned(Elt) >= SrcNumElts*2) InElt = UndefValue::get(EltTy); - else if (Elt >= SrcNumElts) + else if (unsigned(Elt) >= SrcNumElts) InElt = V2->getAggregateElement(Elt - SrcNumElts); else InElt = V1->getAggregateElement(Elt);