Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1 | //===- InstCombineCasts.cpp -----------------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the visit functions for cast operations. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "InstCombine.h" |
Eli Friedman | 911e12f | 2011-07-20 21:57:23 +0000 | [diff] [blame] | 15 | #include "llvm/Analysis/ConstantFolding.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 16 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | 820a908 | 2014-03-04 11:08:18 +0000 | [diff] [blame] | 17 | #include "llvm/IR/PatternMatch.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 18 | #include "llvm/Target/TargetLibraryInfo.h" |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 19 | using namespace llvm; |
| 20 | using namespace PatternMatch; |
| 21 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 22 | #define DEBUG_TYPE "instcombine" |
| 23 | |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 24 | /// DecomposeSimpleLinearExpr - Analyze 'Val', seeing if it is a simple linear |
| 25 | /// expression. If so, decompose it, returning some value X, such that Val is |
| 26 | /// X*Scale+Offset. |
| 27 | /// |
| 28 | static Value *DecomposeSimpleLinearExpr(Value *Val, unsigned &Scale, |
Dan Gohman | 05a6555 | 2010-05-28 04:33:04 +0000 | [diff] [blame] | 29 | uint64_t &Offset) { |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 30 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) { |
| 31 | Offset = CI->getZExtValue(); |
| 32 | Scale = 0; |
Dan Gohman | 05a6555 | 2010-05-28 04:33:04 +0000 | [diff] [blame] | 33 | return ConstantInt::get(Val->getType(), 0); |
Chris Lattner | aaccc8d | 2010-01-05 20:57:30 +0000 | [diff] [blame] | 34 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 35 | |
Chris Lattner | aaccc8d | 2010-01-05 20:57:30 +0000 | [diff] [blame] | 36 | if (BinaryOperator *I = dyn_cast<BinaryOperator>(Val)) { |
Bob Wilson | 3c68b62 | 2011-07-08 22:09:33 +0000 | [diff] [blame] | 37 | // Cannot look past anything that might overflow. |
| 38 | OverflowingBinaryOperator *OBI = dyn_cast<OverflowingBinaryOperator>(Val); |
Stepan Dyatkovskiy | cb2a1a3 | 2012-05-05 07:09:40 +0000 | [diff] [blame] | 39 | if (OBI && !OBI->hasNoUnsignedWrap() && !OBI->hasNoSignedWrap()) { |
Bob Wilson | 3c68b62 | 2011-07-08 22:09:33 +0000 | [diff] [blame] | 40 | Scale = 1; |
| 41 | Offset = 0; |
| 42 | return Val; |
| 43 | } |
| 44 | |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 45 | if (ConstantInt *RHS = dyn_cast<ConstantInt>(I->getOperand(1))) { |
| 46 | if (I->getOpcode() == Instruction::Shl) { |
| 47 | // This is a value scaled by '1 << the shift amt'. |
Dan Gohman | 05a6555 | 2010-05-28 04:33:04 +0000 | [diff] [blame] | 48 | Scale = UINT64_C(1) << RHS->getZExtValue(); |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 49 | Offset = 0; |
| 50 | return I->getOperand(0); |
Chris Lattner | aaccc8d | 2010-01-05 20:57:30 +0000 | [diff] [blame] | 51 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 52 | |
Chris Lattner | aaccc8d | 2010-01-05 20:57:30 +0000 | [diff] [blame] | 53 | if (I->getOpcode() == Instruction::Mul) { |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 54 | // This value is scaled by 'RHS'. |
| 55 | Scale = RHS->getZExtValue(); |
| 56 | Offset = 0; |
| 57 | return I->getOperand(0); |
Chris Lattner | aaccc8d | 2010-01-05 20:57:30 +0000 | [diff] [blame] | 58 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 59 | |
Chris Lattner | aaccc8d | 2010-01-05 20:57:30 +0000 | [diff] [blame] | 60 | if (I->getOpcode() == Instruction::Add) { |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 61 | // We have X+C. Check to see if we really have (X*C2)+C1, |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 62 | // where C1 is divisible by C2. |
| 63 | unsigned SubScale; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 64 | Value *SubVal = |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 65 | DecomposeSimpleLinearExpr(I->getOperand(0), SubScale, Offset); |
| 66 | Offset += RHS->getZExtValue(); |
| 67 | Scale = SubScale; |
| 68 | return SubVal; |
| 69 | } |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | // Otherwise, we can't look past this. |
| 74 | Scale = 1; |
| 75 | Offset = 0; |
| 76 | return Val; |
| 77 | } |
| 78 | |
| 79 | /// PromoteCastOfAllocation - If we find a cast of an allocation instruction, |
| 80 | /// try to eliminate the cast by moving the type information into the alloc. |
| 81 | Instruction *InstCombiner::PromoteCastOfAllocation(BitCastInst &CI, |
| 82 | AllocaInst &AI) { |
Micah Villmow | cdfe20b | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 83 | // This requires DataLayout to get the alloca alignment and size information. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 84 | if (!DL) return nullptr; |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 85 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 86 | PointerType *PTy = cast<PointerType>(CI.getType()); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 87 | |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 88 | BuilderTy AllocaBuilder(*Builder); |
| 89 | AllocaBuilder.SetInsertPoint(AI.getParent(), &AI); |
| 90 | |
| 91 | // Get the type really allocated and the type casted to. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 92 | Type *AllocElTy = AI.getAllocatedType(); |
| 93 | Type *CastElTy = PTy->getElementType(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 94 | if (!AllocElTy->isSized() || !CastElTy->isSized()) return nullptr; |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 95 | |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 96 | unsigned AllocElTyAlign = DL->getABITypeAlignment(AllocElTy); |
| 97 | unsigned CastElTyAlign = DL->getABITypeAlignment(CastElTy); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 98 | if (CastElTyAlign < AllocElTyAlign) return nullptr; |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 99 | |
| 100 | // If the allocation has multiple uses, only promote it if we are strictly |
| 101 | // increasing the alignment of the resultant allocation. If we keep it the |
Devang Patel | fbb482b | 2011-03-08 22:12:11 +0000 | [diff] [blame] | 102 | // same, we open the door to infinite loops of various kinds. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 103 | if (!AI.hasOneUse() && CastElTyAlign == AllocElTyAlign) return nullptr; |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 104 | |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 105 | uint64_t AllocElTySize = DL->getTypeAllocSize(AllocElTy); |
| 106 | uint64_t CastElTySize = DL->getTypeAllocSize(CastElTy); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 107 | if (CastElTySize == 0 || AllocElTySize == 0) return nullptr; |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 108 | |
Jim Grosbach | 95d2eb9 | 2013-03-06 05:44:53 +0000 | [diff] [blame] | 109 | // If the allocation has multiple uses, only promote it if we're not |
| 110 | // shrinking the amount of memory being allocated. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 111 | uint64_t AllocElTyStoreSize = DL->getTypeStoreSize(AllocElTy); |
| 112 | uint64_t CastElTyStoreSize = DL->getTypeStoreSize(CastElTy); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 113 | if (!AI.hasOneUse() && CastElTyStoreSize < AllocElTyStoreSize) return nullptr; |
Jim Grosbach | 95d2eb9 | 2013-03-06 05:44:53 +0000 | [diff] [blame] | 114 | |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 115 | // See if we can satisfy the modulus by pulling a scale out of the array |
| 116 | // size argument. |
| 117 | unsigned ArraySizeScale; |
Dan Gohman | 05a6555 | 2010-05-28 04:33:04 +0000 | [diff] [blame] | 118 | uint64_t ArrayOffset; |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 119 | Value *NumElements = // See if the array size is a decomposable linear expr. |
| 120 | DecomposeSimpleLinearExpr(AI.getOperand(0), ArraySizeScale, ArrayOffset); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 121 | |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 122 | // If we can now satisfy the modulus, by using a non-1 scale, we really can |
| 123 | // do the xform. |
| 124 | if ((AllocElTySize*ArraySizeScale) % CastElTySize != 0 || |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 125 | (AllocElTySize*ArrayOffset ) % CastElTySize != 0) return nullptr; |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 126 | |
| 127 | unsigned Scale = (AllocElTySize*ArraySizeScale)/CastElTySize; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 128 | Value *Amt = nullptr; |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 129 | if (Scale == 1) { |
| 130 | Amt = NumElements; |
| 131 | } else { |
Dan Gohman | 05a6555 | 2010-05-28 04:33:04 +0000 | [diff] [blame] | 132 | Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale); |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 133 | // Insert before the alloca, not before the cast. |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 134 | Amt = AllocaBuilder.CreateMul(Amt, NumElements); |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 135 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 136 | |
Dan Gohman | 05a6555 | 2010-05-28 04:33:04 +0000 | [diff] [blame] | 137 | if (uint64_t Offset = (AllocElTySize*ArrayOffset)/CastElTySize) { |
| 138 | Value *Off = ConstantInt::get(AI.getArraySize()->getType(), |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 139 | Offset, true); |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 140 | Amt = AllocaBuilder.CreateAdd(Amt, Off); |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 141 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 142 | |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 143 | AllocaInst *New = AllocaBuilder.CreateAlloca(CastElTy, Amt); |
| 144 | New->setAlignment(AI.getAlignment()); |
| 145 | New->takeName(&AI); |
Hans Wennborg | e36e116 | 2014-04-28 17:40:03 +0000 | [diff] [blame] | 146 | New->setUsedWithInAlloca(AI.isUsedWithInAlloca()); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 147 | |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 148 | // If the allocation has multiple real uses, insert a cast and change all |
| 149 | // things that used it to use the new cast. This will also hack on CI, but it |
| 150 | // will die soon. |
Devang Patel | fbb482b | 2011-03-08 22:12:11 +0000 | [diff] [blame] | 151 | if (!AI.hasOneUse()) { |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 152 | // New is the allocation instruction, pointer typed. AI is the original |
| 153 | // allocation instruction, also pointer typed. Thus, cast to use is BitCast. |
| 154 | Value *NewCast = AllocaBuilder.CreateBitCast(New, AI.getType(), "tmpcast"); |
Eli Friedman | b9ed18f | 2011-05-18 00:32:01 +0000 | [diff] [blame] | 155 | ReplaceInstUsesWith(AI, NewCast); |
Chris Lattner | 59d9574 | 2010-01-04 07:59:07 +0000 | [diff] [blame] | 156 | } |
| 157 | return ReplaceInstUsesWith(CI, New); |
| 158 | } |
| 159 | |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 160 | /// EvaluateInDifferentType - Given an expression that |
Chris Lattner | 10840e9 | 2010-01-08 19:19:23 +0000 | [diff] [blame] | 161 | /// CanEvaluateTruncated or CanEvaluateSExtd returns true for, actually |
Chris Lattner | 98748c0 | 2010-01-06 01:56:21 +0000 | [diff] [blame] | 162 | /// insert the code to evaluate the expression. |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 163 | Value *InstCombiner::EvaluateInDifferentType(Value *V, Type *Ty, |
Chris Lattner | 92be2ad | 2010-01-04 07:54:59 +0000 | [diff] [blame] | 164 | bool isSigned) { |
Chris Lattner | 9242ae0 | 2010-01-08 19:28:47 +0000 | [diff] [blame] | 165 | if (Constant *C = dyn_cast<Constant>(V)) { |
| 166 | C = ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/); |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 167 | // If we got a constantexpr back, try to simplify it with DL info. |
Chris Lattner | 9242ae0 | 2010-01-08 19:28:47 +0000 | [diff] [blame] | 168 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 169 | C = ConstantFoldConstantExpression(CE, DL, TLI); |
Chris Lattner | 9242ae0 | 2010-01-08 19:28:47 +0000 | [diff] [blame] | 170 | return C; |
| 171 | } |
Chris Lattner | 92be2ad | 2010-01-04 07:54:59 +0000 | [diff] [blame] | 172 | |
| 173 | // Otherwise, it must be an instruction. |
| 174 | Instruction *I = cast<Instruction>(V); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 175 | Instruction *Res = nullptr; |
Chris Lattner | 92be2ad | 2010-01-04 07:54:59 +0000 | [diff] [blame] | 176 | unsigned Opc = I->getOpcode(); |
| 177 | switch (Opc) { |
| 178 | case Instruction::Add: |
| 179 | case Instruction::Sub: |
| 180 | case Instruction::Mul: |
| 181 | case Instruction::And: |
| 182 | case Instruction::Or: |
| 183 | case Instruction::Xor: |
| 184 | case Instruction::AShr: |
| 185 | case Instruction::LShr: |
| 186 | case Instruction::Shl: |
| 187 | case Instruction::UDiv: |
| 188 | case Instruction::URem: { |
| 189 | Value *LHS = EvaluateInDifferentType(I->getOperand(0), Ty, isSigned); |
| 190 | Value *RHS = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned); |
| 191 | Res = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS); |
| 192 | break; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 193 | } |
Chris Lattner | 92be2ad | 2010-01-04 07:54:59 +0000 | [diff] [blame] | 194 | case Instruction::Trunc: |
| 195 | case Instruction::ZExt: |
| 196 | case Instruction::SExt: |
| 197 | // If the source type of the cast is the type we're trying for then we can |
| 198 | // just return the source. There's no need to insert it because it is not |
| 199 | // new. |
| 200 | if (I->getOperand(0)->getType() == Ty) |
| 201 | return I->getOperand(0); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 202 | |
Chris Lattner | 92be2ad | 2010-01-04 07:54:59 +0000 | [diff] [blame] | 203 | // Otherwise, must be the same type of cast, so just reinsert a new one. |
Chris Lattner | 39d2daa | 2010-01-10 20:25:54 +0000 | [diff] [blame] | 204 | // This also handles the case of zext(trunc(x)) -> zext(x). |
| 205 | Res = CastInst::CreateIntegerCast(I->getOperand(0), Ty, |
| 206 | Opc == Instruction::SExt); |
Chris Lattner | 92be2ad | 2010-01-04 07:54:59 +0000 | [diff] [blame] | 207 | break; |
| 208 | case Instruction::Select: { |
| 209 | Value *True = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned); |
| 210 | Value *False = EvaluateInDifferentType(I->getOperand(2), Ty, isSigned); |
| 211 | Res = SelectInst::Create(I->getOperand(0), True, False); |
| 212 | break; |
| 213 | } |
| 214 | case Instruction::PHI: { |
| 215 | PHINode *OPN = cast<PHINode>(I); |
Jay Foad | 5213134 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 216 | PHINode *NPN = PHINode::Create(Ty, OPN->getNumIncomingValues()); |
Chris Lattner | 92be2ad | 2010-01-04 07:54:59 +0000 | [diff] [blame] | 217 | for (unsigned i = 0, e = OPN->getNumIncomingValues(); i != e; ++i) { |
| 218 | Value *V =EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned); |
| 219 | NPN->addIncoming(V, OPN->getIncomingBlock(i)); |
| 220 | } |
| 221 | Res = NPN; |
| 222 | break; |
| 223 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 224 | default: |
Chris Lattner | 92be2ad | 2010-01-04 07:54:59 +0000 | [diff] [blame] | 225 | // TODO: Can handle more cases here. |
| 226 | llvm_unreachable("Unreachable!"); |
Chris Lattner | 92be2ad | 2010-01-04 07:54:59 +0000 | [diff] [blame] | 227 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 228 | |
Chris Lattner | 92be2ad | 2010-01-04 07:54:59 +0000 | [diff] [blame] | 229 | Res->takeName(I); |
Eli Friedman | 35211c6 | 2011-05-27 00:19:40 +0000 | [diff] [blame] | 230 | return InsertNewInstWith(Res, *I); |
Chris Lattner | 92be2ad | 2010-01-04 07:54:59 +0000 | [diff] [blame] | 231 | } |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 232 | |
| 233 | |
| 234 | /// This function is a wrapper around CastInst::isEliminableCastPair. It |
| 235 | /// simply extracts arguments and returns what that function returns. |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 236 | static Instruction::CastOps |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 237 | isEliminableCastPair( |
| 238 | const CastInst *CI, ///< The first cast instruction |
| 239 | unsigned opcode, ///< The opcode of the second cast instruction |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 240 | Type *DstTy, ///< The target type for the second cast instruction |
Rafael Espindola | aeff8a9 | 2014-02-24 23:12:18 +0000 | [diff] [blame] | 241 | const DataLayout *DL ///< The target data for pointer size |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 242 | ) { |
| 243 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 244 | Type *SrcTy = CI->getOperand(0)->getType(); // A from above |
| 245 | Type *MidTy = CI->getType(); // B from above |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 246 | |
| 247 | // Get the opcodes of the two Cast instructions |
| 248 | Instruction::CastOps firstOp = Instruction::CastOps(CI->getOpcode()); |
| 249 | Instruction::CastOps secondOp = Instruction::CastOps(opcode); |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 250 | Type *SrcIntPtrTy = DL && SrcTy->isPtrOrPtrVectorTy() ? |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 251 | DL->getIntPtrType(SrcTy) : nullptr; |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 252 | Type *MidIntPtrTy = DL && MidTy->isPtrOrPtrVectorTy() ? |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 253 | DL->getIntPtrType(MidTy) : nullptr; |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 254 | Type *DstIntPtrTy = DL && DstTy->isPtrOrPtrVectorTy() ? |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 255 | DL->getIntPtrType(DstTy) : nullptr; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 256 | unsigned Res = CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy, |
Duncan Sands | e2395dc | 2012-10-30 16:03:32 +0000 | [diff] [blame] | 257 | DstTy, SrcIntPtrTy, MidIntPtrTy, |
| 258 | DstIntPtrTy); |
Micah Villmow | 12d9127 | 2012-10-24 15:52:52 +0000 | [diff] [blame] | 259 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 260 | // We don't want to form an inttoptr or ptrtoint that converts to an integer |
| 261 | // type that differs from the pointer size. |
Duncan Sands | e2395dc | 2012-10-30 16:03:32 +0000 | [diff] [blame] | 262 | if ((Res == Instruction::IntToPtr && SrcTy != DstIntPtrTy) || |
| 263 | (Res == Instruction::PtrToInt && DstTy != SrcIntPtrTy)) |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 264 | Res = 0; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 265 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 266 | return Instruction::CastOps(Res); |
| 267 | } |
| 268 | |
Chris Lattner | 4e8137d | 2010-02-11 06:26:33 +0000 | [diff] [blame] | 269 | /// ShouldOptimizeCast - Return true if the cast from "V to Ty" actually |
| 270 | /// results in any code being generated and is interesting to optimize out. If |
| 271 | /// the cast can be eliminated by some other simple transformation, we prefer |
| 272 | /// to do the simplification first. |
| 273 | bool InstCombiner::ShouldOptimizeCast(Instruction::CastOps opc, const Value *V, |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 274 | Type *Ty) { |
Chris Lattner | 4e8137d | 2010-02-11 06:26:33 +0000 | [diff] [blame] | 275 | // Noop casts and casts of constants should be eliminated trivially. |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 276 | if (V->getType() == Ty || isa<Constant>(V)) return false; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 277 | |
Chris Lattner | 4e8137d | 2010-02-11 06:26:33 +0000 | [diff] [blame] | 278 | // If this is another cast that can be eliminated, we prefer to have it |
| 279 | // eliminated. |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 280 | if (const CastInst *CI = dyn_cast<CastInst>(V)) |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 281 | if (isEliminableCastPair(CI, opc, Ty, DL)) |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 282 | return false; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 283 | |
Chris Lattner | 4e8137d | 2010-02-11 06:26:33 +0000 | [diff] [blame] | 284 | // If this is a vector sext from a compare, then we don't want to break the |
| 285 | // idiom where each element of the extended vector is either zero or all ones. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 286 | if (opc == Instruction::SExt && isa<CmpInst>(V) && Ty->isVectorTy()) |
Chris Lattner | 4e8137d | 2010-02-11 06:26:33 +0000 | [diff] [blame] | 287 | return false; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 288 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 289 | return true; |
| 290 | } |
| 291 | |
| 292 | |
| 293 | /// @brief Implement the transforms common to all CastInst visitors. |
| 294 | Instruction *InstCombiner::commonCastTransforms(CastInst &CI) { |
| 295 | Value *Src = CI.getOperand(0); |
| 296 | |
| 297 | // Many cases of "cast of a cast" are eliminable. If it's eliminable we just |
| 298 | // eliminate it now. |
| 299 | if (CastInst *CSrc = dyn_cast<CastInst>(Src)) { // A->B->C cast |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 300 | if (Instruction::CastOps opc = |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 301 | isEliminableCastPair(CSrc, CI.getOpcode(), CI.getType(), DL)) { |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 302 | // The first cast (CSrc) is eliminable so we need to fix up or replace |
| 303 | // the second cast (CI). CSrc will then have a good chance of being dead. |
| 304 | return CastInst::Create(opc, CSrc->getOperand(0), CI.getType()); |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | // If we are casting a select then fold the cast into the select |
| 309 | if (SelectInst *SI = dyn_cast<SelectInst>(Src)) |
| 310 | if (Instruction *NV = FoldOpIntoSelect(CI, SI)) |
| 311 | return NV; |
| 312 | |
| 313 | // If we are casting a PHI then fold the cast into the PHI |
| 314 | if (isa<PHINode>(Src)) { |
| 315 | // We don't do this if this would create a PHI node with an illegal type if |
| 316 | // it is currently legal. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 317 | if (!Src->getType()->isIntegerTy() || |
| 318 | !CI.getType()->isIntegerTy() || |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 319 | ShouldChangeType(CI.getType(), Src->getType())) |
| 320 | if (Instruction *NV = FoldOpIntoPhi(CI)) |
| 321 | return NV; |
| 322 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 323 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 324 | return nullptr; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 325 | } |
| 326 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 327 | /// CanEvaluateTruncated - Return true if we can evaluate the specified |
| 328 | /// expression tree as type Ty instead of its larger type, and arrive with the |
| 329 | /// same value. This is used by code that tries to eliminate truncates. |
| 330 | /// |
| 331 | /// Ty will always be a type smaller than V. We should return true if trunc(V) |
| 332 | /// can be computed by computing V in the smaller type. If V is an instruction, |
| 333 | /// then trunc(inst(x,y)) can be computed as inst(trunc(x),trunc(y)), which only |
| 334 | /// makes sense if x and y can be efficiently truncated. |
| 335 | /// |
Chris Lattner | 172630a | 2010-01-11 02:43:35 +0000 | [diff] [blame] | 336 | /// This function works on both vectors and scalars. |
| 337 | /// |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 338 | static bool CanEvaluateTruncated(Value *V, Type *Ty, InstCombiner &IC, |
| 339 | Instruction *CxtI) { |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 340 | // We can always evaluate constants in another type. |
| 341 | if (isa<Constant>(V)) |
| 342 | return true; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 343 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 344 | Instruction *I = dyn_cast<Instruction>(V); |
| 345 | if (!I) return false; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 346 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 347 | Type *OrigTy = V->getType(); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 348 | |
Chris Lattner | a6b1356 | 2010-01-11 22:45:25 +0000 | [diff] [blame] | 349 | // If this is an extension from the dest type, we can eliminate it, even if it |
| 350 | // has multiple uses. |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 351 | if ((isa<ZExtInst>(I) || isa<SExtInst>(I)) && |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 352 | I->getOperand(0)->getType() == Ty) |
| 353 | return true; |
| 354 | |
| 355 | // We can't extend or shrink something that has multiple uses: doing so would |
| 356 | // require duplicating the instruction in general, which isn't profitable. |
| 357 | if (!I->hasOneUse()) return false; |
| 358 | |
| 359 | unsigned Opc = I->getOpcode(); |
| 360 | switch (Opc) { |
| 361 | case Instruction::Add: |
| 362 | case Instruction::Sub: |
| 363 | case Instruction::Mul: |
| 364 | case Instruction::And: |
| 365 | case Instruction::Or: |
| 366 | case Instruction::Xor: |
| 367 | // These operators can all arbitrarily be extended or truncated. |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 368 | return CanEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI) && |
| 369 | CanEvaluateTruncated(I->getOperand(1), Ty, IC, CxtI); |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 370 | |
| 371 | case Instruction::UDiv: |
| 372 | case Instruction::URem: { |
| 373 | // UDiv and URem can be truncated if all the truncated bits are zero. |
| 374 | uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits(); |
| 375 | uint32_t BitWidth = Ty->getScalarSizeInBits(); |
| 376 | if (BitWidth < OrigBitWidth) { |
| 377 | APInt Mask = APInt::getHighBitsSet(OrigBitWidth, OrigBitWidth-BitWidth); |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 378 | if (IC.MaskedValueIsZero(I->getOperand(0), Mask, 0, CxtI) && |
| 379 | IC.MaskedValueIsZero(I->getOperand(1), Mask, 0, CxtI)) { |
| 380 | return CanEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI) && |
| 381 | CanEvaluateTruncated(I->getOperand(1), Ty, IC, CxtI); |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 382 | } |
| 383 | } |
| 384 | break; |
| 385 | } |
| 386 | case Instruction::Shl: |
| 387 | // If we are truncating the result of this SHL, and if it's a shift of a |
| 388 | // constant amount, we can always perform a SHL in a smaller type. |
| 389 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { |
| 390 | uint32_t BitWidth = Ty->getScalarSizeInBits(); |
| 391 | if (CI->getLimitedValue(BitWidth) < BitWidth) |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 392 | return CanEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI); |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 393 | } |
| 394 | break; |
| 395 | case Instruction::LShr: |
| 396 | // If this is a truncate of a logical shr, we can truncate it to a smaller |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 397 | // lshr iff we know that the bits we would otherwise be shifting in are |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 398 | // already zeros. |
| 399 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1))) { |
| 400 | uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits(); |
| 401 | uint32_t BitWidth = Ty->getScalarSizeInBits(); |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 402 | if (IC.MaskedValueIsZero(I->getOperand(0), |
| 403 | APInt::getHighBitsSet(OrigBitWidth, OrigBitWidth-BitWidth), 0, CxtI) && |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 404 | CI->getLimitedValue(BitWidth) < BitWidth) { |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 405 | return CanEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI); |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 406 | } |
| 407 | } |
| 408 | break; |
| 409 | case Instruction::Trunc: |
| 410 | // trunc(trunc(x)) -> trunc(x) |
| 411 | return true; |
Chris Lattner | 7398434 | 2010-08-27 20:32:06 +0000 | [diff] [blame] | 412 | case Instruction::ZExt: |
| 413 | case Instruction::SExt: |
| 414 | // trunc(ext(x)) -> ext(x) if the source type is smaller than the new dest |
| 415 | // trunc(ext(x)) -> trunc(x) if the source type is larger than the new dest |
| 416 | return true; |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 417 | case Instruction::Select: { |
| 418 | SelectInst *SI = cast<SelectInst>(I); |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 419 | return CanEvaluateTruncated(SI->getTrueValue(), Ty, IC, CxtI) && |
| 420 | CanEvaluateTruncated(SI->getFalseValue(), Ty, IC, CxtI); |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 421 | } |
| 422 | case Instruction::PHI: { |
| 423 | // We can change a phi if we can change all operands. Note that we never |
| 424 | // get into trouble with cyclic PHIs here because we only consider |
| 425 | // instructions with a single use. |
| 426 | PHINode *PN = cast<PHINode>(I); |
| 427 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 428 | if (!CanEvaluateTruncated(PN->getIncomingValue(i), Ty, IC, CxtI)) |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 429 | return false; |
| 430 | return true; |
| 431 | } |
| 432 | default: |
| 433 | // TODO: Can handle more cases here. |
| 434 | break; |
| 435 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 436 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 437 | return false; |
| 438 | } |
| 439 | |
| 440 | Instruction *InstCombiner::visitTrunc(TruncInst &CI) { |
Chris Lattner | 883550a | 2010-01-10 01:00:46 +0000 | [diff] [blame] | 441 | if (Instruction *Result = commonCastTransforms(CI)) |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 442 | return Result; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 443 | |
| 444 | // See if we can simplify any instructions used by the input whose sole |
Chris Lattner | 883550a | 2010-01-10 01:00:46 +0000 | [diff] [blame] | 445 | // purpose is to compute bits we don't care about. |
| 446 | if (SimplifyDemandedInstructionBits(CI)) |
| 447 | return &CI; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 448 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 449 | Value *Src = CI.getOperand(0); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 450 | Type *DestTy = CI.getType(), *SrcTy = Src->getType(); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 451 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 452 | // Attempt to truncate the entire input expression tree to the destination |
| 453 | // type. Only do this if the dest type is a simple type, don't convert the |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 454 | // expression tree to something weird like i93 unless the source is also |
| 455 | // strange. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 456 | if ((DestTy->isVectorTy() || ShouldChangeType(SrcTy, DestTy)) && |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 457 | CanEvaluateTruncated(Src, DestTy, *this, &CI)) { |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 458 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 459 | // If this cast is a truncate, evaluting in a different type always |
Chris Lattner | 8600dd3 | 2010-01-05 23:00:30 +0000 | [diff] [blame] | 460 | // eliminates the cast, so it is always a win. |
Chris Lattner | 3057c37 | 2010-01-07 23:41:00 +0000 | [diff] [blame] | 461 | DEBUG(dbgs() << "ICE: EvaluateInDifferentType converting expression type" |
Dan Gohman | a4abd03 | 2010-05-25 21:50:35 +0000 | [diff] [blame] | 462 | " to avoid cast: " << CI << '\n'); |
Chris Lattner | 3057c37 | 2010-01-07 23:41:00 +0000 | [diff] [blame] | 463 | Value *Res = EvaluateInDifferentType(Src, DestTy, false); |
| 464 | assert(Res->getType() == DestTy); |
| 465 | return ReplaceInstUsesWith(CI, Res); |
| 466 | } |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 467 | |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 468 | // Canonicalize trunc x to i1 -> (icmp ne (and x, 1), 0), likewise for vector. |
| 469 | if (DestTy->getScalarSizeInBits() == 1) { |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 470 | Constant *One = ConstantInt::get(Src->getType(), 1); |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 471 | Src = Builder->CreateAnd(Src, One); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 472 | Value *Zero = Constant::getNullValue(Src->getType()); |
| 473 | return new ICmpInst(ICmpInst::ICMP_NE, Src, Zero); |
| 474 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 475 | |
Chris Lattner | 90cd746 | 2010-08-27 18:31:05 +0000 | [diff] [blame] | 476 | // Transform trunc(lshr (zext A), Cst) to eliminate one type conversion. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 477 | Value *A = nullptr; ConstantInt *Cst = nullptr; |
Chris Lattner | 9c10d58 | 2011-01-15 06:32:33 +0000 | [diff] [blame] | 478 | if (Src->hasOneUse() && |
| 479 | match(Src, m_LShr(m_ZExt(m_Value(A)), m_ConstantInt(Cst)))) { |
Chris Lattner | 90cd746 | 2010-08-27 18:31:05 +0000 | [diff] [blame] | 480 | // We have three types to worry about here, the type of A, the source of |
| 481 | // the truncate (MidSize), and the destination of the truncate. We know that |
| 482 | // ASize < MidSize and MidSize > ResultSize, but don't know the relation |
| 483 | // between ASize and ResultSize. |
| 484 | unsigned ASize = A->getType()->getPrimitiveSizeInBits(); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 485 | |
Chris Lattner | 90cd746 | 2010-08-27 18:31:05 +0000 | [diff] [blame] | 486 | // If the shift amount is larger than the size of A, then the result is |
| 487 | // known to be zero because all the input bits got shifted out. |
| 488 | if (Cst->getZExtValue() >= ASize) |
| 489 | return ReplaceInstUsesWith(CI, Constant::getNullValue(CI.getType())); |
| 490 | |
| 491 | // Since we're doing an lshr and a zero extend, and know that the shift |
| 492 | // amount is smaller than ASize, it is always safe to do the shift in A's |
| 493 | // type, then zero extend or truncate to the result. |
| 494 | Value *Shift = Builder->CreateLShr(A, Cst->getZExtValue()); |
| 495 | Shift->takeName(Src); |
| 496 | return CastInst::CreateIntegerCast(Shift, CI.getType(), false); |
| 497 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 498 | |
Chris Lattner | 9c10d58 | 2011-01-15 06:32:33 +0000 | [diff] [blame] | 499 | // Transform "trunc (and X, cst)" -> "and (trunc X), cst" so long as the dest |
| 500 | // type isn't non-native. |
| 501 | if (Src->hasOneUse() && isa<IntegerType>(Src->getType()) && |
| 502 | ShouldChangeType(Src->getType(), CI.getType()) && |
| 503 | match(Src, m_And(m_Value(A), m_ConstantInt(Cst)))) { |
| 504 | Value *NewTrunc = Builder->CreateTrunc(A, CI.getType(), A->getName()+".tr"); |
| 505 | return BinaryOperator::CreateAnd(NewTrunc, |
| 506 | ConstantExpr::getTrunc(Cst, CI.getType())); |
| 507 | } |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 508 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 509 | return nullptr; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | /// transformZExtICmp - Transform (zext icmp) to bitwise / integer operations |
| 513 | /// in order to eliminate the icmp. |
| 514 | Instruction *InstCombiner::transformZExtICmp(ICmpInst *ICI, Instruction &CI, |
| 515 | bool DoXform) { |
| 516 | // If we are just checking for a icmp eq of a single bit and zext'ing it |
| 517 | // to an integer, then shift the bit to the appropriate place and then |
| 518 | // cast to integer to avoid the comparison. |
| 519 | if (ConstantInt *Op1C = dyn_cast<ConstantInt>(ICI->getOperand(1))) { |
| 520 | const APInt &Op1CV = Op1C->getValue(); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 521 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 522 | // zext (x <s 0) to i32 --> x>>u31 true if signbit set. |
| 523 | // zext (x >s -1) to i32 --> (x>>u31)^1 true if signbit clear. |
| 524 | if ((ICI->getPredicate() == ICmpInst::ICMP_SLT && Op1CV == 0) || |
| 525 | (ICI->getPredicate() == ICmpInst::ICMP_SGT &&Op1CV.isAllOnesValue())) { |
| 526 | if (!DoXform) return ICI; |
| 527 | |
| 528 | Value *In = ICI->getOperand(0); |
| 529 | Value *Sh = ConstantInt::get(In->getType(), |
| 530 | In->getType()->getScalarSizeInBits()-1); |
| 531 | In = Builder->CreateLShr(In, Sh, In->getName()+".lobit"); |
| 532 | if (In->getType() != CI.getType()) |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 533 | In = Builder->CreateIntCast(In, CI.getType(), false/*ZExt*/); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 534 | |
| 535 | if (ICI->getPredicate() == ICmpInst::ICMP_SGT) { |
| 536 | Constant *One = ConstantInt::get(In->getType(), 1); |
| 537 | In = Builder->CreateXor(In, One, In->getName()+".not"); |
| 538 | } |
| 539 | |
| 540 | return ReplaceInstUsesWith(CI, In); |
| 541 | } |
Chad Rosier | 385d9f6 | 2011-11-30 01:59:59 +0000 | [diff] [blame] | 542 | |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 543 | // zext (X == 0) to i32 --> X^1 iff X has only the low bit set. |
| 544 | // zext (X == 0) to i32 --> (X>>1)^1 iff X has only the 2nd bit set. |
| 545 | // zext (X == 1) to i32 --> X iff X has only the low bit set. |
| 546 | // zext (X == 2) to i32 --> X>>1 iff X has only the 2nd bit set. |
| 547 | // zext (X != 0) to i32 --> X iff X has only the low bit set. |
| 548 | // zext (X != 0) to i32 --> X>>1 iff X has only the 2nd bit set. |
| 549 | // zext (X != 1) to i32 --> X^1 iff X has only the low bit set. |
| 550 | // zext (X != 2) to i32 --> (X>>1)^1 iff X has only the 2nd bit set. |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 551 | if ((Op1CV == 0 || Op1CV.isPowerOf2()) && |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 552 | // This only works for EQ and NE |
| 553 | ICI->isEquality()) { |
| 554 | // If Op1C some other power of two, convert: |
| 555 | uint32_t BitWidth = Op1C->getType()->getBitWidth(); |
| 556 | APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0); |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 557 | computeKnownBits(ICI->getOperand(0), KnownZero, KnownOne, 0, &CI); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 558 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 559 | APInt KnownZeroMask(~KnownZero); |
| 560 | if (KnownZeroMask.isPowerOf2()) { // Exactly 1 possible 1? |
| 561 | if (!DoXform) return ICI; |
| 562 | |
| 563 | bool isNE = ICI->getPredicate() == ICmpInst::ICMP_NE; |
| 564 | if (Op1CV != 0 && (Op1CV != KnownZeroMask)) { |
| 565 | // (X&4) == 2 --> false |
| 566 | // (X&4) != 2 --> true |
| 567 | Constant *Res = ConstantInt::get(Type::getInt1Ty(CI.getContext()), |
| 568 | isNE); |
| 569 | Res = ConstantExpr::getZExt(Res, CI.getType()); |
| 570 | return ReplaceInstUsesWith(CI, Res); |
| 571 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 572 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 573 | uint32_t ShiftAmt = KnownZeroMask.logBase2(); |
| 574 | Value *In = ICI->getOperand(0); |
| 575 | if (ShiftAmt) { |
| 576 | // Perform a logical shr by shiftamt. |
| 577 | // Insert the shift to put the result in the low bit. |
| 578 | In = Builder->CreateLShr(In, ConstantInt::get(In->getType(),ShiftAmt), |
| 579 | In->getName()+".lobit"); |
| 580 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 581 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 582 | if ((Op1CV != 0) == isNE) { // Toggle the low bit. |
| 583 | Constant *One = ConstantInt::get(In->getType(), 1); |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 584 | In = Builder->CreateXor(In, One); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 585 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 586 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 587 | if (CI.getType() == In->getType()) |
| 588 | return ReplaceInstUsesWith(CI, In); |
Chris Lattner | 18d7fc8 | 2010-08-27 22:24:38 +0000 | [diff] [blame] | 589 | return CastInst::CreateIntegerCast(In, CI.getType(), false/*ZExt*/); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 590 | } |
| 591 | } |
| 592 | } |
| 593 | |
| 594 | // icmp ne A, B is equal to xor A, B when A and B only really have one bit. |
| 595 | // It is also profitable to transform icmp eq into not(xor(A, B)) because that |
| 596 | // may lead to additional simplifications. |
| 597 | if (ICI->isEquality() && CI.getType() == ICI->getOperand(0)->getType()) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 598 | if (IntegerType *ITy = dyn_cast<IntegerType>(CI.getType())) { |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 599 | uint32_t BitWidth = ITy->getBitWidth(); |
| 600 | Value *LHS = ICI->getOperand(0); |
| 601 | Value *RHS = ICI->getOperand(1); |
| 602 | |
| 603 | APInt KnownZeroLHS(BitWidth, 0), KnownOneLHS(BitWidth, 0); |
| 604 | APInt KnownZeroRHS(BitWidth, 0), KnownOneRHS(BitWidth, 0); |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 605 | computeKnownBits(LHS, KnownZeroLHS, KnownOneLHS, 0, &CI); |
| 606 | computeKnownBits(RHS, KnownZeroRHS, KnownOneRHS, 0, &CI); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 607 | |
| 608 | if (KnownZeroLHS == KnownZeroRHS && KnownOneLHS == KnownOneRHS) { |
| 609 | APInt KnownBits = KnownZeroLHS | KnownOneLHS; |
| 610 | APInt UnknownBit = ~KnownBits; |
| 611 | if (UnknownBit.countPopulation() == 1) { |
| 612 | if (!DoXform) return ICI; |
| 613 | |
| 614 | Value *Result = Builder->CreateXor(LHS, RHS); |
| 615 | |
| 616 | // Mask off any bits that are set and won't be shifted away. |
| 617 | if (KnownOneLHS.uge(UnknownBit)) |
| 618 | Result = Builder->CreateAnd(Result, |
| 619 | ConstantInt::get(ITy, UnknownBit)); |
| 620 | |
| 621 | // Shift the bit we're testing down to the lsb. |
| 622 | Result = Builder->CreateLShr( |
| 623 | Result, ConstantInt::get(ITy, UnknownBit.countTrailingZeros())); |
| 624 | |
| 625 | if (ICI->getPredicate() == ICmpInst::ICMP_EQ) |
| 626 | Result = Builder->CreateXor(Result, ConstantInt::get(ITy, 1)); |
| 627 | Result->takeName(ICI); |
| 628 | return ReplaceInstUsesWith(CI, Result); |
| 629 | } |
| 630 | } |
| 631 | } |
| 632 | } |
| 633 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 634 | return nullptr; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 635 | } |
| 636 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 637 | /// CanEvaluateZExtd - Determine if the specified value can be computed in the |
Chris Lattner | 172630a | 2010-01-11 02:43:35 +0000 | [diff] [blame] | 638 | /// specified wider type and produce the same low bits. If not, return false. |
| 639 | /// |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 640 | /// If this function returns true, it can also return a non-zero number of bits |
| 641 | /// (in BitsToClear) which indicates that the value it computes is correct for |
| 642 | /// the zero extend, but that the additional BitsToClear bits need to be zero'd |
| 643 | /// out. For example, to promote something like: |
| 644 | /// |
| 645 | /// %B = trunc i64 %A to i32 |
| 646 | /// %C = lshr i32 %B, 8 |
| 647 | /// %E = zext i32 %C to i64 |
| 648 | /// |
| 649 | /// CanEvaluateZExtd for the 'lshr' will return true, and BitsToClear will be |
| 650 | /// set to 8 to indicate that the promoted value needs to have bits 24-31 |
| 651 | /// cleared in addition to bits 32-63. Since an 'and' will be generated to |
| 652 | /// clear the top bits anyway, doing this has no extra cost. |
| 653 | /// |
Chris Lattner | 172630a | 2010-01-11 02:43:35 +0000 | [diff] [blame] | 654 | /// This function works on both vectors and scalars. |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 655 | static bool CanEvaluateZExtd(Value *V, Type *Ty, unsigned &BitsToClear, |
| 656 | InstCombiner &IC, Instruction *CxtI) { |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 657 | BitsToClear = 0; |
Chris Lattner | b7be7cc | 2010-01-10 02:50:04 +0000 | [diff] [blame] | 658 | if (isa<Constant>(V)) |
| 659 | return true; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 660 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 661 | Instruction *I = dyn_cast<Instruction>(V); |
Chris Lattner | b7be7cc | 2010-01-10 02:50:04 +0000 | [diff] [blame] | 662 | if (!I) return false; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 663 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 664 | // If the input is a truncate from the destination type, we can trivially |
Jakob Stoklund Olesen | c5c4e96 | 2012-06-22 16:36:43 +0000 | [diff] [blame] | 665 | // eliminate it. |
| 666 | if (isa<TruncInst>(I) && I->getOperand(0)->getType() == Ty) |
Chris Lattner | b7be7cc | 2010-01-10 02:50:04 +0000 | [diff] [blame] | 667 | return true; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 668 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 669 | // We can't extend or shrink something that has multiple uses: doing so would |
| 670 | // require duplicating the instruction in general, which isn't profitable. |
Chris Lattner | b7be7cc | 2010-01-10 02:50:04 +0000 | [diff] [blame] | 671 | if (!I->hasOneUse()) return false; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 672 | |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 673 | unsigned Opc = I->getOpcode(), Tmp; |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 674 | switch (Opc) { |
Chris Lattner | 39d2daa | 2010-01-10 20:25:54 +0000 | [diff] [blame] | 675 | case Instruction::ZExt: // zext(zext(x)) -> zext(x). |
| 676 | case Instruction::SExt: // zext(sext(x)) -> sext(x). |
| 677 | case Instruction::Trunc: // zext(trunc(x)) -> trunc(x) or zext(x) |
| 678 | return true; |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 679 | case Instruction::And: |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 680 | case Instruction::Or: |
| 681 | case Instruction::Xor: |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 682 | case Instruction::Add: |
| 683 | case Instruction::Sub: |
| 684 | case Instruction::Mul: |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 685 | if (!CanEvaluateZExtd(I->getOperand(0), Ty, BitsToClear, IC, CxtI) || |
| 686 | !CanEvaluateZExtd(I->getOperand(1), Ty, Tmp, IC, CxtI)) |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 687 | return false; |
| 688 | // These can all be promoted if neither operand has 'bits to clear'. |
| 689 | if (BitsToClear == 0 && Tmp == 0) |
| 690 | return true; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 691 | |
Chris Lattner | 0a85420 | 2010-01-11 04:05:13 +0000 | [diff] [blame] | 692 | // If the operation is an AND/OR/XOR and the bits to clear are zero in the |
| 693 | // other side, BitsToClear is ok. |
| 694 | if (Tmp == 0 && |
| 695 | (Opc == Instruction::And || Opc == Instruction::Or || |
| 696 | Opc == Instruction::Xor)) { |
| 697 | // We use MaskedValueIsZero here for generality, but the case we care |
| 698 | // about the most is constant RHS. |
| 699 | unsigned VSize = V->getType()->getScalarSizeInBits(); |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 700 | if (IC.MaskedValueIsZero(I->getOperand(1), |
| 701 | APInt::getHighBitsSet(VSize, BitsToClear), |
| 702 | 0, CxtI)) |
Chris Lattner | 0a85420 | 2010-01-11 04:05:13 +0000 | [diff] [blame] | 703 | return true; |
| 704 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 705 | |
Chris Lattner | 0a85420 | 2010-01-11 04:05:13 +0000 | [diff] [blame] | 706 | // Otherwise, we don't know how to analyze this BitsToClear case yet. |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 707 | return false; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 708 | |
Benjamin Kramer | 14e915f | 2013-05-10 16:26:37 +0000 | [diff] [blame] | 709 | case Instruction::Shl: |
| 710 | // We can promote shl(x, cst) if we can promote x. Since shl overwrites the |
| 711 | // upper bits we can reduce BitsToClear by the shift amount. |
| 712 | if (ConstantInt *Amt = dyn_cast<ConstantInt>(I->getOperand(1))) { |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 713 | if (!CanEvaluateZExtd(I->getOperand(0), Ty, BitsToClear, IC, CxtI)) |
Benjamin Kramer | 14e915f | 2013-05-10 16:26:37 +0000 | [diff] [blame] | 714 | return false; |
| 715 | uint64_t ShiftAmt = Amt->getZExtValue(); |
| 716 | BitsToClear = ShiftAmt < BitsToClear ? BitsToClear - ShiftAmt : 0; |
| 717 | return true; |
| 718 | } |
| 719 | return false; |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 720 | case Instruction::LShr: |
| 721 | // We can promote lshr(x, cst) if we can promote x. This requires the |
| 722 | // ultimate 'and' to clear out the high zero bits we're clearing out though. |
| 723 | if (ConstantInt *Amt = dyn_cast<ConstantInt>(I->getOperand(1))) { |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 724 | if (!CanEvaluateZExtd(I->getOperand(0), Ty, BitsToClear, IC, CxtI)) |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 725 | return false; |
| 726 | BitsToClear += Amt->getZExtValue(); |
| 727 | if (BitsToClear > V->getType()->getScalarSizeInBits()) |
| 728 | BitsToClear = V->getType()->getScalarSizeInBits(); |
| 729 | return true; |
| 730 | } |
| 731 | // Cannot promote variable LSHR. |
| 732 | return false; |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 733 | case Instruction::Select: |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 734 | if (!CanEvaluateZExtd(I->getOperand(1), Ty, Tmp, IC, CxtI) || |
| 735 | !CanEvaluateZExtd(I->getOperand(2), Ty, BitsToClear, IC, CxtI) || |
Chris Lattner | 0a85420 | 2010-01-11 04:05:13 +0000 | [diff] [blame] | 736 | // TODO: If important, we could handle the case when the BitsToClear are |
| 737 | // known zero in the disagreeing side. |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 738 | Tmp != BitsToClear) |
| 739 | return false; |
| 740 | return true; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 741 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 742 | case Instruction::PHI: { |
| 743 | // We can change a phi if we can change all operands. Note that we never |
| 744 | // get into trouble with cyclic PHIs here because we only consider |
| 745 | // instructions with a single use. |
| 746 | PHINode *PN = cast<PHINode>(I); |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 747 | if (!CanEvaluateZExtd(PN->getIncomingValue(0), Ty, BitsToClear, IC, CxtI)) |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 748 | return false; |
Chris Lattner | b7be7cc | 2010-01-10 02:50:04 +0000 | [diff] [blame] | 749 | for (unsigned i = 1, e = PN->getNumIncomingValues(); i != e; ++i) |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 750 | if (!CanEvaluateZExtd(PN->getIncomingValue(i), Ty, Tmp, IC, CxtI) || |
Chris Lattner | 0a85420 | 2010-01-11 04:05:13 +0000 | [diff] [blame] | 751 | // TODO: If important, we could handle the case when the BitsToClear |
| 752 | // are known zero in the disagreeing input. |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 753 | Tmp != BitsToClear) |
| 754 | return false; |
Chris Lattner | b7be7cc | 2010-01-10 02:50:04 +0000 | [diff] [blame] | 755 | return true; |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 756 | } |
| 757 | default: |
| 758 | // TODO: Can handle more cases here. |
Chris Lattner | b7be7cc | 2010-01-10 02:50:04 +0000 | [diff] [blame] | 759 | return false; |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 760 | } |
| 761 | } |
| 762 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 763 | Instruction *InstCombiner::visitZExt(ZExtInst &CI) { |
Nick Lewycky | 80ea003 | 2013-01-14 20:56:10 +0000 | [diff] [blame] | 764 | // If this zero extend is only used by a truncate, let the truncate be |
Chris Lattner | 49d2c97 | 2010-01-10 02:39:31 +0000 | [diff] [blame] | 765 | // eliminated before we try to optimize this zext. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 766 | if (CI.hasOneUse() && isa<TruncInst>(CI.user_back())) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 767 | return nullptr; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 768 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 769 | // If one of the common conversion will work, do it. |
Chris Lattner | 883550a | 2010-01-10 01:00:46 +0000 | [diff] [blame] | 770 | if (Instruction *Result = commonCastTransforms(CI)) |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 771 | return Result; |
| 772 | |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 773 | // See if we can simplify any instructions used by the input whose sole |
Chris Lattner | 883550a | 2010-01-10 01:00:46 +0000 | [diff] [blame] | 774 | // purpose is to compute bits we don't care about. |
| 775 | if (SimplifyDemandedInstructionBits(CI)) |
| 776 | return &CI; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 777 | |
Chris Lattner | 883550a | 2010-01-10 01:00:46 +0000 | [diff] [blame] | 778 | Value *Src = CI.getOperand(0); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 779 | Type *SrcTy = Src->getType(), *DestTy = CI.getType(); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 780 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 781 | // Attempt to extend the entire input expression tree to the destination |
| 782 | // type. Only do this if the dest type is a simple type, don't convert the |
| 783 | // expression tree to something weird like i93 unless the source is also |
| 784 | // strange. |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 785 | unsigned BitsToClear; |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 786 | if ((DestTy->isVectorTy() || ShouldChangeType(SrcTy, DestTy)) && |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 787 | CanEvaluateZExtd(Src, DestTy, BitsToClear, *this, &CI)) { |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 788 | assert(BitsToClear < SrcTy->getScalarSizeInBits() && |
| 789 | "Unreasonable BitsToClear"); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 790 | |
Chris Lattner | 49d2c97 | 2010-01-10 02:39:31 +0000 | [diff] [blame] | 791 | // Okay, we can transform this! Insert the new expression now. |
| 792 | DEBUG(dbgs() << "ICE: EvaluateInDifferentType converting expression type" |
| 793 | " to avoid zero extend: " << CI); |
| 794 | Value *Res = EvaluateInDifferentType(Src, DestTy, false); |
| 795 | assert(Res->getType() == DestTy); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 796 | |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 797 | uint32_t SrcBitsKept = SrcTy->getScalarSizeInBits()-BitsToClear; |
| 798 | uint32_t DestBitSize = DestTy->getScalarSizeInBits(); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 799 | |
Chris Lattner | 49d2c97 | 2010-01-10 02:39:31 +0000 | [diff] [blame] | 800 | // If the high bits are already filled with zeros, just replace this |
| 801 | // cast with the result. |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 802 | if (MaskedValueIsZero(Res, |
| 803 | APInt::getHighBitsSet(DestBitSize, |
| 804 | DestBitSize-SrcBitsKept), |
| 805 | 0, &CI)) |
Chris Lattner | 49d2c97 | 2010-01-10 02:39:31 +0000 | [diff] [blame] | 806 | return ReplaceInstUsesWith(CI, Res); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 807 | |
Chris Lattner | 49d2c97 | 2010-01-10 02:39:31 +0000 | [diff] [blame] | 808 | // We need to emit an AND to clear the high bits. |
Chris Lattner | 39d2daa | 2010-01-10 20:25:54 +0000 | [diff] [blame] | 809 | Constant *C = ConstantInt::get(Res->getType(), |
Chris Lattner | 12bd899 | 2010-01-11 03:32:00 +0000 | [diff] [blame] | 810 | APInt::getLowBitsSet(DestBitSize, SrcBitsKept)); |
Chris Lattner | 49d2c97 | 2010-01-10 02:39:31 +0000 | [diff] [blame] | 811 | return BinaryOperator::CreateAnd(Res, C); |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 812 | } |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 813 | |
| 814 | // If this is a TRUNC followed by a ZEXT then we are dealing with integral |
| 815 | // types and if the sizes are just right we can convert this into a logical |
| 816 | // 'and' which will be much cheaper than the pair of casts. |
| 817 | if (TruncInst *CSrc = dyn_cast<TruncInst>(Src)) { // A->B->C cast |
Chris Lattner | d850942 | 2010-01-10 07:08:30 +0000 | [diff] [blame] | 818 | // TODO: Subsume this into EvaluateInDifferentType. |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 819 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 820 | // Get the sizes of the types involved. We know that the intermediate type |
| 821 | // will be smaller than A or C, but don't know the relation between A and C. |
| 822 | Value *A = CSrc->getOperand(0); |
| 823 | unsigned SrcSize = A->getType()->getScalarSizeInBits(); |
| 824 | unsigned MidSize = CSrc->getType()->getScalarSizeInBits(); |
| 825 | unsigned DstSize = CI.getType()->getScalarSizeInBits(); |
| 826 | // If we're actually extending zero bits, then if |
| 827 | // SrcSize < DstSize: zext(a & mask) |
| 828 | // SrcSize == DstSize: a & mask |
| 829 | // SrcSize > DstSize: trunc(a) & mask |
| 830 | if (SrcSize < DstSize) { |
| 831 | APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize)); |
| 832 | Constant *AndConst = ConstantInt::get(A->getType(), AndValue); |
| 833 | Value *And = Builder->CreateAnd(A, AndConst, CSrc->getName()+".mask"); |
| 834 | return new ZExtInst(And, CI.getType()); |
| 835 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 836 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 837 | if (SrcSize == DstSize) { |
| 838 | APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize)); |
| 839 | return BinaryOperator::CreateAnd(A, ConstantInt::get(A->getType(), |
| 840 | AndValue)); |
| 841 | } |
| 842 | if (SrcSize > DstSize) { |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 843 | Value *Trunc = Builder->CreateTrunc(A, CI.getType()); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 844 | APInt AndValue(APInt::getLowBitsSet(DstSize, MidSize)); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 845 | return BinaryOperator::CreateAnd(Trunc, |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 846 | ConstantInt::get(Trunc->getType(), |
Chris Lattner | d850942 | 2010-01-10 07:08:30 +0000 | [diff] [blame] | 847 | AndValue)); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 848 | } |
| 849 | } |
| 850 | |
| 851 | if (ICmpInst *ICI = dyn_cast<ICmpInst>(Src)) |
| 852 | return transformZExtICmp(ICI, CI); |
| 853 | |
| 854 | BinaryOperator *SrcI = dyn_cast<BinaryOperator>(Src); |
| 855 | if (SrcI && SrcI->getOpcode() == Instruction::Or) { |
| 856 | // zext (or icmp, icmp) --> or (zext icmp), (zext icmp) if at least one |
| 857 | // of the (zext icmp) will be transformed. |
| 858 | ICmpInst *LHS = dyn_cast<ICmpInst>(SrcI->getOperand(0)); |
| 859 | ICmpInst *RHS = dyn_cast<ICmpInst>(SrcI->getOperand(1)); |
| 860 | if (LHS && RHS && LHS->hasOneUse() && RHS->hasOneUse() && |
| 861 | (transformZExtICmp(LHS, CI, false) || |
| 862 | transformZExtICmp(RHS, CI, false))) { |
| 863 | Value *LCast = Builder->CreateZExt(LHS, CI.getType(), LHS->getName()); |
| 864 | Value *RCast = Builder->CreateZExt(RHS, CI.getType(), RHS->getName()); |
| 865 | return BinaryOperator::Create(Instruction::Or, LCast, RCast); |
| 866 | } |
| 867 | } |
| 868 | |
Benjamin Kramer | b80e169 | 2014-01-19 20:05:13 +0000 | [diff] [blame] | 869 | // zext(trunc(X) & C) -> (X & zext(C)). |
| 870 | Constant *C; |
| 871 | Value *X; |
| 872 | if (SrcI && |
| 873 | match(SrcI, m_OneUse(m_And(m_Trunc(m_Value(X)), m_Constant(C)))) && |
| 874 | X->getType() == CI.getType()) |
| 875 | return BinaryOperator::CreateAnd(X, ConstantExpr::getZExt(C, CI.getType())); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 876 | |
Benjamin Kramer | b80e169 | 2014-01-19 20:05:13 +0000 | [diff] [blame] | 877 | // zext((trunc(X) & C) ^ C) -> ((X & zext(C)) ^ zext(C)). |
| 878 | Value *And; |
| 879 | if (SrcI && match(SrcI, m_OneUse(m_Xor(m_Value(And), m_Constant(C)))) && |
| 880 | match(And, m_OneUse(m_And(m_Trunc(m_Value(X)), m_Specific(C)))) && |
| 881 | X->getType() == CI.getType()) { |
| 882 | Constant *ZC = ConstantExpr::getZExt(C, CI.getType()); |
| 883 | return BinaryOperator::CreateXor(Builder->CreateAnd(X, ZC), ZC); |
| 884 | } |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 885 | |
Chris Lattner | fd7e42b | 2010-01-05 21:04:47 +0000 | [diff] [blame] | 886 | // zext (xor i1 X, true) to i32 --> xor (zext i1 X to i32), 1 |
Benjamin Kramer | b80e169 | 2014-01-19 20:05:13 +0000 | [diff] [blame] | 887 | if (SrcI && SrcI->hasOneUse() && |
| 888 | SrcI->getType()->getScalarType()->isIntegerTy(1) && |
| 889 | match(SrcI, m_Not(m_Value(X))) && (!X->hasOneUse() || !isa<CmpInst>(X))) { |
Chris Lattner | fd7e42b | 2010-01-05 21:04:47 +0000 | [diff] [blame] | 890 | Value *New = Builder->CreateZExt(X, CI.getType()); |
| 891 | return BinaryOperator::CreateXor(New, ConstantInt::get(CI.getType(), 1)); |
| 892 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 893 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 894 | return nullptr; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 895 | } |
| 896 | |
Benjamin Kramer | 398b8c5 | 2011-04-01 20:09:03 +0000 | [diff] [blame] | 897 | /// transformSExtICmp - Transform (sext icmp) to bitwise / integer operations |
| 898 | /// in order to eliminate the icmp. |
| 899 | Instruction *InstCombiner::transformSExtICmp(ICmpInst *ICI, Instruction &CI) { |
| 900 | Value *Op0 = ICI->getOperand(0), *Op1 = ICI->getOperand(1); |
| 901 | ICmpInst::Predicate Pred = ICI->getPredicate(); |
| 902 | |
David Majnemer | c8bdd23 | 2014-10-27 05:47:49 +0000 | [diff] [blame] | 903 | // Don't bother if Op1 isn't of vector or integer type. |
| 904 | if (!Op1->getType()->isIntOrIntVectorTy()) |
| 905 | return nullptr; |
| 906 | |
Benjamin Kramer | b80e169 | 2014-01-19 20:05:13 +0000 | [diff] [blame] | 907 | if (Constant *Op1C = dyn_cast<Constant>(Op1)) { |
Benjamin Kramer | 8b94c29 | 2011-04-01 22:29:18 +0000 | [diff] [blame] | 908 | // (x <s 0) ? -1 : 0 -> ashr x, 31 -> all ones if negative |
| 909 | // (x >s -1) ? -1 : 0 -> not (ashr x, 31) -> all ones if positive |
Benjamin Kramer | b80e169 | 2014-01-19 20:05:13 +0000 | [diff] [blame] | 910 | if ((Pred == ICmpInst::ICMP_SLT && Op1C->isNullValue()) || |
Benjamin Kramer | 398b8c5 | 2011-04-01 20:09:03 +0000 | [diff] [blame] | 911 | (Pred == ICmpInst::ICMP_SGT && Op1C->isAllOnesValue())) { |
| 912 | |
| 913 | Value *Sh = ConstantInt::get(Op0->getType(), |
| 914 | Op0->getType()->getScalarSizeInBits()-1); |
| 915 | Value *In = Builder->CreateAShr(Op0, Sh, Op0->getName()+".lobit"); |
| 916 | if (In->getType() != CI.getType()) |
Benjamin Kramer | 547b6c5 | 2011-09-27 20:39:19 +0000 | [diff] [blame] | 917 | In = Builder->CreateIntCast(In, CI.getType(), true/*SExt*/); |
Benjamin Kramer | 398b8c5 | 2011-04-01 20:09:03 +0000 | [diff] [blame] | 918 | |
| 919 | if (Pred == ICmpInst::ICMP_SGT) |
| 920 | In = Builder->CreateNot(In, In->getName()+".not"); |
| 921 | return ReplaceInstUsesWith(CI, In); |
| 922 | } |
Benjamin Kramer | b80e169 | 2014-01-19 20:05:13 +0000 | [diff] [blame] | 923 | } |
Benjamin Kramer | d121765 | 2011-04-01 20:09:10 +0000 | [diff] [blame] | 924 | |
Benjamin Kramer | b80e169 | 2014-01-19 20:05:13 +0000 | [diff] [blame] | 925 | if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) { |
Benjamin Kramer | d121765 | 2011-04-01 20:09:10 +0000 | [diff] [blame] | 926 | // If we know that only one bit of the LHS of the icmp can be set and we |
| 927 | // have an equality comparison with zero or a power of 2, we can transform |
| 928 | // the icmp and sext into bitwise/integer operations. |
Benjamin Kramer | 5cad453 | 2011-04-01 22:22:11 +0000 | [diff] [blame] | 929 | if (ICI->hasOneUse() && |
| 930 | ICI->isEquality() && (Op1C->isZero() || Op1C->getValue().isPowerOf2())){ |
Benjamin Kramer | d121765 | 2011-04-01 20:09:10 +0000 | [diff] [blame] | 931 | unsigned BitWidth = Op1C->getType()->getBitWidth(); |
| 932 | APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0); |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 933 | computeKnownBits(Op0, KnownZero, KnownOne, 0, &CI); |
Benjamin Kramer | d121765 | 2011-04-01 20:09:10 +0000 | [diff] [blame] | 934 | |
Benjamin Kramer | ac2d565 | 2011-04-01 20:15:16 +0000 | [diff] [blame] | 935 | APInt KnownZeroMask(~KnownZero); |
| 936 | if (KnownZeroMask.isPowerOf2()) { |
Benjamin Kramer | d121765 | 2011-04-01 20:09:10 +0000 | [diff] [blame] | 937 | Value *In = ICI->getOperand(0); |
| 938 | |
Benjamin Kramer | 50a281a | 2011-04-02 18:50:58 +0000 | [diff] [blame] | 939 | // If the icmp tests for a known zero bit we can constant fold it. |
| 940 | if (!Op1C->isZero() && Op1C->getValue() != KnownZeroMask) { |
| 941 | Value *V = Pred == ICmpInst::ICMP_NE ? |
| 942 | ConstantInt::getAllOnesValue(CI.getType()) : |
| 943 | ConstantInt::getNullValue(CI.getType()); |
| 944 | return ReplaceInstUsesWith(CI, V); |
| 945 | } |
Benjamin Kramer | 5cad453 | 2011-04-01 22:22:11 +0000 | [diff] [blame] | 946 | |
Benjamin Kramer | d121765 | 2011-04-01 20:09:10 +0000 | [diff] [blame] | 947 | if (!Op1C->isZero() == (Pred == ICmpInst::ICMP_NE)) { |
| 948 | // sext ((x & 2^n) == 0) -> (x >> n) - 1 |
| 949 | // sext ((x & 2^n) != 2^n) -> (x >> n) - 1 |
| 950 | unsigned ShiftAmt = KnownZeroMask.countTrailingZeros(); |
| 951 | // Perform a right shift to place the desired bit in the LSB. |
| 952 | if (ShiftAmt) |
| 953 | In = Builder->CreateLShr(In, |
| 954 | ConstantInt::get(In->getType(), ShiftAmt)); |
| 955 | |
| 956 | // At this point "In" is either 1 or 0. Subtract 1 to turn |
| 957 | // {1, 0} -> {0, -1}. |
| 958 | In = Builder->CreateAdd(In, |
| 959 | ConstantInt::getAllOnesValue(In->getType()), |
| 960 | "sext"); |
| 961 | } else { |
| 962 | // sext ((x & 2^n) != 0) -> (x << bitwidth-n) a>> bitwidth-1 |
Benjamin Kramer | 5cad453 | 2011-04-01 22:22:11 +0000 | [diff] [blame] | 963 | // sext ((x & 2^n) == 2^n) -> (x << bitwidth-n) a>> bitwidth-1 |
Benjamin Kramer | d121765 | 2011-04-01 20:09:10 +0000 | [diff] [blame] | 964 | unsigned ShiftAmt = KnownZeroMask.countLeadingZeros(); |
| 965 | // Perform a left shift to place the desired bit in the MSB. |
| 966 | if (ShiftAmt) |
| 967 | In = Builder->CreateShl(In, |
| 968 | ConstantInt::get(In->getType(), ShiftAmt)); |
| 969 | |
| 970 | // Distribute the bit over the whole bit width. |
| 971 | In = Builder->CreateAShr(In, ConstantInt::get(In->getType(), |
| 972 | BitWidth - 1), "sext"); |
| 973 | } |
| 974 | |
| 975 | if (CI.getType() == In->getType()) |
| 976 | return ReplaceInstUsesWith(CI, In); |
| 977 | return CastInst::CreateIntegerCast(In, CI.getType(), true/*SExt*/); |
| 978 | } |
| 979 | } |
Benjamin Kramer | 398b8c5 | 2011-04-01 20:09:03 +0000 | [diff] [blame] | 980 | } |
| 981 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 982 | return nullptr; |
Benjamin Kramer | 398b8c5 | 2011-04-01 20:09:03 +0000 | [diff] [blame] | 983 | } |
| 984 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 985 | /// CanEvaluateSExtd - Return true if we can take the specified value |
| 986 | /// and return it as type Ty without inserting any new casts and without |
| 987 | /// changing the value of the common low bits. This is used by code that tries |
| 988 | /// to promote integer operations to a wider types will allow us to eliminate |
| 989 | /// the extension. |
| 990 | /// |
Chris Lattner | 1a05fdd | 2010-01-10 07:57:20 +0000 | [diff] [blame] | 991 | /// This function works on both vectors and scalars. |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 992 | /// |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 993 | static bool CanEvaluateSExtd(Value *V, Type *Ty) { |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 994 | assert(V->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits() && |
| 995 | "Can't sign extend type to a smaller type"); |
Chris Lattner | 1a05fdd | 2010-01-10 07:57:20 +0000 | [diff] [blame] | 996 | // If this is a constant, it can be trivially promoted. |
| 997 | if (isa<Constant>(V)) |
| 998 | return true; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 999 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1000 | Instruction *I = dyn_cast<Instruction>(V); |
Chris Lattner | 1a05fdd | 2010-01-10 07:57:20 +0000 | [diff] [blame] | 1001 | if (!I) return false; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1002 | |
Jakob Stoklund Olesen | c5c4e96 | 2012-06-22 16:36:43 +0000 | [diff] [blame] | 1003 | // If this is a truncate from the dest type, we can trivially eliminate it. |
| 1004 | if (isa<TruncInst>(I) && I->getOperand(0)->getType() == Ty) |
Chris Lattner | 1a05fdd | 2010-01-10 07:57:20 +0000 | [diff] [blame] | 1005 | return true; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1006 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1007 | // We can't extend or shrink something that has multiple uses: doing so would |
| 1008 | // require duplicating the instruction in general, which isn't profitable. |
Chris Lattner | 1a05fdd | 2010-01-10 07:57:20 +0000 | [diff] [blame] | 1009 | if (!I->hasOneUse()) return false; |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1010 | |
Chris Lattner | 1a05fdd | 2010-01-10 07:57:20 +0000 | [diff] [blame] | 1011 | switch (I->getOpcode()) { |
Chris Lattner | 7dd540e | 2010-01-10 20:30:41 +0000 | [diff] [blame] | 1012 | case Instruction::SExt: // sext(sext(x)) -> sext(x) |
| 1013 | case Instruction::ZExt: // sext(zext(x)) -> zext(x) |
| 1014 | case Instruction::Trunc: // sext(trunc(x)) -> trunc(x) or sext(x) |
| 1015 | return true; |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1016 | case Instruction::And: |
| 1017 | case Instruction::Or: |
| 1018 | case Instruction::Xor: |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1019 | case Instruction::Add: |
| 1020 | case Instruction::Sub: |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1021 | case Instruction::Mul: |
Chris Lattner | 1a05fdd | 2010-01-10 07:57:20 +0000 | [diff] [blame] | 1022 | // These operators can all arbitrarily be extended if their inputs can. |
Chris Lattner | 172630a | 2010-01-11 02:43:35 +0000 | [diff] [blame] | 1023 | return CanEvaluateSExtd(I->getOperand(0), Ty) && |
| 1024 | CanEvaluateSExtd(I->getOperand(1), Ty); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1025 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1026 | //case Instruction::Shl: TODO |
| 1027 | //case Instruction::LShr: TODO |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1028 | |
Chris Lattner | 1a05fdd | 2010-01-10 07:57:20 +0000 | [diff] [blame] | 1029 | case Instruction::Select: |
Chris Lattner | 172630a | 2010-01-11 02:43:35 +0000 | [diff] [blame] | 1030 | return CanEvaluateSExtd(I->getOperand(1), Ty) && |
| 1031 | CanEvaluateSExtd(I->getOperand(2), Ty); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1032 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1033 | case Instruction::PHI: { |
| 1034 | // We can change a phi if we can change all operands. Note that we never |
| 1035 | // get into trouble with cyclic PHIs here because we only consider |
| 1036 | // instructions with a single use. |
| 1037 | PHINode *PN = cast<PHINode>(I); |
Chris Lattner | 39d2daa | 2010-01-10 20:25:54 +0000 | [diff] [blame] | 1038 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
Chris Lattner | 172630a | 2010-01-11 02:43:35 +0000 | [diff] [blame] | 1039 | if (!CanEvaluateSExtd(PN->getIncomingValue(i), Ty)) return false; |
Chris Lattner | 1a05fdd | 2010-01-10 07:57:20 +0000 | [diff] [blame] | 1040 | return true; |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1041 | } |
| 1042 | default: |
| 1043 | // TODO: Can handle more cases here. |
| 1044 | break; |
| 1045 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1046 | |
Chris Lattner | 1a05fdd | 2010-01-10 07:57:20 +0000 | [diff] [blame] | 1047 | return false; |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1048 | } |
| 1049 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1050 | Instruction *InstCombiner::visitSExt(SExtInst &CI) { |
Arnaud A. de Grandmaison | 2e4df4f | 2013-02-13 00:19:19 +0000 | [diff] [blame] | 1051 | // If this sign extend is only used by a truncate, let the truncate be |
| 1052 | // eliminated before we try to optimize this sext. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1053 | if (CI.hasOneUse() && isa<TruncInst>(CI.user_back())) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1054 | return nullptr; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1055 | |
Chris Lattner | 883550a | 2010-01-10 01:00:46 +0000 | [diff] [blame] | 1056 | if (Instruction *I = commonCastTransforms(CI)) |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1057 | return I; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1058 | |
| 1059 | // See if we can simplify any instructions used by the input whose sole |
Chris Lattner | 883550a | 2010-01-10 01:00:46 +0000 | [diff] [blame] | 1060 | // purpose is to compute bits we don't care about. |
| 1061 | if (SimplifyDemandedInstructionBits(CI)) |
| 1062 | return &CI; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1063 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1064 | Value *Src = CI.getOperand(0); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1065 | Type *SrcTy = Src->getType(), *DestTy = CI.getType(); |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1066 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1067 | // Attempt to extend the entire input expression tree to the destination |
| 1068 | // type. Only do this if the dest type is a simple type, don't convert the |
| 1069 | // expression tree to something weird like i93 unless the source is also |
| 1070 | // strange. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1071 | if ((DestTy->isVectorTy() || ShouldChangeType(SrcTy, DestTy)) && |
Chris Lattner | 172630a | 2010-01-11 02:43:35 +0000 | [diff] [blame] | 1072 | CanEvaluateSExtd(Src, DestTy)) { |
Chris Lattner | 2fff10c | 2010-01-10 07:40:50 +0000 | [diff] [blame] | 1073 | // Okay, we can transform this! Insert the new expression now. |
| 1074 | DEBUG(dbgs() << "ICE: EvaluateInDifferentType converting expression type" |
| 1075 | " to avoid sign extend: " << CI); |
| 1076 | Value *Res = EvaluateInDifferentType(Src, DestTy, true); |
| 1077 | assert(Res->getType() == DestTy); |
| 1078 | |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1079 | uint32_t SrcBitSize = SrcTy->getScalarSizeInBits(); |
| 1080 | uint32_t DestBitSize = DestTy->getScalarSizeInBits(); |
Chris Lattner | 2fff10c | 2010-01-10 07:40:50 +0000 | [diff] [blame] | 1081 | |
| 1082 | // If the high bits are already filled with sign bit, just replace this |
| 1083 | // cast with the result. |
Hal Finkel | 60db058 | 2014-09-07 18:57:58 +0000 | [diff] [blame] | 1084 | if (ComputeNumSignBits(Res, 0, &CI) > DestBitSize - SrcBitSize) |
Chris Lattner | 2fff10c | 2010-01-10 07:40:50 +0000 | [diff] [blame] | 1085 | return ReplaceInstUsesWith(CI, Res); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1086 | |
Chris Lattner | 2fff10c | 2010-01-10 07:40:50 +0000 | [diff] [blame] | 1087 | // We need to emit a shl + ashr to do the sign extend. |
| 1088 | Value *ShAmt = ConstantInt::get(DestTy, DestBitSize-SrcBitSize); |
| 1089 | return BinaryOperator::CreateAShr(Builder->CreateShl(Res, ShAmt, "sext"), |
| 1090 | ShAmt); |
Chris Lattner | c3aca38 | 2010-01-10 00:58:42 +0000 | [diff] [blame] | 1091 | } |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1092 | |
Chris Lattner | 43f2fa6 | 2010-01-18 22:19:16 +0000 | [diff] [blame] | 1093 | // If this input is a trunc from our destination, then turn sext(trunc(x)) |
| 1094 | // into shifts. |
| 1095 | if (TruncInst *TI = dyn_cast<TruncInst>(Src)) |
| 1096 | if (TI->hasOneUse() && TI->getOperand(0)->getType() == DestTy) { |
| 1097 | uint32_t SrcBitSize = SrcTy->getScalarSizeInBits(); |
| 1098 | uint32_t DestBitSize = DestTy->getScalarSizeInBits(); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1099 | |
Chris Lattner | 43f2fa6 | 2010-01-18 22:19:16 +0000 | [diff] [blame] | 1100 | // We need to emit a shl + ashr to do the sign extend. |
| 1101 | Value *ShAmt = ConstantInt::get(DestTy, DestBitSize-SrcBitSize); |
| 1102 | Value *Res = Builder->CreateShl(TI->getOperand(0), ShAmt, "sext"); |
| 1103 | return BinaryOperator::CreateAShr(Res, ShAmt); |
| 1104 | } |
Nate Begeman | 7aa18bf | 2010-12-17 23:12:19 +0000 | [diff] [blame] | 1105 | |
Benjamin Kramer | 398b8c5 | 2011-04-01 20:09:03 +0000 | [diff] [blame] | 1106 | if (ICmpInst *ICI = dyn_cast<ICmpInst>(Src)) |
| 1107 | return transformSExtICmp(ICI, CI); |
Bill Wendling | 5e36055 | 2010-12-17 23:27:41 +0000 | [diff] [blame] | 1108 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1109 | // If the input is a shl/ashr pair of a same constant, then this is a sign |
| 1110 | // extension from a smaller value. If we could trust arbitrary bitwidth |
| 1111 | // integers, we could turn this into a truncate to the smaller bit and then |
| 1112 | // use a sext for the whole extension. Since we don't, look deeper and check |
| 1113 | // for a truncate. If the source and dest are the same type, eliminate the |
| 1114 | // trunc and extend and just do shifts. For example, turn: |
| 1115 | // %a = trunc i32 %i to i8 |
| 1116 | // %b = shl i8 %a, 6 |
| 1117 | // %c = ashr i8 %b, 6 |
| 1118 | // %d = sext i8 %c to i32 |
| 1119 | // into: |
| 1120 | // %a = shl i32 %i, 30 |
| 1121 | // %d = ashr i32 %a, 30 |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1122 | Value *A = nullptr; |
Chris Lattner | c95a7a2 | 2010-01-10 01:04:31 +0000 | [diff] [blame] | 1123 | // TODO: Eventually this could be subsumed by EvaluateInDifferentType. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1124 | ConstantInt *BA = nullptr, *CA = nullptr; |
Chris Lattner | c95a7a2 | 2010-01-10 01:04:31 +0000 | [diff] [blame] | 1125 | if (match(Src, m_AShr(m_Shl(m_Trunc(m_Value(A)), m_ConstantInt(BA)), |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1126 | m_ConstantInt(CA))) && |
Chris Lattner | c95a7a2 | 2010-01-10 01:04:31 +0000 | [diff] [blame] | 1127 | BA == CA && A->getType() == CI.getType()) { |
| 1128 | unsigned MidSize = Src->getType()->getScalarSizeInBits(); |
| 1129 | unsigned SrcDstSize = CI.getType()->getScalarSizeInBits(); |
| 1130 | unsigned ShAmt = CA->getZExtValue()+SrcDstSize-MidSize; |
| 1131 | Constant *ShAmtV = ConstantInt::get(CI.getType(), ShAmt); |
| 1132 | A = Builder->CreateShl(A, ShAmtV, CI.getName()); |
| 1133 | return BinaryOperator::CreateAShr(A, ShAmtV); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1134 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1135 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1136 | return nullptr; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1137 | } |
| 1138 | |
| 1139 | |
| 1140 | /// FitsInFPType - Return a Constant* for the specified FP constant if it fits |
| 1141 | /// in the specified FP type without changing its value. |
| 1142 | static Constant *FitsInFPType(ConstantFP *CFP, const fltSemantics &Sem) { |
| 1143 | bool losesInfo; |
| 1144 | APFloat F = CFP->getValueAPF(); |
| 1145 | (void)F.convert(Sem, APFloat::rmNearestTiesToEven, &losesInfo); |
| 1146 | if (!losesInfo) |
| 1147 | return ConstantFP::get(CFP->getContext(), F); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1148 | return nullptr; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1149 | } |
| 1150 | |
| 1151 | /// LookThroughFPExtensions - If this is an fp extension instruction, look |
| 1152 | /// through it until we get the source value. |
| 1153 | static Value *LookThroughFPExtensions(Value *V) { |
| 1154 | if (Instruction *I = dyn_cast<Instruction>(V)) |
| 1155 | if (I->getOpcode() == Instruction::FPExt) |
| 1156 | return LookThroughFPExtensions(I->getOperand(0)); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1157 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1158 | // If this value is a constant, return the constant in the smallest FP type |
| 1159 | // that can accurately represent it. This allows us to turn |
| 1160 | // (float)((double)X+2.0) into x+2.0f. |
| 1161 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) { |
| 1162 | if (CFP->getType() == Type::getPPC_FP128Ty(V->getContext())) |
| 1163 | return V; // No constant folding of this. |
Dan Gohman | 518cda4 | 2011-12-17 00:04:22 +0000 | [diff] [blame] | 1164 | // See if the value can be truncated to half and then reextended. |
| 1165 | if (Value *V = FitsInFPType(CFP, APFloat::IEEEhalf)) |
| 1166 | return V; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1167 | // See if the value can be truncated to float and then reextended. |
| 1168 | if (Value *V = FitsInFPType(CFP, APFloat::IEEEsingle)) |
| 1169 | return V; |
Benjamin Kramer | ccce8ba | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 1170 | if (CFP->getType()->isDoubleTy()) |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1171 | return V; // Won't shrink. |
| 1172 | if (Value *V = FitsInFPType(CFP, APFloat::IEEEdouble)) |
| 1173 | return V; |
| 1174 | // Don't try to shrink to various long double types. |
| 1175 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1176 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1177 | return V; |
| 1178 | } |
| 1179 | |
| 1180 | Instruction *InstCombiner::visitFPTrunc(FPTruncInst &CI) { |
| 1181 | if (Instruction *I = commonCastTransforms(CI)) |
| 1182 | return I; |
Stephen Canon | c454964 | 2013-11-28 21:38:05 +0000 | [diff] [blame] | 1183 | // If we have fptrunc(OpI (fpextend x), (fpextend y)), we would like to |
| 1184 | // simpilify this expression to avoid one or more of the trunc/extend |
| 1185 | // operations if we can do so without changing the numerical results. |
| 1186 | // |
| 1187 | // The exact manner in which the widths of the operands interact to limit |
| 1188 | // what we can and cannot do safely varies from operation to operation, and |
| 1189 | // is explained below in the various case statements. |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1190 | BinaryOperator *OpI = dyn_cast<BinaryOperator>(CI.getOperand(0)); |
| 1191 | if (OpI && OpI->hasOneUse()) { |
Stephen Canon | c454964 | 2013-11-28 21:38:05 +0000 | [diff] [blame] | 1192 | Value *LHSOrig = LookThroughFPExtensions(OpI->getOperand(0)); |
| 1193 | Value *RHSOrig = LookThroughFPExtensions(OpI->getOperand(1)); |
| 1194 | unsigned OpWidth = OpI->getType()->getFPMantissaWidth(); |
| 1195 | unsigned LHSWidth = LHSOrig->getType()->getFPMantissaWidth(); |
| 1196 | unsigned RHSWidth = RHSOrig->getType()->getFPMantissaWidth(); |
| 1197 | unsigned SrcWidth = std::max(LHSWidth, RHSWidth); |
| 1198 | unsigned DstWidth = CI.getType()->getFPMantissaWidth(); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1199 | switch (OpI->getOpcode()) { |
Stephen Canon | c454964 | 2013-11-28 21:38:05 +0000 | [diff] [blame] | 1200 | default: break; |
| 1201 | case Instruction::FAdd: |
| 1202 | case Instruction::FSub: |
| 1203 | // For addition and subtraction, the infinitely precise result can |
| 1204 | // essentially be arbitrarily wide; proving that double rounding |
| 1205 | // will not occur because the result of OpI is exact (as we will for |
| 1206 | // FMul, for example) is hopeless. However, we *can* nonetheless |
| 1207 | // frequently know that double rounding cannot occur (or that it is |
Alp Toker | cb40291 | 2014-01-24 17:20:08 +0000 | [diff] [blame] | 1208 | // innocuous) by taking advantage of the specific structure of |
Stephen Canon | c454964 | 2013-11-28 21:38:05 +0000 | [diff] [blame] | 1209 | // infinitely-precise results that admit double rounding. |
| 1210 | // |
Alp Toker | cb40291 | 2014-01-24 17:20:08 +0000 | [diff] [blame] | 1211 | // Specifically, if OpWidth >= 2*DstWdith+1 and DstWidth is sufficient |
Stephen Canon | c454964 | 2013-11-28 21:38:05 +0000 | [diff] [blame] | 1212 | // to represent both sources, we can guarantee that the double |
| 1213 | // rounding is innocuous (See p50 of Figueroa's 2000 PhD thesis, |
| 1214 | // "A Rigorous Framework for Fully Supporting the IEEE Standard ..." |
| 1215 | // for proof of this fact). |
| 1216 | // |
| 1217 | // Note: Figueroa does not consider the case where DstFormat != |
| 1218 | // SrcFormat. It's possible (likely even!) that this analysis |
| 1219 | // could be tightened for those cases, but they are rare (the main |
| 1220 | // case of interest here is (float)((double)float + float)). |
| 1221 | if (OpWidth >= 2*DstWidth+1 && DstWidth >= SrcWidth) { |
| 1222 | if (LHSOrig->getType() != CI.getType()) |
| 1223 | LHSOrig = Builder->CreateFPExt(LHSOrig, CI.getType()); |
| 1224 | if (RHSOrig->getType() != CI.getType()) |
| 1225 | RHSOrig = Builder->CreateFPExt(RHSOrig, CI.getType()); |
Owen Anderson | 48b842e | 2014-01-18 00:48:14 +0000 | [diff] [blame] | 1226 | Instruction *RI = |
| 1227 | BinaryOperator::Create(OpI->getOpcode(), LHSOrig, RHSOrig); |
| 1228 | RI->copyFastMathFlags(OpI); |
| 1229 | return RI; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1230 | } |
Stephen Canon | c454964 | 2013-11-28 21:38:05 +0000 | [diff] [blame] | 1231 | break; |
| 1232 | case Instruction::FMul: |
| 1233 | // For multiplication, the infinitely precise result has at most |
| 1234 | // LHSWidth + RHSWidth significant bits; if OpWidth is sufficient |
| 1235 | // that such a value can be exactly represented, then no double |
| 1236 | // rounding can possibly occur; we can safely perform the operation |
| 1237 | // in the destination format if it can represent both sources. |
| 1238 | if (OpWidth >= LHSWidth + RHSWidth && DstWidth >= SrcWidth) { |
| 1239 | if (LHSOrig->getType() != CI.getType()) |
| 1240 | LHSOrig = Builder->CreateFPExt(LHSOrig, CI.getType()); |
| 1241 | if (RHSOrig->getType() != CI.getType()) |
| 1242 | RHSOrig = Builder->CreateFPExt(RHSOrig, CI.getType()); |
Owen Anderson | 48b842e | 2014-01-18 00:48:14 +0000 | [diff] [blame] | 1243 | Instruction *RI = |
| 1244 | BinaryOperator::CreateFMul(LHSOrig, RHSOrig); |
| 1245 | RI->copyFastMathFlags(OpI); |
| 1246 | return RI; |
Stephen Canon | c454964 | 2013-11-28 21:38:05 +0000 | [diff] [blame] | 1247 | } |
| 1248 | break; |
| 1249 | case Instruction::FDiv: |
| 1250 | // For division, we use again use the bound from Figueroa's |
| 1251 | // dissertation. I am entirely certain that this bound can be |
| 1252 | // tightened in the unbalanced operand case by an analysis based on |
| 1253 | // the diophantine rational approximation bound, but the well-known |
| 1254 | // condition used here is a good conservative first pass. |
| 1255 | // TODO: Tighten bound via rigorous analysis of the unbalanced case. |
| 1256 | if (OpWidth >= 2*DstWidth && DstWidth >= SrcWidth) { |
| 1257 | if (LHSOrig->getType() != CI.getType()) |
| 1258 | LHSOrig = Builder->CreateFPExt(LHSOrig, CI.getType()); |
| 1259 | if (RHSOrig->getType() != CI.getType()) |
| 1260 | RHSOrig = Builder->CreateFPExt(RHSOrig, CI.getType()); |
Owen Anderson | 48b842e | 2014-01-18 00:48:14 +0000 | [diff] [blame] | 1261 | Instruction *RI = |
| 1262 | BinaryOperator::CreateFDiv(LHSOrig, RHSOrig); |
| 1263 | RI->copyFastMathFlags(OpI); |
| 1264 | return RI; |
Stephen Canon | c454964 | 2013-11-28 21:38:05 +0000 | [diff] [blame] | 1265 | } |
| 1266 | break; |
| 1267 | case Instruction::FRem: |
| 1268 | // Remainder is straightforward. Remainder is always exact, so the |
| 1269 | // type of OpI doesn't enter into things at all. We simply evaluate |
| 1270 | // in whichever source type is larger, then convert to the |
| 1271 | // destination type. |
Steven Wu | 1f7402a | 2014-12-12 17:21:54 +0000 | [diff] [blame^] | 1272 | if (SrcWidth == OpWidth) { |
| 1273 | break; |
David Majnemer | b32eadd | 2014-11-18 21:30:02 +0000 | [diff] [blame] | 1274 | } |
Steven Wu | 1f7402a | 2014-12-12 17:21:54 +0000 | [diff] [blame^] | 1275 | if (LHSWidth < SrcWidth) |
| 1276 | LHSOrig = Builder->CreateFPExt(LHSOrig, RHSOrig->getType()); |
| 1277 | else if (RHSWidth <= SrcWidth) |
| 1278 | RHSOrig = Builder->CreateFPExt(RHSOrig, LHSOrig->getType()); |
| 1279 | if (LHSOrig != OpI->getOperand(0) || RHSOrig != OpI->getOperand(1)) { |
| 1280 | Value *ExactResult = Builder->CreateFRem(LHSOrig, RHSOrig); |
| 1281 | if (Instruction *RI = dyn_cast<Instruction>(ExactResult)) |
| 1282 | RI->copyFastMathFlags(OpI); |
| 1283 | return CastInst::CreateFPCast(ExactResult, CI.getType()); |
| 1284 | } |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1285 | } |
Owen Anderson | dbf0ca5 | 2013-01-10 22:06:52 +0000 | [diff] [blame] | 1286 | |
| 1287 | // (fptrunc (fneg x)) -> (fneg (fptrunc x)) |
| 1288 | if (BinaryOperator::isFNeg(OpI)) { |
| 1289 | Value *InnerTrunc = Builder->CreateFPTrunc(OpI->getOperand(1), |
| 1290 | CI.getType()); |
Owen Anderson | 48b842e | 2014-01-18 00:48:14 +0000 | [diff] [blame] | 1291 | Instruction *RI = BinaryOperator::CreateFNeg(InnerTrunc); |
| 1292 | RI->copyFastMathFlags(OpI); |
| 1293 | return RI; |
Owen Anderson | dbf0ca5 | 2013-01-10 22:06:52 +0000 | [diff] [blame] | 1294 | } |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1295 | } |
Owen Anderson | dbf0ca5 | 2013-01-10 22:06:52 +0000 | [diff] [blame] | 1296 | |
Owen Anderson | 5797bfd | 2013-10-03 21:08:05 +0000 | [diff] [blame] | 1297 | // (fptrunc (select cond, R1, Cst)) --> |
| 1298 | // (select cond, (fptrunc R1), (fptrunc Cst)) |
| 1299 | SelectInst *SI = dyn_cast<SelectInst>(CI.getOperand(0)); |
| 1300 | if (SI && |
| 1301 | (isa<ConstantFP>(SI->getOperand(1)) || |
| 1302 | isa<ConstantFP>(SI->getOperand(2)))) { |
| 1303 | Value *LHSTrunc = Builder->CreateFPTrunc(SI->getOperand(1), |
| 1304 | CI.getType()); |
| 1305 | Value *RHSTrunc = Builder->CreateFPTrunc(SI->getOperand(2), |
| 1306 | CI.getType()); |
| 1307 | return SelectInst::Create(SI->getOperand(0), LHSTrunc, RHSTrunc); |
| 1308 | } |
| 1309 | |
Owen Anderson | dbf0ca5 | 2013-01-10 22:06:52 +0000 | [diff] [blame] | 1310 | IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI.getOperand(0)); |
| 1311 | if (II) { |
| 1312 | switch (II->getIntrinsicID()) { |
| 1313 | default: break; |
| 1314 | case Intrinsic::fabs: { |
| 1315 | // (fptrunc (fabs x)) -> (fabs (fptrunc x)) |
| 1316 | Value *InnerTrunc = Builder->CreateFPTrunc(II->getArgOperand(0), |
| 1317 | CI.getType()); |
| 1318 | Type *IntrinsicType[] = { CI.getType() }; |
| 1319 | Function *Overload = |
| 1320 | Intrinsic::getDeclaration(CI.getParent()->getParent()->getParent(), |
| 1321 | II->getIntrinsicID(), IntrinsicType); |
| 1322 | |
| 1323 | Value *Args[] = { InnerTrunc }; |
| 1324 | return CallInst::Create(Overload, Args, II->getName()); |
| 1325 | } |
| 1326 | } |
| 1327 | } |
| 1328 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1329 | return nullptr; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1330 | } |
| 1331 | |
| 1332 | Instruction *InstCombiner::visitFPExt(CastInst &CI) { |
| 1333 | return commonCastTransforms(CI); |
| 1334 | } |
| 1335 | |
| 1336 | Instruction *InstCombiner::visitFPToUI(FPToUIInst &FI) { |
| 1337 | Instruction *OpI = dyn_cast<Instruction>(FI.getOperand(0)); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1338 | if (!OpI) |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1339 | return commonCastTransforms(FI); |
| 1340 | |
| 1341 | // fptoui(uitofp(X)) --> X |
| 1342 | // fptoui(sitofp(X)) --> X |
| 1343 | // This is safe if the intermediate type has enough bits in its mantissa to |
| 1344 | // accurately represent all values of X. For example, do not do this with |
| 1345 | // i64->float->i64. This is also safe for sitofp case, because any negative |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1346 | // 'X' value would cause an undefined result for the fptoui. |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1347 | if ((isa<UIToFPInst>(OpI) || isa<SIToFPInst>(OpI)) && |
| 1348 | OpI->getOperand(0)->getType() == FI.getType() && |
| 1349 | (int)FI.getType()->getScalarSizeInBits() < /*extra bit for sign */ |
| 1350 | OpI->getType()->getFPMantissaWidth()) |
| 1351 | return ReplaceInstUsesWith(FI, OpI->getOperand(0)); |
| 1352 | |
| 1353 | return commonCastTransforms(FI); |
| 1354 | } |
| 1355 | |
| 1356 | Instruction *InstCombiner::visitFPToSI(FPToSIInst &FI) { |
| 1357 | Instruction *OpI = dyn_cast<Instruction>(FI.getOperand(0)); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1358 | if (!OpI) |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1359 | return commonCastTransforms(FI); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1360 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1361 | // fptosi(sitofp(X)) --> X |
| 1362 | // fptosi(uitofp(X)) --> X |
| 1363 | // This is safe if the intermediate type has enough bits in its mantissa to |
| 1364 | // accurately represent all values of X. For example, do not do this with |
| 1365 | // i64->float->i64. This is also safe for sitofp case, because any negative |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1366 | // 'X' value would cause an undefined result for the fptoui. |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1367 | if ((isa<UIToFPInst>(OpI) || isa<SIToFPInst>(OpI)) && |
| 1368 | OpI->getOperand(0)->getType() == FI.getType() && |
| 1369 | (int)FI.getType()->getScalarSizeInBits() <= |
| 1370 | OpI->getType()->getFPMantissaWidth()) |
| 1371 | return ReplaceInstUsesWith(FI, OpI->getOperand(0)); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1372 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1373 | return commonCastTransforms(FI); |
| 1374 | } |
| 1375 | |
| 1376 | Instruction *InstCombiner::visitUIToFP(CastInst &CI) { |
| 1377 | return commonCastTransforms(CI); |
| 1378 | } |
| 1379 | |
| 1380 | Instruction *InstCombiner::visitSIToFP(CastInst &CI) { |
| 1381 | return commonCastTransforms(CI); |
| 1382 | } |
| 1383 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1384 | Instruction *InstCombiner::visitIntToPtr(IntToPtrInst &CI) { |
Dan Gohman | 949458d | 2010-02-02 01:44:02 +0000 | [diff] [blame] | 1385 | // If the source integer type is not the intptr_t type for this target, do a |
| 1386 | // trunc or zext to the intptr_t type, then inttoptr of it. This allows the |
| 1387 | // cast to be exposed to other transforms. |
Benjamin Kramer | 944e0ab | 2013-02-05 20:22:40 +0000 | [diff] [blame] | 1388 | |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1389 | if (DL) { |
Matt Arsenault | 745101d | 2013-08-21 19:53:10 +0000 | [diff] [blame] | 1390 | unsigned AS = CI.getAddressSpace(); |
| 1391 | if (CI.getOperand(0)->getType()->getScalarSizeInBits() != |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1392 | DL->getPointerSizeInBits(AS)) { |
| 1393 | Type *Ty = DL->getIntPtrType(CI.getContext(), AS); |
Matt Arsenault | 745101d | 2013-08-21 19:53:10 +0000 | [diff] [blame] | 1394 | if (CI.getType()->isVectorTy()) // Handle vectors of pointers. |
| 1395 | Ty = VectorType::get(Ty, CI.getType()->getVectorNumElements()); |
| 1396 | |
| 1397 | Value *P = Builder->CreateZExtOrTrunc(CI.getOperand(0), Ty); |
| 1398 | return new IntToPtrInst(P, CI.getType()); |
| 1399 | } |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1400 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1401 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1402 | if (Instruction *I = commonCastTransforms(CI)) |
| 1403 | return I; |
| 1404 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1405 | return nullptr; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1406 | } |
| 1407 | |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1408 | /// @brief Implement the transforms for cast of pointer (bitcast/ptrtoint) |
| 1409 | Instruction *InstCombiner::commonPointerCastTransforms(CastInst &CI) { |
| 1410 | Value *Src = CI.getOperand(0); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1411 | |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1412 | if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Src)) { |
| 1413 | // If casting the result of a getelementptr instruction with no offset, turn |
| 1414 | // this into a cast of the original pointer! |
Jingyue Wu | 77145d9 | 2014-06-06 21:52:55 +0000 | [diff] [blame] | 1415 | if (GEP->hasAllZeroIndices() && |
| 1416 | // If CI is an addrspacecast and GEP changes the poiner type, merging |
| 1417 | // GEP into CI would undo canonicalizing addrspacecast with different |
| 1418 | // pointer types, causing infinite loops. |
| 1419 | (!isa<AddrSpaceCastInst>(CI) || |
| 1420 | GEP->getType() == GEP->getPointerOperand()->getType())) { |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1421 | // Changing the cast operand is usually not a good idea but it is safe |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1422 | // here because the pointer operand is being replaced with another |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1423 | // pointer operand so the opcode doesn't need to change. |
| 1424 | Worklist.Add(GEP); |
| 1425 | CI.setOperand(0, GEP->getOperand(0)); |
| 1426 | return &CI; |
| 1427 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1428 | |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1429 | if (!DL) |
Matt Arsenault | 94a028a | 2013-08-19 22:17:18 +0000 | [diff] [blame] | 1430 | return commonCastTransforms(CI); |
| 1431 | |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1432 | // If the GEP has a single use, and the base pointer is a bitcast, and the |
| 1433 | // GEP computes a constant offset, see if we can convert these three |
| 1434 | // instructions into fewer. This typically happens with unions and other |
| 1435 | // non-type-safe code. |
Matt Arsenault | 745101d | 2013-08-21 19:53:10 +0000 | [diff] [blame] | 1436 | unsigned AS = GEP->getPointerAddressSpace(); |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1437 | unsigned OffsetBits = DL->getPointerSizeInBits(AS); |
Matt Arsenault | 94a028a | 2013-08-19 22:17:18 +0000 | [diff] [blame] | 1438 | APInt Offset(OffsetBits, 0); |
| 1439 | BitCastInst *BCI = dyn_cast<BitCastInst>(GEP->getOperand(0)); |
| 1440 | if (GEP->hasOneUse() && |
| 1441 | BCI && |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1442 | GEP->accumulateConstantOffset(*DL, Offset)) { |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1443 | // Get the base pointer input of the bitcast, and the type it points to. |
Matt Arsenault | 94a028a | 2013-08-19 22:17:18 +0000 | [diff] [blame] | 1444 | Value *OrigBase = BCI->getOperand(0); |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1445 | SmallVector<Value*, 8> NewIndices; |
Matt Arsenault | d79f7d9 | 2013-08-19 22:17:40 +0000 | [diff] [blame] | 1446 | if (FindElementAtOffset(OrigBase->getType(), |
| 1447 | Offset.getSExtValue(), |
| 1448 | NewIndices)) { |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1449 | // If we were able to index down into an element, create the GEP |
| 1450 | // and bitcast the result. This eliminates one bitcast, potentially |
| 1451 | // two. |
| 1452 | Value *NGEP = cast<GEPOperator>(GEP)->isInBounds() ? |
Matt Arsenault | 94a028a | 2013-08-19 22:17:18 +0000 | [diff] [blame] | 1453 | Builder->CreateInBoundsGEP(OrigBase, NewIndices) : |
| 1454 | Builder->CreateGEP(OrigBase, NewIndices); |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1455 | NGEP->takeName(GEP); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1456 | |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1457 | if (isa<BitCastInst>(CI)) |
| 1458 | return new BitCastInst(NGEP, CI.getType()); |
| 1459 | assert(isa<PtrToIntInst>(CI)); |
| 1460 | return new PtrToIntInst(NGEP, CI.getType()); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1461 | } |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1462 | } |
| 1463 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1464 | |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1465 | return commonCastTransforms(CI); |
| 1466 | } |
| 1467 | |
| 1468 | Instruction *InstCombiner::visitPtrToInt(PtrToIntInst &CI) { |
Dan Gohman | 949458d | 2010-02-02 01:44:02 +0000 | [diff] [blame] | 1469 | // If the destination integer type is not the intptr_t type for this target, |
| 1470 | // do a ptrtoint to intptr_t then do a trunc or zext. This allows the cast |
| 1471 | // to be exposed to other transforms. |
Benjamin Kramer | e477875 | 2013-02-05 19:21:56 +0000 | [diff] [blame] | 1472 | |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1473 | if (!DL) |
Matt Arsenault | 745101d | 2013-08-21 19:53:10 +0000 | [diff] [blame] | 1474 | return commonPointerCastTransforms(CI); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1475 | |
Matt Arsenault | 745101d | 2013-08-21 19:53:10 +0000 | [diff] [blame] | 1476 | Type *Ty = CI.getType(); |
| 1477 | unsigned AS = CI.getPointerAddressSpace(); |
| 1478 | |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1479 | if (Ty->getScalarSizeInBits() == DL->getPointerSizeInBits(AS)) |
Matt Arsenault | 745101d | 2013-08-21 19:53:10 +0000 | [diff] [blame] | 1480 | return commonPointerCastTransforms(CI); |
| 1481 | |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1482 | Type *PtrTy = DL->getIntPtrType(CI.getContext(), AS); |
Matt Arsenault | 745101d | 2013-08-21 19:53:10 +0000 | [diff] [blame] | 1483 | if (Ty->isVectorTy()) // Handle vectors of pointers. |
| 1484 | PtrTy = VectorType::get(PtrTy, Ty->getVectorNumElements()); |
| 1485 | |
| 1486 | Value *P = Builder->CreatePtrToInt(CI.getOperand(0), PtrTy); |
| 1487 | return CastInst::CreateIntegerCast(P, Ty, /*isSigned=*/false); |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1488 | } |
| 1489 | |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1490 | /// OptimizeVectorResize - This input value (which is known to have vector type) |
| 1491 | /// is being zero extended or truncated to the specified vector type. Try to |
| 1492 | /// replace it with a shuffle (and vector/vector bitcast) if possible. |
| 1493 | /// |
| 1494 | /// The source and destination vector types may have different element types. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1495 | static Instruction *OptimizeVectorResize(Value *InVal, VectorType *DestTy, |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1496 | InstCombiner &IC) { |
| 1497 | // We can only do this optimization if the output is a multiple of the input |
| 1498 | // element size, or the input is a multiple of the output element size. |
| 1499 | // Convert the input type to have the same element type as the output. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1500 | VectorType *SrcTy = cast<VectorType>(InVal->getType()); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1501 | |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1502 | if (SrcTy->getElementType() != DestTy->getElementType()) { |
| 1503 | // The input types don't need to be identical, but for now they must be the |
| 1504 | // same size. There is no specific reason we couldn't handle things like |
| 1505 | // <4 x i16> -> <4 x i32> by bitcasting to <2 x i32> but haven't gotten |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1506 | // there yet. |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1507 | if (SrcTy->getElementType()->getPrimitiveSizeInBits() != |
| 1508 | DestTy->getElementType()->getPrimitiveSizeInBits()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1509 | return nullptr; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1510 | |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1511 | SrcTy = VectorType::get(DestTy->getElementType(), SrcTy->getNumElements()); |
| 1512 | InVal = IC.Builder->CreateBitCast(InVal, SrcTy); |
| 1513 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1514 | |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1515 | // Now that the element types match, get the shuffle mask and RHS of the |
| 1516 | // shuffle to use, which depends on whether we're increasing or decreasing the |
| 1517 | // size of the input. |
Chris Lattner | 8213c8a | 2012-02-06 21:56:39 +0000 | [diff] [blame] | 1518 | SmallVector<uint32_t, 16> ShuffleMask; |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1519 | Value *V2; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1520 | |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1521 | if (SrcTy->getNumElements() > DestTy->getNumElements()) { |
| 1522 | // If we're shrinking the number of elements, just shuffle in the low |
| 1523 | // elements from the input and use undef as the second shuffle input. |
| 1524 | V2 = UndefValue::get(SrcTy); |
| 1525 | for (unsigned i = 0, e = DestTy->getNumElements(); i != e; ++i) |
Chris Lattner | 8213c8a | 2012-02-06 21:56:39 +0000 | [diff] [blame] | 1526 | ShuffleMask.push_back(i); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1527 | |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1528 | } else { |
| 1529 | // If we're increasing the number of elements, shuffle in all of the |
| 1530 | // elements from InVal and fill the rest of the result elements with zeros |
| 1531 | // from a constant zero. |
| 1532 | V2 = Constant::getNullValue(SrcTy); |
| 1533 | unsigned SrcElts = SrcTy->getNumElements(); |
| 1534 | for (unsigned i = 0, e = SrcElts; i != e; ++i) |
Chris Lattner | 8213c8a | 2012-02-06 21:56:39 +0000 | [diff] [blame] | 1535 | ShuffleMask.push_back(i); |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1536 | |
| 1537 | // The excess elements reference the first element of the zero input. |
Chris Lattner | 8213c8a | 2012-02-06 21:56:39 +0000 | [diff] [blame] | 1538 | for (unsigned i = 0, e = DestTy->getNumElements()-SrcElts; i != e; ++i) |
| 1539 | ShuffleMask.push_back(SrcElts); |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1540 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1541 | |
Chris Lattner | 8213c8a | 2012-02-06 21:56:39 +0000 | [diff] [blame] | 1542 | return new ShuffleVectorInst(InVal, V2, |
| 1543 | ConstantDataVector::get(V2->getContext(), |
| 1544 | ShuffleMask)); |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1545 | } |
| 1546 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1547 | static bool isMultipleOfTypeSize(unsigned Value, Type *Ty) { |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1548 | return Value % Ty->getPrimitiveSizeInBits() == 0; |
| 1549 | } |
| 1550 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1551 | static unsigned getTypeSizeIndex(unsigned Value, Type *Ty) { |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1552 | return Value / Ty->getPrimitiveSizeInBits(); |
| 1553 | } |
| 1554 | |
| 1555 | /// CollectInsertionElements - V is a value which is inserted into a vector of |
| 1556 | /// VecEltTy. Look through the value to see if we can decompose it into |
| 1557 | /// insertions into the vector. See the example in the comment for |
| 1558 | /// OptimizeIntegerToVectorInsertions for the pattern this handles. |
| 1559 | /// The type of V is always a non-zero multiple of VecEltTy's size. |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1560 | /// Shift is the number of bits between the lsb of V and the lsb of |
| 1561 | /// the vector. |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1562 | /// |
| 1563 | /// This returns false if the pattern can't be matched or true if it can, |
| 1564 | /// filling in Elements with the elements found here. |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1565 | static bool CollectInsertionElements(Value *V, unsigned Shift, |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1566 | SmallVectorImpl<Value*> &Elements, |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1567 | Type *VecEltTy, InstCombiner &IC) { |
| 1568 | assert(isMultipleOfTypeSize(Shift, VecEltTy) && |
| 1569 | "Shift should be a multiple of the element type size"); |
| 1570 | |
Chris Lattner | 50df36a | 2010-08-28 03:36:51 +0000 | [diff] [blame] | 1571 | // Undef values never contribute useful bits to the result. |
| 1572 | if (isa<UndefValue>(V)) return true; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1573 | |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1574 | // If we got down to a value of the right type, we win, try inserting into the |
| 1575 | // right element. |
| 1576 | if (V->getType() == VecEltTy) { |
Chris Lattner | d0214f3 | 2010-08-28 01:50:57 +0000 | [diff] [blame] | 1577 | // Inserting null doesn't actually insert any elements. |
| 1578 | if (Constant *C = dyn_cast<Constant>(V)) |
| 1579 | if (C->isNullValue()) |
| 1580 | return true; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1581 | |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1582 | unsigned ElementIndex = getTypeSizeIndex(Shift, VecEltTy); |
| 1583 | if (IC.getDataLayout()->isBigEndian()) |
| 1584 | ElementIndex = Elements.size() - ElementIndex - 1; |
| 1585 | |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1586 | // Fail if multiple elements are inserted into this slot. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1587 | if (Elements[ElementIndex]) |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1588 | return false; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1589 | |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1590 | Elements[ElementIndex] = V; |
| 1591 | return true; |
| 1592 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1593 | |
Chris Lattner | d0214f3 | 2010-08-28 01:50:57 +0000 | [diff] [blame] | 1594 | if (Constant *C = dyn_cast<Constant>(V)) { |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1595 | // Figure out the # elements this provides, and bitcast it or slice it up |
| 1596 | // as required. |
Chris Lattner | d0214f3 | 2010-08-28 01:50:57 +0000 | [diff] [blame] | 1597 | unsigned NumElts = getTypeSizeIndex(C->getType()->getPrimitiveSizeInBits(), |
| 1598 | VecEltTy); |
| 1599 | // If the constant is the size of a vector element, we just need to bitcast |
| 1600 | // it to the right type so it gets properly inserted. |
| 1601 | if (NumElts == 1) |
| 1602 | return CollectInsertionElements(ConstantExpr::getBitCast(C, VecEltTy), |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1603 | Shift, Elements, VecEltTy, IC); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1604 | |
Chris Lattner | d0214f3 | 2010-08-28 01:50:57 +0000 | [diff] [blame] | 1605 | // Okay, this is a constant that covers multiple elements. Slice it up into |
| 1606 | // pieces and insert each element-sized piece into the vector. |
| 1607 | if (!isa<IntegerType>(C->getType())) |
| 1608 | C = ConstantExpr::getBitCast(C, IntegerType::get(V->getContext(), |
| 1609 | C->getType()->getPrimitiveSizeInBits())); |
| 1610 | unsigned ElementSize = VecEltTy->getPrimitiveSizeInBits(); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1611 | Type *ElementIntTy = IntegerType::get(C->getContext(), ElementSize); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1612 | |
Chris Lattner | d0214f3 | 2010-08-28 01:50:57 +0000 | [diff] [blame] | 1613 | for (unsigned i = 0; i != NumElts; ++i) { |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1614 | unsigned ShiftI = Shift+i*ElementSize; |
Chris Lattner | d0214f3 | 2010-08-28 01:50:57 +0000 | [diff] [blame] | 1615 | Constant *Piece = ConstantExpr::getLShr(C, ConstantInt::get(C->getType(), |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1616 | ShiftI)); |
Chris Lattner | d0214f3 | 2010-08-28 01:50:57 +0000 | [diff] [blame] | 1617 | Piece = ConstantExpr::getTrunc(Piece, ElementIntTy); |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1618 | if (!CollectInsertionElements(Piece, ShiftI, Elements, VecEltTy, IC)) |
Chris Lattner | d0214f3 | 2010-08-28 01:50:57 +0000 | [diff] [blame] | 1619 | return false; |
| 1620 | } |
| 1621 | return true; |
| 1622 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1623 | |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1624 | if (!V->hasOneUse()) return false; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1625 | |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1626 | Instruction *I = dyn_cast<Instruction>(V); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1627 | if (!I) return false; |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1628 | switch (I->getOpcode()) { |
| 1629 | default: return false; // Unhandled case. |
| 1630 | case Instruction::BitCast: |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1631 | return CollectInsertionElements(I->getOperand(0), Shift, |
| 1632 | Elements, VecEltTy, IC); |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1633 | case Instruction::ZExt: |
| 1634 | if (!isMultipleOfTypeSize( |
| 1635 | I->getOperand(0)->getType()->getPrimitiveSizeInBits(), |
| 1636 | VecEltTy)) |
| 1637 | return false; |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1638 | return CollectInsertionElements(I->getOperand(0), Shift, |
| 1639 | Elements, VecEltTy, IC); |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1640 | case Instruction::Or: |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1641 | return CollectInsertionElements(I->getOperand(0), Shift, |
| 1642 | Elements, VecEltTy, IC) && |
| 1643 | CollectInsertionElements(I->getOperand(1), Shift, |
| 1644 | Elements, VecEltTy, IC); |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1645 | case Instruction::Shl: { |
| 1646 | // Must be shifting by a constant that is a multiple of the element size. |
| 1647 | ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1)); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1648 | if (!CI) return false; |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1649 | Shift += CI->getZExtValue(); |
| 1650 | if (!isMultipleOfTypeSize(Shift, VecEltTy)) return false; |
| 1651 | return CollectInsertionElements(I->getOperand(0), Shift, |
| 1652 | Elements, VecEltTy, IC); |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1653 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1654 | |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1655 | } |
| 1656 | } |
| 1657 | |
| 1658 | |
| 1659 | /// OptimizeIntegerToVectorInsertions - If the input is an 'or' instruction, we |
| 1660 | /// may be doing shifts and ors to assemble the elements of the vector manually. |
| 1661 | /// Try to rip the code out and replace it with insertelements. This is to |
| 1662 | /// optimize code like this: |
| 1663 | /// |
| 1664 | /// %tmp37 = bitcast float %inc to i32 |
| 1665 | /// %tmp38 = zext i32 %tmp37 to i64 |
| 1666 | /// %tmp31 = bitcast float %inc5 to i32 |
| 1667 | /// %tmp32 = zext i32 %tmp31 to i64 |
| 1668 | /// %tmp33 = shl i64 %tmp32, 32 |
| 1669 | /// %ins35 = or i64 %tmp33, %tmp38 |
| 1670 | /// %tmp43 = bitcast i64 %ins35 to <2 x float> |
| 1671 | /// |
| 1672 | /// Into two insertelements that do "buildvector{%inc, %inc5}". |
| 1673 | static Value *OptimizeIntegerToVectorInsertions(BitCastInst &CI, |
| 1674 | InstCombiner &IC) { |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1675 | // We need to know the target byte order to perform this optimization. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1676 | if (!IC.getDataLayout()) return nullptr; |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1677 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1678 | VectorType *DestVecTy = cast<VectorType>(CI.getType()); |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1679 | Value *IntInput = CI.getOperand(0); |
| 1680 | |
| 1681 | SmallVector<Value*, 8> Elements(DestVecTy->getNumElements()); |
| 1682 | if (!CollectInsertionElements(IntInput, 0, Elements, |
Richard Sandiford | feb3471 | 2013-08-12 07:26:09 +0000 | [diff] [blame] | 1683 | DestVecTy->getElementType(), IC)) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1684 | return nullptr; |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1685 | |
| 1686 | // If we succeeded, we know that all of the element are specified by Elements |
| 1687 | // or are zero if Elements has a null entry. Recast this as a set of |
| 1688 | // insertions. |
| 1689 | Value *Result = Constant::getNullValue(CI.getType()); |
| 1690 | for (unsigned i = 0, e = Elements.size(); i != e; ++i) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1691 | if (!Elements[i]) continue; // Unset element. |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1692 | |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1693 | Result = IC.Builder->CreateInsertElement(Result, Elements[i], |
| 1694 | IC.Builder->getInt32(i)); |
| 1695 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1696 | |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1697 | return Result; |
| 1698 | } |
| 1699 | |
| 1700 | |
Chris Lattner | d4ebd6d | 2010-08-26 21:55:42 +0000 | [diff] [blame] | 1701 | /// OptimizeIntToFloatBitCast - See if we can optimize an integer->float/double |
| 1702 | /// bitcast. The various long double bitcasts can't get in here. |
Chris Lattner | bfd2228 | 2010-08-26 22:14:59 +0000 | [diff] [blame] | 1703 | static Instruction *OptimizeIntToFloatBitCast(BitCastInst &CI,InstCombiner &IC){ |
Ulrich Weigand | 8a51d8e | 2013-03-26 15:36:14 +0000 | [diff] [blame] | 1704 | // We need to know the target byte order to perform this optimization. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1705 | if (!IC.getDataLayout()) return nullptr; |
Ulrich Weigand | 8a51d8e | 2013-03-26 15:36:14 +0000 | [diff] [blame] | 1706 | |
Chris Lattner | d4ebd6d | 2010-08-26 21:55:42 +0000 | [diff] [blame] | 1707 | Value *Src = CI.getOperand(0); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1708 | Type *DestTy = CI.getType(); |
Chris Lattner | d4ebd6d | 2010-08-26 21:55:42 +0000 | [diff] [blame] | 1709 | |
| 1710 | // If this is a bitcast from int to float, check to see if the int is an |
| 1711 | // extraction from a vector. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1712 | Value *VecInput = nullptr; |
Chris Lattner | bfd2228 | 2010-08-26 22:14:59 +0000 | [diff] [blame] | 1713 | // bitcast(trunc(bitcast(somevector))) |
Chris Lattner | d4ebd6d | 2010-08-26 21:55:42 +0000 | [diff] [blame] | 1714 | if (match(Src, m_Trunc(m_BitCast(m_Value(VecInput)))) && |
| 1715 | isa<VectorType>(VecInput->getType())) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1716 | VectorType *VecTy = cast<VectorType>(VecInput->getType()); |
Chris Lattner | bfd2228 | 2010-08-26 22:14:59 +0000 | [diff] [blame] | 1717 | unsigned DestWidth = DestTy->getPrimitiveSizeInBits(); |
| 1718 | |
| 1719 | if (VecTy->getPrimitiveSizeInBits() % DestWidth == 0) { |
| 1720 | // If the element type of the vector doesn't match the result type, |
| 1721 | // bitcast it to be a vector type we can extract from. |
| 1722 | if (VecTy->getElementType() != DestTy) { |
| 1723 | VecTy = VectorType::get(DestTy, |
| 1724 | VecTy->getPrimitiveSizeInBits() / DestWidth); |
| 1725 | VecInput = IC.Builder->CreateBitCast(VecInput, VecTy); |
| 1726 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1727 | |
Ulrich Weigand | 8a51d8e | 2013-03-26 15:36:14 +0000 | [diff] [blame] | 1728 | unsigned Elt = 0; |
| 1729 | if (IC.getDataLayout()->isBigEndian()) |
| 1730 | Elt = VecTy->getPrimitiveSizeInBits() / DestWidth - 1; |
| 1731 | return ExtractElementInst::Create(VecInput, IC.Builder->getInt32(Elt)); |
Chris Lattner | bfd2228 | 2010-08-26 22:14:59 +0000 | [diff] [blame] | 1732 | } |
Chris Lattner | d4ebd6d | 2010-08-26 21:55:42 +0000 | [diff] [blame] | 1733 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1734 | |
Chris Lattner | bfd2228 | 2010-08-26 22:14:59 +0000 | [diff] [blame] | 1735 | // bitcast(trunc(lshr(bitcast(somevector), cst)) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1736 | ConstantInt *ShAmt = nullptr; |
Chris Lattner | bfd2228 | 2010-08-26 22:14:59 +0000 | [diff] [blame] | 1737 | if (match(Src, m_Trunc(m_LShr(m_BitCast(m_Value(VecInput)), |
| 1738 | m_ConstantInt(ShAmt)))) && |
| 1739 | isa<VectorType>(VecInput->getType())) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1740 | VectorType *VecTy = cast<VectorType>(VecInput->getType()); |
Chris Lattner | bfd2228 | 2010-08-26 22:14:59 +0000 | [diff] [blame] | 1741 | unsigned DestWidth = DestTy->getPrimitiveSizeInBits(); |
| 1742 | if (VecTy->getPrimitiveSizeInBits() % DestWidth == 0 && |
| 1743 | ShAmt->getZExtValue() % DestWidth == 0) { |
| 1744 | // If the element type of the vector doesn't match the result type, |
| 1745 | // bitcast it to be a vector type we can extract from. |
| 1746 | if (VecTy->getElementType() != DestTy) { |
| 1747 | VecTy = VectorType::get(DestTy, |
| 1748 | VecTy->getPrimitiveSizeInBits() / DestWidth); |
| 1749 | VecInput = IC.Builder->CreateBitCast(VecInput, VecTy); |
| 1750 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1751 | |
Chris Lattner | bfd2228 | 2010-08-26 22:14:59 +0000 | [diff] [blame] | 1752 | unsigned Elt = ShAmt->getZExtValue() / DestWidth; |
Ulrich Weigand | 8a51d8e | 2013-03-26 15:36:14 +0000 | [diff] [blame] | 1753 | if (IC.getDataLayout()->isBigEndian()) |
| 1754 | Elt = VecTy->getPrimitiveSizeInBits() / DestWidth - 1 - Elt; |
Chris Lattner | bfd2228 | 2010-08-26 22:14:59 +0000 | [diff] [blame] | 1755 | return ExtractElementInst::Create(VecInput, IC.Builder->getInt32(Elt)); |
| 1756 | } |
| 1757 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1758 | return nullptr; |
Chris Lattner | d4ebd6d | 2010-08-26 21:55:42 +0000 | [diff] [blame] | 1759 | } |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1760 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1761 | Instruction *InstCombiner::visitBitCast(BitCastInst &CI) { |
| 1762 | // If the operands are integer typed then apply the integer transforms, |
| 1763 | // otherwise just apply the common ones. |
| 1764 | Value *Src = CI.getOperand(0); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1765 | Type *SrcTy = Src->getType(); |
| 1766 | Type *DestTy = CI.getType(); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1767 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1768 | // Get rid of casts from one type to the same type. These are useless and can |
| 1769 | // be replaced by the operand. |
| 1770 | if (DestTy == Src->getType()) |
| 1771 | return ReplaceInstUsesWith(CI, Src); |
| 1772 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1773 | if (PointerType *DstPTy = dyn_cast<PointerType>(DestTy)) { |
| 1774 | PointerType *SrcPTy = cast<PointerType>(SrcTy); |
| 1775 | Type *DstElTy = DstPTy->getElementType(); |
| 1776 | Type *SrcElTy = SrcPTy->getElementType(); |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1777 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1778 | // If we are casting a alloca to a pointer to a type of the same |
| 1779 | // size, rewrite the allocation instruction to allocate the "right" type. |
| 1780 | // There is no need to modify malloc calls because it is their bitcast that |
| 1781 | // needs to be cleaned up. |
| 1782 | if (AllocaInst *AI = dyn_cast<AllocaInst>(Src)) |
| 1783 | if (Instruction *V = PromoteCastOfAllocation(CI, *AI)) |
| 1784 | return V; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1785 | |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1786 | // If the source and destination are pointers, and this cast is equivalent |
| 1787 | // to a getelementptr X, 0, 0, 0... turn it into the appropriate gep. |
| 1788 | // This can enhance SROA and other transforms that want type-safe pointers. |
| 1789 | Constant *ZeroUInt = |
| 1790 | Constant::getNullValue(Type::getInt32Ty(CI.getContext())); |
| 1791 | unsigned NumZeros = 0; |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1792 | while (SrcElTy != DstElTy && |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1793 | isa<CompositeType>(SrcElTy) && !SrcElTy->isPointerTy() && |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1794 | SrcElTy->getNumContainedTypes() /* not "{}" */) { |
| 1795 | SrcElTy = cast<CompositeType>(SrcElTy)->getTypeAtIndex(ZeroUInt); |
| 1796 | ++NumZeros; |
| 1797 | } |
| 1798 | |
| 1799 | // If we found a path from the src to dest, create the getelementptr now. |
| 1800 | if (SrcElTy == DstElTy) { |
| 1801 | SmallVector<Value*, 8> Idxs(NumZeros+1, ZeroUInt); |
Jay Foad | d1b7849 | 2011-07-25 09:48:08 +0000 | [diff] [blame] | 1802 | return GetElementPtrInst::CreateInBounds(Src, Idxs); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1803 | } |
| 1804 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1805 | |
Chris Lattner | d4ebd6d | 2010-08-26 21:55:42 +0000 | [diff] [blame] | 1806 | // Try to optimize int -> float bitcasts. |
| 1807 | if ((DestTy->isFloatTy() || DestTy->isDoubleTy()) && isa<IntegerType>(SrcTy)) |
| 1808 | if (Instruction *I = OptimizeIntToFloatBitCast(CI, *this)) |
| 1809 | return I; |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1810 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1811 | if (VectorType *DestVTy = dyn_cast<VectorType>(DestTy)) { |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1812 | if (DestVTy->getNumElements() == 1 && !SrcTy->isVectorTy()) { |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1813 | Value *Elem = Builder->CreateBitCast(Src, DestVTy->getElementType()); |
| 1814 | return InsertElementInst::Create(UndefValue::get(DestTy), Elem, |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1815 | Constant::getNullValue(Type::getInt32Ty(CI.getContext()))); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1816 | // FIXME: Canonicalize bitcast(insertelement) -> insertelement(bitcast) |
| 1817 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1818 | |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1819 | if (isa<IntegerType>(SrcTy)) { |
| 1820 | // If this is a cast from an integer to vector, check to see if the input |
| 1821 | // is a trunc or zext of a bitcast from vector. If so, we can replace all |
| 1822 | // the casts with a shuffle and (potentially) a bitcast. |
| 1823 | if (isa<TruncInst>(Src) || isa<ZExtInst>(Src)) { |
| 1824 | CastInst *SrcCast = cast<CastInst>(Src); |
| 1825 | if (BitCastInst *BCIn = dyn_cast<BitCastInst>(SrcCast->getOperand(0))) |
| 1826 | if (isa<VectorType>(BCIn->getOperand(0)->getType())) |
| 1827 | if (Instruction *I = OptimizeVectorResize(BCIn->getOperand(0), |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1828 | cast<VectorType>(DestTy), *this)) |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1829 | return I; |
| 1830 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1831 | |
Chris Lattner | dd66010 | 2010-08-28 01:20:38 +0000 | [diff] [blame] | 1832 | // If the input is an 'or' instruction, we may be doing shifts and ors to |
| 1833 | // assemble the elements of the vector manually. Try to rip the code out |
| 1834 | // and replace it with insertelements. |
| 1835 | if (Value *V = OptimizeIntegerToVectorInsertions(CI, *this)) |
| 1836 | return ReplaceInstUsesWith(CI, V); |
Chris Lattner | 02b0df5 | 2010-05-08 21:50:26 +0000 | [diff] [blame] | 1837 | } |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1838 | } |
| 1839 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1840 | if (VectorType *SrcVTy = dyn_cast<VectorType>(SrcTy)) { |
Michael Ilseman | 74a6da9 | 2013-02-11 21:41:44 +0000 | [diff] [blame] | 1841 | if (SrcVTy->getNumElements() == 1) { |
| 1842 | // If our destination is not a vector, then make this a straight |
| 1843 | // scalar-scalar cast. |
| 1844 | if (!DestTy->isVectorTy()) { |
| 1845 | Value *Elem = |
| 1846 | Builder->CreateExtractElement(Src, |
| 1847 | Constant::getNullValue(Type::getInt32Ty(CI.getContext()))); |
| 1848 | return CastInst::Create(Instruction::BitCast, Elem, DestTy); |
| 1849 | } |
| 1850 | |
| 1851 | // Otherwise, see if our source is an insert. If so, then use the scalar |
| 1852 | // component directly. |
| 1853 | if (InsertElementInst *IEI = |
| 1854 | dyn_cast<InsertElementInst>(CI.getOperand(0))) |
| 1855 | return CastInst::Create(Instruction::BitCast, IEI->getOperand(1), |
| 1856 | DestTy); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1857 | } |
| 1858 | } |
| 1859 | |
| 1860 | if (ShuffleVectorInst *SVI = dyn_cast<ShuffleVectorInst>(Src)) { |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1861 | // Okay, we have (bitcast (shuffle ..)). Check to see if this is |
Dan Gohman | eb7111b | 2010-04-07 23:22:42 +0000 | [diff] [blame] | 1862 | // a bitcast to a vector with the same # elts. |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1863 | if (SVI->hasOneUse() && DestTy->isVectorTy() && |
Matt Arsenault | fc00f7e | 2013-08-14 00:24:34 +0000 | [diff] [blame] | 1864 | DestTy->getVectorNumElements() == SVI->getType()->getNumElements() && |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1865 | SVI->getType()->getNumElements() == |
Matt Arsenault | fc00f7e | 2013-08-14 00:24:34 +0000 | [diff] [blame] | 1866 | SVI->getOperand(0)->getType()->getVectorNumElements()) { |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1867 | BitCastInst *Tmp; |
| 1868 | // If either of the operands is a cast from CI.getType(), then |
| 1869 | // evaluating the shuffle in the casted destination's type will allow |
| 1870 | // us to eliminate at least one cast. |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1871 | if (((Tmp = dyn_cast<BitCastInst>(SVI->getOperand(0))) && |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1872 | Tmp->getOperand(0)->getType() == DestTy) || |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1873 | ((Tmp = dyn_cast<BitCastInst>(SVI->getOperand(1))) && |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1874 | Tmp->getOperand(0)->getType() == DestTy)) { |
| 1875 | Value *LHS = Builder->CreateBitCast(SVI->getOperand(0), DestTy); |
| 1876 | Value *RHS = Builder->CreateBitCast(SVI->getOperand(1), DestTy); |
| 1877 | // Return a new shuffle vector. Use the same element ID's, as we |
| 1878 | // know the vector types match #elts. |
| 1879 | return new ShuffleVectorInst(LHS, RHS, SVI->getOperand(2)); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1880 | } |
| 1881 | } |
| 1882 | } |
Craig Topper | 3529aa5 | 2013-01-24 05:22:40 +0000 | [diff] [blame] | 1883 | |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1884 | if (SrcTy->isPointerTy()) |
Chris Lattner | a93c63c | 2010-01-05 22:21:18 +0000 | [diff] [blame] | 1885 | return commonPointerCastTransforms(CI); |
| 1886 | return commonCastTransforms(CI); |
Chris Lattner | 2b295a0 | 2010-01-04 07:53:58 +0000 | [diff] [blame] | 1887 | } |
Matt Arsenault | a9e95ab | 2013-11-15 05:45:08 +0000 | [diff] [blame] | 1888 | |
| 1889 | Instruction *InstCombiner::visitAddrSpaceCast(AddrSpaceCastInst &CI) { |
Manuel Jacob | b4db99c | 2014-07-16 01:34:21 +0000 | [diff] [blame] | 1890 | // If the destination pointer element type is not the same as the source's |
| 1891 | // first do a bitcast to the destination type, and then the addrspacecast. |
| 1892 | // This allows the cast to be exposed to other transforms. |
Jingyue Wu | 77145d9 | 2014-06-06 21:52:55 +0000 | [diff] [blame] | 1893 | Value *Src = CI.getOperand(0); |
| 1894 | PointerType *SrcTy = cast<PointerType>(Src->getType()->getScalarType()); |
| 1895 | PointerType *DestTy = cast<PointerType>(CI.getType()->getScalarType()); |
| 1896 | |
| 1897 | Type *DestElemTy = DestTy->getElementType(); |
| 1898 | if (SrcTy->getElementType() != DestElemTy) { |
| 1899 | Type *MidTy = PointerType::get(DestElemTy, SrcTy->getAddressSpace()); |
Jingyue Wu | baabe50 | 2014-06-15 21:40:57 +0000 | [diff] [blame] | 1900 | if (VectorType *VT = dyn_cast<VectorType>(CI.getType())) { |
| 1901 | // Handle vectors of pointers. |
| 1902 | MidTy = VectorType::get(MidTy, VT->getNumElements()); |
| 1903 | } |
Jingyue Wu | 77145d9 | 2014-06-06 21:52:55 +0000 | [diff] [blame] | 1904 | |
| 1905 | Value *NewBitCast = Builder->CreateBitCast(Src, MidTy); |
| 1906 | return new AddrSpaceCastInst(NewBitCast, CI.getType()); |
| 1907 | } |
| 1908 | |
Matt Arsenault | 2d353d1 | 2014-01-14 20:00:45 +0000 | [diff] [blame] | 1909 | return commonPointerCastTransforms(CI); |
Matt Arsenault | a9e95ab | 2013-11-15 05:45:08 +0000 | [diff] [blame] | 1910 | } |