diff options
| author | Chris Lattner <sabre@nondot.org> | 2012-01-26 02:54:54 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2012-01-26 02:54:54 +0000 |
| commit | 8722fe5a2438b58107cb7e0c0a348479e8e59313 (patch) | |
| tree | d70cbb3e5109eb9dc404ac7dd2795e64d3bd8bda | |
| parent | cf12970bd0ae061efca85f7d28829410c94bfc5a (diff) | |
| download | bcm5719-llvm-8722fe5a2438b58107cb7e0c0a348479e8e59313.tar.gz bcm5719-llvm-8722fe5a2438b58107cb7e0c0a348479e8e59313.zip | |
simplify by using ShuffleVectorInst::getMaskValue.
llvm-svn: 149029
| -rw-r--r-- | llvm/lib/VMCore/ConstantFold.cpp | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/llvm/lib/VMCore/ConstantFold.cpp b/llvm/lib/VMCore/ConstantFold.cpp index abc019ff4e0..9c2919ea1d8 100644 --- a/llvm/lib/VMCore/ConstantFold.cpp +++ b/llvm/lib/VMCore/ConstantFold.cpp @@ -787,24 +787,22 @@ Constant *llvm::ConstantFoldShuffleVectorInstruction(Constant *V1, // Undefined shuffle mask -> undefined value. if (isa<UndefValue>(Mask)) return UndefValue::get(V1->getType()); - unsigned MaskNumElts = cast<VectorType>(Mask->getType())->getNumElements(); - unsigned SrcNumElts = cast<VectorType>(V1->getType())->getNumElements(); - Type *EltTy = cast<VectorType>(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<Constant*, 32> Result; for (unsigned i = 0; i != MaskNumElts; ++i) { - Constant *InElt = Mask->getAggregateElement(i); - if (InElt == 0) return 0; - - if (isa<UndefValue>(InElt)) { + int Elt = ShuffleVectorInst::getMaskValue(Mask, i); + if (Elt == -1) { Result.push_back(UndefValue::get(EltTy)); continue; } - unsigned Elt = cast<ConstantInt>(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); |

