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