1 //===- InstCombineCasts.cpp -----------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the visit functions for cast operations.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "InstCombineInternal.h"
14 #include "llvm/ADT/SetVector.h"
15 #include "llvm/Analysis/ConstantFolding.h"
16 #include "llvm/Analysis/TargetLibraryInfo.h"
17 #include "llvm/IR/DataLayout.h"
18 #include "llvm/IR/DIBuilder.h"
19 #include "llvm/IR/PatternMatch.h"
20 #include "llvm/Support/KnownBits.h"
21 #include <numeric>
22 using namespace llvm;
23 using namespace PatternMatch;
24 
25 #define DEBUG_TYPE "instcombine"
26 
27 /// Analyze 'Val', seeing if it is a simple linear expression.
28 /// If so, decompose it, returning some value X, such that Val is
29 /// X*Scale+Offset.
30 ///
31 static Value *decomposeSimpleLinearExpr(Value *Val, unsigned &Scale,
32                                         uint64_t &Offset) {
33   if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
34     Offset = CI->getZExtValue();
35     Scale  = 0;
36     return ConstantInt::get(Val->getType(), 0);
37   }
38 
39   if (BinaryOperator *I = dyn_cast<BinaryOperator>(Val)) {
40     // Cannot look past anything that might overflow.
41     OverflowingBinaryOperator *OBI = dyn_cast<OverflowingBinaryOperator>(Val);
42     if (OBI && !OBI->hasNoUnsignedWrap() && !OBI->hasNoSignedWrap()) {
43       Scale = 1;
44       Offset = 0;
45       return Val;
46     }
47 
48     if (ConstantInt *RHS = dyn_cast<ConstantInt>(I->getOperand(1))) {
49       if (I->getOpcode() == Instruction::Shl) {
50         // This is a value scaled by '1 << the shift amt'.
51         Scale = UINT64_C(1) << RHS->getZExtValue();
52         Offset = 0;
53         return I->getOperand(0);
54       }
55 
56       if (I->getOpcode() == Instruction::Mul) {
57         // This value is scaled by 'RHS'.
58         Scale = RHS->getZExtValue();
59         Offset = 0;
60         return I->getOperand(0);
61       }
62 
63       if (I->getOpcode() == Instruction::Add) {
64         // We have X+C.  Check to see if we really have (X*C2)+C1,
65         // where C1 is divisible by C2.
66         unsigned SubScale;
67         Value *SubVal =
68           decomposeSimpleLinearExpr(I->getOperand(0), SubScale, Offset);
69         Offset += RHS->getZExtValue();
70         Scale = SubScale;
71         return SubVal;
72       }
73     }
74   }
75 
76   // Otherwise, we can't look past this.
77   Scale = 1;
78   Offset = 0;
79   return Val;
80 }
81 
82 /// If we find a cast of an allocation instruction, try to eliminate the cast by
83 /// moving the type information into the alloc.
84 Instruction *InstCombiner::PromoteCastOfAllocation(BitCastInst &CI,
85                                                    AllocaInst &AI) {
86   PointerType *PTy = cast<PointerType>(CI.getType());
87 
88   IRBuilderBase::InsertPointGuard Guard(Builder);
89   Builder.SetInsertPoint(&AI);
90 
91   // Get the type really allocated and the type casted to.
92   Type *AllocElTy = AI.getAllocatedType();
93   Type *CastElTy = PTy->getElementType();
94   if (!AllocElTy->isSized() || !CastElTy->isSized()) return nullptr;
95 
96   unsigned AllocElTyAlign = DL.getABITypeAlignment(AllocElTy);
97   unsigned CastElTyAlign = DL.getABITypeAlignment(CastElTy);
98   if (CastElTyAlign < AllocElTyAlign) return nullptr;
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
102   // same, we open the door to infinite loops of various kinds.
103   if (!AI.hasOneUse() && CastElTyAlign == AllocElTyAlign) return nullptr;
104 
105   uint64_t AllocElTySize = DL.getTypeAllocSize(AllocElTy);
106   uint64_t CastElTySize = DL.getTypeAllocSize(CastElTy);
107   if (CastElTySize == 0 || AllocElTySize == 0) return nullptr;
108 
109   // If the allocation has multiple uses, only promote it if we're not
110   // shrinking the amount of memory being allocated.
111   uint64_t AllocElTyStoreSize = DL.getTypeStoreSize(AllocElTy);
112   uint64_t CastElTyStoreSize = DL.getTypeStoreSize(CastElTy);
113   if (!AI.hasOneUse() && CastElTyStoreSize < AllocElTyStoreSize) return nullptr;
114 
115   // See if we can satisfy the modulus by pulling a scale out of the array
116   // size argument.
117   unsigned ArraySizeScale;
118   uint64_t ArrayOffset;
119   Value *NumElements = // See if the array size is a decomposable linear expr.
120     decomposeSimpleLinearExpr(AI.getOperand(0), ArraySizeScale, ArrayOffset);
121 
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 ||
125       (AllocElTySize*ArrayOffset   ) % CastElTySize != 0) return nullptr;
126 
127   unsigned Scale = (AllocElTySize*ArraySizeScale)/CastElTySize;
128   Value *Amt = nullptr;
129   if (Scale == 1) {
130     Amt = NumElements;
131   } else {
132     Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale);
133     // Insert before the alloca, not before the cast.
134     Amt = Builder.CreateMul(Amt, NumElements);
135   }
136 
137   if (uint64_t Offset = (AllocElTySize*ArrayOffset)/CastElTySize) {
138     Value *Off = ConstantInt::get(AI.getArraySize()->getType(),
139                                   Offset, true);
140     Amt = Builder.CreateAdd(Amt, Off);
141   }
142 
143   AllocaInst *New = Builder.CreateAlloca(CastElTy, Amt);
144   New->setAlignment(MaybeAlign(AI.getAlignment()));
145   New->takeName(&AI);
146   New->setUsedWithInAlloca(AI.isUsedWithInAlloca());
147 
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.
151   if (!AI.hasOneUse()) {
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 = Builder.CreateBitCast(New, AI.getType(), "tmpcast");
155     replaceInstUsesWith(AI, NewCast);
156     eraseInstFromFunction(AI);
157   }
158   return replaceInstUsesWith(CI, New);
159 }
160 
161 /// Given an expression that CanEvaluateTruncated or CanEvaluateSExtd returns
162 /// true for, actually insert the code to evaluate the expression.
163 Value *InstCombiner::EvaluateInDifferentType(Value *V, Type *Ty,
164                                              bool isSigned) {
165   if (Constant *C = dyn_cast<Constant>(V)) {
166     C = ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/);
167     // If we got a constantexpr back, try to simplify it with DL info.
168     return ConstantFoldConstant(C, DL, &TLI);
169   }
170 
171   // Otherwise, it must be an instruction.
172   Instruction *I = cast<Instruction>(V);
173   Instruction *Res = nullptr;
174   unsigned Opc = I->getOpcode();
175   switch (Opc) {
176   case Instruction::Add:
177   case Instruction::Sub:
178   case Instruction::Mul:
179   case Instruction::And:
180   case Instruction::Or:
181   case Instruction::Xor:
182   case Instruction::AShr:
183   case Instruction::LShr:
184   case Instruction::Shl:
185   case Instruction::UDiv:
186   case Instruction::URem: {
187     Value *LHS = EvaluateInDifferentType(I->getOperand(0), Ty, isSigned);
188     Value *RHS = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned);
189     Res = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
190     break;
191   }
192   case Instruction::Trunc:
193   case Instruction::ZExt:
194   case Instruction::SExt:
195     // If the source type of the cast is the type we're trying for then we can
196     // just return the source.  There's no need to insert it because it is not
197     // new.
198     if (I->getOperand(0)->getType() == Ty)
199       return I->getOperand(0);
200 
201     // Otherwise, must be the same type of cast, so just reinsert a new one.
202     // This also handles the case of zext(trunc(x)) -> zext(x).
203     Res = CastInst::CreateIntegerCast(I->getOperand(0), Ty,
204                                       Opc == Instruction::SExt);
205     break;
206   case Instruction::Select: {
207     Value *True = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned);
208     Value *False = EvaluateInDifferentType(I->getOperand(2), Ty, isSigned);
209     Res = SelectInst::Create(I->getOperand(0), True, False);
210     break;
211   }
212   case Instruction::PHI: {
213     PHINode *OPN = cast<PHINode>(I);
214     PHINode *NPN = PHINode::Create(Ty, OPN->getNumIncomingValues());
215     for (unsigned i = 0, e = OPN->getNumIncomingValues(); i != e; ++i) {
216       Value *V =
217           EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned);
218       NPN->addIncoming(V, OPN->getIncomingBlock(i));
219     }
220     Res = NPN;
221     break;
222   }
223   default:
224     // TODO: Can handle more cases here.
225     llvm_unreachable("Unreachable!");
226   }
227 
228   Res->takeName(I);
229   return InsertNewInstWith(Res, *I);
230 }
231 
232 Instruction::CastOps InstCombiner::isEliminableCastPair(const CastInst *CI1,
233                                                         const CastInst *CI2) {
234   Type *SrcTy = CI1->getSrcTy();
235   Type *MidTy = CI1->getDestTy();
236   Type *DstTy = CI2->getDestTy();
237 
238   Instruction::CastOps firstOp = CI1->getOpcode();
239   Instruction::CastOps secondOp = CI2->getOpcode();
240   Type *SrcIntPtrTy =
241       SrcTy->isPtrOrPtrVectorTy() ? DL.getIntPtrType(SrcTy) : nullptr;
242   Type *MidIntPtrTy =
243       MidTy->isPtrOrPtrVectorTy() ? DL.getIntPtrType(MidTy) : nullptr;
244   Type *DstIntPtrTy =
245       DstTy->isPtrOrPtrVectorTy() ? DL.getIntPtrType(DstTy) : nullptr;
246   unsigned Res = CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy,
247                                                 DstTy, SrcIntPtrTy, MidIntPtrTy,
248                                                 DstIntPtrTy);
249 
250   // We don't want to form an inttoptr or ptrtoint that converts to an integer
251   // type that differs from the pointer size.
252   if ((Res == Instruction::IntToPtr && SrcTy != DstIntPtrTy) ||
253       (Res == Instruction::PtrToInt && DstTy != SrcIntPtrTy))
254     Res = 0;
255 
256   return Instruction::CastOps(Res);
257 }
258 
259 /// Implement the transforms common to all CastInst visitors.
260 Instruction *InstCombiner::commonCastTransforms(CastInst &CI) {
261   Value *Src = CI.getOperand(0);
262 
263   // Try to eliminate a cast of a cast.
264   if (auto *CSrc = dyn_cast<CastInst>(Src)) {   // A->B->C cast
265     if (Instruction::CastOps NewOpc = isEliminableCastPair(CSrc, &CI)) {
266       // The first cast (CSrc) is eliminable so we need to fix up or replace
267       // the second cast (CI). CSrc will then have a good chance of being dead.
268       auto *Ty = CI.getType();
269       auto *Res = CastInst::Create(NewOpc, CSrc->getOperand(0), Ty);
270       // Point debug users of the dying cast to the new one.
271       if (CSrc->hasOneUse())
272         replaceAllDbgUsesWith(*CSrc, *Res, CI, DT);
273       return Res;
274     }
275   }
276 
277   if (auto *Sel = dyn_cast<SelectInst>(Src)) {
278     // We are casting a select. Try to fold the cast into the select if the
279     // select does not have a compare instruction with matching operand types
280     // or the select is likely better done in a narrow type.
281     // Creating a select with operands that are different sizes than its
282     // condition may inhibit other folds and lead to worse codegen.
283     auto *Cmp = dyn_cast<CmpInst>(Sel->getCondition());
284     if (!Cmp || Cmp->getOperand(0)->getType() != Sel->getType() ||
285         (CI.getOpcode() == Instruction::Trunc &&
286          shouldChangeType(CI.getSrcTy(), CI.getType()))) {
287       if (Instruction *NV = FoldOpIntoSelect(CI, Sel)) {
288         replaceAllDbgUsesWith(*Sel, *NV, CI, DT);
289         return NV;
290       }
291     }
292   }
293 
294   // If we are casting a PHI, then fold the cast into the PHI.
295   if (auto *PN = dyn_cast<PHINode>(Src)) {
296     // Don't do this if it would create a PHI node with an illegal type from a
297     // legal type.
298     if (!Src->getType()->isIntegerTy() || !CI.getType()->isIntegerTy() ||
299         shouldChangeType(CI.getSrcTy(), CI.getType()))
300       if (Instruction *NV = foldOpIntoPhi(CI, PN))
301         return NV;
302   }
303 
304   return nullptr;
305 }
306 
307 /// Constants and extensions/truncates from the destination type are always
308 /// free to be evaluated in that type. This is a helper for canEvaluate*.
309 static bool canAlwaysEvaluateInType(Value *V, Type *Ty) {
310   if (isa<Constant>(V))
311     return true;
312   Value *X;
313   if ((match(V, m_ZExtOrSExt(m_Value(X))) || match(V, m_Trunc(m_Value(X)))) &&
314       X->getType() == Ty)
315     return true;
316 
317   return false;
318 }
319 
320 /// Filter out values that we can not evaluate in the destination type for free.
321 /// This is a helper for canEvaluate*.
322 static bool canNotEvaluateInType(Value *V, Type *Ty) {
323   assert(!isa<Constant>(V) && "Constant should already be handled.");
324   if (!isa<Instruction>(V))
325     return true;
326   // We don't extend or shrink something that has multiple uses --  doing so
327   // would require duplicating the instruction which isn't profitable.
328   if (!V->hasOneUse())
329     return true;
330 
331   return false;
332 }
333 
334 /// Return true if we can evaluate the specified expression tree as type Ty
335 /// instead of its larger type, and arrive with the same value.
336 /// This is used by code that tries to eliminate truncates.
337 ///
338 /// Ty will always be a type smaller than V.  We should return true if trunc(V)
339 /// can be computed by computing V in the smaller type.  If V is an instruction,
340 /// then trunc(inst(x,y)) can be computed as inst(trunc(x),trunc(y)), which only
341 /// makes sense if x and y can be efficiently truncated.
342 ///
343 /// This function works on both vectors and scalars.
344 ///
345 static bool canEvaluateTruncated(Value *V, Type *Ty, InstCombiner &IC,
346                                  Instruction *CxtI) {
347   if (canAlwaysEvaluateInType(V, Ty))
348     return true;
349   if (canNotEvaluateInType(V, Ty))
350     return false;
351 
352   auto *I = cast<Instruction>(V);
353   Type *OrigTy = V->getType();
354   switch (I->getOpcode()) {
355   case Instruction::Add:
356   case Instruction::Sub:
357   case Instruction::Mul:
358   case Instruction::And:
359   case Instruction::Or:
360   case Instruction::Xor:
361     // These operators can all arbitrarily be extended or truncated.
362     return canEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI) &&
363            canEvaluateTruncated(I->getOperand(1), Ty, IC, CxtI);
364 
365   case Instruction::UDiv:
366   case Instruction::URem: {
367     // UDiv and URem can be truncated if all the truncated bits are zero.
368     uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
369     uint32_t BitWidth = Ty->getScalarSizeInBits();
370     assert(BitWidth < OrigBitWidth && "Unexpected bitwidths!");
371     APInt Mask = APInt::getBitsSetFrom(OrigBitWidth, BitWidth);
372     if (IC.MaskedValueIsZero(I->getOperand(0), Mask, 0, CxtI) &&
373         IC.MaskedValueIsZero(I->getOperand(1), Mask, 0, CxtI)) {
374       return canEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI) &&
375              canEvaluateTruncated(I->getOperand(1), Ty, IC, CxtI);
376     }
377     break;
378   }
379   case Instruction::Shl: {
380     // If we are truncating the result of this SHL, and if it's a shift of a
381     // constant amount, we can always perform a SHL in a smaller type.
382     const APInt *Amt;
383     if (match(I->getOperand(1), m_APInt(Amt))) {
384       uint32_t BitWidth = Ty->getScalarSizeInBits();
385       if (Amt->getLimitedValue(BitWidth) < BitWidth)
386         return canEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI);
387     }
388     break;
389   }
390   case Instruction::LShr: {
391     // If this is a truncate of a logical shr, we can truncate it to a smaller
392     // lshr iff we know that the bits we would otherwise be shifting in are
393     // already zeros.
394     const APInt *Amt;
395     if (match(I->getOperand(1), m_APInt(Amt))) {
396       uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
397       uint32_t BitWidth = Ty->getScalarSizeInBits();
398       if (Amt->getLimitedValue(BitWidth) < BitWidth &&
399           IC.MaskedValueIsZero(I->getOperand(0),
400             APInt::getBitsSetFrom(OrigBitWidth, BitWidth), 0, CxtI)) {
401         return canEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI);
402       }
403     }
404     break;
405   }
406   case Instruction::AShr: {
407     // If this is a truncate of an arithmetic shr, we can truncate it to a
408     // smaller ashr iff we know that all the bits from the sign bit of the
409     // original type and the sign bit of the truncate type are similar.
410     // TODO: It is enough to check that the bits we would be shifting in are
411     //       similar to sign bit of the truncate type.
412     const APInt *Amt;
413     if (match(I->getOperand(1), m_APInt(Amt))) {
414       uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
415       uint32_t BitWidth = Ty->getScalarSizeInBits();
416       if (Amt->getLimitedValue(BitWidth) < BitWidth &&
417           OrigBitWidth - BitWidth <
418               IC.ComputeNumSignBits(I->getOperand(0), 0, CxtI))
419         return canEvaluateTruncated(I->getOperand(0), Ty, IC, CxtI);
420     }
421     break;
422   }
423   case Instruction::Trunc:
424     // trunc(trunc(x)) -> trunc(x)
425     return true;
426   case Instruction::ZExt:
427   case Instruction::SExt:
428     // trunc(ext(x)) -> ext(x) if the source type is smaller than the new dest
429     // trunc(ext(x)) -> trunc(x) if the source type is larger than the new dest
430     return true;
431   case Instruction::Select: {
432     SelectInst *SI = cast<SelectInst>(I);
433     return canEvaluateTruncated(SI->getTrueValue(), Ty, IC, CxtI) &&
434            canEvaluateTruncated(SI->getFalseValue(), Ty, IC, CxtI);
435   }
436   case Instruction::PHI: {
437     // We can change a phi if we can change all operands.  Note that we never
438     // get into trouble with cyclic PHIs here because we only consider
439     // instructions with a single use.
440     PHINode *PN = cast<PHINode>(I);
441     for (Value *IncValue : PN->incoming_values())
442       if (!canEvaluateTruncated(IncValue, Ty, IC, CxtI))
443         return false;
444     return true;
445   }
446   default:
447     // TODO: Can handle more cases here.
448     break;
449   }
450 
451   return false;
452 }
453 
454 /// Given a vector that is bitcast to an integer, optionally logically
455 /// right-shifted, and truncated, convert it to an extractelement.
456 /// Example (big endian):
457 ///   trunc (lshr (bitcast <4 x i32> %X to i128), 32) to i32
458 ///   --->
459 ///   extractelement <4 x i32> %X, 1
460 static Instruction *foldVecTruncToExtElt(TruncInst &Trunc, InstCombiner &IC) {
461   Value *TruncOp = Trunc.getOperand(0);
462   Type *DestType = Trunc.getType();
463   if (!TruncOp->hasOneUse() || !isa<IntegerType>(DestType))
464     return nullptr;
465 
466   Value *VecInput = nullptr;
467   ConstantInt *ShiftVal = nullptr;
468   if (!match(TruncOp, m_CombineOr(m_BitCast(m_Value(VecInput)),
469                                   m_LShr(m_BitCast(m_Value(VecInput)),
470                                          m_ConstantInt(ShiftVal)))) ||
471       !isa<VectorType>(VecInput->getType()))
472     return nullptr;
473 
474   VectorType *VecType = cast<VectorType>(VecInput->getType());
475   unsigned VecWidth = VecType->getPrimitiveSizeInBits();
476   unsigned DestWidth = DestType->getPrimitiveSizeInBits();
477   unsigned ShiftAmount = ShiftVal ? ShiftVal->getZExtValue() : 0;
478 
479   if ((VecWidth % DestWidth != 0) || (ShiftAmount % DestWidth != 0))
480     return nullptr;
481 
482   // If the element type of the vector doesn't match the result type,
483   // bitcast it to a vector type that we can extract from.
484   unsigned NumVecElts = VecWidth / DestWidth;
485   if (VecType->getElementType() != DestType) {
486     VecType = VectorType::get(DestType, NumVecElts);
487     VecInput = IC.Builder.CreateBitCast(VecInput, VecType, "bc");
488   }
489 
490   unsigned Elt = ShiftAmount / DestWidth;
491   if (IC.getDataLayout().isBigEndian())
492     Elt = NumVecElts - 1 - Elt;
493 
494   return ExtractElementInst::Create(VecInput, IC.Builder.getInt32(Elt));
495 }
496 
497 /// Rotate left/right may occur in a wider type than necessary because of type
498 /// promotion rules. Try to narrow the inputs and convert to funnel shift.
499 Instruction *InstCombiner::narrowRotate(TruncInst &Trunc) {
500   assert((isa<VectorType>(Trunc.getSrcTy()) ||
501           shouldChangeType(Trunc.getSrcTy(), Trunc.getType())) &&
502          "Don't narrow to an illegal scalar type");
503 
504   // Bail out on strange types. It is possible to handle some of these patterns
505   // even with non-power-of-2 sizes, but it is not a likely scenario.
506   Type *DestTy = Trunc.getType();
507   unsigned NarrowWidth = DestTy->getScalarSizeInBits();
508   if (!isPowerOf2_32(NarrowWidth))
509     return nullptr;
510 
511   // First, find an or'd pair of opposite shifts with the same shifted operand:
512   // trunc (or (lshr ShVal, ShAmt0), (shl ShVal, ShAmt1))
513   Value *Or0, *Or1;
514   if (!match(Trunc.getOperand(0), m_OneUse(m_Or(m_Value(Or0), m_Value(Or1)))))
515     return nullptr;
516 
517   Value *ShVal, *ShAmt0, *ShAmt1;
518   if (!match(Or0, m_OneUse(m_LogicalShift(m_Value(ShVal), m_Value(ShAmt0)))) ||
519       !match(Or1, m_OneUse(m_LogicalShift(m_Specific(ShVal), m_Value(ShAmt1)))))
520     return nullptr;
521 
522   auto ShiftOpcode0 = cast<BinaryOperator>(Or0)->getOpcode();
523   auto ShiftOpcode1 = cast<BinaryOperator>(Or1)->getOpcode();
524   if (ShiftOpcode0 == ShiftOpcode1)
525     return nullptr;
526 
527   // Match the shift amount operands for a rotate pattern. This always matches
528   // a subtraction on the R operand.
529   auto matchShiftAmount = [](Value *L, Value *R, unsigned Width) -> Value * {
530     // The shift amounts may add up to the narrow bit width:
531     // (shl ShVal, L) | (lshr ShVal, Width - L)
532     if (match(R, m_OneUse(m_Sub(m_SpecificInt(Width), m_Specific(L)))))
533       return L;
534 
535     // The shift amount may be masked with negation:
536     // (shl ShVal, (X & (Width - 1))) | (lshr ShVal, ((-X) & (Width - 1)))
537     Value *X;
538     unsigned Mask = Width - 1;
539     if (match(L, m_And(m_Value(X), m_SpecificInt(Mask))) &&
540         match(R, m_And(m_Neg(m_Specific(X)), m_SpecificInt(Mask))))
541       return X;
542 
543     // Same as above, but the shift amount may be extended after masking:
544     if (match(L, m_ZExt(m_And(m_Value(X), m_SpecificInt(Mask)))) &&
545         match(R, m_ZExt(m_And(m_Neg(m_Specific(X)), m_SpecificInt(Mask)))))
546       return X;
547 
548     return nullptr;
549   };
550 
551   Value *ShAmt = matchShiftAmount(ShAmt0, ShAmt1, NarrowWidth);
552   bool SubIsOnLHS = false;
553   if (!ShAmt) {
554     ShAmt = matchShiftAmount(ShAmt1, ShAmt0, NarrowWidth);
555     SubIsOnLHS = true;
556   }
557   if (!ShAmt)
558     return nullptr;
559 
560   // The shifted value must have high zeros in the wide type. Typically, this
561   // will be a zext, but it could also be the result of an 'and' or 'shift'.
562   unsigned WideWidth = Trunc.getSrcTy()->getScalarSizeInBits();
563   APInt HiBitMask = APInt::getHighBitsSet(WideWidth, WideWidth - NarrowWidth);
564   if (!MaskedValueIsZero(ShVal, HiBitMask, 0, &Trunc))
565     return nullptr;
566 
567   // We have an unnecessarily wide rotate!
568   // trunc (or (lshr ShVal, ShAmt), (shl ShVal, BitWidth - ShAmt))
569   // Narrow the inputs and convert to funnel shift intrinsic:
570   // llvm.fshl.i8(trunc(ShVal), trunc(ShVal), trunc(ShAmt))
571   Value *NarrowShAmt = Builder.CreateTrunc(ShAmt, DestTy);
572   Value *X = Builder.CreateTrunc(ShVal, DestTy);
573   bool IsFshl = (!SubIsOnLHS && ShiftOpcode0 == BinaryOperator::Shl) ||
574                 (SubIsOnLHS && ShiftOpcode1 == BinaryOperator::Shl);
575   Intrinsic::ID IID = IsFshl ? Intrinsic::fshl : Intrinsic::fshr;
576   Function *F = Intrinsic::getDeclaration(Trunc.getModule(), IID, DestTy);
577   return IntrinsicInst::Create(F, { X, X, NarrowShAmt });
578 }
579 
580 /// Try to narrow the width of math or bitwise logic instructions by pulling a
581 /// truncate ahead of binary operators.
582 /// TODO: Transforms for truncated shifts should be moved into here.
583 Instruction *InstCombiner::narrowBinOp(TruncInst &Trunc) {
584   Type *SrcTy = Trunc.getSrcTy();
585   Type *DestTy = Trunc.getType();
586   if (!isa<VectorType>(SrcTy) && !shouldChangeType(SrcTy, DestTy))
587     return nullptr;
588 
589   BinaryOperator *BinOp;
590   if (!match(Trunc.getOperand(0), m_OneUse(m_BinOp(BinOp))))
591     return nullptr;
592 
593   Value *BinOp0 = BinOp->getOperand(0);
594   Value *BinOp1 = BinOp->getOperand(1);
595   switch (BinOp->getOpcode()) {
596   case Instruction::And:
597   case Instruction::Or:
598   case Instruction::Xor:
599   case Instruction::Add:
600   case Instruction::Sub:
601   case Instruction::Mul: {
602     Constant *C;
603     if (match(BinOp0, m_Constant(C))) {
604       // trunc (binop C, X) --> binop (trunc C', X)
605       Constant *NarrowC = ConstantExpr::getTrunc(C, DestTy);
606       Value *TruncX = Builder.CreateTrunc(BinOp1, DestTy);
607       return BinaryOperator::Create(BinOp->getOpcode(), NarrowC, TruncX);
608     }
609     if (match(BinOp1, m_Constant(C))) {
610       // trunc (binop X, C) --> binop (trunc X, C')
611       Constant *NarrowC = ConstantExpr::getTrunc(C, DestTy);
612       Value *TruncX = Builder.CreateTrunc(BinOp0, DestTy);
613       return BinaryOperator::Create(BinOp->getOpcode(), TruncX, NarrowC);
614     }
615     Value *X;
616     if (match(BinOp0, m_ZExtOrSExt(m_Value(X))) && X->getType() == DestTy) {
617       // trunc (binop (ext X), Y) --> binop X, (trunc Y)
618       Value *NarrowOp1 = Builder.CreateTrunc(BinOp1, DestTy);
619       return BinaryOperator::Create(BinOp->getOpcode(), X, NarrowOp1);
620     }
621     if (match(BinOp1, m_ZExtOrSExt(m_Value(X))) && X->getType() == DestTy) {
622       // trunc (binop Y, (ext X)) --> binop (trunc Y), X
623       Value *NarrowOp0 = Builder.CreateTrunc(BinOp0, DestTy);
624       return BinaryOperator::Create(BinOp->getOpcode(), NarrowOp0, X);
625     }
626     break;
627   }
628 
629   default: break;
630   }
631 
632   if (Instruction *NarrowOr = narrowRotate(Trunc))
633     return NarrowOr;
634 
635   return nullptr;
636 }
637 
638 /// Try to narrow the width of a splat shuffle. This could be generalized to any
639 /// shuffle with a constant operand, but we limit the transform to avoid
640 /// creating a shuffle type that targets may not be able to lower effectively.
641 static Instruction *shrinkSplatShuffle(TruncInst &Trunc,
642                                        InstCombiner::BuilderTy &Builder) {
643   auto *Shuf = dyn_cast<ShuffleVectorInst>(Trunc.getOperand(0));
644   if (Shuf && Shuf->hasOneUse() && isa<UndefValue>(Shuf->getOperand(1)) &&
645       is_splat(Shuf->getShuffleMask()) &&
646       Shuf->getType() == Shuf->getOperand(0)->getType()) {
647     // trunc (shuf X, Undef, SplatMask) --> shuf (trunc X), Undef, SplatMask
648     Constant *NarrowUndef = UndefValue::get(Trunc.getType());
649     Value *NarrowOp = Builder.CreateTrunc(Shuf->getOperand(0), Trunc.getType());
650     return new ShuffleVectorInst(NarrowOp, NarrowUndef, Shuf->getShuffleMask());
651   }
652 
653   return nullptr;
654 }
655 
656 /// Try to narrow the width of an insert element. This could be generalized for
657 /// any vector constant, but we limit the transform to insertion into undef to
658 /// avoid potential backend problems from unsupported insertion widths. This
659 /// could also be extended to handle the case of inserting a scalar constant
660 /// into a vector variable.
661 static Instruction *shrinkInsertElt(CastInst &Trunc,
662                                     InstCombiner::BuilderTy &Builder) {
663   Instruction::CastOps Opcode = Trunc.getOpcode();
664   assert((Opcode == Instruction::Trunc || Opcode == Instruction::FPTrunc) &&
665          "Unexpected instruction for shrinking");
666 
667   auto *InsElt = dyn_cast<InsertElementInst>(Trunc.getOperand(0));
668   if (!InsElt || !InsElt->hasOneUse())
669     return nullptr;
670 
671   Type *DestTy = Trunc.getType();
672   Type *DestScalarTy = DestTy->getScalarType();
673   Value *VecOp = InsElt->getOperand(0);
674   Value *ScalarOp = InsElt->getOperand(1);
675   Value *Index = InsElt->getOperand(2);
676 
677   if (isa<UndefValue>(VecOp)) {
678     // trunc   (inselt undef, X, Index) --> inselt undef,   (trunc X), Index
679     // fptrunc (inselt undef, X, Index) --> inselt undef, (fptrunc X), Index
680     UndefValue *NarrowUndef = UndefValue::get(DestTy);
681     Value *NarrowOp = Builder.CreateCast(Opcode, ScalarOp, DestScalarTy);
682     return InsertElementInst::Create(NarrowUndef, NarrowOp, Index);
683   }
684 
685   return nullptr;
686 }
687 
688 Instruction *InstCombiner::visitTrunc(TruncInst &CI) {
689   if (Instruction *Result = commonCastTransforms(CI))
690     return Result;
691 
692   Value *Src = CI.getOperand(0);
693   Type *DestTy = CI.getType(), *SrcTy = Src->getType();
694   ConstantInt *Cst;
695 
696   // Attempt to truncate the entire input expression tree to the destination
697   // type.   Only do this if the dest type is a simple type, don't convert the
698   // expression tree to something weird like i93 unless the source is also
699   // strange.
700   if ((DestTy->isVectorTy() || shouldChangeType(SrcTy, DestTy)) &&
701       canEvaluateTruncated(Src, DestTy, *this, &CI)) {
702 
703     // If this cast is a truncate, evaluting in a different type always
704     // eliminates the cast, so it is always a win.
705     LLVM_DEBUG(
706         dbgs() << "ICE: EvaluateInDifferentType converting expression type"
707                   " to avoid cast: "
708                << CI << '\n');
709     Value *Res = EvaluateInDifferentType(Src, DestTy, false);
710     assert(Res->getType() == DestTy);
711     return replaceInstUsesWith(CI, Res);
712   }
713 
714   // Test if the trunc is the user of a select which is part of a
715   // minimum or maximum operation. If so, don't do any more simplification.
716   // Even simplifying demanded bits can break the canonical form of a
717   // min/max.
718   Value *LHS, *RHS;
719   if (SelectInst *SI = dyn_cast<SelectInst>(CI.getOperand(0)))
720     if (matchSelectPattern(SI, LHS, RHS).Flavor != SPF_UNKNOWN)
721       return nullptr;
722 
723   // See if we can simplify any instructions used by the input whose sole
724   // purpose is to compute bits we don't care about.
725   if (SimplifyDemandedInstructionBits(CI))
726     return &CI;
727 
728   if (DestTy->getScalarSizeInBits() == 1) {
729     Value *Zero = Constant::getNullValue(Src->getType());
730     if (DestTy->isIntegerTy()) {
731       // Canonicalize trunc x to i1 -> icmp ne (and x, 1), 0 (scalar only).
732       // TODO: We canonicalize to more instructions here because we are probably
733       // lacking equivalent analysis for trunc relative to icmp. There may also
734       // be codegen concerns. If those trunc limitations were removed, we could
735       // remove this transform.
736       Value *And = Builder.CreateAnd(Src, ConstantInt::get(SrcTy, 1));
737       return new ICmpInst(ICmpInst::ICMP_NE, And, Zero);
738     }
739 
740     // For vectors, we do not canonicalize all truncs to icmp, so optimize
741     // patterns that would be covered within visitICmpInst.
742     Value *X;
743     const APInt *C;
744     if (match(Src, m_OneUse(m_LShr(m_Value(X), m_APInt(C))))) {
745       // trunc (lshr X, C) to i1 --> icmp ne (and X, C'), 0
746       APInt MaskC = APInt(SrcTy->getScalarSizeInBits(), 1).shl(*C);
747       Value *And = Builder.CreateAnd(X, ConstantInt::get(SrcTy, MaskC));
748       return new ICmpInst(ICmpInst::ICMP_NE, And, Zero);
749     }
750     if (match(Src, m_OneUse(m_c_Or(m_LShr(m_Value(X), m_APInt(C)),
751                                    m_Deferred(X))))) {
752       // trunc (or (lshr X, C), X) to i1 --> icmp ne (and X, C'), 0
753       APInt MaskC = APInt(SrcTy->getScalarSizeInBits(), 1).shl(*C) | 1;
754       Value *And = Builder.CreateAnd(X, ConstantInt::get(SrcTy, MaskC));
755       return new ICmpInst(ICmpInst::ICMP_NE, And, Zero);
756     }
757   }
758 
759   // FIXME: Maybe combine the next two transforms to handle the no cast case
760   // more efficiently. Support vector types. Cleanup code by using m_OneUse.
761 
762   // Transform trunc(lshr (zext A), Cst) to eliminate one type conversion.
763   Value *A = nullptr;
764   if (Src->hasOneUse() &&
765       match(Src, m_LShr(m_ZExt(m_Value(A)), m_ConstantInt(Cst)))) {
766     // We have three types to worry about here, the type of A, the source of
767     // the truncate (MidSize), and the destination of the truncate. We know that
768     // ASize < MidSize   and MidSize > ResultSize, but don't know the relation
769     // between ASize and ResultSize.
770     unsigned ASize = A->getType()->getPrimitiveSizeInBits();
771 
772     // If the shift amount is larger than the size of A, then the result is
773     // known to be zero because all the input bits got shifted out.
774     if (Cst->getZExtValue() >= ASize)
775       return replaceInstUsesWith(CI, Constant::getNullValue(DestTy));
776 
777     // Since we're doing an lshr and a zero extend, and know that the shift
778     // amount is smaller than ASize, it is always safe to do the shift in A's
779     // type, then zero extend or truncate to the result.
780     Value *Shift = Builder.CreateLShr(A, Cst->getZExtValue());
781     Shift->takeName(Src);
782     return CastInst::CreateIntegerCast(Shift, DestTy, false);
783   }
784 
785   // FIXME: We should canonicalize to zext/trunc and remove this transform.
786   // Transform trunc(lshr (sext A), Cst) to ashr A, Cst to eliminate type
787   // conversion.
788   // It works because bits coming from sign extension have the same value as
789   // the sign bit of the original value; performing ashr instead of lshr
790   // generates bits of the same value as the sign bit.
791   if (Src->hasOneUse() &&
792       match(Src, m_LShr(m_SExt(m_Value(A)), m_ConstantInt(Cst)))) {
793     Value *SExt = cast<Instruction>(Src)->getOperand(0);
794     const unsigned SExtSize = SExt->getType()->getPrimitiveSizeInBits();
795     const unsigned ASize = A->getType()->getPrimitiveSizeInBits();
796     const unsigned CISize = CI.getType()->getPrimitiveSizeInBits();
797     const unsigned MaxAmt = SExtSize - std::max(CISize, ASize);
798     unsigned ShiftAmt = Cst->getZExtValue();
799 
800     // This optimization can be only performed when zero bits generated by
801     // the original lshr aren't pulled into the value after truncation, so we
802     // can only shift by values no larger than the number of extension bits.
803     // FIXME: Instead of bailing when the shift is too large, use and to clear
804     // the extra bits.
805     if (ShiftAmt <= MaxAmt) {
806       if (CISize == ASize)
807         return BinaryOperator::CreateAShr(A, ConstantInt::get(CI.getType(),
808                                           std::min(ShiftAmt, ASize - 1)));
809       if (SExt->hasOneUse()) {
810         Value *Shift = Builder.CreateAShr(A, std::min(ShiftAmt, ASize - 1));
811         Shift->takeName(Src);
812         return CastInst::CreateIntegerCast(Shift, CI.getType(), true);
813       }
814     }
815   }
816 
817   if (Instruction *I = narrowBinOp(CI))
818     return I;
819 
820   if (Instruction *I = shrinkSplatShuffle(CI, Builder))
821     return I;
822 
823   if (Instruction *I = shrinkInsertElt(CI, Builder))
824     return I;
825 
826   if (Src->hasOneUse() && isa<IntegerType>(SrcTy) &&
827       shouldChangeType(SrcTy, DestTy)) {
828     // Transform "trunc (shl X, cst)" -> "shl (trunc X), cst" so long as the
829     // dest type is native and cst < dest size.
830     if (match(Src, m_Shl(m_Value(A), m_ConstantInt(Cst))) &&
831         !match(A, m_Shr(m_Value(), m_Constant()))) {
832       // Skip shifts of shift by constants. It undoes a combine in
833       // FoldShiftByConstant and is the extend in reg pattern.
834       const unsigned DestSize = DestTy->getScalarSizeInBits();
835       if (Cst->getValue().ult(DestSize)) {
836         Value *NewTrunc = Builder.CreateTrunc(A, DestTy, A->getName() + ".tr");
837 
838         return BinaryOperator::Create(
839           Instruction::Shl, NewTrunc,
840           ConstantInt::get(DestTy, Cst->getValue().trunc(DestSize)));
841       }
842     }
843   }
844 
845   if (Instruction *I = foldVecTruncToExtElt(CI, *this))
846     return I;
847 
848   // Whenever an element is extracted from a vector, and then truncated,
849   // canonicalize by converting it to a bitcast followed by an
850   // extractelement.
851   //
852   // Example (little endian):
853   //   trunc (extractelement <4 x i64> %X, 0) to i32
854   //   --->
855   //   extractelement <8 x i32> (bitcast <4 x i64> %X to <8 x i32>), i32 0
856   Value *VecOp;
857   if (match(Src,
858             m_OneUse(m_ExtractElement(m_Value(VecOp), m_ConstantInt(Cst))))) {
859     auto *VecOpTy = cast<VectorType>(VecOp->getType());
860     unsigned DestScalarSize = DestTy->getScalarSizeInBits();
861     unsigned VecOpScalarSize = VecOpTy->getScalarSizeInBits();
862     unsigned VecNumElts = VecOpTy->getNumElements();
863 
864     // A badly fit destination size would result in an invalid cast.
865     if (VecOpScalarSize % DestScalarSize == 0) {
866       uint64_t TruncRatio = VecOpScalarSize / DestScalarSize;
867       uint64_t BitCastNumElts = VecNumElts * TruncRatio;
868       uint64_t VecOpIdx = Cst->getZExtValue();
869       uint64_t NewIdx = DL.isBigEndian() ? (VecOpIdx + 1) * TruncRatio - 1
870                                          : VecOpIdx * TruncRatio;
871       assert(BitCastNumElts <= std::numeric_limits<uint32_t>::max() &&
872              "overflow 32-bits");
873 
874       Type *BitCastTo = VectorType::get(DestTy, BitCastNumElts);
875       Value *BitCast = Builder.CreateBitCast(VecOp, BitCastTo);
876       return ExtractElementInst::Create(BitCast, Builder.getInt32(NewIdx));
877     }
878   }
879 
880   return nullptr;
881 }
882 
883 Instruction *InstCombiner::transformZExtICmp(ICmpInst *Cmp, ZExtInst &Zext,
884                                              bool DoTransform) {
885   // If we are just checking for a icmp eq of a single bit and zext'ing it
886   // to an integer, then shift the bit to the appropriate place and then
887   // cast to integer to avoid the comparison.
888   const APInt *Op1CV;
889   if (match(Cmp->getOperand(1), m_APInt(Op1CV))) {
890 
891     // zext (x <s  0) to i32 --> x>>u31      true if signbit set.
892     // zext (x >s -1) to i32 --> (x>>u31)^1  true if signbit clear.
893     if ((Cmp->getPredicate() == ICmpInst::ICMP_SLT && Op1CV->isNullValue()) ||
894         (Cmp->getPredicate() == ICmpInst::ICMP_SGT && Op1CV->isAllOnesValue())) {
895       if (!DoTransform) return Cmp;
896 
897       Value *In = Cmp->getOperand(0);
898       Value *Sh = ConstantInt::get(In->getType(),
899                                    In->getType()->getScalarSizeInBits() - 1);
900       In = Builder.CreateLShr(In, Sh, In->getName() + ".lobit");
901       if (In->getType() != Zext.getType())
902         In = Builder.CreateIntCast(In, Zext.getType(), false /*ZExt*/);
903 
904       if (Cmp->getPredicate() == ICmpInst::ICMP_SGT) {
905         Constant *One = ConstantInt::get(In->getType(), 1);
906         In = Builder.CreateXor(In, One, In->getName() + ".not");
907       }
908 
909       return replaceInstUsesWith(Zext, In);
910     }
911 
912     // zext (X == 0) to i32 --> X^1      iff X has only the low bit set.
913     // zext (X == 0) to i32 --> (X>>1)^1 iff X has only the 2nd bit set.
914     // zext (X == 1) to i32 --> X        iff X has only the low bit set.
915     // zext (X == 2) to i32 --> X>>1     iff X has only the 2nd bit set.
916     // zext (X != 0) to i32 --> X        iff X has only the low bit set.
917     // zext (X != 0) to i32 --> X>>1     iff X has only the 2nd bit set.
918     // zext (X != 1) to i32 --> X^1      iff X has only the low bit set.
919     // zext (X != 2) to i32 --> (X>>1)^1 iff X has only the 2nd bit set.
920     if ((Op1CV->isNullValue() || Op1CV->isPowerOf2()) &&
921         // This only works for EQ and NE
922         Cmp->isEquality()) {
923       // If Op1C some other power of two, convert:
924       KnownBits Known = computeKnownBits(Cmp->getOperand(0), 0, &Zext);
925 
926       APInt KnownZeroMask(~Known.Zero);
927       if (KnownZeroMask.isPowerOf2()) { // Exactly 1 possible 1?
928         if (!DoTransform) return Cmp;
929 
930         bool isNE = Cmp->getPredicate() == ICmpInst::ICMP_NE;
931         if (!Op1CV->isNullValue() && (*Op1CV != KnownZeroMask)) {
932           // (X&4) == 2 --> false
933           // (X&4) != 2 --> true
934           Constant *Res = ConstantInt::get(Zext.getType(), isNE);
935           return replaceInstUsesWith(Zext, Res);
936         }
937 
938         uint32_t ShAmt = KnownZeroMask.logBase2();
939         Value *In = Cmp->getOperand(0);
940         if (ShAmt) {
941           // Perform a logical shr by shiftamt.
942           // Insert the shift to put the result in the low bit.
943           In = Builder.CreateLShr(In, ConstantInt::get(In->getType(), ShAmt),
944                                   In->getName() + ".lobit");
945         }
946 
947         if (!Op1CV->isNullValue() == isNE) { // Toggle the low bit.
948           Constant *One = ConstantInt::get(In->getType(), 1);
949           In = Builder.CreateXor(In, One);
950         }
951 
952         if (Zext.getType() == In->getType())
953           return replaceInstUsesWith(Zext, In);
954 
955         Value *IntCast = Builder.CreateIntCast(In, Zext.getType(), false);
956         return replaceInstUsesWith(Zext, IntCast);
957       }
958     }
959   }
960 
961   // icmp ne A, B is equal to xor A, B when A and B only really have one bit.
962   // It is also profitable to transform icmp eq into not(xor(A, B)) because that
963   // may lead to additional simplifications.
964   if (Cmp->isEquality() && Zext.getType() == Cmp->getOperand(0)->getType()) {
965     if (IntegerType *ITy = dyn_cast<IntegerType>(Zext.getType())) {
966       Value *LHS = Cmp->getOperand(0);
967       Value *RHS = Cmp->getOperand(1);
968 
969       KnownBits KnownLHS = computeKnownBits(LHS, 0, &Zext);
970       KnownBits KnownRHS = computeKnownBits(RHS, 0, &Zext);
971 
972       if (KnownLHS.Zero == KnownRHS.Zero && KnownLHS.One == KnownRHS.One) {
973         APInt KnownBits = KnownLHS.Zero | KnownLHS.One;
974         APInt UnknownBit = ~KnownBits;
975         if (UnknownBit.countPopulation() == 1) {
976           if (!DoTransform) return Cmp;
977 
978           Value *Result = Builder.CreateXor(LHS, RHS);
979 
980           // Mask off any bits that are set and won't be shifted away.
981           if (KnownLHS.One.uge(UnknownBit))
982             Result = Builder.CreateAnd(Result,
983                                         ConstantInt::get(ITy, UnknownBit));
984 
985           // Shift the bit we're testing down to the lsb.
986           Result = Builder.CreateLShr(
987                Result, ConstantInt::get(ITy, UnknownBit.countTrailingZeros()));
988 
989           if (Cmp->getPredicate() == ICmpInst::ICMP_EQ)
990             Result = Builder.CreateXor(Result, ConstantInt::get(ITy, 1));
991           Result->takeName(Cmp);
992           return replaceInstUsesWith(Zext, Result);
993         }
994       }
995     }
996   }
997 
998   return nullptr;
999 }
1000 
1001 /// Determine if the specified value can be computed in the specified wider type
1002 /// and produce the same low bits. If not, return false.
1003 ///
1004 /// If this function returns true, it can also return a non-zero number of bits
1005 /// (in BitsToClear) which indicates that the value it computes is correct for
1006 /// the zero extend, but that the additional BitsToClear bits need to be zero'd
1007 /// out.  For example, to promote something like:
1008 ///
1009 ///   %B = trunc i64 %A to i32
1010 ///   %C = lshr i32 %B, 8
1011 ///   %E = zext i32 %C to i64
1012 ///
1013 /// CanEvaluateZExtd for the 'lshr' will return true, and BitsToClear will be
1014 /// set to 8 to indicate that the promoted value needs to have bits 24-31
1015 /// cleared in addition to bits 32-63.  Since an 'and' will be generated to
1016 /// clear the top bits anyway, doing this has no extra cost.
1017 ///
1018 /// This function works on both vectors and scalars.
1019 static bool canEvaluateZExtd(Value *V, Type *Ty, unsigned &BitsToClear,
1020                              InstCombiner &IC, Instruction *CxtI) {
1021   BitsToClear = 0;
1022   if (canAlwaysEvaluateInType(V, Ty))
1023     return true;
1024   if (canNotEvaluateInType(V, Ty))
1025     return false;
1026 
1027   auto *I = cast<Instruction>(V);
1028   unsigned Tmp;
1029   switch (I->getOpcode()) {
1030   case Instruction::ZExt:  // zext(zext(x)) -> zext(x).
1031   case Instruction::SExt:  // zext(sext(x)) -> sext(x).
1032   case Instruction::Trunc: // zext(trunc(x)) -> trunc(x) or zext(x)
1033     return true;
1034   case Instruction::And:
1035   case Instruction::Or:
1036   case Instruction::Xor:
1037   case Instruction::Add:
1038   case Instruction::Sub:
1039   case Instruction::Mul:
1040     if (!canEvaluateZExtd(I->getOperand(0), Ty, BitsToClear, IC, CxtI) ||
1041         !canEvaluateZExtd(I->getOperand(1), Ty, Tmp, IC, CxtI))
1042       return false;
1043     // These can all be promoted if neither operand has 'bits to clear'.
1044     if (BitsToClear == 0 && Tmp == 0)
1045       return true;
1046 
1047     // If the operation is an AND/OR/XOR and the bits to clear are zero in the
1048     // other side, BitsToClear is ok.
1049     if (Tmp == 0 && I->isBitwiseLogicOp()) {
1050       // We use MaskedValueIsZero here for generality, but the case we care
1051       // about the most is constant RHS.
1052       unsigned VSize = V->getType()->getScalarSizeInBits();
1053       if (IC.MaskedValueIsZero(I->getOperand(1),
1054                                APInt::getHighBitsSet(VSize, BitsToClear),
1055                                0, CxtI)) {
1056         // If this is an And instruction and all of the BitsToClear are
1057         // known to be zero we can reset BitsToClear.
1058         if (I->getOpcode() == Instruction::And)
1059           BitsToClear = 0;
1060         return true;
1061       }
1062     }
1063 
1064     // Otherwise, we don't know how to analyze this BitsToClear case yet.
1065     return false;
1066 
1067   case Instruction::Shl: {
1068     // We can promote shl(x, cst) if we can promote x.  Since shl overwrites the
1069     // upper bits we can reduce BitsToClear by the shift amount.
1070     const APInt *Amt;
1071     if (match(I->getOperand(1), m_APInt(Amt))) {
1072       if (!canEvaluateZExtd(I->getOperand(0), Ty, BitsToClear, IC, CxtI))
1073         return false;
1074       uint64_t ShiftAmt = Amt->getZExtValue();
1075       BitsToClear = ShiftAmt < BitsToClear ? BitsToClear - ShiftAmt : 0;
1076       return true;
1077     }
1078     return false;
1079   }
1080   case Instruction::LShr: {
1081     // We can promote lshr(x, cst) if we can promote x.  This requires the
1082     // ultimate 'and' to clear out the high zero bits we're clearing out though.
1083     const APInt *Amt;
1084     if (match(I->getOperand(1), m_APInt(Amt))) {
1085       if (!canEvaluateZExtd(I->getOperand(0), Ty, BitsToClear, IC, CxtI))
1086         return false;
1087       BitsToClear += Amt->getZExtValue();
1088       if (BitsToClear > V->getType()->getScalarSizeInBits())
1089         BitsToClear = V->getType()->getScalarSizeInBits();
1090       return true;
1091     }
1092     // Cannot promote variable LSHR.
1093     return false;
1094   }
1095   case Instruction::Select:
1096     if (!canEvaluateZExtd(I->getOperand(1), Ty, Tmp, IC, CxtI) ||
1097         !canEvaluateZExtd(I->getOperand(2), Ty, BitsToClear, IC, CxtI) ||
1098         // TODO: If important, we could handle the case when the BitsToClear are
1099         // known zero in the disagreeing side.
1100         Tmp != BitsToClear)
1101       return false;
1102     return true;
1103 
1104   case Instruction::PHI: {
1105     // We can change a phi if we can change all operands.  Note that we never
1106     // get into trouble with cyclic PHIs here because we only consider
1107     // instructions with a single use.
1108     PHINode *PN = cast<PHINode>(I);
1109     if (!canEvaluateZExtd(PN->getIncomingValue(0), Ty, BitsToClear, IC, CxtI))
1110       return false;
1111     for (unsigned i = 1, e = PN->getNumIncomingValues(); i != e; ++i)
1112       if (!canEvaluateZExtd(PN->getIncomingValue(i), Ty, Tmp, IC, CxtI) ||
1113           // TODO: If important, we could handle the case when the BitsToClear
1114           // are known zero in the disagreeing input.
1115           Tmp != BitsToClear)
1116         return false;
1117     return true;
1118   }
1119   default:
1120     // TODO: Can handle more cases here.
1121     return false;
1122   }
1123 }
1124 
1125 Instruction *InstCombiner::visitZExt(ZExtInst &CI) {
1126   // If this zero extend is only used by a truncate, let the truncate be
1127   // eliminated before we try to optimize this zext.
1128   if (CI.hasOneUse() && isa<TruncInst>(CI.user_back()))
1129     return nullptr;
1130 
1131   // If one of the common conversion will work, do it.
1132   if (Instruction *Result = commonCastTransforms(CI))
1133     return Result;
1134 
1135   Value *Src = CI.getOperand(0);
1136   Type *SrcTy = Src->getType(), *DestTy = CI.getType();
1137 
1138   // Try to extend the entire expression tree to the wide destination type.
1139   unsigned BitsToClear;
1140   if (shouldChangeType(SrcTy, DestTy) &&
1141       canEvaluateZExtd(Src, DestTy, BitsToClear, *this, &CI)) {
1142     assert(BitsToClear <= SrcTy->getScalarSizeInBits() &&
1143            "Can't clear more bits than in SrcTy");
1144 
1145     // Okay, we can transform this!  Insert the new expression now.
1146     LLVM_DEBUG(
1147         dbgs() << "ICE: EvaluateInDifferentType converting expression type"
1148                   " to avoid zero extend: "
1149                << CI << '\n');
1150     Value *Res = EvaluateInDifferentType(Src, DestTy, false);
1151     assert(Res->getType() == DestTy);
1152 
1153     // Preserve debug values referring to Src if the zext is its last use.
1154     if (auto *SrcOp = dyn_cast<Instruction>(Src))
1155       if (SrcOp->hasOneUse())
1156         replaceAllDbgUsesWith(*SrcOp, *Res, CI, DT);
1157 
1158     uint32_t SrcBitsKept = SrcTy->getScalarSizeInBits()-BitsToClear;
1159     uint32_t DestBitSize = DestTy->getScalarSizeInBits();
1160 
1161     // If the high bits are already filled with zeros, just replace this
1162     // cast with the result.
1163     if (MaskedValueIsZero(Res,
1164                           APInt::getHighBitsSet(DestBitSize,
1165                                                 DestBitSize-SrcBitsKept),
1166                              0, &CI))
1167       return replaceInstUsesWith(CI, Res);
1168 
1169     // We need to emit an AND to clear the high bits.
1170     Constant *C = ConstantInt::get(Res->getType(),
1171                                APInt::getLowBitsSet(DestBitSize, SrcBitsKept));
1172     return BinaryOperator::CreateAnd(Res, C);
1173   }
1174 
1175   // If this is a TRUNC followed by a ZEXT then we are dealing with integral
1176   // types and if the sizes are just right we can convert this into a logical
1177   // 'and' which will be much cheaper than the pair of casts.
1178   if (TruncInst *CSrc = dyn_cast<TruncInst>(Src)) {   // A->B->C cast
1179     // TODO: Subsume this into EvaluateInDifferentType.
1180 
1181     // Get the sizes of the types involved.  We know that the intermediate type
1182     // will be smaller than A or C, but don't know the relation between A and C.
1183     Value *A = CSrc->getOperand(0);
1184     unsigned SrcSize = A->getType()->getScalarSizeInBits();
1185     unsigned MidSize = CSrc->getType()->getScalarSizeInBits();
1186     unsigned DstSize = CI.getType()->getScalarSizeInBits();
1187     // If we're actually extending zero bits, then if
1188     // SrcSize <  DstSize: zext(a & mask)
1189     // SrcSize == DstSize: a & mask
1190     // SrcSize  > DstSize: trunc(a) & mask
1191     if (SrcSize < DstSize) {
1192       APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
1193       Constant *AndConst = ConstantInt::get(A->getType(), AndValue);
1194       Value *And = Builder.CreateAnd(A, AndConst, CSrc->getName() + ".mask");
1195       return new ZExtInst(And, CI.getType());
1196     }
1197 
1198     if (SrcSize == DstSize) {
1199       APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
1200       return BinaryOperator::CreateAnd(A, ConstantInt::get(A->getType(),
1201                                                            AndValue));
1202     }
1203     if (SrcSize > DstSize) {
1204       Value *Trunc = Builder.CreateTrunc(A, CI.getType());
1205       APInt AndValue(APInt::getLowBitsSet(DstSize, MidSize));
1206       return BinaryOperator::CreateAnd(Trunc,
1207                                        ConstantInt::get(Trunc->getType(),
1208                                                         AndValue));
1209     }
1210   }
1211 
1212   if (ICmpInst *Cmp = dyn_cast<ICmpInst>(Src))
1213     return transformZExtICmp(Cmp, CI);
1214 
1215   BinaryOperator *SrcI = dyn_cast<BinaryOperator>(Src);
1216   if (SrcI && SrcI->getOpcode() == Instruction::Or) {
1217     // zext (or icmp, icmp) -> or (zext icmp), (zext icmp) if at least one
1218     // of the (zext icmp) can be eliminated. If so, immediately perform the
1219     // according elimination.
1220     ICmpInst *LHS = dyn_cast<ICmpInst>(SrcI->getOperand(0));
1221     ICmpInst *RHS = dyn_cast<ICmpInst>(SrcI->getOperand(1));
1222     if (LHS && RHS && LHS->hasOneUse() && RHS->hasOneUse() &&
1223         (transformZExtICmp(LHS, CI, false) ||
1224          transformZExtICmp(RHS, CI, false))) {
1225       // zext (or icmp, icmp) -> or (zext icmp), (zext icmp)
1226       Value *LCast = Builder.CreateZExt(LHS, CI.getType(), LHS->getName());
1227       Value *RCast = Builder.CreateZExt(RHS, CI.getType(), RHS->getName());
1228       Value *Or = Builder.CreateOr(LCast, RCast, CI.getName());
1229       if (auto *OrInst = dyn_cast<Instruction>(Or))
1230         Builder.SetInsertPoint(OrInst);
1231 
1232       // Perform the elimination.
1233       if (auto *LZExt = dyn_cast<ZExtInst>(LCast))
1234         transformZExtICmp(LHS, *LZExt);
1235       if (auto *RZExt = dyn_cast<ZExtInst>(RCast))
1236         transformZExtICmp(RHS, *RZExt);
1237 
1238       return replaceInstUsesWith(CI, Or);
1239     }
1240   }
1241 
1242   // zext(trunc(X) & C) -> (X & zext(C)).
1243   Constant *C;
1244   Value *X;
1245   if (SrcI &&
1246       match(SrcI, m_OneUse(m_And(m_Trunc(m_Value(X)), m_Constant(C)))) &&
1247       X->getType() == CI.getType())
1248     return BinaryOperator::CreateAnd(X, ConstantExpr::getZExt(C, CI.getType()));
1249 
1250   // zext((trunc(X) & C) ^ C) -> ((X & zext(C)) ^ zext(C)).
1251   Value *And;
1252   if (SrcI && match(SrcI, m_OneUse(m_Xor(m_Value(And), m_Constant(C)))) &&
1253       match(And, m_OneUse(m_And(m_Trunc(m_Value(X)), m_Specific(C)))) &&
1254       X->getType() == CI.getType()) {
1255     Constant *ZC = ConstantExpr::getZExt(C, CI.getType());
1256     return BinaryOperator::CreateXor(Builder.CreateAnd(X, ZC), ZC);
1257   }
1258 
1259   return nullptr;
1260 }
1261 
1262 /// Transform (sext icmp) to bitwise / integer operations to eliminate the icmp.
1263 Instruction *InstCombiner::transformSExtICmp(ICmpInst *ICI, Instruction &CI) {
1264   Value *Op0 = ICI->getOperand(0), *Op1 = ICI->getOperand(1);
1265   ICmpInst::Predicate Pred = ICI->getPredicate();
1266 
1267   // Don't bother if Op1 isn't of vector or integer type.
1268   if (!Op1->getType()->isIntOrIntVectorTy())
1269     return nullptr;
1270 
1271   if ((Pred == ICmpInst::ICMP_SLT && match(Op1, m_ZeroInt())) ||
1272       (Pred == ICmpInst::ICMP_SGT && match(Op1, m_AllOnes()))) {
1273     // (x <s  0) ? -1 : 0 -> ashr x, 31        -> all ones if negative
1274     // (x >s -1) ? -1 : 0 -> not (ashr x, 31)  -> all ones if positive
1275     Value *Sh = ConstantInt::get(Op0->getType(),
1276                                  Op0->getType()->getScalarSizeInBits() - 1);
1277     Value *In = Builder.CreateAShr(Op0, Sh, Op0->getName() + ".lobit");
1278     if (In->getType() != CI.getType())
1279       In = Builder.CreateIntCast(In, CI.getType(), true /*SExt*/);
1280 
1281     if (Pred == ICmpInst::ICMP_SGT)
1282       In = Builder.CreateNot(In, In->getName() + ".not");
1283     return replaceInstUsesWith(CI, In);
1284   }
1285 
1286   if (ConstantInt *Op1C = dyn_cast<ConstantInt>(Op1)) {
1287     // If we know that only one bit of the LHS of the icmp can be set and we
1288     // have an equality comparison with zero or a power of 2, we can transform
1289     // the icmp and sext into bitwise/integer operations.
1290     if (ICI->hasOneUse() &&
1291         ICI->isEquality() && (Op1C->isZero() || Op1C->getValue().isPowerOf2())){
1292       KnownBits Known = computeKnownBits(Op0, 0, &CI);
1293 
1294       APInt KnownZeroMask(~Known.Zero);
1295       if (KnownZeroMask.isPowerOf2()) {
1296         Value *In = ICI->getOperand(0);
1297 
1298         // If the icmp tests for a known zero bit we can constant fold it.
1299         if (!Op1C->isZero() && Op1C->getValue() != KnownZeroMask) {
1300           Value *V = Pred == ICmpInst::ICMP_NE ?
1301                        ConstantInt::getAllOnesValue(CI.getType()) :
1302                        ConstantInt::getNullValue(CI.getType());
1303           return replaceInstUsesWith(CI, V);
1304         }
1305 
1306         if (!Op1C->isZero() == (Pred == ICmpInst::ICMP_NE)) {
1307           // sext ((x & 2^n) == 0)   -> (x >> n) - 1
1308           // sext ((x & 2^n) != 2^n) -> (x >> n) - 1
1309           unsigned ShiftAmt = KnownZeroMask.countTrailingZeros();
1310           // Perform a right shift to place the desired bit in the LSB.
1311           if (ShiftAmt)
1312             In = Builder.CreateLShr(In,
1313                                     ConstantInt::get(In->getType(), ShiftAmt));
1314 
1315           // At this point "In" is either 1 or 0. Subtract 1 to turn
1316           // {1, 0} -> {0, -1}.
1317           In = Builder.CreateAdd(In,
1318                                  ConstantInt::getAllOnesValue(In->getType()),
1319                                  "sext");
1320         } else {
1321           // sext ((x & 2^n) != 0)   -> (x << bitwidth-n) a>> bitwidth-1
1322           // sext ((x & 2^n) == 2^n) -> (x << bitwidth-n) a>> bitwidth-1
1323           unsigned ShiftAmt = KnownZeroMask.countLeadingZeros();
1324           // Perform a left shift to place the desired bit in the MSB.
1325           if (ShiftAmt)
1326             In = Builder.CreateShl(In,
1327                                    ConstantInt::get(In->getType(), ShiftAmt));
1328 
1329           // Distribute the bit over the whole bit width.
1330           In = Builder.CreateAShr(In, ConstantInt::get(In->getType(),
1331                                   KnownZeroMask.getBitWidth() - 1), "sext");
1332         }
1333 
1334         if (CI.getType() == In->getType())
1335           return replaceInstUsesWith(CI, In);
1336         return CastInst::CreateIntegerCast(In, CI.getType(), true/*SExt*/);
1337       }
1338     }
1339   }
1340 
1341   return nullptr;
1342 }
1343 
1344 /// Return true if we can take the specified value and return it as type Ty
1345 /// without inserting any new casts and without changing the value of the common
1346 /// low bits.  This is used by code that tries to promote integer operations to
1347 /// a wider types will allow us to eliminate the extension.
1348 ///
1349 /// This function works on both vectors and scalars.
1350 ///
1351 static bool canEvaluateSExtd(Value *V, Type *Ty) {
1352   assert(V->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits() &&
1353          "Can't sign extend type to a smaller type");
1354   if (canAlwaysEvaluateInType(V, Ty))
1355     return true;
1356   if (canNotEvaluateInType(V, Ty))
1357     return false;
1358 
1359   auto *I = cast<Instruction>(V);
1360   switch (I->getOpcode()) {
1361   case Instruction::SExt:  // sext(sext(x)) -> sext(x)
1362   case Instruction::ZExt:  // sext(zext(x)) -> zext(x)
1363   case Instruction::Trunc: // sext(trunc(x)) -> trunc(x) or sext(x)
1364     return true;
1365   case Instruction::And:
1366   case Instruction::Or:
1367   case Instruction::Xor:
1368   case Instruction::Add:
1369   case Instruction::Sub:
1370   case Instruction::Mul:
1371     // These operators can all arbitrarily be extended if their inputs can.
1372     return canEvaluateSExtd(I->getOperand(0), Ty) &&
1373            canEvaluateSExtd(I->getOperand(1), Ty);
1374 
1375   //case Instruction::Shl:   TODO
1376   //case Instruction::LShr:  TODO
1377 
1378   case Instruction::Select:
1379     return canEvaluateSExtd(I->getOperand(1), Ty) &&
1380            canEvaluateSExtd(I->getOperand(2), Ty);
1381 
1382   case Instruction::PHI: {
1383     // We can change a phi if we can change all operands.  Note that we never
1384     // get into trouble with cyclic PHIs here because we only consider
1385     // instructions with a single use.
1386     PHINode *PN = cast<PHINode>(I);
1387     for (Value *IncValue : PN->incoming_values())
1388       if (!canEvaluateSExtd(IncValue, Ty)) return false;
1389     return true;
1390   }
1391   default:
1392     // TODO: Can handle more cases here.
1393     break;
1394   }
1395 
1396   return false;
1397 }
1398 
1399 Instruction *InstCombiner::visitSExt(SExtInst &CI) {
1400   // If this sign extend is only used by a truncate, let the truncate be
1401   // eliminated before we try to optimize this sext.
1402   if (CI.hasOneUse() && isa<TruncInst>(CI.user_back()))
1403     return nullptr;
1404 
1405   if (Instruction *I = commonCastTransforms(CI))
1406     return I;
1407 
1408   Value *Src = CI.getOperand(0);
1409   Type *SrcTy = Src->getType(), *DestTy = CI.getType();
1410 
1411   // If we know that the value being extended is positive, we can use a zext
1412   // instead.
1413   KnownBits Known = computeKnownBits(Src, 0, &CI);
1414   if (Known.isNonNegative())
1415     return CastInst::Create(Instruction::ZExt, Src, DestTy);
1416 
1417   // Try to extend the entire expression tree to the wide destination type.
1418   if (shouldChangeType(SrcTy, DestTy) && canEvaluateSExtd(Src, DestTy)) {
1419     // Okay, we can transform this!  Insert the new expression now.
1420     LLVM_DEBUG(
1421         dbgs() << "ICE: EvaluateInDifferentType converting expression type"
1422                   " to avoid sign extend: "
1423                << CI << '\n');
1424     Value *Res = EvaluateInDifferentType(Src, DestTy, true);
1425     assert(Res->getType() == DestTy);
1426 
1427     uint32_t SrcBitSize = SrcTy->getScalarSizeInBits();
1428     uint32_t DestBitSize = DestTy->getScalarSizeInBits();
1429 
1430     // If the high bits are already filled with sign bit, just replace this
1431     // cast with the result.
1432     if (ComputeNumSignBits(Res, 0, &CI) > DestBitSize - SrcBitSize)
1433       return replaceInstUsesWith(CI, Res);
1434 
1435     // We need to emit a shl + ashr to do the sign extend.
1436     Value *ShAmt = ConstantInt::get(DestTy, DestBitSize-SrcBitSize);
1437     return BinaryOperator::CreateAShr(Builder.CreateShl(Res, ShAmt, "sext"),
1438                                       ShAmt);
1439   }
1440 
1441   // If the input is a trunc from the destination type, then turn sext(trunc(x))
1442   // into shifts.
1443   Value *X;
1444   if (match(Src, m_OneUse(m_Trunc(m_Value(X)))) && X->getType() == DestTy) {
1445     // sext(trunc(X)) --> ashr(shl(X, C), C)
1446     unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
1447     unsigned DestBitSize = DestTy->getScalarSizeInBits();
1448     Constant *ShAmt = ConstantInt::get(DestTy, DestBitSize - SrcBitSize);
1449     return BinaryOperator::CreateAShr(Builder.CreateShl(X, ShAmt), ShAmt);
1450   }
1451 
1452   if (ICmpInst *ICI = dyn_cast<ICmpInst>(Src))
1453     return transformSExtICmp(ICI, CI);
1454 
1455   // If the input is a shl/ashr pair of a same constant, then this is a sign
1456   // extension from a smaller value.  If we could trust arbitrary bitwidth
1457   // integers, we could turn this into a truncate to the smaller bit and then
1458   // use a sext for the whole extension.  Since we don't, look deeper and check
1459   // for a truncate.  If the source and dest are the same type, eliminate the
1460   // trunc and extend and just do shifts.  For example, turn:
1461   //   %a = trunc i32 %i to i8
1462   //   %b = shl i8 %a, 6
1463   //   %c = ashr i8 %b, 6
1464   //   %d = sext i8 %c to i32
1465   // into:
1466   //   %a = shl i32 %i, 30
1467   //   %d = ashr i32 %a, 30
1468   Value *A = nullptr;
1469   // TODO: Eventually this could be subsumed by EvaluateInDifferentType.
1470   ConstantInt *BA = nullptr, *CA = nullptr;
1471   if (match(Src, m_AShr(m_Shl(m_Trunc(m_Value(A)), m_ConstantInt(BA)),
1472                         m_ConstantInt(CA))) &&
1473       BA == CA && A->getType() == CI.getType()) {
1474     unsigned MidSize = Src->getType()->getScalarSizeInBits();
1475     unsigned SrcDstSize = CI.getType()->getScalarSizeInBits();
1476     unsigned ShAmt = CA->getZExtValue()+SrcDstSize-MidSize;
1477     Constant *ShAmtV = ConstantInt::get(CI.getType(), ShAmt);
1478     A = Builder.CreateShl(A, ShAmtV, CI.getName());
1479     return BinaryOperator::CreateAShr(A, ShAmtV);
1480   }
1481 
1482   return nullptr;
1483 }
1484 
1485 
1486 /// Return a Constant* for the specified floating-point constant if it fits
1487 /// in the specified FP type without changing its value.
1488 static bool fitsInFPType(ConstantFP *CFP, const fltSemantics &Sem) {
1489   bool losesInfo;
1490   APFloat F = CFP->getValueAPF();
1491   (void)F.convert(Sem, APFloat::rmNearestTiesToEven, &losesInfo);
1492   return !losesInfo;
1493 }
1494 
1495 static Type *shrinkFPConstant(ConstantFP *CFP) {
1496   if (CFP->getType() == Type::getPPC_FP128Ty(CFP->getContext()))
1497     return nullptr;  // No constant folding of this.
1498   // See if the value can be truncated to half and then reextended.
1499   if (fitsInFPType(CFP, APFloat::IEEEhalf()))
1500     return Type::getHalfTy(CFP->getContext());
1501   // See if the value can be truncated to float and then reextended.
1502   if (fitsInFPType(CFP, APFloat::IEEEsingle()))
1503     return Type::getFloatTy(CFP->getContext());
1504   if (CFP->getType()->isDoubleTy())
1505     return nullptr;  // Won't shrink.
1506   if (fitsInFPType(CFP, APFloat::IEEEdouble()))
1507     return Type::getDoubleTy(CFP->getContext());
1508   // Don't try to shrink to various long double types.
1509   return nullptr;
1510 }
1511 
1512 // Determine if this is a vector of ConstantFPs and if so, return the minimal
1513 // type we can safely truncate all elements to.
1514 // TODO: Make these support undef elements.
1515 static Type *shrinkFPConstantVector(Value *V) {
1516   auto *CV = dyn_cast<Constant>(V);
1517   auto *CVVTy = dyn_cast<VectorType>(V->getType());
1518   if (!CV || !CVVTy)
1519     return nullptr;
1520 
1521   Type *MinType = nullptr;
1522 
1523   unsigned NumElts = CVVTy->getNumElements();
1524   for (unsigned i = 0; i != NumElts; ++i) {
1525     auto *CFP = dyn_cast_or_null<ConstantFP>(CV->getAggregateElement(i));
1526     if (!CFP)
1527       return nullptr;
1528 
1529     Type *T = shrinkFPConstant(CFP);
1530     if (!T)
1531       return nullptr;
1532 
1533     // If we haven't found a type yet or this type has a larger mantissa than
1534     // our previous type, this is our new minimal type.
1535     if (!MinType || T->getFPMantissaWidth() > MinType->getFPMantissaWidth())
1536       MinType = T;
1537   }
1538 
1539   // Make a vector type from the minimal type.
1540   return VectorType::get(MinType, NumElts);
1541 }
1542 
1543 /// Find the minimum FP type we can safely truncate to.
1544 static Type *getMinimumFPType(Value *V) {
1545   if (auto *FPExt = dyn_cast<FPExtInst>(V))
1546     return FPExt->getOperand(0)->getType();
1547 
1548   // If this value is a constant, return the constant in the smallest FP type
1549   // that can accurately represent it.  This allows us to turn
1550   // (float)((double)X+2.0) into x+2.0f.
1551   if (auto *CFP = dyn_cast<ConstantFP>(V))
1552     if (Type *T = shrinkFPConstant(CFP))
1553       return T;
1554 
1555   // Try to shrink a vector of FP constants.
1556   if (Type *T = shrinkFPConstantVector(V))
1557     return T;
1558 
1559   return V->getType();
1560 }
1561 
1562 Instruction *InstCombiner::visitFPTrunc(FPTruncInst &FPT) {
1563   if (Instruction *I = commonCastTransforms(FPT))
1564     return I;
1565 
1566   // If we have fptrunc(OpI (fpextend x), (fpextend y)), we would like to
1567   // simplify this expression to avoid one or more of the trunc/extend
1568   // operations if we can do so without changing the numerical results.
1569   //
1570   // The exact manner in which the widths of the operands interact to limit
1571   // what we can and cannot do safely varies from operation to operation, and
1572   // is explained below in the various case statements.
1573   Type *Ty = FPT.getType();
1574   auto *BO = dyn_cast<BinaryOperator>(FPT.getOperand(0));
1575   if (BO && BO->hasOneUse()) {
1576     Type *LHSMinType = getMinimumFPType(BO->getOperand(0));
1577     Type *RHSMinType = getMinimumFPType(BO->getOperand(1));
1578     unsigned OpWidth = BO->getType()->getFPMantissaWidth();
1579     unsigned LHSWidth = LHSMinType->getFPMantissaWidth();
1580     unsigned RHSWidth = RHSMinType->getFPMantissaWidth();
1581     unsigned SrcWidth = std::max(LHSWidth, RHSWidth);
1582     unsigned DstWidth = Ty->getFPMantissaWidth();
1583     switch (BO->getOpcode()) {
1584       default: break;
1585       case Instruction::FAdd:
1586       case Instruction::FSub:
1587         // For addition and subtraction, the infinitely precise result can
1588         // essentially be arbitrarily wide; proving that double rounding
1589         // will not occur because the result of OpI is exact (as we will for
1590         // FMul, for example) is hopeless.  However, we *can* nonetheless
1591         // frequently know that double rounding cannot occur (or that it is
1592         // innocuous) by taking advantage of the specific structure of
1593         // infinitely-precise results that admit double rounding.
1594         //
1595         // Specifically, if OpWidth >= 2*DstWdith+1 and DstWidth is sufficient
1596         // to represent both sources, we can guarantee that the double
1597         // rounding is innocuous (See p50 of Figueroa's 2000 PhD thesis,
1598         // "A Rigorous Framework for Fully Supporting the IEEE Standard ..."
1599         // for proof of this fact).
1600         //
1601         // Note: Figueroa does not consider the case where DstFormat !=
1602         // SrcFormat.  It's possible (likely even!) that this analysis
1603         // could be tightened for those cases, but they are rare (the main
1604         // case of interest here is (float)((double)float + float)).
1605         if (OpWidth >= 2*DstWidth+1 && DstWidth >= SrcWidth) {
1606           Value *LHS = Builder.CreateFPTrunc(BO->getOperand(0), Ty);
1607           Value *RHS = Builder.CreateFPTrunc(BO->getOperand(1), Ty);
1608           Instruction *RI = BinaryOperator::Create(BO->getOpcode(), LHS, RHS);
1609           RI->copyFastMathFlags(BO);
1610           return RI;
1611         }
1612         break;
1613       case Instruction::FMul:
1614         // For multiplication, the infinitely precise result has at most
1615         // LHSWidth + RHSWidth significant bits; if OpWidth is sufficient
1616         // that such a value can be exactly represented, then no double
1617         // rounding can possibly occur; we can safely perform the operation
1618         // in the destination format if it can represent both sources.
1619         if (OpWidth >= LHSWidth + RHSWidth && DstWidth >= SrcWidth) {
1620           Value *LHS = Builder.CreateFPTrunc(BO->getOperand(0), Ty);
1621           Value *RHS = Builder.CreateFPTrunc(BO->getOperand(1), Ty);
1622           return BinaryOperator::CreateFMulFMF(LHS, RHS, BO);
1623         }
1624         break;
1625       case Instruction::FDiv:
1626         // For division, we use again use the bound from Figueroa's
1627         // dissertation.  I am entirely certain that this bound can be
1628         // tightened in the unbalanced operand case by an analysis based on
1629         // the diophantine rational approximation bound, but the well-known
1630         // condition used here is a good conservative first pass.
1631         // TODO: Tighten bound via rigorous analysis of the unbalanced case.
1632         if (OpWidth >= 2*DstWidth && DstWidth >= SrcWidth) {
1633           Value *LHS = Builder.CreateFPTrunc(BO->getOperand(0), Ty);
1634           Value *RHS = Builder.CreateFPTrunc(BO->getOperand(1), Ty);
1635           return BinaryOperator::CreateFDivFMF(LHS, RHS, BO);
1636         }
1637         break;
1638       case Instruction::FRem: {
1639         // Remainder is straightforward.  Remainder is always exact, so the
1640         // type of OpI doesn't enter into things at all.  We simply evaluate
1641         // in whichever source type is larger, then convert to the
1642         // destination type.
1643         if (SrcWidth == OpWidth)
1644           break;
1645         Value *LHS, *RHS;
1646         if (LHSWidth == SrcWidth) {
1647            LHS = Builder.CreateFPTrunc(BO->getOperand(0), LHSMinType);
1648            RHS = Builder.CreateFPTrunc(BO->getOperand(1), LHSMinType);
1649         } else {
1650            LHS = Builder.CreateFPTrunc(BO->getOperand(0), RHSMinType);
1651            RHS = Builder.CreateFPTrunc(BO->getOperand(1), RHSMinType);
1652         }
1653 
1654         Value *ExactResult = Builder.CreateFRemFMF(LHS, RHS, BO);
1655         return CastInst::CreateFPCast(ExactResult, Ty);
1656       }
1657     }
1658   }
1659 
1660   // (fptrunc (fneg x)) -> (fneg (fptrunc x))
1661   Value *X;
1662   Instruction *Op = dyn_cast<Instruction>(FPT.getOperand(0));
1663   if (Op && Op->hasOneUse()) {
1664     // FIXME: The FMF should propagate from the fptrunc, not the source op.
1665     IRBuilder<>::FastMathFlagGuard FMFG(Builder);
1666     if (isa<FPMathOperator>(Op))
1667       Builder.setFastMathFlags(Op->getFastMathFlags());
1668 
1669     if (match(Op, m_FNeg(m_Value(X)))) {
1670       Value *InnerTrunc = Builder.CreateFPTrunc(X, Ty);
1671 
1672       return UnaryOperator::CreateFNegFMF(InnerTrunc, Op);
1673     }
1674 
1675     // If we are truncating a select that has an extended operand, we can
1676     // narrow the other operand and do the select as a narrow op.
1677     Value *Cond, *X, *Y;
1678     if (match(Op, m_Select(m_Value(Cond), m_FPExt(m_Value(X)), m_Value(Y))) &&
1679         X->getType() == Ty) {
1680       // fptrunc (select Cond, (fpext X), Y --> select Cond, X, (fptrunc Y)
1681       Value *NarrowY = Builder.CreateFPTrunc(Y, Ty);
1682       Value *Sel = Builder.CreateSelect(Cond, X, NarrowY, "narrow.sel", Op);
1683       return replaceInstUsesWith(FPT, Sel);
1684     }
1685     if (match(Op, m_Select(m_Value(Cond), m_Value(Y), m_FPExt(m_Value(X)))) &&
1686         X->getType() == Ty) {
1687       // fptrunc (select Cond, Y, (fpext X) --> select Cond, (fptrunc Y), X
1688       Value *NarrowY = Builder.CreateFPTrunc(Y, Ty);
1689       Value *Sel = Builder.CreateSelect(Cond, NarrowY, X, "narrow.sel", Op);
1690       return replaceInstUsesWith(FPT, Sel);
1691     }
1692   }
1693 
1694   if (auto *II = dyn_cast<IntrinsicInst>(FPT.getOperand(0))) {
1695     switch (II->getIntrinsicID()) {
1696     default: break;
1697     case Intrinsic::ceil:
1698     case Intrinsic::fabs:
1699     case Intrinsic::floor:
1700     case Intrinsic::nearbyint:
1701     case Intrinsic::rint:
1702     case Intrinsic::round:
1703     case Intrinsic::trunc: {
1704       Value *Src = II->getArgOperand(0);
1705       if (!Src->hasOneUse())
1706         break;
1707 
1708       // Except for fabs, this transformation requires the input of the unary FP
1709       // operation to be itself an fpext from the type to which we're
1710       // truncating.
1711       if (II->getIntrinsicID() != Intrinsic::fabs) {
1712         FPExtInst *FPExtSrc = dyn_cast<FPExtInst>(Src);
1713         if (!FPExtSrc || FPExtSrc->getSrcTy() != Ty)
1714           break;
1715       }
1716 
1717       // Do unary FP operation on smaller type.
1718       // (fptrunc (fabs x)) -> (fabs (fptrunc x))
1719       Value *InnerTrunc = Builder.CreateFPTrunc(Src, Ty);
1720       Function *Overload = Intrinsic::getDeclaration(FPT.getModule(),
1721                                                      II->getIntrinsicID(), Ty);
1722       SmallVector<OperandBundleDef, 1> OpBundles;
1723       II->getOperandBundlesAsDefs(OpBundles);
1724       CallInst *NewCI =
1725           CallInst::Create(Overload, {InnerTrunc}, OpBundles, II->getName());
1726       NewCI->copyFastMathFlags(II);
1727       return NewCI;
1728     }
1729     }
1730   }
1731 
1732   if (Instruction *I = shrinkInsertElt(FPT, Builder))
1733     return I;
1734 
1735   return nullptr;
1736 }
1737 
1738 /// Return true if the cast from integer to FP can be proven to be exact for all
1739 /// possible inputs (the conversion does not lose any precision).
1740 static bool isKnownExactCastIntToFP(CastInst &I) {
1741   CastInst::CastOps Opcode = I.getOpcode();
1742   assert((Opcode == CastInst::SIToFP || Opcode == CastInst::UIToFP) &&
1743          "Unexpected cast");
1744   Value *Src = I.getOperand(0);
1745   Type *SrcTy = Src->getType();
1746   Type *FPTy = I.getType();
1747   bool IsSigned = Opcode == Instruction::SIToFP;
1748   int SrcSize = (int)SrcTy->getScalarSizeInBits() - IsSigned;
1749 
1750   // Easy case - if the source integer type has less bits than the FP mantissa,
1751   // then the cast must be exact.
1752   if (SrcSize <= FPTy->getFPMantissaWidth())
1753     return true;
1754 
1755   // TODO:
1756   // Try harder to find if the source integer type has less significant bits.
1757   return false;
1758 }
1759 
1760 Instruction *InstCombiner::visitFPExt(CastInst &FPExt) {
1761   // If the source operand is a cast from integer to FP and known exact, then
1762   // cast the integer operand directly to the destination type.
1763   Type *Ty = FPExt.getType();
1764   Value *Src = FPExt.getOperand(0);
1765   if (isa<SIToFPInst>(Src) || isa<UIToFPInst>(Src)) {
1766     auto *FPCast = cast<CastInst>(Src);
1767     if (isKnownExactCastIntToFP(*FPCast))
1768       return CastInst::Create(FPCast->getOpcode(), FPCast->getOperand(0), Ty);
1769   }
1770 
1771   return commonCastTransforms(FPExt);
1772 }
1773 
1774 /// fpto{s/u}i({u/s}itofp(X)) --> X or zext(X) or sext(X) or trunc(X)
1775 /// This is safe if the intermediate type has enough bits in its mantissa to
1776 /// accurately represent all values of X.  For example, this won't work with
1777 /// i64 -> float -> i64.
1778 Instruction *InstCombiner::foldItoFPtoI(CastInst &FI) {
1779   if (!isa<UIToFPInst>(FI.getOperand(0)) && !isa<SIToFPInst>(FI.getOperand(0)))
1780     return nullptr;
1781 
1782   auto *OpI = cast<CastInst>(FI.getOperand(0));
1783   Value *X = OpI->getOperand(0);
1784   Type *XType = X->getType();
1785   Type *DestType = FI.getType();
1786   bool IsOutputSigned = isa<FPToSIInst>(FI);
1787 
1788   // Since we can assume the conversion won't overflow, our decision as to
1789   // whether the input will fit in the float should depend on the minimum
1790   // of the input range and output range.
1791 
1792   // This means this is also safe for a signed input and unsigned output, since
1793   // a negative input would lead to undefined behavior.
1794   if (!isKnownExactCastIntToFP(*OpI)) {
1795     // The first cast may not round exactly based on the source integer width
1796     // and FP width, but the overflow UB rules can still allow this to fold.
1797     // If the destination type is narrow, that means the intermediate FP value
1798     // must be large enough to hold the source value exactly.
1799     // For example, (uint8_t)((float)(uint32_t 16777217) is undefined behavior.
1800     int OutputSize = (int)DestType->getScalarSizeInBits() - IsOutputSigned;
1801     if (OutputSize > OpI->getType()->getFPMantissaWidth())
1802       return nullptr;
1803   }
1804 
1805   if (DestType->getScalarSizeInBits() > XType->getScalarSizeInBits()) {
1806     bool IsInputSigned = isa<SIToFPInst>(OpI);
1807     if (IsInputSigned && IsOutputSigned)
1808       return new SExtInst(X, DestType);
1809     return new ZExtInst(X, DestType);
1810   }
1811   if (DestType->getScalarSizeInBits() < XType->getScalarSizeInBits())
1812     return new TruncInst(X, DestType);
1813 
1814   assert(XType == DestType && "Unexpected types for int to FP to int casts");
1815   return replaceInstUsesWith(FI, X);
1816 }
1817 
1818 Instruction *InstCombiner::visitFPToUI(FPToUIInst &FI) {
1819   if (Instruction *I = foldItoFPtoI(FI))
1820     return I;
1821 
1822   return commonCastTransforms(FI);
1823 }
1824 
1825 Instruction *InstCombiner::visitFPToSI(FPToSIInst &FI) {
1826   if (Instruction *I = foldItoFPtoI(FI))
1827     return I;
1828 
1829   return commonCastTransforms(FI);
1830 }
1831 
1832 Instruction *InstCombiner::visitUIToFP(CastInst &CI) {
1833   return commonCastTransforms(CI);
1834 }
1835 
1836 Instruction *InstCombiner::visitSIToFP(CastInst &CI) {
1837   return commonCastTransforms(CI);
1838 }
1839 
1840 Instruction *InstCombiner::visitIntToPtr(IntToPtrInst &CI) {
1841   // If the source integer type is not the intptr_t type for this target, do a
1842   // trunc or zext to the intptr_t type, then inttoptr of it.  This allows the
1843   // cast to be exposed to other transforms.
1844   unsigned AS = CI.getAddressSpace();
1845   if (CI.getOperand(0)->getType()->getScalarSizeInBits() !=
1846       DL.getPointerSizeInBits(AS)) {
1847     Type *Ty = DL.getIntPtrType(CI.getContext(), AS);
1848     // Handle vectors of pointers.
1849     if (auto *CIVTy = dyn_cast<VectorType>(CI.getType()))
1850       Ty = VectorType::get(Ty, CIVTy->getElementCount());
1851 
1852     Value *P = Builder.CreateZExtOrTrunc(CI.getOperand(0), Ty);
1853     return new IntToPtrInst(P, CI.getType());
1854   }
1855 
1856   if (Instruction *I = commonCastTransforms(CI))
1857     return I;
1858 
1859   return nullptr;
1860 }
1861 
1862 /// Implement the transforms for cast of pointer (bitcast/ptrtoint)
1863 Instruction *InstCombiner::commonPointerCastTransforms(CastInst &CI) {
1864   Value *Src = CI.getOperand(0);
1865 
1866   if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Src)) {
1867     // If casting the result of a getelementptr instruction with no offset, turn
1868     // this into a cast of the original pointer!
1869     if (GEP->hasAllZeroIndices() &&
1870         // If CI is an addrspacecast and GEP changes the poiner type, merging
1871         // GEP into CI would undo canonicalizing addrspacecast with different
1872         // pointer types, causing infinite loops.
1873         (!isa<AddrSpaceCastInst>(CI) ||
1874          GEP->getType() == GEP->getPointerOperandType())) {
1875       // Changing the cast operand is usually not a good idea but it is safe
1876       // here because the pointer operand is being replaced with another
1877       // pointer operand so the opcode doesn't need to change.
1878       return replaceOperand(CI, 0, GEP->getOperand(0));
1879     }
1880   }
1881 
1882   return commonCastTransforms(CI);
1883 }
1884 
1885 Instruction *InstCombiner::visitPtrToInt(PtrToIntInst &CI) {
1886   // If the destination integer type is not the intptr_t type for this target,
1887   // do a ptrtoint to intptr_t then do a trunc or zext.  This allows the cast
1888   // to be exposed to other transforms.
1889 
1890   Type *Ty = CI.getType();
1891   unsigned AS = CI.getPointerAddressSpace();
1892 
1893   if (Ty->getScalarSizeInBits() == DL.getPointerSizeInBits(AS))
1894     return commonPointerCastTransforms(CI);
1895 
1896   Type *PtrTy = DL.getIntPtrType(CI.getContext(), AS);
1897   if (auto *VTy = dyn_cast<VectorType>(Ty)) // Handle vectors of pointers.
1898     PtrTy = VectorType::get(PtrTy, VTy->getNumElements());
1899 
1900   Value *P = Builder.CreatePtrToInt(CI.getOperand(0), PtrTy);
1901   return CastInst::CreateIntegerCast(P, Ty, /*isSigned=*/false);
1902 }
1903 
1904 /// This input value (which is known to have vector type) is being zero extended
1905 /// or truncated to the specified vector type. Since the zext/trunc is done
1906 /// using an integer type, we have a (bitcast(cast(bitcast))) pattern,
1907 /// endianness will impact which end of the vector that is extended or
1908 /// truncated.
1909 ///
1910 /// A vector is always stored with index 0 at the lowest address, which
1911 /// corresponds to the most significant bits for a big endian stored integer and
1912 /// the least significant bits for little endian. A trunc/zext of an integer
1913 /// impacts the big end of the integer. Thus, we need to add/remove elements at
1914 /// the front of the vector for big endian targets, and the back of the vector
1915 /// for little endian targets.
1916 ///
1917 /// Try to replace it with a shuffle (and vector/vector bitcast) if possible.
1918 ///
1919 /// The source and destination vector types may have different element types.
1920 static Instruction *optimizeVectorResizeWithIntegerBitCasts(Value *InVal,
1921                                                             VectorType *DestTy,
1922                                                             InstCombiner &IC) {
1923   // We can only do this optimization if the output is a multiple of the input
1924   // element size, or the input is a multiple of the output element size.
1925   // Convert the input type to have the same element type as the output.
1926   VectorType *SrcTy = cast<VectorType>(InVal->getType());
1927 
1928   if (SrcTy->getElementType() != DestTy->getElementType()) {
1929     // The input types don't need to be identical, but for now they must be the
1930     // same size.  There is no specific reason we couldn't handle things like
1931     // <4 x i16> -> <4 x i32> by bitcasting to <2 x i32> but haven't gotten
1932     // there yet.
1933     if (SrcTy->getElementType()->getPrimitiveSizeInBits() !=
1934         DestTy->getElementType()->getPrimitiveSizeInBits())
1935       return nullptr;
1936 
1937     SrcTy = VectorType::get(DestTy->getElementType(), SrcTy->getNumElements());
1938     InVal = IC.Builder.CreateBitCast(InVal, SrcTy);
1939   }
1940 
1941   bool IsBigEndian = IC.getDataLayout().isBigEndian();
1942   unsigned SrcElts = SrcTy->getNumElements();
1943   unsigned DestElts = DestTy->getNumElements();
1944 
1945   assert(SrcElts != DestElts && "Element counts should be different.");
1946 
1947   // Now that the element types match, get the shuffle mask and RHS of the
1948   // shuffle to use, which depends on whether we're increasing or decreasing the
1949   // size of the input.
1950   SmallVector<int, 16> ShuffleMaskStorage;
1951   ArrayRef<int> ShuffleMask;
1952   Value *V2;
1953 
1954   // Produce an identify shuffle mask for the src vector.
1955   ShuffleMaskStorage.resize(SrcElts);
1956   std::iota(ShuffleMaskStorage.begin(), ShuffleMaskStorage.end(), 0);
1957 
1958   if (SrcElts > DestElts) {
1959     // If we're shrinking the number of elements (rewriting an integer
1960     // truncate), just shuffle in the elements corresponding to the least
1961     // significant bits from the input and use undef as the second shuffle
1962     // input.
1963     V2 = UndefValue::get(SrcTy);
1964     // Make sure the shuffle mask selects the "least significant bits" by
1965     // keeping elements from back of the src vector for big endian, and from the
1966     // front for little endian.
1967     ShuffleMask = ShuffleMaskStorage;
1968     if (IsBigEndian)
1969       ShuffleMask = ShuffleMask.take_back(DestElts);
1970     else
1971       ShuffleMask = ShuffleMask.take_front(DestElts);
1972   } else {
1973     // If we're increasing the number of elements (rewriting an integer zext),
1974     // shuffle in all of the elements from InVal. Fill the rest of the result
1975     // elements with zeros from a constant zero.
1976     V2 = Constant::getNullValue(SrcTy);
1977     // Use first elt from V2 when indicating zero in the shuffle mask.
1978     uint32_t NullElt = SrcElts;
1979     // Extend with null values in the "most significant bits" by adding elements
1980     // in front of the src vector for big endian, and at the back for little
1981     // endian.
1982     unsigned DeltaElts = DestElts - SrcElts;
1983     if (IsBigEndian)
1984       ShuffleMaskStorage.insert(ShuffleMaskStorage.begin(), DeltaElts, NullElt);
1985     else
1986       ShuffleMaskStorage.append(DeltaElts, NullElt);
1987     ShuffleMask = ShuffleMaskStorage;
1988   }
1989 
1990   return new ShuffleVectorInst(InVal, V2, ShuffleMask);
1991 }
1992 
1993 static bool isMultipleOfTypeSize(unsigned Value, Type *Ty) {
1994   return Value % Ty->getPrimitiveSizeInBits() == 0;
1995 }
1996 
1997 static unsigned getTypeSizeIndex(unsigned Value, Type *Ty) {
1998   return Value / Ty->getPrimitiveSizeInBits();
1999 }
2000 
2001 /// V is a value which is inserted into a vector of VecEltTy.
2002 /// Look through the value to see if we can decompose it into
2003 /// insertions into the vector.  See the example in the comment for
2004 /// OptimizeIntegerToVectorInsertions for the pattern this handles.
2005 /// The type of V is always a non-zero multiple of VecEltTy's size.
2006 /// Shift is the number of bits between the lsb of V and the lsb of
2007 /// the vector.
2008 ///
2009 /// This returns false if the pattern can't be matched or true if it can,
2010 /// filling in Elements with the elements found here.
2011 static bool collectInsertionElements(Value *V, unsigned Shift,
2012                                      SmallVectorImpl<Value *> &Elements,
2013                                      Type *VecEltTy, bool isBigEndian) {
2014   assert(isMultipleOfTypeSize(Shift, VecEltTy) &&
2015          "Shift should be a multiple of the element type size");
2016 
2017   // Undef values never contribute useful bits to the result.
2018   if (isa<UndefValue>(V)) return true;
2019 
2020   // If we got down to a value of the right type, we win, try inserting into the
2021   // right element.
2022   if (V->getType() == VecEltTy) {
2023     // Inserting null doesn't actually insert any elements.
2024     if (Constant *C = dyn_cast<Constant>(V))
2025       if (C->isNullValue())
2026         return true;
2027 
2028     unsigned ElementIndex = getTypeSizeIndex(Shift, VecEltTy);
2029     if (isBigEndian)
2030       ElementIndex = Elements.size() - ElementIndex - 1;
2031 
2032     // Fail if multiple elements are inserted into this slot.
2033     if (Elements[ElementIndex])
2034       return false;
2035 
2036     Elements[ElementIndex] = V;
2037     return true;
2038   }
2039 
2040   if (Constant *C = dyn_cast<Constant>(V)) {
2041     // Figure out the # elements this provides, and bitcast it or slice it up
2042     // as required.
2043     unsigned NumElts = getTypeSizeIndex(C->getType()->getPrimitiveSizeInBits(),
2044                                         VecEltTy);
2045     // If the constant is the size of a vector element, we just need to bitcast
2046     // it to the right type so it gets properly inserted.
2047     if (NumElts == 1)
2048       return collectInsertionElements(ConstantExpr::getBitCast(C, VecEltTy),
2049                                       Shift, Elements, VecEltTy, isBigEndian);
2050 
2051     // Okay, this is a constant that covers multiple elements.  Slice it up into
2052     // pieces and insert each element-sized piece into the vector.
2053     if (!isa<IntegerType>(C->getType()))
2054       C = ConstantExpr::getBitCast(C, IntegerType::get(V->getContext(),
2055                                        C->getType()->getPrimitiveSizeInBits()));
2056     unsigned ElementSize = VecEltTy->getPrimitiveSizeInBits();
2057     Type *ElementIntTy = IntegerType::get(C->getContext(), ElementSize);
2058 
2059     for (unsigned i = 0; i != NumElts; ++i) {
2060       unsigned ShiftI = Shift+i*ElementSize;
2061       Constant *Piece = ConstantExpr::getLShr(C, ConstantInt::get(C->getType(),
2062                                                                   ShiftI));
2063       Piece = ConstantExpr::getTrunc(Piece, ElementIntTy);
2064       if (!collectInsertionElements(Piece, ShiftI, Elements, VecEltTy,
2065                                     isBigEndian))
2066         return false;
2067     }
2068     return true;
2069   }
2070 
2071   if (!V->hasOneUse()) return false;
2072 
2073   Instruction *I = dyn_cast<Instruction>(V);
2074   if (!I) return false;
2075   switch (I->getOpcode()) {
2076   default: return false; // Unhandled case.
2077   case Instruction::BitCast:
2078     return collectInsertionElements(I->getOperand(0), Shift, Elements, VecEltTy,
2079                                     isBigEndian);
2080   case Instruction::ZExt:
2081     if (!isMultipleOfTypeSize(
2082                           I->getOperand(0)->getType()->getPrimitiveSizeInBits(),
2083                               VecEltTy))
2084       return false;
2085     return collectInsertionElements(I->getOperand(0), Shift, Elements, VecEltTy,
2086                                     isBigEndian);
2087   case Instruction::Or:
2088     return collectInsertionElements(I->getOperand(0), Shift, Elements, VecEltTy,
2089                                     isBigEndian) &&
2090            collectInsertionElements(I->getOperand(1), Shift, Elements, VecEltTy,
2091                                     isBigEndian);
2092   case Instruction::Shl: {
2093     // Must be shifting by a constant that is a multiple of the element size.
2094     ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(1));
2095     if (!CI) return false;
2096     Shift += CI->getZExtValue();
2097     if (!isMultipleOfTypeSize(Shift, VecEltTy)) return false;
2098     return collectInsertionElements(I->getOperand(0), Shift, Elements, VecEltTy,
2099                                     isBigEndian);
2100   }
2101 
2102   }
2103 }
2104 
2105 
2106 /// If the input is an 'or' instruction, we may be doing shifts and ors to
2107 /// assemble the elements of the vector manually.
2108 /// Try to rip the code out and replace it with insertelements.  This is to
2109 /// optimize code like this:
2110 ///
2111 ///    %tmp37 = bitcast float %inc to i32
2112 ///    %tmp38 = zext i32 %tmp37 to i64
2113 ///    %tmp31 = bitcast float %inc5 to i32
2114 ///    %tmp32 = zext i32 %tmp31 to i64
2115 ///    %tmp33 = shl i64 %tmp32, 32
2116 ///    %ins35 = or i64 %tmp33, %tmp38
2117 ///    %tmp43 = bitcast i64 %ins35 to <2 x float>
2118 ///
2119 /// Into two insertelements that do "buildvector{%inc, %inc5}".
2120 static Value *optimizeIntegerToVectorInsertions(BitCastInst &CI,
2121                                                 InstCombiner &IC) {
2122   VectorType *DestVecTy = cast<VectorType>(CI.getType());
2123   Value *IntInput = CI.getOperand(0);
2124 
2125   SmallVector<Value*, 8> Elements(DestVecTy->getNumElements());
2126   if (!collectInsertionElements(IntInput, 0, Elements,
2127                                 DestVecTy->getElementType(),
2128                                 IC.getDataLayout().isBigEndian()))
2129     return nullptr;
2130 
2131   // If we succeeded, we know that all of the element are specified by Elements
2132   // or are zero if Elements has a null entry.  Recast this as a set of
2133   // insertions.
2134   Value *Result = Constant::getNullValue(CI.getType());
2135   for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
2136     if (!Elements[i]) continue;  // Unset element.
2137 
2138     Result = IC.Builder.CreateInsertElement(Result, Elements[i],
2139                                             IC.Builder.getInt32(i));
2140   }
2141 
2142   return Result;
2143 }
2144 
2145 /// Canonicalize scalar bitcasts of extracted elements into a bitcast of the
2146 /// vector followed by extract element. The backend tends to handle bitcasts of
2147 /// vectors better than bitcasts of scalars because vector registers are
2148 /// usually not type-specific like scalar integer or scalar floating-point.
2149 static Instruction *canonicalizeBitCastExtElt(BitCastInst &BitCast,
2150                                               InstCombiner &IC) {
2151   // TODO: Create and use a pattern matcher for ExtractElementInst.
2152   auto *ExtElt = dyn_cast<ExtractElementInst>(BitCast.getOperand(0));
2153   if (!ExtElt || !ExtElt->hasOneUse())
2154     return nullptr;
2155 
2156   // The bitcast must be to a vectorizable type, otherwise we can't make a new
2157   // type to extract from.
2158   Type *DestType = BitCast.getType();
2159   if (!VectorType::isValidElementType(DestType))
2160     return nullptr;
2161 
2162   unsigned NumElts = ExtElt->getVectorOperandType()->getNumElements();
2163   auto *NewVecType = VectorType::get(DestType, NumElts);
2164   auto *NewBC = IC.Builder.CreateBitCast(ExtElt->getVectorOperand(),
2165                                          NewVecType, "bc");
2166   return ExtractElementInst::Create(NewBC, ExtElt->getIndexOperand());
2167 }
2168 
2169 /// Change the type of a bitwise logic operation if we can eliminate a bitcast.
2170 static Instruction *foldBitCastBitwiseLogic(BitCastInst &BitCast,
2171                                             InstCombiner::BuilderTy &Builder) {
2172   Type *DestTy = BitCast.getType();
2173   BinaryOperator *BO;
2174   if (!DestTy->isIntOrIntVectorTy() ||
2175       !match(BitCast.getOperand(0), m_OneUse(m_BinOp(BO))) ||
2176       !BO->isBitwiseLogicOp())
2177     return nullptr;
2178 
2179   // FIXME: This transform is restricted to vector types to avoid backend
2180   // problems caused by creating potentially illegal operations. If a fix-up is
2181   // added to handle that situation, we can remove this check.
2182   if (!DestTy->isVectorTy() || !BO->getType()->isVectorTy())
2183     return nullptr;
2184 
2185   Value *X;
2186   if (match(BO->getOperand(0), m_OneUse(m_BitCast(m_Value(X)))) &&
2187       X->getType() == DestTy && !isa<Constant>(X)) {
2188     // bitcast(logic(bitcast(X), Y)) --> logic'(X, bitcast(Y))
2189     Value *CastedOp1 = Builder.CreateBitCast(BO->getOperand(1), DestTy);
2190     return BinaryOperator::Create(BO->getOpcode(), X, CastedOp1);
2191   }
2192 
2193   if (match(BO->getOperand(1), m_OneUse(m_BitCast(m_Value(X)))) &&
2194       X->getType() == DestTy && !isa<Constant>(X)) {
2195     // bitcast(logic(Y, bitcast(X))) --> logic'(bitcast(Y), X)
2196     Value *CastedOp0 = Builder.CreateBitCast(BO->getOperand(0), DestTy);
2197     return BinaryOperator::Create(BO->getOpcode(), CastedOp0, X);
2198   }
2199 
2200   // Canonicalize vector bitcasts to come before vector bitwise logic with a
2201   // constant. This eases recognition of special constants for later ops.
2202   // Example:
2203   // icmp u/s (a ^ signmask), (b ^ signmask) --> icmp s/u a, b
2204   Constant *C;
2205   if (match(BO->getOperand(1), m_Constant(C))) {
2206     // bitcast (logic X, C) --> logic (bitcast X, C')
2207     Value *CastedOp0 = Builder.CreateBitCast(BO->getOperand(0), DestTy);
2208     Value *CastedC = Builder.CreateBitCast(C, DestTy);
2209     return BinaryOperator::Create(BO->getOpcode(), CastedOp0, CastedC);
2210   }
2211 
2212   return nullptr;
2213 }
2214 
2215 /// Change the type of a select if we can eliminate a bitcast.
2216 static Instruction *foldBitCastSelect(BitCastInst &BitCast,
2217                                       InstCombiner::BuilderTy &Builder) {
2218   Value *Cond, *TVal, *FVal;
2219   if (!match(BitCast.getOperand(0),
2220              m_OneUse(m_Select(m_Value(Cond), m_Value(TVal), m_Value(FVal)))))
2221     return nullptr;
2222 
2223   // A vector select must maintain the same number of elements in its operands.
2224   Type *CondTy = Cond->getType();
2225   Type *DestTy = BitCast.getType();
2226   if (auto *CondVTy = dyn_cast<VectorType>(CondTy)) {
2227     if (!DestTy->isVectorTy())
2228       return nullptr;
2229     if (cast<VectorType>(DestTy)->getNumElements() != CondVTy->getNumElements())
2230       return nullptr;
2231   }
2232 
2233   // FIXME: This transform is restricted from changing the select between
2234   // scalars and vectors to avoid backend problems caused by creating
2235   // potentially illegal operations. If a fix-up is added to handle that
2236   // situation, we can remove this check.
2237   if (DestTy->isVectorTy() != TVal->getType()->isVectorTy())
2238     return nullptr;
2239 
2240   auto *Sel = cast<Instruction>(BitCast.getOperand(0));
2241   Value *X;
2242   if (match(TVal, m_OneUse(m_BitCast(m_Value(X)))) && X->getType() == DestTy &&
2243       !isa<Constant>(X)) {
2244     // bitcast(select(Cond, bitcast(X), Y)) --> select'(Cond, X, bitcast(Y))
2245     Value *CastedVal = Builder.CreateBitCast(FVal, DestTy);
2246     return SelectInst::Create(Cond, X, CastedVal, "", nullptr, Sel);
2247   }
2248 
2249   if (match(FVal, m_OneUse(m_BitCast(m_Value(X)))) && X->getType() == DestTy &&
2250       !isa<Constant>(X)) {
2251     // bitcast(select(Cond, Y, bitcast(X))) --> select'(Cond, bitcast(Y), X)
2252     Value *CastedVal = Builder.CreateBitCast(TVal, DestTy);
2253     return SelectInst::Create(Cond, CastedVal, X, "", nullptr, Sel);
2254   }
2255 
2256   return nullptr;
2257 }
2258 
2259 /// Check if all users of CI are StoreInsts.
2260 static bool hasStoreUsersOnly(CastInst &CI) {
2261   for (User *U : CI.users()) {
2262     if (!isa<StoreInst>(U))
2263       return false;
2264   }
2265   return true;
2266 }
2267 
2268 /// This function handles following case
2269 ///
2270 ///     A  ->  B    cast
2271 ///     PHI
2272 ///     B  ->  A    cast
2273 ///
2274 /// All the related PHI nodes can be replaced by new PHI nodes with type A.
2275 /// The uses of \p CI can be changed to the new PHI node corresponding to \p PN.
2276 Instruction *InstCombiner::optimizeBitCastFromPhi(CastInst &CI, PHINode *PN) {
2277   // BitCast used by Store can be handled in InstCombineLoadStoreAlloca.cpp.
2278   if (hasStoreUsersOnly(CI))
2279     return nullptr;
2280 
2281   Value *Src = CI.getOperand(0);
2282   Type *SrcTy = Src->getType();         // Type B
2283   Type *DestTy = CI.getType();          // Type A
2284 
2285   SmallVector<PHINode *, 4> PhiWorklist;
2286   SmallSetVector<PHINode *, 4> OldPhiNodes;
2287 
2288   // Find all of the A->B casts and PHI nodes.
2289   // We need to inspect all related PHI nodes, but PHIs can be cyclic, so
2290   // OldPhiNodes is used to track all known PHI nodes, before adding a new
2291   // PHI to PhiWorklist, it is checked against and added to OldPhiNodes first.
2292   PhiWorklist.push_back(PN);
2293   OldPhiNodes.insert(PN);
2294   while (!PhiWorklist.empty()) {
2295     auto *OldPN = PhiWorklist.pop_back_val();
2296     for (Value *IncValue : OldPN->incoming_values()) {
2297       if (isa<Constant>(IncValue))
2298         continue;
2299 
2300       if (auto *LI = dyn_cast<LoadInst>(IncValue)) {
2301         // If there is a sequence of one or more load instructions, each loaded
2302         // value is used as address of later load instruction, bitcast is
2303         // necessary to change the value type, don't optimize it. For
2304         // simplicity we give up if the load address comes from another load.
2305         Value *Addr = LI->getOperand(0);
2306         if (Addr == &CI || isa<LoadInst>(Addr))
2307           return nullptr;
2308         if (LI->hasOneUse() && LI->isSimple())
2309           continue;
2310         // If a LoadInst has more than one use, changing the type of loaded
2311         // value may create another bitcast.
2312         return nullptr;
2313       }
2314 
2315       if (auto *PNode = dyn_cast<PHINode>(IncValue)) {
2316         if (OldPhiNodes.insert(PNode))
2317           PhiWorklist.push_back(PNode);
2318         continue;
2319       }
2320 
2321       auto *BCI = dyn_cast<BitCastInst>(IncValue);
2322       // We can't handle other instructions.
2323       if (!BCI)
2324         return nullptr;
2325 
2326       // Verify it's a A->B cast.
2327       Type *TyA = BCI->getOperand(0)->getType();
2328       Type *TyB = BCI->getType();
2329       if (TyA != DestTy || TyB != SrcTy)
2330         return nullptr;
2331     }
2332   }
2333 
2334   // Check that each user of each old PHI node is something that we can
2335   // rewrite, so that all of the old PHI nodes can be cleaned up afterwards.
2336   for (auto *OldPN : OldPhiNodes) {
2337     for (User *V : OldPN->users()) {
2338       if (auto *SI = dyn_cast<StoreInst>(V)) {
2339         if (!SI->isSimple() || SI->getOperand(0) != OldPN)
2340           return nullptr;
2341       } else if (auto *BCI = dyn_cast<BitCastInst>(V)) {
2342         // Verify it's a B->A cast.
2343         Type *TyB = BCI->getOperand(0)->getType();
2344         Type *TyA = BCI->getType();
2345         if (TyA != DestTy || TyB != SrcTy)
2346           return nullptr;
2347       } else if (auto *PHI = dyn_cast<PHINode>(V)) {
2348         // As long as the user is another old PHI node, then even if we don't
2349         // rewrite it, the PHI web we're considering won't have any users
2350         // outside itself, so it'll be dead.
2351         if (OldPhiNodes.count(PHI) == 0)
2352           return nullptr;
2353       } else {
2354         return nullptr;
2355       }
2356     }
2357   }
2358 
2359   // For each old PHI node, create a corresponding new PHI node with a type A.
2360   SmallDenseMap<PHINode *, PHINode *> NewPNodes;
2361   for (auto *OldPN : OldPhiNodes) {
2362     Builder.SetInsertPoint(OldPN);
2363     PHINode *NewPN = Builder.CreatePHI(DestTy, OldPN->getNumOperands());
2364     NewPNodes[OldPN] = NewPN;
2365   }
2366 
2367   // Fill in the operands of new PHI nodes.
2368   for (auto *OldPN : OldPhiNodes) {
2369     PHINode *NewPN = NewPNodes[OldPN];
2370     for (unsigned j = 0, e = OldPN->getNumOperands(); j != e; ++j) {
2371       Value *V = OldPN->getOperand(j);
2372       Value *NewV = nullptr;
2373       if (auto *C = dyn_cast<Constant>(V)) {
2374         NewV = ConstantExpr::getBitCast(C, DestTy);
2375       } else if (auto *LI = dyn_cast<LoadInst>(V)) {
2376         // Explicitly perform load combine to make sure no opposing transform
2377         // can remove the bitcast in the meantime and trigger an infinite loop.
2378         Builder.SetInsertPoint(LI);
2379         NewV = combineLoadToNewType(*LI, DestTy);
2380         // Remove the old load and its use in the old phi, which itself becomes
2381         // dead once the whole transform finishes.
2382         replaceInstUsesWith(*LI, UndefValue::get(LI->getType()));
2383         eraseInstFromFunction(*LI);
2384       } else if (auto *BCI = dyn_cast<BitCastInst>(V)) {
2385         NewV = BCI->getOperand(0);
2386       } else if (auto *PrevPN = dyn_cast<PHINode>(V)) {
2387         NewV = NewPNodes[PrevPN];
2388       }
2389       assert(NewV);
2390       NewPN->addIncoming(NewV, OldPN->getIncomingBlock(j));
2391     }
2392   }
2393 
2394   // Traverse all accumulated PHI nodes and process its users,
2395   // which are Stores and BitcCasts. Without this processing
2396   // NewPHI nodes could be replicated and could lead to extra
2397   // moves generated after DeSSA.
2398   // If there is a store with type B, change it to type A.
2399 
2400 
2401   // Replace users of BitCast B->A with NewPHI. These will help
2402   // later to get rid off a closure formed by OldPHI nodes.
2403   Instruction *RetVal = nullptr;
2404   for (auto *OldPN : OldPhiNodes) {
2405     PHINode *NewPN = NewPNodes[OldPN];
2406     for (auto It = OldPN->user_begin(), End = OldPN->user_end(); It != End; ) {
2407       User *V = *It;
2408       // We may remove this user, advance to avoid iterator invalidation.
2409       ++It;
2410       if (auto *SI = dyn_cast<StoreInst>(V)) {
2411         assert(SI->isSimple() && SI->getOperand(0) == OldPN);
2412         Builder.SetInsertPoint(SI);
2413         auto *NewBC =
2414           cast<BitCastInst>(Builder.CreateBitCast(NewPN, SrcTy));
2415         SI->setOperand(0, NewBC);
2416         Worklist.push(SI);
2417         assert(hasStoreUsersOnly(*NewBC));
2418       }
2419       else if (auto *BCI = dyn_cast<BitCastInst>(V)) {
2420         Type *TyB = BCI->getOperand(0)->getType();
2421         Type *TyA = BCI->getType();
2422         assert(TyA == DestTy && TyB == SrcTy);
2423         (void) TyA;
2424         (void) TyB;
2425         Instruction *I = replaceInstUsesWith(*BCI, NewPN);
2426         if (BCI == &CI)
2427           RetVal = I;
2428       } else if (auto *PHI = dyn_cast<PHINode>(V)) {
2429         assert(OldPhiNodes.count(PHI) > 0);
2430         (void) PHI;
2431       } else {
2432         llvm_unreachable("all uses should be handled");
2433       }
2434     }
2435   }
2436 
2437   return RetVal;
2438 }
2439 
2440 Instruction *InstCombiner::visitBitCast(BitCastInst &CI) {
2441   // If the operands are integer typed then apply the integer transforms,
2442   // otherwise just apply the common ones.
2443   Value *Src = CI.getOperand(0);
2444   Type *SrcTy = Src->getType();
2445   Type *DestTy = CI.getType();
2446 
2447   // Get rid of casts from one type to the same type. These are useless and can
2448   // be replaced by the operand.
2449   if (DestTy == Src->getType())
2450     return replaceInstUsesWith(CI, Src);
2451 
2452   if (PointerType *DstPTy = dyn_cast<PointerType>(DestTy)) {
2453     PointerType *SrcPTy = cast<PointerType>(SrcTy);
2454     Type *DstElTy = DstPTy->getElementType();
2455     Type *SrcElTy = SrcPTy->getElementType();
2456 
2457     // Casting pointers between the same type, but with different address spaces
2458     // is an addrspace cast rather than a bitcast.
2459     if ((DstElTy == SrcElTy) &&
2460         (DstPTy->getAddressSpace() != SrcPTy->getAddressSpace()))
2461       return new AddrSpaceCastInst(Src, DestTy);
2462 
2463     // If we are casting a alloca to a pointer to a type of the same
2464     // size, rewrite the allocation instruction to allocate the "right" type.
2465     // There is no need to modify malloc calls because it is their bitcast that
2466     // needs to be cleaned up.
2467     if (AllocaInst *AI = dyn_cast<AllocaInst>(Src))
2468       if (Instruction *V = PromoteCastOfAllocation(CI, *AI))
2469         return V;
2470 
2471     // When the type pointed to is not sized the cast cannot be
2472     // turned into a gep.
2473     Type *PointeeType =
2474         cast<PointerType>(Src->getType()->getScalarType())->getElementType();
2475     if (!PointeeType->isSized())
2476       return nullptr;
2477 
2478     // If the source and destination are pointers, and this cast is equivalent
2479     // to a getelementptr X, 0, 0, 0...  turn it into the appropriate gep.
2480     // This can enhance SROA and other transforms that want type-safe pointers.
2481     unsigned NumZeros = 0;
2482     while (SrcElTy && SrcElTy != DstElTy) {
2483       SrcElTy = GetElementPtrInst::getTypeAtIndex(SrcElTy, (uint64_t)0);
2484       ++NumZeros;
2485     }
2486 
2487     // If we found a path from the src to dest, create the getelementptr now.
2488     if (SrcElTy == DstElTy) {
2489       SmallVector<Value *, 8> Idxs(NumZeros + 1, Builder.getInt32(0));
2490       GetElementPtrInst *GEP =
2491           GetElementPtrInst::Create(SrcPTy->getElementType(), Src, Idxs);
2492 
2493       // If the source pointer is dereferenceable, then assume it points to an
2494       // allocated object and apply "inbounds" to the GEP.
2495       bool CanBeNull;
2496       if (Src->getPointerDereferenceableBytes(DL, CanBeNull)) {
2497         // In a non-default address space (not 0), a null pointer can not be
2498         // assumed inbounds, so ignore that case (dereferenceable_or_null).
2499         // The reason is that 'null' is not treated differently in these address
2500         // spaces, and we consequently ignore the 'gep inbounds' special case
2501         // for 'null' which allows 'inbounds' on 'null' if the indices are
2502         // zeros.
2503         if (SrcPTy->getAddressSpace() == 0 || !CanBeNull)
2504           GEP->setIsInBounds();
2505       }
2506       return GEP;
2507     }
2508   }
2509 
2510   if (VectorType *DestVTy = dyn_cast<VectorType>(DestTy)) {
2511     // Beware: messing with this target-specific oddity may cause trouble.
2512     if (DestVTy->getNumElements() == 1 && SrcTy->isX86_MMXTy()) {
2513       Value *Elem = Builder.CreateBitCast(Src, DestVTy->getElementType());
2514       return InsertElementInst::Create(UndefValue::get(DestTy), Elem,
2515                      Constant::getNullValue(Type::getInt32Ty(CI.getContext())));
2516     }
2517 
2518     if (isa<IntegerType>(SrcTy)) {
2519       // If this is a cast from an integer to vector, check to see if the input
2520       // is a trunc or zext of a bitcast from vector.  If so, we can replace all
2521       // the casts with a shuffle and (potentially) a bitcast.
2522       if (isa<TruncInst>(Src) || isa<ZExtInst>(Src)) {
2523         CastInst *SrcCast = cast<CastInst>(Src);
2524         if (BitCastInst *BCIn = dyn_cast<BitCastInst>(SrcCast->getOperand(0)))
2525           if (isa<VectorType>(BCIn->getOperand(0)->getType()))
2526             if (Instruction *I = optimizeVectorResizeWithIntegerBitCasts(
2527                     BCIn->getOperand(0), cast<VectorType>(DestTy), *this))
2528               return I;
2529       }
2530 
2531       // If the input is an 'or' instruction, we may be doing shifts and ors to
2532       // assemble the elements of the vector manually.  Try to rip the code out
2533       // and replace it with insertelements.
2534       if (Value *V = optimizeIntegerToVectorInsertions(CI, *this))
2535         return replaceInstUsesWith(CI, V);
2536     }
2537   }
2538 
2539   if (VectorType *SrcVTy = dyn_cast<VectorType>(SrcTy)) {
2540     if (SrcVTy->getNumElements() == 1) {
2541       // If our destination is not a vector, then make this a straight
2542       // scalar-scalar cast.
2543       if (!DestTy->isVectorTy()) {
2544         Value *Elem =
2545           Builder.CreateExtractElement(Src,
2546                      Constant::getNullValue(Type::getInt32Ty(CI.getContext())));
2547         return CastInst::Create(Instruction::BitCast, Elem, DestTy);
2548       }
2549 
2550       // Otherwise, see if our source is an insert. If so, then use the scalar
2551       // component directly:
2552       // bitcast (inselt <1 x elt> V, X, 0) to <n x m> --> bitcast X to <n x m>
2553       if (auto *InsElt = dyn_cast<InsertElementInst>(Src))
2554         return new BitCastInst(InsElt->getOperand(1), DestTy);
2555     }
2556   }
2557 
2558   if (auto *Shuf = dyn_cast<ShuffleVectorInst>(Src)) {
2559     // Okay, we have (bitcast (shuffle ..)).  Check to see if this is
2560     // a bitcast to a vector with the same # elts.
2561     Value *ShufOp0 = Shuf->getOperand(0);
2562     Value *ShufOp1 = Shuf->getOperand(1);
2563     unsigned NumShufElts = Shuf->getType()->getNumElements();
2564     unsigned NumSrcVecElts =
2565         cast<VectorType>(ShufOp0->getType())->getNumElements();
2566     if (Shuf->hasOneUse() && DestTy->isVectorTy() &&
2567         cast<VectorType>(DestTy)->getNumElements() == NumShufElts &&
2568         NumShufElts == NumSrcVecElts) {
2569       BitCastInst *Tmp;
2570       // If either of the operands is a cast from CI.getType(), then
2571       // evaluating the shuffle in the casted destination's type will allow
2572       // us to eliminate at least one cast.
2573       if (((Tmp = dyn_cast<BitCastInst>(ShufOp0)) &&
2574            Tmp->getOperand(0)->getType() == DestTy) ||
2575           ((Tmp = dyn_cast<BitCastInst>(ShufOp1)) &&
2576            Tmp->getOperand(0)->getType() == DestTy)) {
2577         Value *LHS = Builder.CreateBitCast(ShufOp0, DestTy);
2578         Value *RHS = Builder.CreateBitCast(ShufOp1, DestTy);
2579         // Return a new shuffle vector.  Use the same element ID's, as we
2580         // know the vector types match #elts.
2581         return new ShuffleVectorInst(LHS, RHS, Shuf->getShuffleMask());
2582       }
2583     }
2584 
2585     // A bitcasted-to-scalar and byte-reversing shuffle is better recognized as
2586     // a byte-swap:
2587     // bitcast <N x i8> (shuf X, undef, <N, N-1,...0>) --> bswap (bitcast X)
2588     // TODO: We should match the related pattern for bitreverse.
2589     if (DestTy->isIntegerTy() &&
2590         DL.isLegalInteger(DestTy->getScalarSizeInBits()) &&
2591         SrcTy->getScalarSizeInBits() == 8 && NumShufElts % 2 == 0 &&
2592         Shuf->hasOneUse() && Shuf->isReverse()) {
2593       assert(ShufOp0->getType() == SrcTy && "Unexpected shuffle mask");
2594       assert(isa<UndefValue>(ShufOp1) && "Unexpected shuffle op");
2595       Function *Bswap =
2596           Intrinsic::getDeclaration(CI.getModule(), Intrinsic::bswap, DestTy);
2597       Value *ScalarX = Builder.CreateBitCast(ShufOp0, DestTy);
2598       return IntrinsicInst::Create(Bswap, { ScalarX });
2599     }
2600   }
2601 
2602   // Handle the A->B->A cast, and there is an intervening PHI node.
2603   if (PHINode *PN = dyn_cast<PHINode>(Src))
2604     if (Instruction *I = optimizeBitCastFromPhi(CI, PN))
2605       return I;
2606 
2607   if (Instruction *I = canonicalizeBitCastExtElt(CI, *this))
2608     return I;
2609 
2610   if (Instruction *I = foldBitCastBitwiseLogic(CI, Builder))
2611     return I;
2612 
2613   if (Instruction *I = foldBitCastSelect(CI, Builder))
2614     return I;
2615 
2616   if (SrcTy->isPointerTy())
2617     return commonPointerCastTransforms(CI);
2618   return commonCastTransforms(CI);
2619 }
2620 
2621 Instruction *InstCombiner::visitAddrSpaceCast(AddrSpaceCastInst &CI) {
2622   // If the destination pointer element type is not the same as the source's
2623   // first do a bitcast to the destination type, and then the addrspacecast.
2624   // This allows the cast to be exposed to other transforms.
2625   Value *Src = CI.getOperand(0);
2626   PointerType *SrcTy = cast<PointerType>(Src->getType()->getScalarType());
2627   PointerType *DestTy = cast<PointerType>(CI.getType()->getScalarType());
2628 
2629   Type *DestElemTy = DestTy->getElementType();
2630   if (SrcTy->getElementType() != DestElemTy) {
2631     Type *MidTy = PointerType::get(DestElemTy, SrcTy->getAddressSpace());
2632     if (VectorType *VT = dyn_cast<VectorType>(CI.getType())) {
2633       // Handle vectors of pointers.
2634       MidTy = VectorType::get(MidTy, VT->getNumElements());
2635     }
2636 
2637     Value *NewBitCast = Builder.CreateBitCast(Src, MidTy);
2638     return new AddrSpaceCastInst(NewBitCast, CI.getType());
2639   }
2640 
2641   return commonPointerCastTransforms(CI);
2642 }
2643