ConstantFold, InstSimplify: undef >>a x can be either -1 or 0, choose 0
[oota-llvm.git] / lib / IR / ConstantFold.cpp
1 //===- ConstantFold.cpp - LLVM constant folder ----------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements folding of constants for LLVM.  This implements the
11 // (internal) ConstantFold.h interface, which is used by the
12 // ConstantExpr::get* methods to automatically fold constants when possible.
13 //
14 // The current constant folding implementation is implemented in two pieces: the
15 // pieces that don't need DataLayout, and the pieces that do. This is to avoid
16 // a dependence in IR on Target.
17 //
18 //===----------------------------------------------------------------------===//
19
20 #include "ConstantFold.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/IR/Constants.h"
23 #include "llvm/IR/DerivedTypes.h"
24 #include "llvm/IR/Function.h"
25 #include "llvm/IR/GetElementPtrTypeIterator.h"
26 #include "llvm/IR/GlobalAlias.h"
27 #include "llvm/IR/GlobalVariable.h"
28 #include "llvm/IR/Instructions.h"
29 #include "llvm/IR/Operator.h"
30 #include "llvm/IR/PatternMatch.h"
31 #include "llvm/Support/Compiler.h"
32 #include "llvm/Support/ErrorHandling.h"
33 #include "llvm/Support/ManagedStatic.h"
34 #include "llvm/Support/MathExtras.h"
35 #include <limits>
36 using namespace llvm;
37 using namespace llvm::PatternMatch;
38
39 //===----------------------------------------------------------------------===//
40 //                ConstantFold*Instruction Implementations
41 //===----------------------------------------------------------------------===//
42
43 /// BitCastConstantVector - Convert the specified vector Constant node to the
44 /// specified vector type.  At this point, we know that the elements of the
45 /// input vector constant are all simple integer or FP values.
46 static Constant *BitCastConstantVector(Constant *CV, VectorType *DstTy) {
47
48   if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
49   if (CV->isNullValue()) return Constant::getNullValue(DstTy);
50
51   // If this cast changes element count then we can't handle it here:
52   // doing so requires endianness information.  This should be handled by
53   // Analysis/ConstantFolding.cpp
54   unsigned NumElts = DstTy->getNumElements();
55   if (NumElts != CV->getType()->getVectorNumElements())
56     return nullptr;
57   
58   Type *DstEltTy = DstTy->getElementType();
59
60   SmallVector<Constant*, 16> Result;
61   Type *Ty = IntegerType::get(CV->getContext(), 32);
62   for (unsigned i = 0; i != NumElts; ++i) {
63     Constant *C =
64       ConstantExpr::getExtractElement(CV, ConstantInt::get(Ty, i));
65     C = ConstantExpr::getBitCast(C, DstEltTy);
66     Result.push_back(C);
67   }
68
69   return ConstantVector::get(Result);
70 }
71
72 /// This function determines which opcode to use to fold two constant cast 
73 /// expressions together. It uses CastInst::isEliminableCastPair to determine
74 /// the opcode. Consequently its just a wrapper around that function.
75 /// @brief Determine if it is valid to fold a cast of a cast
76 static unsigned
77 foldConstantCastPair(
78   unsigned opc,          ///< opcode of the second cast constant expression
79   ConstantExpr *Op,      ///< the first cast constant expression
80   Type *DstTy            ///< destination type of the first cast
81 ) {
82   assert(Op && Op->isCast() && "Can't fold cast of cast without a cast!");
83   assert(DstTy && DstTy->isFirstClassType() && "Invalid cast destination type");
84   assert(CastInst::isCast(opc) && "Invalid cast opcode");
85
86   // The the types and opcodes for the two Cast constant expressions
87   Type *SrcTy = Op->getOperand(0)->getType();
88   Type *MidTy = Op->getType();
89   Instruction::CastOps firstOp = Instruction::CastOps(Op->getOpcode());
90   Instruction::CastOps secondOp = Instruction::CastOps(opc);
91
92   // Assume that pointers are never more than 64 bits wide, and only use this
93   // for the middle type. Otherwise we could end up folding away illegal
94   // bitcasts between address spaces with different sizes.
95   IntegerType *FakeIntPtrTy = Type::getInt64Ty(DstTy->getContext());
96
97   // Let CastInst::isEliminableCastPair do the heavy lifting.
98   return CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy, DstTy,
99                                         nullptr, FakeIntPtrTy, nullptr);
100 }
101
102 static Constant *FoldBitCast(Constant *V, Type *DestTy) {
103   Type *SrcTy = V->getType();
104   if (SrcTy == DestTy)
105     return V; // no-op cast
106
107   // Check to see if we are casting a pointer to an aggregate to a pointer to
108   // the first element.  If so, return the appropriate GEP instruction.
109   if (PointerType *PTy = dyn_cast<PointerType>(V->getType()))
110     if (PointerType *DPTy = dyn_cast<PointerType>(DestTy))
111       if (PTy->getAddressSpace() == DPTy->getAddressSpace()
112           && DPTy->getElementType()->isSized()) {
113         SmallVector<Value*, 8> IdxList;
114         Value *Zero =
115           Constant::getNullValue(Type::getInt32Ty(DPTy->getContext()));
116         IdxList.push_back(Zero);
117         Type *ElTy = PTy->getElementType();
118         while (ElTy != DPTy->getElementType()) {
119           if (StructType *STy = dyn_cast<StructType>(ElTy)) {
120             if (STy->getNumElements() == 0) break;
121             ElTy = STy->getElementType(0);
122             IdxList.push_back(Zero);
123           } else if (SequentialType *STy = 
124                      dyn_cast<SequentialType>(ElTy)) {
125             if (ElTy->isPointerTy()) break;  // Can't index into pointers!
126             ElTy = STy->getElementType();
127             IdxList.push_back(Zero);
128           } else {
129             break;
130           }
131         }
132
133         if (ElTy == DPTy->getElementType())
134           // This GEP is inbounds because all indices are zero.
135           return ConstantExpr::getInBoundsGetElementPtr(V, IdxList);
136       }
137
138   // Handle casts from one vector constant to another.  We know that the src 
139   // and dest type have the same size (otherwise its an illegal cast).
140   if (VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
141     if (VectorType *SrcTy = dyn_cast<VectorType>(V->getType())) {
142       assert(DestPTy->getBitWidth() == SrcTy->getBitWidth() &&
143              "Not cast between same sized vectors!");
144       SrcTy = nullptr;
145       // First, check for null.  Undef is already handled.
146       if (isa<ConstantAggregateZero>(V))
147         return Constant::getNullValue(DestTy);
148
149       // Handle ConstantVector and ConstantAggregateVector.
150       return BitCastConstantVector(V, DestPTy);
151     }
152
153     // Canonicalize scalar-to-vector bitcasts into vector-to-vector bitcasts
154     // This allows for other simplifications (although some of them
155     // can only be handled by Analysis/ConstantFolding.cpp).
156     if (isa<ConstantInt>(V) || isa<ConstantFP>(V))
157       return ConstantExpr::getBitCast(ConstantVector::get(V), DestPTy);
158   }
159
160   // Finally, implement bitcast folding now.   The code below doesn't handle
161   // bitcast right.
162   if (isa<ConstantPointerNull>(V))  // ptr->ptr cast.
163     return ConstantPointerNull::get(cast<PointerType>(DestTy));
164
165   // Handle integral constant input.
166   if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
167     if (DestTy->isIntegerTy())
168       // Integral -> Integral. This is a no-op because the bit widths must
169       // be the same. Consequently, we just fold to V.
170       return V;
171
172     if (DestTy->isFloatingPointTy())
173       return ConstantFP::get(DestTy->getContext(),
174                              APFloat(DestTy->getFltSemantics(),
175                                      CI->getValue()));
176
177     // Otherwise, can't fold this (vector?)
178     return nullptr;
179   }
180
181   // Handle ConstantFP input: FP -> Integral.
182   if (ConstantFP *FP = dyn_cast<ConstantFP>(V))
183     return ConstantInt::get(FP->getContext(),
184                             FP->getValueAPF().bitcastToAPInt());
185
186   return nullptr;
187 }
188
189
190 /// ExtractConstantBytes - V is an integer constant which only has a subset of
191 /// its bytes used.  The bytes used are indicated by ByteStart (which is the
192 /// first byte used, counting from the least significant byte) and ByteSize,
193 /// which is the number of bytes used.
194 ///
195 /// This function analyzes the specified constant to see if the specified byte
196 /// range can be returned as a simplified constant.  If so, the constant is
197 /// returned, otherwise null is returned.
198 /// 
199 static Constant *ExtractConstantBytes(Constant *C, unsigned ByteStart,
200                                       unsigned ByteSize) {
201   assert(C->getType()->isIntegerTy() &&
202          (cast<IntegerType>(C->getType())->getBitWidth() & 7) == 0 &&
203          "Non-byte sized integer input");
204   unsigned CSize = cast<IntegerType>(C->getType())->getBitWidth()/8;
205   assert(ByteSize && "Must be accessing some piece");
206   assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input");
207   assert(ByteSize != CSize && "Should not extract everything");
208   
209   // Constant Integers are simple.
210   if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
211     APInt V = CI->getValue();
212     if (ByteStart)
213       V = V.lshr(ByteStart*8);
214     V = V.trunc(ByteSize*8);
215     return ConstantInt::get(CI->getContext(), V);
216   }
217   
218   // In the input is a constant expr, we might be able to recursively simplify.
219   // If not, we definitely can't do anything.
220   ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
221   if (!CE) return nullptr;
222
223   switch (CE->getOpcode()) {
224   default: return nullptr;
225   case Instruction::Or: {
226     Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
227     if (!RHS)
228       return nullptr;
229     
230     // X | -1 -> -1.
231     if (ConstantInt *RHSC = dyn_cast<ConstantInt>(RHS))
232       if (RHSC->isAllOnesValue())
233         return RHSC;
234     
235     Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
236     if (!LHS)
237       return nullptr;
238     return ConstantExpr::getOr(LHS, RHS);
239   }
240   case Instruction::And: {
241     Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
242     if (!RHS)
243       return nullptr;
244     
245     // X & 0 -> 0.
246     if (RHS->isNullValue())
247       return RHS;
248     
249     Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
250     if (!LHS)
251       return nullptr;
252     return ConstantExpr::getAnd(LHS, RHS);
253   }
254   case Instruction::LShr: {
255     ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
256     if (!Amt)
257       return nullptr;
258     unsigned ShAmt = Amt->getZExtValue();
259     // Cannot analyze non-byte shifts.
260     if ((ShAmt & 7) != 0)
261       return nullptr;
262     ShAmt >>= 3;
263     
264     // If the extract is known to be all zeros, return zero.
265     if (ByteStart >= CSize-ShAmt)
266       return Constant::getNullValue(IntegerType::get(CE->getContext(),
267                                                      ByteSize*8));
268     // If the extract is known to be fully in the input, extract it.
269     if (ByteStart+ByteSize+ShAmt <= CSize)
270       return ExtractConstantBytes(CE->getOperand(0), ByteStart+ShAmt, ByteSize);
271     
272     // TODO: Handle the 'partially zero' case.
273     return nullptr;
274   }
275     
276   case Instruction::Shl: {
277     ConstantInt *Amt = dyn_cast<ConstantInt>(CE->getOperand(1));
278     if (!Amt)
279       return nullptr;
280     unsigned ShAmt = Amt->getZExtValue();
281     // Cannot analyze non-byte shifts.
282     if ((ShAmt & 7) != 0)
283       return nullptr;
284     ShAmt >>= 3;
285     
286     // If the extract is known to be all zeros, return zero.
287     if (ByteStart+ByteSize <= ShAmt)
288       return Constant::getNullValue(IntegerType::get(CE->getContext(),
289                                                      ByteSize*8));
290     // If the extract is known to be fully in the input, extract it.
291     if (ByteStart >= ShAmt)
292       return ExtractConstantBytes(CE->getOperand(0), ByteStart-ShAmt, ByteSize);
293     
294     // TODO: Handle the 'partially zero' case.
295     return nullptr;
296   }
297       
298   case Instruction::ZExt: {
299     unsigned SrcBitSize =
300       cast<IntegerType>(CE->getOperand(0)->getType())->getBitWidth();
301     
302     // If extracting something that is completely zero, return 0.
303     if (ByteStart*8 >= SrcBitSize)
304       return Constant::getNullValue(IntegerType::get(CE->getContext(),
305                                                      ByteSize*8));
306
307     // If exactly extracting the input, return it.
308     if (ByteStart == 0 && ByteSize*8 == SrcBitSize)
309       return CE->getOperand(0);
310     
311     // If extracting something completely in the input, if if the input is a
312     // multiple of 8 bits, recurse.
313     if ((SrcBitSize&7) == 0 && (ByteStart+ByteSize)*8 <= SrcBitSize)
314       return ExtractConstantBytes(CE->getOperand(0), ByteStart, ByteSize);
315       
316     // Otherwise, if extracting a subset of the input, which is not multiple of
317     // 8 bits, do a shift and trunc to get the bits.
318     if ((ByteStart+ByteSize)*8 < SrcBitSize) {
319       assert((SrcBitSize&7) && "Shouldn't get byte sized case here");
320       Constant *Res = CE->getOperand(0);
321       if (ByteStart)
322         Res = ConstantExpr::getLShr(Res, 
323                                  ConstantInt::get(Res->getType(), ByteStart*8));
324       return ConstantExpr::getTrunc(Res, IntegerType::get(C->getContext(),
325                                                           ByteSize*8));
326     }
327     
328     // TODO: Handle the 'partially zero' case.
329     return nullptr;
330   }
331   }
332 }
333
334 /// getFoldedSizeOf - Return a ConstantExpr with type DestTy for sizeof
335 /// on Ty, with any known factors factored out. If Folded is false,
336 /// return null if no factoring was possible, to avoid endlessly
337 /// bouncing an unfoldable expression back into the top-level folder.
338 ///
339 static Constant *getFoldedSizeOf(Type *Ty, Type *DestTy,
340                                  bool Folded) {
341   if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
342     Constant *N = ConstantInt::get(DestTy, ATy->getNumElements());
343     Constant *E = getFoldedSizeOf(ATy->getElementType(), DestTy, true);
344     return ConstantExpr::getNUWMul(E, N);
345   }
346
347   if (StructType *STy = dyn_cast<StructType>(Ty))
348     if (!STy->isPacked()) {
349       unsigned NumElems = STy->getNumElements();
350       // An empty struct has size zero.
351       if (NumElems == 0)
352         return ConstantExpr::getNullValue(DestTy);
353       // Check for a struct with all members having the same size.
354       Constant *MemberSize =
355         getFoldedSizeOf(STy->getElementType(0), DestTy, true);
356       bool AllSame = true;
357       for (unsigned i = 1; i != NumElems; ++i)
358         if (MemberSize !=
359             getFoldedSizeOf(STy->getElementType(i), DestTy, true)) {
360           AllSame = false;
361           break;
362         }
363       if (AllSame) {
364         Constant *N = ConstantInt::get(DestTy, NumElems);
365         return ConstantExpr::getNUWMul(MemberSize, N);
366       }
367     }
368
369   // Pointer size doesn't depend on the pointee type, so canonicalize them
370   // to an arbitrary pointee.
371   if (PointerType *PTy = dyn_cast<PointerType>(Ty))
372     if (!PTy->getElementType()->isIntegerTy(1))
373       return
374         getFoldedSizeOf(PointerType::get(IntegerType::get(PTy->getContext(), 1),
375                                          PTy->getAddressSpace()),
376                         DestTy, true);
377
378   // If there's no interesting folding happening, bail so that we don't create
379   // a constant that looks like it needs folding but really doesn't.
380   if (!Folded)
381     return nullptr;
382
383   // Base case: Get a regular sizeof expression.
384   Constant *C = ConstantExpr::getSizeOf(Ty);
385   C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
386                                                     DestTy, false),
387                             C, DestTy);
388   return C;
389 }
390
391 /// getFoldedAlignOf - Return a ConstantExpr with type DestTy for alignof
392 /// on Ty, with any known factors factored out. If Folded is false,
393 /// return null if no factoring was possible, to avoid endlessly
394 /// bouncing an unfoldable expression back into the top-level folder.
395 ///
396 static Constant *getFoldedAlignOf(Type *Ty, Type *DestTy,
397                                   bool Folded) {
398   // The alignment of an array is equal to the alignment of the
399   // array element. Note that this is not always true for vectors.
400   if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
401     Constant *C = ConstantExpr::getAlignOf(ATy->getElementType());
402     C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
403                                                       DestTy,
404                                                       false),
405                               C, DestTy);
406     return C;
407   }
408
409   if (StructType *STy = dyn_cast<StructType>(Ty)) {
410     // Packed structs always have an alignment of 1.
411     if (STy->isPacked())
412       return ConstantInt::get(DestTy, 1);
413
414     // Otherwise, struct alignment is the maximum alignment of any member.
415     // Without target data, we can't compare much, but we can check to see
416     // if all the members have the same alignment.
417     unsigned NumElems = STy->getNumElements();
418     // An empty struct has minimal alignment.
419     if (NumElems == 0)
420       return ConstantInt::get(DestTy, 1);
421     // Check for a struct with all members having the same alignment.
422     Constant *MemberAlign =
423       getFoldedAlignOf(STy->getElementType(0), DestTy, true);
424     bool AllSame = true;
425     for (unsigned i = 1; i != NumElems; ++i)
426       if (MemberAlign != getFoldedAlignOf(STy->getElementType(i), DestTy, true)) {
427         AllSame = false;
428         break;
429       }
430     if (AllSame)
431       return MemberAlign;
432   }
433
434   // Pointer alignment doesn't depend on the pointee type, so canonicalize them
435   // to an arbitrary pointee.
436   if (PointerType *PTy = dyn_cast<PointerType>(Ty))
437     if (!PTy->getElementType()->isIntegerTy(1))
438       return
439         getFoldedAlignOf(PointerType::get(IntegerType::get(PTy->getContext(),
440                                                            1),
441                                           PTy->getAddressSpace()),
442                          DestTy, true);
443
444   // If there's no interesting folding happening, bail so that we don't create
445   // a constant that looks like it needs folding but really doesn't.
446   if (!Folded)
447     return nullptr;
448
449   // Base case: Get a regular alignof expression.
450   Constant *C = ConstantExpr::getAlignOf(Ty);
451   C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
452                                                     DestTy, false),
453                             C, DestTy);
454   return C;
455 }
456
457 /// getFoldedOffsetOf - Return a ConstantExpr with type DestTy for offsetof
458 /// on Ty and FieldNo, with any known factors factored out. If Folded is false,
459 /// return null if no factoring was possible, to avoid endlessly
460 /// bouncing an unfoldable expression back into the top-level folder.
461 ///
462 static Constant *getFoldedOffsetOf(Type *Ty, Constant *FieldNo,
463                                    Type *DestTy,
464                                    bool Folded) {
465   if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
466     Constant *N = ConstantExpr::getCast(CastInst::getCastOpcode(FieldNo, false,
467                                                                 DestTy, false),
468                                         FieldNo, DestTy);
469     Constant *E = getFoldedSizeOf(ATy->getElementType(), DestTy, true);
470     return ConstantExpr::getNUWMul(E, N);
471   }
472
473   if (StructType *STy = dyn_cast<StructType>(Ty))
474     if (!STy->isPacked()) {
475       unsigned NumElems = STy->getNumElements();
476       // An empty struct has no members.
477       if (NumElems == 0)
478         return nullptr;
479       // Check for a struct with all members having the same size.
480       Constant *MemberSize =
481         getFoldedSizeOf(STy->getElementType(0), DestTy, true);
482       bool AllSame = true;
483       for (unsigned i = 1; i != NumElems; ++i)
484         if (MemberSize !=
485             getFoldedSizeOf(STy->getElementType(i), DestTy, true)) {
486           AllSame = false;
487           break;
488         }
489       if (AllSame) {
490         Constant *N = ConstantExpr::getCast(CastInst::getCastOpcode(FieldNo,
491                                                                     false,
492                                                                     DestTy,
493                                                                     false),
494                                             FieldNo, DestTy);
495         return ConstantExpr::getNUWMul(MemberSize, N);
496       }
497     }
498
499   // If there's no interesting folding happening, bail so that we don't create
500   // a constant that looks like it needs folding but really doesn't.
501   if (!Folded)
502     return nullptr;
503
504   // Base case: Get a regular offsetof expression.
505   Constant *C = ConstantExpr::getOffsetOf(Ty, FieldNo);
506   C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
507                                                     DestTy, false),
508                             C, DestTy);
509   return C;
510 }
511
512 Constant *llvm::ConstantFoldCastInstruction(unsigned opc, Constant *V,
513                                             Type *DestTy) {
514   if (isa<UndefValue>(V)) {
515     // zext(undef) = 0, because the top bits will be zero.
516     // sext(undef) = 0, because the top bits will all be the same.
517     // [us]itofp(undef) = 0, because the result value is bounded.
518     if (opc == Instruction::ZExt || opc == Instruction::SExt ||
519         opc == Instruction::UIToFP || opc == Instruction::SIToFP)
520       return Constant::getNullValue(DestTy);
521     return UndefValue::get(DestTy);
522   }
523
524   if (V->isNullValue() && !DestTy->isX86_MMXTy())
525     return Constant::getNullValue(DestTy);
526
527   // If the cast operand is a constant expression, there's a few things we can
528   // do to try to simplify it.
529   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
530     if (CE->isCast()) {
531       // Try hard to fold cast of cast because they are often eliminable.
532       if (unsigned newOpc = foldConstantCastPair(opc, CE, DestTy))
533         return ConstantExpr::getCast(newOpc, CE->getOperand(0), DestTy);
534     } else if (CE->getOpcode() == Instruction::GetElementPtr &&
535                // Do not fold addrspacecast (gep 0, .., 0). It might make the
536                // addrspacecast uncanonicalized.
537                opc != Instruction::AddrSpaceCast) {
538       // If all of the indexes in the GEP are null values, there is no pointer
539       // adjustment going on.  We might as well cast the source pointer.
540       bool isAllNull = true;
541       for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
542         if (!CE->getOperand(i)->isNullValue()) {
543           isAllNull = false;
544           break;
545         }
546       if (isAllNull)
547         // This is casting one pointer type to another, always BitCast
548         return ConstantExpr::getPointerCast(CE->getOperand(0), DestTy);
549     }
550   }
551
552   // If the cast operand is a constant vector, perform the cast by
553   // operating on each element. In the cast of bitcasts, the element
554   // count may be mismatched; don't attempt to handle that here.
555   if ((isa<ConstantVector>(V) || isa<ConstantDataVector>(V)) &&
556       DestTy->isVectorTy() &&
557       DestTy->getVectorNumElements() == V->getType()->getVectorNumElements()) {
558     SmallVector<Constant*, 16> res;
559     VectorType *DestVecTy = cast<VectorType>(DestTy);
560     Type *DstEltTy = DestVecTy->getElementType();
561     Type *Ty = IntegerType::get(V->getContext(), 32);
562     for (unsigned i = 0, e = V->getType()->getVectorNumElements(); i != e; ++i) {
563       Constant *C =
564         ConstantExpr::getExtractElement(V, ConstantInt::get(Ty, i));
565       res.push_back(ConstantExpr::getCast(opc, C, DstEltTy));
566     }
567     return ConstantVector::get(res);
568   }
569
570   // We actually have to do a cast now. Perform the cast according to the
571   // opcode specified.
572   switch (opc) {
573   default:
574     llvm_unreachable("Failed to cast constant expression");
575   case Instruction::FPTrunc:
576   case Instruction::FPExt:
577     if (ConstantFP *FPC = dyn_cast<ConstantFP>(V)) {
578       bool ignored;
579       APFloat Val = FPC->getValueAPF();
580       Val.convert(DestTy->isHalfTy() ? APFloat::IEEEhalf :
581                   DestTy->isFloatTy() ? APFloat::IEEEsingle :
582                   DestTy->isDoubleTy() ? APFloat::IEEEdouble :
583                   DestTy->isX86_FP80Ty() ? APFloat::x87DoubleExtended :
584                   DestTy->isFP128Ty() ? APFloat::IEEEquad :
585                   DestTy->isPPC_FP128Ty() ? APFloat::PPCDoubleDouble :
586                   APFloat::Bogus,
587                   APFloat::rmNearestTiesToEven, &ignored);
588       return ConstantFP::get(V->getContext(), Val);
589     }
590     return nullptr; // Can't fold.
591   case Instruction::FPToUI: 
592   case Instruction::FPToSI:
593     if (ConstantFP *FPC = dyn_cast<ConstantFP>(V)) {
594       const APFloat &V = FPC->getValueAPF();
595       bool ignored;
596       uint64_t x[2]; 
597       uint32_t DestBitWidth = cast<IntegerType>(DestTy)->getBitWidth();
598       if (APFloat::opInvalidOp ==
599           V.convertToInteger(x, DestBitWidth, opc==Instruction::FPToSI,
600                              APFloat::rmTowardZero, &ignored)) {
601         // Undefined behavior invoked - the destination type can't represent
602         // the input constant.
603         return UndefValue::get(DestTy);
604       }
605       APInt Val(DestBitWidth, x);
606       return ConstantInt::get(FPC->getContext(), Val);
607     }
608     return nullptr; // Can't fold.
609   case Instruction::IntToPtr:   //always treated as unsigned
610     if (V->isNullValue())       // Is it an integral null value?
611       return ConstantPointerNull::get(cast<PointerType>(DestTy));
612     return nullptr;                   // Other pointer types cannot be casted
613   case Instruction::PtrToInt:   // always treated as unsigned
614     // Is it a null pointer value?
615     if (V->isNullValue())
616       return ConstantInt::get(DestTy, 0);
617     // If this is a sizeof-like expression, pull out multiplications by
618     // known factors to expose them to subsequent folding. If it's an
619     // alignof-like expression, factor out known factors.
620     if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
621       if (CE->getOpcode() == Instruction::GetElementPtr &&
622           CE->getOperand(0)->isNullValue()) {
623         Type *Ty =
624           cast<PointerType>(CE->getOperand(0)->getType())->getElementType();
625         if (CE->getNumOperands() == 2) {
626           // Handle a sizeof-like expression.
627           Constant *Idx = CE->getOperand(1);
628           bool isOne = isa<ConstantInt>(Idx) && cast<ConstantInt>(Idx)->isOne();
629           if (Constant *C = getFoldedSizeOf(Ty, DestTy, !isOne)) {
630             Idx = ConstantExpr::getCast(CastInst::getCastOpcode(Idx, true,
631                                                                 DestTy, false),
632                                         Idx, DestTy);
633             return ConstantExpr::getMul(C, Idx);
634           }
635         } else if (CE->getNumOperands() == 3 &&
636                    CE->getOperand(1)->isNullValue()) {
637           // Handle an alignof-like expression.
638           if (StructType *STy = dyn_cast<StructType>(Ty))
639             if (!STy->isPacked()) {
640               ConstantInt *CI = cast<ConstantInt>(CE->getOperand(2));
641               if (CI->isOne() &&
642                   STy->getNumElements() == 2 &&
643                   STy->getElementType(0)->isIntegerTy(1)) {
644                 return getFoldedAlignOf(STy->getElementType(1), DestTy, false);
645               }
646             }
647           // Handle an offsetof-like expression.
648           if (Ty->isStructTy() || Ty->isArrayTy()) {
649             if (Constant *C = getFoldedOffsetOf(Ty, CE->getOperand(2),
650                                                 DestTy, false))
651               return C;
652           }
653         }
654       }
655     // Other pointer types cannot be casted
656     return nullptr;
657   case Instruction::UIToFP:
658   case Instruction::SIToFP:
659     if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
660       APInt api = CI->getValue();
661       APFloat apf(DestTy->getFltSemantics(),
662                   APInt::getNullValue(DestTy->getPrimitiveSizeInBits()));
663       if (APFloat::opOverflow &
664           apf.convertFromAPInt(api, opc==Instruction::SIToFP,
665                               APFloat::rmNearestTiesToEven)) {
666         // Undefined behavior invoked - the destination type can't represent
667         // the input constant.
668         return UndefValue::get(DestTy);
669       }
670       return ConstantFP::get(V->getContext(), apf);
671     }
672     return nullptr;
673   case Instruction::ZExt:
674     if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
675       uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
676       return ConstantInt::get(V->getContext(),
677                               CI->getValue().zext(BitWidth));
678     }
679     return nullptr;
680   case Instruction::SExt:
681     if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
682       uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
683       return ConstantInt::get(V->getContext(),
684                               CI->getValue().sext(BitWidth));
685     }
686     return nullptr;
687   case Instruction::Trunc: {
688     if (V->getType()->isVectorTy())
689       return nullptr;
690
691     uint32_t DestBitWidth = cast<IntegerType>(DestTy)->getBitWidth();
692     if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
693       return ConstantInt::get(V->getContext(),
694                               CI->getValue().trunc(DestBitWidth));
695     }
696     
697     // The input must be a constantexpr.  See if we can simplify this based on
698     // the bytes we are demanding.  Only do this if the source and dest are an
699     // even multiple of a byte.
700     if ((DestBitWidth & 7) == 0 &&
701         (cast<IntegerType>(V->getType())->getBitWidth() & 7) == 0)
702       if (Constant *Res = ExtractConstantBytes(V, 0, DestBitWidth / 8))
703         return Res;
704       
705     return nullptr;
706   }
707   case Instruction::BitCast:
708     return FoldBitCast(V, DestTy);
709   case Instruction::AddrSpaceCast:
710     return nullptr;
711   }
712 }
713
714 Constant *llvm::ConstantFoldSelectInstruction(Constant *Cond,
715                                               Constant *V1, Constant *V2) {
716   // Check for i1 and vector true/false conditions.
717   if (Cond->isNullValue()) return V2;
718   if (Cond->isAllOnesValue()) return V1;
719
720   // If the condition is a vector constant, fold the result elementwise.
721   if (ConstantVector *CondV = dyn_cast<ConstantVector>(Cond)) {
722     SmallVector<Constant*, 16> Result;
723     Type *Ty = IntegerType::get(CondV->getContext(), 32);
724     for (unsigned i = 0, e = V1->getType()->getVectorNumElements(); i != e;++i){
725       Constant *V;
726       Constant *V1Element = ConstantExpr::getExtractElement(V1,
727                                                     ConstantInt::get(Ty, i));
728       Constant *V2Element = ConstantExpr::getExtractElement(V2,
729                                                     ConstantInt::get(Ty, i));
730       Constant *Cond = dyn_cast<Constant>(CondV->getOperand(i));
731       if (V1Element == V2Element) {
732         V = V1Element;
733       } else if (isa<UndefValue>(Cond)) {
734         V = isa<UndefValue>(V1Element) ? V1Element : V2Element;
735       } else {
736         if (!isa<ConstantInt>(Cond)) break;
737         V = Cond->isNullValue() ? V2Element : V1Element;
738       }
739       Result.push_back(V);
740     }
741     
742     // If we were able to build the vector, return it.
743     if (Result.size() == V1->getType()->getVectorNumElements())
744       return ConstantVector::get(Result);
745   }
746
747   if (isa<UndefValue>(Cond)) {
748     if (isa<UndefValue>(V1)) return V1;
749     return V2;
750   }
751   if (isa<UndefValue>(V1)) return V2;
752   if (isa<UndefValue>(V2)) return V1;
753   if (V1 == V2) return V1;
754
755   if (ConstantExpr *TrueVal = dyn_cast<ConstantExpr>(V1)) {
756     if (TrueVal->getOpcode() == Instruction::Select)
757       if (TrueVal->getOperand(0) == Cond)
758         return ConstantExpr::getSelect(Cond, TrueVal->getOperand(1), V2);
759   }
760   if (ConstantExpr *FalseVal = dyn_cast<ConstantExpr>(V2)) {
761     if (FalseVal->getOpcode() == Instruction::Select)
762       if (FalseVal->getOperand(0) == Cond)
763         return ConstantExpr::getSelect(Cond, V1, FalseVal->getOperand(2));
764   }
765
766   return nullptr;
767 }
768
769 Constant *llvm::ConstantFoldExtractElementInstruction(Constant *Val,
770                                                       Constant *Idx) {
771   if (isa<UndefValue>(Val))  // ee(undef, x) -> undef
772     return UndefValue::get(Val->getType()->getVectorElementType());
773   if (Val->isNullValue())  // ee(zero, x) -> zero
774     return Constant::getNullValue(Val->getType()->getVectorElementType());
775   // ee({w,x,y,z}, undef) -> undef
776   if (isa<UndefValue>(Idx))
777     return UndefValue::get(Val->getType()->getVectorElementType());
778
779   if (ConstantInt *CIdx = dyn_cast<ConstantInt>(Idx)) {
780     uint64_t Index = CIdx->getZExtValue();
781     // ee({w,x,y,z}, wrong_value) -> undef
782     if (Index >= Val->getType()->getVectorNumElements())
783       return UndefValue::get(Val->getType()->getVectorElementType());
784     return Val->getAggregateElement(Index);
785   }
786   return nullptr;
787 }
788
789 Constant *llvm::ConstantFoldInsertElementInstruction(Constant *Val,
790                                                      Constant *Elt,
791                                                      Constant *Idx) {
792   ConstantInt *CIdx = dyn_cast<ConstantInt>(Idx);
793   if (!CIdx) return nullptr;
794   const APInt &IdxVal = CIdx->getValue();
795   
796   SmallVector<Constant*, 16> Result;
797   Type *Ty = IntegerType::get(Val->getContext(), 32);
798   for (unsigned i = 0, e = Val->getType()->getVectorNumElements(); i != e; ++i){
799     if (i == IdxVal) {
800       Result.push_back(Elt);
801       continue;
802     }
803     
804     Constant *C =
805       ConstantExpr::getExtractElement(Val, ConstantInt::get(Ty, i));
806     Result.push_back(C);
807   }
808   
809   return ConstantVector::get(Result);
810 }
811
812 Constant *llvm::ConstantFoldShuffleVectorInstruction(Constant *V1,
813                                                      Constant *V2,
814                                                      Constant *Mask) {
815   unsigned MaskNumElts = Mask->getType()->getVectorNumElements();
816   Type *EltTy = V1->getType()->getVectorElementType();
817
818   // Undefined shuffle mask -> undefined value.
819   if (isa<UndefValue>(Mask))
820     return UndefValue::get(VectorType::get(EltTy, MaskNumElts));
821
822   // Don't break the bitcode reader hack.
823   if (isa<ConstantExpr>(Mask)) return nullptr;
824   
825   unsigned SrcNumElts = V1->getType()->getVectorNumElements();
826
827   // Loop over the shuffle mask, evaluating each element.
828   SmallVector<Constant*, 32> Result;
829   for (unsigned i = 0; i != MaskNumElts; ++i) {
830     int Elt = ShuffleVectorInst::getMaskValue(Mask, i);
831     if (Elt == -1) {
832       Result.push_back(UndefValue::get(EltTy));
833       continue;
834     }
835     Constant *InElt;
836     if (unsigned(Elt) >= SrcNumElts*2)
837       InElt = UndefValue::get(EltTy);
838     else if (unsigned(Elt) >= SrcNumElts) {
839       Type *Ty = IntegerType::get(V2->getContext(), 32);
840       InElt =
841         ConstantExpr::getExtractElement(V2,
842                                         ConstantInt::get(Ty, Elt - SrcNumElts));
843     } else {
844       Type *Ty = IntegerType::get(V1->getContext(), 32);
845       InElt = ConstantExpr::getExtractElement(V1, ConstantInt::get(Ty, Elt));
846     }
847     Result.push_back(InElt);
848   }
849
850   return ConstantVector::get(Result);
851 }
852
853 Constant *llvm::ConstantFoldExtractValueInstruction(Constant *Agg,
854                                                     ArrayRef<unsigned> Idxs) {
855   // Base case: no indices, so return the entire value.
856   if (Idxs.empty())
857     return Agg;
858
859   if (Constant *C = Agg->getAggregateElement(Idxs[0]))
860     return ConstantFoldExtractValueInstruction(C, Idxs.slice(1));
861
862   return nullptr;
863 }
864
865 Constant *llvm::ConstantFoldInsertValueInstruction(Constant *Agg,
866                                                    Constant *Val,
867                                                    ArrayRef<unsigned> Idxs) {
868   // Base case: no indices, so replace the entire value.
869   if (Idxs.empty())
870     return Val;
871
872   unsigned NumElts;
873   if (StructType *ST = dyn_cast<StructType>(Agg->getType()))
874     NumElts = ST->getNumElements();
875   else if (ArrayType *AT = dyn_cast<ArrayType>(Agg->getType()))
876     NumElts = AT->getNumElements();
877   else
878     NumElts = Agg->getType()->getVectorNumElements();
879
880   SmallVector<Constant*, 32> Result;
881   for (unsigned i = 0; i != NumElts; ++i) {
882     Constant *C = Agg->getAggregateElement(i);
883     if (!C) return nullptr;
884
885     if (Idxs[0] == i)
886       C = ConstantFoldInsertValueInstruction(C, Val, Idxs.slice(1));
887     
888     Result.push_back(C);
889   }
890   
891   if (StructType *ST = dyn_cast<StructType>(Agg->getType()))
892     return ConstantStruct::get(ST, Result);
893   if (ArrayType *AT = dyn_cast<ArrayType>(Agg->getType()))
894     return ConstantArray::get(AT, Result);
895   return ConstantVector::get(Result);
896 }
897
898
899 Constant *llvm::ConstantFoldBinaryInstruction(unsigned Opcode,
900                                               Constant *C1, Constant *C2) {
901   // Handle UndefValue up front.
902   if (isa<UndefValue>(C1) || isa<UndefValue>(C2)) {
903     switch (Opcode) {
904     case Instruction::Xor:
905       if (isa<UndefValue>(C1) && isa<UndefValue>(C2))
906         // Handle undef ^ undef -> 0 special case. This is a common
907         // idiom (misuse).
908         return Constant::getNullValue(C1->getType());
909       // Fallthrough
910     case Instruction::Add:
911     case Instruction::Sub:
912       return UndefValue::get(C1->getType());
913     case Instruction::And:
914       if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // undef & undef -> undef
915         return C1;
916       return Constant::getNullValue(C1->getType());   // undef & X -> 0
917     case Instruction::Mul: {
918       ConstantInt *CI;
919       // X * undef -> undef   if X is odd or undef
920       if (((CI = dyn_cast<ConstantInt>(C1)) && CI->getValue()[0]) ||
921           ((CI = dyn_cast<ConstantInt>(C2)) && CI->getValue()[0]) ||
922           (isa<UndefValue>(C1) && isa<UndefValue>(C2)))
923         return UndefValue::get(C1->getType());
924
925       // X * undef -> 0       otherwise
926       return Constant::getNullValue(C1->getType());
927     }
928     case Instruction::SDiv:
929     case Instruction::UDiv:
930       // X / undef -> undef
931       if (match(C1, m_Zero()))
932         return C2;
933       // undef / 0 -> undef
934       // undef / 1 -> undef
935       if (match(C2, m_Zero()) || match(C2, m_One()))
936         return C1;
937       // undef / X -> 0       otherwise
938       return Constant::getNullValue(C1->getType());
939     case Instruction::URem:
940     case Instruction::SRem:
941       // X % undef -> undef
942       if (match(C2, m_Undef()))
943         return C2;
944       // undef % 0 -> undef
945       if (match(C2, m_Zero()))
946         return C1;
947       // undef % X -> 0       otherwise
948       return Constant::getNullValue(C1->getType());
949     case Instruction::Or:                          // X | undef -> -1
950       if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // undef | undef -> undef
951         return C1;
952       return Constant::getAllOnesValue(C1->getType()); // undef | X -> ~0
953     case Instruction::LShr:
954       // X >>l undef -> undef
955       if (isa<UndefValue>(C2))
956         return C2;
957       // undef >>l X -> 0
958       return Constant::getNullValue(C1->getType());
959     case Instruction::AShr:
960       // X >>a undef -> undef
961       if (isa<UndefValue>(C2))
962         return C2;
963       // TODO: undef >>a X -> undef if the shift is exact
964       // undef >>a X -> 0
965       return Constant::getNullValue(C1->getType());
966     case Instruction::Shl:
967       // X << undef -> undef
968       if (isa<UndefValue>(C2))
969         return C2;
970       // undef << X -> 0
971       return Constant::getNullValue(C1->getType());
972     }
973   }
974
975   // Handle simplifications when the RHS is a constant int.
976   if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2)) {
977     switch (Opcode) {
978     case Instruction::Add:
979       if (CI2->equalsInt(0)) return C1;                         // X + 0 == X
980       break;
981     case Instruction::Sub:
982       if (CI2->equalsInt(0)) return C1;                         // X - 0 == X
983       break;
984     case Instruction::Mul:
985       if (CI2->equalsInt(0)) return C2;                         // X * 0 == 0
986       if (CI2->equalsInt(1))
987         return C1;                                              // X * 1 == X
988       break;
989     case Instruction::UDiv:
990     case Instruction::SDiv:
991       if (CI2->equalsInt(1))
992         return C1;                                            // X / 1 == X
993       if (CI2->equalsInt(0))
994         return UndefValue::get(CI2->getType());               // X / 0 == undef
995       break;
996     case Instruction::URem:
997     case Instruction::SRem:
998       if (CI2->equalsInt(1))
999         return Constant::getNullValue(CI2->getType());        // X % 1 == 0
1000       if (CI2->equalsInt(0))
1001         return UndefValue::get(CI2->getType());               // X % 0 == undef
1002       break;
1003     case Instruction::And:
1004       if (CI2->isZero()) return C2;                           // X & 0 == 0
1005       if (CI2->isAllOnesValue())
1006         return C1;                                            // X & -1 == X
1007
1008       if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1009         // (zext i32 to i64) & 4294967295 -> (zext i32 to i64)
1010         if (CE1->getOpcode() == Instruction::ZExt) {
1011           unsigned DstWidth = CI2->getType()->getBitWidth();
1012           unsigned SrcWidth =
1013             CE1->getOperand(0)->getType()->getPrimitiveSizeInBits();
1014           APInt PossiblySetBits(APInt::getLowBitsSet(DstWidth, SrcWidth));
1015           if ((PossiblySetBits & CI2->getValue()) == PossiblySetBits)
1016             return C1;
1017         }
1018
1019         // If and'ing the address of a global with a constant, fold it.
1020         if (CE1->getOpcode() == Instruction::PtrToInt && 
1021             isa<GlobalValue>(CE1->getOperand(0))) {
1022           GlobalValue *GV = cast<GlobalValue>(CE1->getOperand(0));
1023
1024           // Functions are at least 4-byte aligned.
1025           unsigned GVAlign = GV->getAlignment();
1026           if (isa<Function>(GV))
1027             GVAlign = std::max(GVAlign, 4U);
1028
1029           if (GVAlign > 1) {
1030             unsigned DstWidth = CI2->getType()->getBitWidth();
1031             unsigned SrcWidth = std::min(DstWidth, Log2_32(GVAlign));
1032             APInt BitsNotSet(APInt::getLowBitsSet(DstWidth, SrcWidth));
1033
1034             // If checking bits we know are clear, return zero.
1035             if ((CI2->getValue() & BitsNotSet) == CI2->getValue())
1036               return Constant::getNullValue(CI2->getType());
1037           }
1038         }
1039       }
1040       break;
1041     case Instruction::Or:
1042       if (CI2->equalsInt(0)) return C1;    // X | 0 == X
1043       if (CI2->isAllOnesValue())
1044         return C2;                         // X | -1 == -1
1045       break;
1046     case Instruction::Xor:
1047       if (CI2->equalsInt(0)) return C1;    // X ^ 0 == X
1048
1049       if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1050         switch (CE1->getOpcode()) {
1051         default: break;
1052         case Instruction::ICmp:
1053         case Instruction::FCmp:
1054           // cmp pred ^ true -> cmp !pred
1055           assert(CI2->equalsInt(1));
1056           CmpInst::Predicate pred = (CmpInst::Predicate)CE1->getPredicate();
1057           pred = CmpInst::getInversePredicate(pred);
1058           return ConstantExpr::getCompare(pred, CE1->getOperand(0),
1059                                           CE1->getOperand(1));
1060         }
1061       }
1062       break;
1063     case Instruction::AShr:
1064       // ashr (zext C to Ty), C2 -> lshr (zext C, CSA), C2
1065       if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1))
1066         if (CE1->getOpcode() == Instruction::ZExt)  // Top bits known zero.
1067           return ConstantExpr::getLShr(C1, C2);
1068       break;
1069     }
1070   } else if (isa<ConstantInt>(C1)) {
1071     // If C1 is a ConstantInt and C2 is not, swap the operands.
1072     if (Instruction::isCommutative(Opcode))
1073       return ConstantExpr::get(Opcode, C2, C1);
1074   }
1075
1076   // At this point we know neither constant is an UndefValue.
1077   if (ConstantInt *CI1 = dyn_cast<ConstantInt>(C1)) {
1078     if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2)) {
1079       const APInt &C1V = CI1->getValue();
1080       const APInt &C2V = CI2->getValue();
1081       switch (Opcode) {
1082       default:
1083         break;
1084       case Instruction::Add:     
1085         return ConstantInt::get(CI1->getContext(), C1V + C2V);
1086       case Instruction::Sub:     
1087         return ConstantInt::get(CI1->getContext(), C1V - C2V);
1088       case Instruction::Mul:     
1089         return ConstantInt::get(CI1->getContext(), C1V * C2V);
1090       case Instruction::UDiv:
1091         assert(!CI2->isNullValue() && "Div by zero handled above");
1092         return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V));
1093       case Instruction::SDiv:
1094         assert(!CI2->isNullValue() && "Div by zero handled above");
1095         if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1096           return UndefValue::get(CI1->getType());   // MIN_INT / -1 -> undef
1097         return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V));
1098       case Instruction::URem:
1099         assert(!CI2->isNullValue() && "Div by zero handled above");
1100         return ConstantInt::get(CI1->getContext(), C1V.urem(C2V));
1101       case Instruction::SRem:
1102         assert(!CI2->isNullValue() && "Div by zero handled above");
1103         if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1104           return UndefValue::get(CI1->getType());   // MIN_INT % -1 -> undef
1105         return ConstantInt::get(CI1->getContext(), C1V.srem(C2V));
1106       case Instruction::And:
1107         return ConstantInt::get(CI1->getContext(), C1V & C2V);
1108       case Instruction::Or:
1109         return ConstantInt::get(CI1->getContext(), C1V | C2V);
1110       case Instruction::Xor:
1111         return ConstantInt::get(CI1->getContext(), C1V ^ C2V);
1112       case Instruction::Shl: {
1113         uint32_t shiftAmt = C2V.getZExtValue();
1114         if (shiftAmt < C1V.getBitWidth())
1115           return ConstantInt::get(CI1->getContext(), C1V.shl(shiftAmt));
1116         else
1117           return UndefValue::get(C1->getType()); // too big shift is undef
1118       }
1119       case Instruction::LShr: {
1120         uint32_t shiftAmt = C2V.getZExtValue();
1121         if (shiftAmt < C1V.getBitWidth())
1122           return ConstantInt::get(CI1->getContext(), C1V.lshr(shiftAmt));
1123         else
1124           return UndefValue::get(C1->getType()); // too big shift is undef
1125       }
1126       case Instruction::AShr: {
1127         uint32_t shiftAmt = C2V.getZExtValue();
1128         if (shiftAmt < C1V.getBitWidth())
1129           return ConstantInt::get(CI1->getContext(), C1V.ashr(shiftAmt));
1130         else
1131           return UndefValue::get(C1->getType()); // too big shift is undef
1132       }
1133       }
1134     }
1135
1136     switch (Opcode) {
1137     case Instruction::SDiv:
1138     case Instruction::UDiv:
1139     case Instruction::URem:
1140     case Instruction::SRem:
1141     case Instruction::LShr:
1142     case Instruction::AShr:
1143     case Instruction::Shl:
1144       if (CI1->equalsInt(0)) return C1;
1145       break;
1146     default:
1147       break;
1148     }
1149   } else if (ConstantFP *CFP1 = dyn_cast<ConstantFP>(C1)) {
1150     if (ConstantFP *CFP2 = dyn_cast<ConstantFP>(C2)) {
1151       APFloat C1V = CFP1->getValueAPF();
1152       APFloat C2V = CFP2->getValueAPF();
1153       APFloat C3V = C1V;  // copy for modification
1154       switch (Opcode) {
1155       default:                   
1156         break;
1157       case Instruction::FAdd:
1158         (void)C3V.add(C2V, APFloat::rmNearestTiesToEven);
1159         return ConstantFP::get(C1->getContext(), C3V);
1160       case Instruction::FSub:
1161         (void)C3V.subtract(C2V, APFloat::rmNearestTiesToEven);
1162         return ConstantFP::get(C1->getContext(), C3V);
1163       case Instruction::FMul:
1164         (void)C3V.multiply(C2V, APFloat::rmNearestTiesToEven);
1165         return ConstantFP::get(C1->getContext(), C3V);
1166       case Instruction::FDiv:
1167         (void)C3V.divide(C2V, APFloat::rmNearestTiesToEven);
1168         return ConstantFP::get(C1->getContext(), C3V);
1169       case Instruction::FRem:
1170         (void)C3V.mod(C2V, APFloat::rmNearestTiesToEven);
1171         return ConstantFP::get(C1->getContext(), C3V);
1172       }
1173     }
1174   } else if (VectorType *VTy = dyn_cast<VectorType>(C1->getType())) {
1175     // Perform elementwise folding.
1176     SmallVector<Constant*, 16> Result;
1177     Type *Ty = IntegerType::get(VTy->getContext(), 32);
1178     for (unsigned i = 0, e = VTy->getNumElements(); i != e; ++i) {
1179       Constant *LHS =
1180         ConstantExpr::getExtractElement(C1, ConstantInt::get(Ty, i));
1181       Constant *RHS =
1182         ConstantExpr::getExtractElement(C2, ConstantInt::get(Ty, i));
1183       
1184       Result.push_back(ConstantExpr::get(Opcode, LHS, RHS));
1185     }
1186     
1187     return ConstantVector::get(Result);
1188   }
1189
1190   if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1191     // There are many possible foldings we could do here.  We should probably
1192     // at least fold add of a pointer with an integer into the appropriate
1193     // getelementptr.  This will improve alias analysis a bit.
1194
1195     // Given ((a + b) + c), if (b + c) folds to something interesting, return
1196     // (a + (b + c)).
1197     if (Instruction::isAssociative(Opcode) && CE1->getOpcode() == Opcode) {
1198       Constant *T = ConstantExpr::get(Opcode, CE1->getOperand(1), C2);
1199       if (!isa<ConstantExpr>(T) || cast<ConstantExpr>(T)->getOpcode() != Opcode)
1200         return ConstantExpr::get(Opcode, CE1->getOperand(0), T);
1201     }
1202   } else if (isa<ConstantExpr>(C2)) {
1203     // If C2 is a constant expr and C1 isn't, flop them around and fold the
1204     // other way if possible.
1205     if (Instruction::isCommutative(Opcode))
1206       return ConstantFoldBinaryInstruction(Opcode, C2, C1);
1207   }
1208
1209   // i1 can be simplified in many cases.
1210   if (C1->getType()->isIntegerTy(1)) {
1211     switch (Opcode) {
1212     case Instruction::Add:
1213     case Instruction::Sub:
1214       return ConstantExpr::getXor(C1, C2);
1215     case Instruction::Mul:
1216       return ConstantExpr::getAnd(C1, C2);
1217     case Instruction::Shl:
1218     case Instruction::LShr:
1219     case Instruction::AShr:
1220       // We can assume that C2 == 0.  If it were one the result would be
1221       // undefined because the shift value is as large as the bitwidth.
1222       return C1;
1223     case Instruction::SDiv:
1224     case Instruction::UDiv:
1225       // We can assume that C2 == 1.  If it were zero the result would be
1226       // undefined through division by zero.
1227       return C1;
1228     case Instruction::URem:
1229     case Instruction::SRem:
1230       // We can assume that C2 == 1.  If it were zero the result would be
1231       // undefined through division by zero.
1232       return ConstantInt::getFalse(C1->getContext());
1233     default:
1234       break;
1235     }
1236   }
1237
1238   // We don't know how to fold this.
1239   return nullptr;
1240 }
1241
1242 /// isZeroSizedType - This type is zero sized if its an array or structure of
1243 /// zero sized types.  The only leaf zero sized type is an empty structure.
1244 static bool isMaybeZeroSizedType(Type *Ty) {
1245   if (StructType *STy = dyn_cast<StructType>(Ty)) {
1246     if (STy->isOpaque()) return true;  // Can't say.
1247
1248     // If all of elements have zero size, this does too.
1249     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1250       if (!isMaybeZeroSizedType(STy->getElementType(i))) return false;
1251     return true;
1252
1253   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1254     return isMaybeZeroSizedType(ATy->getElementType());
1255   }
1256   return false;
1257 }
1258
1259 /// IdxCompare - Compare the two constants as though they were getelementptr
1260 /// indices.  This allows coersion of the types to be the same thing.
1261 ///
1262 /// If the two constants are the "same" (after coersion), return 0.  If the
1263 /// first is less than the second, return -1, if the second is less than the
1264 /// first, return 1.  If the constants are not integral, return -2.
1265 ///
1266 static int IdxCompare(Constant *C1, Constant *C2, Type *ElTy) {
1267   if (C1 == C2) return 0;
1268
1269   // Ok, we found a different index.  If they are not ConstantInt, we can't do
1270   // anything with them.
1271   if (!isa<ConstantInt>(C1) || !isa<ConstantInt>(C2))
1272     return -2; // don't know!
1273
1274   // Ok, we have two differing integer indices.  Sign extend them to be the same
1275   // type.  Long is always big enough, so we use it.
1276   if (!C1->getType()->isIntegerTy(64))
1277     C1 = ConstantExpr::getSExt(C1, Type::getInt64Ty(C1->getContext()));
1278
1279   if (!C2->getType()->isIntegerTy(64))
1280     C2 = ConstantExpr::getSExt(C2, Type::getInt64Ty(C1->getContext()));
1281
1282   if (C1 == C2) return 0;  // They are equal
1283
1284   // If the type being indexed over is really just a zero sized type, there is
1285   // no pointer difference being made here.
1286   if (isMaybeZeroSizedType(ElTy))
1287     return -2; // dunno.
1288
1289   // If they are really different, now that they are the same type, then we
1290   // found a difference!
1291   if (cast<ConstantInt>(C1)->getSExtValue() < 
1292       cast<ConstantInt>(C2)->getSExtValue())
1293     return -1;
1294   else
1295     return 1;
1296 }
1297
1298 /// evaluateFCmpRelation - This function determines if there is anything we can
1299 /// decide about the two constants provided.  This doesn't need to handle simple
1300 /// things like ConstantFP comparisons, but should instead handle ConstantExprs.
1301 /// If we can determine that the two constants have a particular relation to 
1302 /// each other, we should return the corresponding FCmpInst predicate, 
1303 /// otherwise return FCmpInst::BAD_FCMP_PREDICATE. This is used below in
1304 /// ConstantFoldCompareInstruction.
1305 ///
1306 /// To simplify this code we canonicalize the relation so that the first
1307 /// operand is always the most "complex" of the two.  We consider ConstantFP
1308 /// to be the simplest, and ConstantExprs to be the most complex.
1309 static FCmpInst::Predicate evaluateFCmpRelation(Constant *V1, Constant *V2) {
1310   assert(V1->getType() == V2->getType() &&
1311          "Cannot compare values of different types!");
1312
1313   // Handle degenerate case quickly
1314   if (V1 == V2) return FCmpInst::FCMP_OEQ;
1315
1316   if (!isa<ConstantExpr>(V1)) {
1317     if (!isa<ConstantExpr>(V2)) {
1318       // We distilled thisUse the standard constant folder for a few cases
1319       ConstantInt *R = nullptr;
1320       R = dyn_cast<ConstantInt>(
1321                       ConstantExpr::getFCmp(FCmpInst::FCMP_OEQ, V1, V2));
1322       if (R && !R->isZero()) 
1323         return FCmpInst::FCMP_OEQ;
1324       R = dyn_cast<ConstantInt>(
1325                       ConstantExpr::getFCmp(FCmpInst::FCMP_OLT, V1, V2));
1326       if (R && !R->isZero()) 
1327         return FCmpInst::FCMP_OLT;
1328       R = dyn_cast<ConstantInt>(
1329                       ConstantExpr::getFCmp(FCmpInst::FCMP_OGT, V1, V2));
1330       if (R && !R->isZero()) 
1331         return FCmpInst::FCMP_OGT;
1332
1333       // Nothing more we can do
1334       return FCmpInst::BAD_FCMP_PREDICATE;
1335     }
1336
1337     // If the first operand is simple and second is ConstantExpr, swap operands.
1338     FCmpInst::Predicate SwappedRelation = evaluateFCmpRelation(V2, V1);
1339     if (SwappedRelation != FCmpInst::BAD_FCMP_PREDICATE)
1340       return FCmpInst::getSwappedPredicate(SwappedRelation);
1341   } else {
1342     // Ok, the LHS is known to be a constantexpr.  The RHS can be any of a
1343     // constantexpr or a simple constant.
1344     ConstantExpr *CE1 = cast<ConstantExpr>(V1);
1345     switch (CE1->getOpcode()) {
1346     case Instruction::FPTrunc:
1347     case Instruction::FPExt:
1348     case Instruction::UIToFP:
1349     case Instruction::SIToFP:
1350       // We might be able to do something with these but we don't right now.
1351       break;
1352     default:
1353       break;
1354     }
1355   }
1356   // There are MANY other foldings that we could perform here.  They will
1357   // probably be added on demand, as they seem needed.
1358   return FCmpInst::BAD_FCMP_PREDICATE;
1359 }
1360
1361 static ICmpInst::Predicate areGlobalsPotentiallyEqual(const GlobalValue *GV1,
1362                                                       const GlobalValue *GV2) {
1363   auto isGlobalUnsafeForEquality = [](const GlobalValue *GV) {
1364     if (GV->hasExternalWeakLinkage() || GV->hasWeakAnyLinkage())
1365       return true;
1366     if (const auto *GVar = dyn_cast<GlobalVariable>(GV)) {
1367       Type *Ty = GVar->getType()->getPointerElementType();
1368       // A global with opaque type might end up being zero sized.
1369       if (!Ty->isSized())
1370         return true;
1371       // A global with an empty type might lie at the address of any other
1372       // global.
1373       if (Ty->isEmptyTy())
1374         return true;
1375     }
1376     return false;
1377   };
1378   // Don't try to decide equality of aliases.
1379   if (!isa<GlobalAlias>(GV1) && !isa<GlobalAlias>(GV2))
1380     if (!isGlobalUnsafeForEquality(GV1) && !isGlobalUnsafeForEquality(GV2))
1381       return ICmpInst::ICMP_NE;
1382   return ICmpInst::BAD_ICMP_PREDICATE;
1383 }
1384
1385 /// evaluateICmpRelation - This function determines if there is anything we can
1386 /// decide about the two constants provided.  This doesn't need to handle simple
1387 /// things like integer comparisons, but should instead handle ConstantExprs
1388 /// and GlobalValues.  If we can determine that the two constants have a
1389 /// particular relation to each other, we should return the corresponding ICmp
1390 /// predicate, otherwise return ICmpInst::BAD_ICMP_PREDICATE.
1391 ///
1392 /// To simplify this code we canonicalize the relation so that the first
1393 /// operand is always the most "complex" of the two.  We consider simple
1394 /// constants (like ConstantInt) to be the simplest, followed by
1395 /// GlobalValues, followed by ConstantExpr's (the most complex).
1396 ///
1397 static ICmpInst::Predicate evaluateICmpRelation(Constant *V1, Constant *V2,
1398                                                 bool isSigned) {
1399   assert(V1->getType() == V2->getType() &&
1400          "Cannot compare different types of values!");
1401   if (V1 == V2) return ICmpInst::ICMP_EQ;
1402
1403   if (!isa<ConstantExpr>(V1) && !isa<GlobalValue>(V1) &&
1404       !isa<BlockAddress>(V1)) {
1405     if (!isa<GlobalValue>(V2) && !isa<ConstantExpr>(V2) &&
1406         !isa<BlockAddress>(V2)) {
1407       // We distilled this down to a simple case, use the standard constant
1408       // folder.
1409       ConstantInt *R = nullptr;
1410       ICmpInst::Predicate pred = ICmpInst::ICMP_EQ;
1411       R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, V1, V2));
1412       if (R && !R->isZero()) 
1413         return pred;
1414       pred = isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1415       R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, V1, V2));
1416       if (R && !R->isZero())
1417         return pred;
1418       pred = isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1419       R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, V1, V2));
1420       if (R && !R->isZero())
1421         return pred;
1422
1423       // If we couldn't figure it out, bail.
1424       return ICmpInst::BAD_ICMP_PREDICATE;
1425     }
1426
1427     // If the first operand is simple, swap operands.
1428     ICmpInst::Predicate SwappedRelation = 
1429       evaluateICmpRelation(V2, V1, isSigned);
1430     if (SwappedRelation != ICmpInst::BAD_ICMP_PREDICATE)
1431       return ICmpInst::getSwappedPredicate(SwappedRelation);
1432
1433   } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V1)) {
1434     if (isa<ConstantExpr>(V2)) {  // Swap as necessary.
1435       ICmpInst::Predicate SwappedRelation = 
1436         evaluateICmpRelation(V2, V1, isSigned);
1437       if (SwappedRelation != ICmpInst::BAD_ICMP_PREDICATE)
1438         return ICmpInst::getSwappedPredicate(SwappedRelation);
1439       return ICmpInst::BAD_ICMP_PREDICATE;
1440     }
1441
1442     // Now we know that the RHS is a GlobalValue, BlockAddress or simple
1443     // constant (which, since the types must match, means that it's a
1444     // ConstantPointerNull).
1445     if (const GlobalValue *GV2 = dyn_cast<GlobalValue>(V2)) {
1446       return areGlobalsPotentiallyEqual(GV, GV2);
1447     } else if (isa<BlockAddress>(V2)) {
1448       return ICmpInst::ICMP_NE; // Globals never equal labels.
1449     } else {
1450       assert(isa<ConstantPointerNull>(V2) && "Canonicalization guarantee!");
1451       // GlobalVals can never be null unless they have external weak linkage.
1452       // We don't try to evaluate aliases here.
1453       if (!GV->hasExternalWeakLinkage() && !isa<GlobalAlias>(GV))
1454         return ICmpInst::ICMP_NE;
1455     }
1456   } else if (const BlockAddress *BA = dyn_cast<BlockAddress>(V1)) {
1457     if (isa<ConstantExpr>(V2)) {  // Swap as necessary.
1458       ICmpInst::Predicate SwappedRelation = 
1459         evaluateICmpRelation(V2, V1, isSigned);
1460       if (SwappedRelation != ICmpInst::BAD_ICMP_PREDICATE)
1461         return ICmpInst::getSwappedPredicate(SwappedRelation);
1462       return ICmpInst::BAD_ICMP_PREDICATE;
1463     }
1464     
1465     // Now we know that the RHS is a GlobalValue, BlockAddress or simple
1466     // constant (which, since the types must match, means that it is a
1467     // ConstantPointerNull).
1468     if (const BlockAddress *BA2 = dyn_cast<BlockAddress>(V2)) {
1469       // Block address in another function can't equal this one, but block
1470       // addresses in the current function might be the same if blocks are
1471       // empty.
1472       if (BA2->getFunction() != BA->getFunction())
1473         return ICmpInst::ICMP_NE;
1474     } else {
1475       // Block addresses aren't null, don't equal the address of globals.
1476       assert((isa<ConstantPointerNull>(V2) || isa<GlobalValue>(V2)) &&
1477              "Canonicalization guarantee!");
1478       return ICmpInst::ICMP_NE;
1479     }
1480   } else {
1481     // Ok, the LHS is known to be a constantexpr.  The RHS can be any of a
1482     // constantexpr, a global, block address, or a simple constant.
1483     ConstantExpr *CE1 = cast<ConstantExpr>(V1);
1484     Constant *CE1Op0 = CE1->getOperand(0);
1485
1486     switch (CE1->getOpcode()) {
1487     case Instruction::Trunc:
1488     case Instruction::FPTrunc:
1489     case Instruction::FPExt:
1490     case Instruction::FPToUI:
1491     case Instruction::FPToSI:
1492       break; // We can't evaluate floating point casts or truncations.
1493
1494     case Instruction::UIToFP:
1495     case Instruction::SIToFP:
1496     case Instruction::BitCast:
1497     case Instruction::ZExt:
1498     case Instruction::SExt:
1499       // If the cast is not actually changing bits, and the second operand is a
1500       // null pointer, do the comparison with the pre-casted value.
1501       if (V2->isNullValue() &&
1502           (CE1->getType()->isPointerTy() || CE1->getType()->isIntegerTy())) {
1503         if (CE1->getOpcode() == Instruction::ZExt) isSigned = false;
1504         if (CE1->getOpcode() == Instruction::SExt) isSigned = true;
1505         return evaluateICmpRelation(CE1Op0,
1506                                     Constant::getNullValue(CE1Op0->getType()), 
1507                                     isSigned);
1508       }
1509       break;
1510
1511     case Instruction::GetElementPtr: {
1512       GEPOperator *CE1GEP = cast<GEPOperator>(CE1);
1513       // Ok, since this is a getelementptr, we know that the constant has a
1514       // pointer type.  Check the various cases.
1515       if (isa<ConstantPointerNull>(V2)) {
1516         // If we are comparing a GEP to a null pointer, check to see if the base
1517         // of the GEP equals the null pointer.
1518         if (const GlobalValue *GV = dyn_cast<GlobalValue>(CE1Op0)) {
1519           if (GV->hasExternalWeakLinkage())
1520             // Weak linkage GVals could be zero or not. We're comparing that
1521             // to null pointer so its greater-or-equal
1522             return isSigned ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE;
1523           else 
1524             // If its not weak linkage, the GVal must have a non-zero address
1525             // so the result is greater-than
1526             return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1527         } else if (isa<ConstantPointerNull>(CE1Op0)) {
1528           // If we are indexing from a null pointer, check to see if we have any
1529           // non-zero indices.
1530           for (unsigned i = 1, e = CE1->getNumOperands(); i != e; ++i)
1531             if (!CE1->getOperand(i)->isNullValue())
1532               // Offsetting from null, must not be equal.
1533               return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1534           // Only zero indexes from null, must still be zero.
1535           return ICmpInst::ICMP_EQ;
1536         }
1537         // Otherwise, we can't really say if the first operand is null or not.
1538       } else if (const GlobalValue *GV2 = dyn_cast<GlobalValue>(V2)) {
1539         if (isa<ConstantPointerNull>(CE1Op0)) {
1540           if (GV2->hasExternalWeakLinkage())
1541             // Weak linkage GVals could be zero or not. We're comparing it to
1542             // a null pointer, so its less-or-equal
1543             return isSigned ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE;
1544           else
1545             // If its not weak linkage, the GVal must have a non-zero address
1546             // so the result is less-than
1547             return isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1548         } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CE1Op0)) {
1549           if (GV == GV2) {
1550             // If this is a getelementptr of the same global, then it must be
1551             // different.  Because the types must match, the getelementptr could
1552             // only have at most one index, and because we fold getelementptr's
1553             // with a single zero index, it must be nonzero.
1554             assert(CE1->getNumOperands() == 2 &&
1555                    !CE1->getOperand(1)->isNullValue() &&
1556                    "Surprising getelementptr!");
1557             return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1558           } else {
1559             if (CE1GEP->hasAllZeroIndices())
1560               return areGlobalsPotentiallyEqual(GV, GV2);
1561             return ICmpInst::BAD_ICMP_PREDICATE;
1562           }
1563         }
1564       } else {
1565         ConstantExpr *CE2 = cast<ConstantExpr>(V2);
1566         Constant *CE2Op0 = CE2->getOperand(0);
1567
1568         // There are MANY other foldings that we could perform here.  They will
1569         // probably be added on demand, as they seem needed.
1570         switch (CE2->getOpcode()) {
1571         default: break;
1572         case Instruction::GetElementPtr:
1573           // By far the most common case to handle is when the base pointers are
1574           // obviously to the same global.
1575           if (isa<GlobalValue>(CE1Op0) && isa<GlobalValue>(CE2Op0)) {
1576             // Don't know relative ordering, but check for inequality.
1577             if (CE1Op0 != CE2Op0) {
1578               GEPOperator *CE2GEP = cast<GEPOperator>(CE2);
1579               if (CE1GEP->hasAllZeroIndices() && CE2GEP->hasAllZeroIndices())
1580                 return areGlobalsPotentiallyEqual(cast<GlobalValue>(CE1Op0),
1581                                                   cast<GlobalValue>(CE2Op0));
1582               return ICmpInst::BAD_ICMP_PREDICATE;
1583             }
1584             // Ok, we know that both getelementptr instructions are based on the
1585             // same global.  From this, we can precisely determine the relative
1586             // ordering of the resultant pointers.
1587             unsigned i = 1;
1588
1589             // The logic below assumes that the result of the comparison
1590             // can be determined by finding the first index that differs.
1591             // This doesn't work if there is over-indexing in any
1592             // subsequent indices, so check for that case first.
1593             if (!CE1->isGEPWithNoNotionalOverIndexing() ||
1594                 !CE2->isGEPWithNoNotionalOverIndexing())
1595                return ICmpInst::BAD_ICMP_PREDICATE; // Might be equal.
1596
1597             // Compare all of the operands the GEP's have in common.
1598             gep_type_iterator GTI = gep_type_begin(CE1);
1599             for (;i != CE1->getNumOperands() && i != CE2->getNumOperands();
1600                  ++i, ++GTI)
1601               switch (IdxCompare(CE1->getOperand(i),
1602                                  CE2->getOperand(i), GTI.getIndexedType())) {
1603               case -1: return isSigned ? ICmpInst::ICMP_SLT:ICmpInst::ICMP_ULT;
1604               case 1:  return isSigned ? ICmpInst::ICMP_SGT:ICmpInst::ICMP_UGT;
1605               case -2: return ICmpInst::BAD_ICMP_PREDICATE;
1606               }
1607
1608             // Ok, we ran out of things they have in common.  If any leftovers
1609             // are non-zero then we have a difference, otherwise we are equal.
1610             for (; i < CE1->getNumOperands(); ++i)
1611               if (!CE1->getOperand(i)->isNullValue()) {
1612                 if (isa<ConstantInt>(CE1->getOperand(i)))
1613                   return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1614                 else
1615                   return ICmpInst::BAD_ICMP_PREDICATE; // Might be equal.
1616               }
1617
1618             for (; i < CE2->getNumOperands(); ++i)
1619               if (!CE2->getOperand(i)->isNullValue()) {
1620                 if (isa<ConstantInt>(CE2->getOperand(i)))
1621                   return isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1622                 else
1623                   return ICmpInst::BAD_ICMP_PREDICATE; // Might be equal.
1624               }
1625             return ICmpInst::ICMP_EQ;
1626           }
1627         }
1628       }
1629     }
1630     default:
1631       break;
1632     }
1633   }
1634
1635   return ICmpInst::BAD_ICMP_PREDICATE;
1636 }
1637
1638 Constant *llvm::ConstantFoldCompareInstruction(unsigned short pred, 
1639                                                Constant *C1, Constant *C2) {
1640   Type *ResultTy;
1641   if (VectorType *VT = dyn_cast<VectorType>(C1->getType()))
1642     ResultTy = VectorType::get(Type::getInt1Ty(C1->getContext()),
1643                                VT->getNumElements());
1644   else
1645     ResultTy = Type::getInt1Ty(C1->getContext());
1646
1647   // Fold FCMP_FALSE/FCMP_TRUE unconditionally.
1648   if (pred == FCmpInst::FCMP_FALSE)
1649     return Constant::getNullValue(ResultTy);
1650
1651   if (pred == FCmpInst::FCMP_TRUE)
1652     return Constant::getAllOnesValue(ResultTy);
1653
1654   // Handle some degenerate cases first
1655   if (isa<UndefValue>(C1) || isa<UndefValue>(C2)) {
1656     // For EQ and NE, we can always pick a value for the undef to make the
1657     // predicate pass or fail, so we can return undef.
1658     // Also, if both operands are undef, we can return undef.
1659     if (ICmpInst::isEquality(ICmpInst::Predicate(pred)) ||
1660         (isa<UndefValue>(C1) && isa<UndefValue>(C2)))
1661       return UndefValue::get(ResultTy);
1662     // Otherwise, pick the same value as the non-undef operand, and fold
1663     // it to true or false.
1664     return ConstantInt::get(ResultTy, CmpInst::isTrueWhenEqual(pred));
1665   }
1666
1667   // icmp eq/ne(null,GV) -> false/true
1668   if (C1->isNullValue()) {
1669     if (const GlobalValue *GV = dyn_cast<GlobalValue>(C2))
1670       // Don't try to evaluate aliases.  External weak GV can be null.
1671       if (!isa<GlobalAlias>(GV) && !GV->hasExternalWeakLinkage()) {
1672         if (pred == ICmpInst::ICMP_EQ)
1673           return ConstantInt::getFalse(C1->getContext());
1674         else if (pred == ICmpInst::ICMP_NE)
1675           return ConstantInt::getTrue(C1->getContext());
1676       }
1677   // icmp eq/ne(GV,null) -> false/true
1678   } else if (C2->isNullValue()) {
1679     if (const GlobalValue *GV = dyn_cast<GlobalValue>(C1))
1680       // Don't try to evaluate aliases.  External weak GV can be null.
1681       if (!isa<GlobalAlias>(GV) && !GV->hasExternalWeakLinkage()) {
1682         if (pred == ICmpInst::ICMP_EQ)
1683           return ConstantInt::getFalse(C1->getContext());
1684         else if (pred == ICmpInst::ICMP_NE)
1685           return ConstantInt::getTrue(C1->getContext());
1686       }
1687   }
1688
1689   // If the comparison is a comparison between two i1's, simplify it.
1690   if (C1->getType()->isIntegerTy(1)) {
1691     switch(pred) {
1692     case ICmpInst::ICMP_EQ:
1693       if (isa<ConstantInt>(C2))
1694         return ConstantExpr::getXor(C1, ConstantExpr::getNot(C2));
1695       return ConstantExpr::getXor(ConstantExpr::getNot(C1), C2);
1696     case ICmpInst::ICMP_NE:
1697       return ConstantExpr::getXor(C1, C2);
1698     default:
1699       break;
1700     }
1701   }
1702
1703   if (isa<ConstantInt>(C1) && isa<ConstantInt>(C2)) {
1704     APInt V1 = cast<ConstantInt>(C1)->getValue();
1705     APInt V2 = cast<ConstantInt>(C2)->getValue();
1706     switch (pred) {
1707     default: llvm_unreachable("Invalid ICmp Predicate");
1708     case ICmpInst::ICMP_EQ:  return ConstantInt::get(ResultTy, V1 == V2);
1709     case ICmpInst::ICMP_NE:  return ConstantInt::get(ResultTy, V1 != V2);
1710     case ICmpInst::ICMP_SLT: return ConstantInt::get(ResultTy, V1.slt(V2));
1711     case ICmpInst::ICMP_SGT: return ConstantInt::get(ResultTy, V1.sgt(V2));
1712     case ICmpInst::ICMP_SLE: return ConstantInt::get(ResultTy, V1.sle(V2));
1713     case ICmpInst::ICMP_SGE: return ConstantInt::get(ResultTy, V1.sge(V2));
1714     case ICmpInst::ICMP_ULT: return ConstantInt::get(ResultTy, V1.ult(V2));
1715     case ICmpInst::ICMP_UGT: return ConstantInt::get(ResultTy, V1.ugt(V2));
1716     case ICmpInst::ICMP_ULE: return ConstantInt::get(ResultTy, V1.ule(V2));
1717     case ICmpInst::ICMP_UGE: return ConstantInt::get(ResultTy, V1.uge(V2));
1718     }
1719   } else if (isa<ConstantFP>(C1) && isa<ConstantFP>(C2)) {
1720     APFloat C1V = cast<ConstantFP>(C1)->getValueAPF();
1721     APFloat C2V = cast<ConstantFP>(C2)->getValueAPF();
1722     APFloat::cmpResult R = C1V.compare(C2V);
1723     switch (pred) {
1724     default: llvm_unreachable("Invalid FCmp Predicate");
1725     case FCmpInst::FCMP_FALSE: return Constant::getNullValue(ResultTy);
1726     case FCmpInst::FCMP_TRUE:  return Constant::getAllOnesValue(ResultTy);
1727     case FCmpInst::FCMP_UNO:
1728       return ConstantInt::get(ResultTy, R==APFloat::cmpUnordered);
1729     case FCmpInst::FCMP_ORD:
1730       return ConstantInt::get(ResultTy, R!=APFloat::cmpUnordered);
1731     case FCmpInst::FCMP_UEQ:
1732       return ConstantInt::get(ResultTy, R==APFloat::cmpUnordered ||
1733                                         R==APFloat::cmpEqual);
1734     case FCmpInst::FCMP_OEQ:   
1735       return ConstantInt::get(ResultTy, R==APFloat::cmpEqual);
1736     case FCmpInst::FCMP_UNE:
1737       return ConstantInt::get(ResultTy, R!=APFloat::cmpEqual);
1738     case FCmpInst::FCMP_ONE:   
1739       return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan ||
1740                                         R==APFloat::cmpGreaterThan);
1741     case FCmpInst::FCMP_ULT: 
1742       return ConstantInt::get(ResultTy, R==APFloat::cmpUnordered ||
1743                                         R==APFloat::cmpLessThan);
1744     case FCmpInst::FCMP_OLT:   
1745       return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan);
1746     case FCmpInst::FCMP_UGT:
1747       return ConstantInt::get(ResultTy, R==APFloat::cmpUnordered ||
1748                                         R==APFloat::cmpGreaterThan);
1749     case FCmpInst::FCMP_OGT:
1750       return ConstantInt::get(ResultTy, R==APFloat::cmpGreaterThan);
1751     case FCmpInst::FCMP_ULE:
1752       return ConstantInt::get(ResultTy, R!=APFloat::cmpGreaterThan);
1753     case FCmpInst::FCMP_OLE: 
1754       return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan ||
1755                                         R==APFloat::cmpEqual);
1756     case FCmpInst::FCMP_UGE:
1757       return ConstantInt::get(ResultTy, R!=APFloat::cmpLessThan);
1758     case FCmpInst::FCMP_OGE: 
1759       return ConstantInt::get(ResultTy, R==APFloat::cmpGreaterThan ||
1760                                         R==APFloat::cmpEqual);
1761     }
1762   } else if (C1->getType()->isVectorTy()) {
1763     // If we can constant fold the comparison of each element, constant fold
1764     // the whole vector comparison.
1765     SmallVector<Constant*, 4> ResElts;
1766     Type *Ty = IntegerType::get(C1->getContext(), 32);
1767     // Compare the elements, producing an i1 result or constant expr.
1768     for (unsigned i = 0, e = C1->getType()->getVectorNumElements(); i != e;++i){
1769       Constant *C1E =
1770         ConstantExpr::getExtractElement(C1, ConstantInt::get(Ty, i));
1771       Constant *C2E =
1772         ConstantExpr::getExtractElement(C2, ConstantInt::get(Ty, i));
1773       
1774       ResElts.push_back(ConstantExpr::getCompare(pred, C1E, C2E));
1775     }
1776     
1777     return ConstantVector::get(ResElts);
1778   }
1779
1780   if (C1->getType()->isFloatingPointTy()) {
1781     int Result = -1;  // -1 = unknown, 0 = known false, 1 = known true.
1782     switch (evaluateFCmpRelation(C1, C2)) {
1783     default: llvm_unreachable("Unknown relation!");
1784     case FCmpInst::FCMP_UNO:
1785     case FCmpInst::FCMP_ORD:
1786     case FCmpInst::FCMP_UEQ:
1787     case FCmpInst::FCMP_UNE:
1788     case FCmpInst::FCMP_ULT:
1789     case FCmpInst::FCMP_UGT:
1790     case FCmpInst::FCMP_ULE:
1791     case FCmpInst::FCMP_UGE:
1792     case FCmpInst::FCMP_TRUE:
1793     case FCmpInst::FCMP_FALSE:
1794     case FCmpInst::BAD_FCMP_PREDICATE:
1795       break; // Couldn't determine anything about these constants.
1796     case FCmpInst::FCMP_OEQ: // We know that C1 == C2
1797       Result = (pred == FCmpInst::FCMP_UEQ || pred == FCmpInst::FCMP_OEQ ||
1798                 pred == FCmpInst::FCMP_ULE || pred == FCmpInst::FCMP_OLE ||
1799                 pred == FCmpInst::FCMP_UGE || pred == FCmpInst::FCMP_OGE);
1800       break;
1801     case FCmpInst::FCMP_OLT: // We know that C1 < C2
1802       Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE ||
1803                 pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT ||
1804                 pred == FCmpInst::FCMP_ULE || pred == FCmpInst::FCMP_OLE);
1805       break;
1806     case FCmpInst::FCMP_OGT: // We know that C1 > C2
1807       Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE ||
1808                 pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT ||
1809                 pred == FCmpInst::FCMP_UGE || pred == FCmpInst::FCMP_OGE);
1810       break;
1811     case FCmpInst::FCMP_OLE: // We know that C1 <= C2
1812       // We can only partially decide this relation.
1813       if (pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT) 
1814         Result = 0;
1815       else if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT) 
1816         Result = 1;
1817       break;
1818     case FCmpInst::FCMP_OGE: // We known that C1 >= C2
1819       // We can only partially decide this relation.
1820       if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT) 
1821         Result = 0;
1822       else if (pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT) 
1823         Result = 1;
1824       break;
1825     case FCmpInst::FCMP_ONE: // We know that C1 != C2
1826       // We can only partially decide this relation.
1827       if (pred == FCmpInst::FCMP_OEQ || pred == FCmpInst::FCMP_UEQ) 
1828         Result = 0;
1829       else if (pred == FCmpInst::FCMP_ONE || pred == FCmpInst::FCMP_UNE) 
1830         Result = 1;
1831       break;
1832     }
1833
1834     // If we evaluated the result, return it now.
1835     if (Result != -1)
1836       return ConstantInt::get(ResultTy, Result);
1837
1838   } else {
1839     // Evaluate the relation between the two constants, per the predicate.
1840     int Result = -1;  // -1 = unknown, 0 = known false, 1 = known true.
1841     switch (evaluateICmpRelation(C1, C2, CmpInst::isSigned(pred))) {
1842     default: llvm_unreachable("Unknown relational!");
1843     case ICmpInst::BAD_ICMP_PREDICATE:
1844       break;  // Couldn't determine anything about these constants.
1845     case ICmpInst::ICMP_EQ:   // We know the constants are equal!
1846       // If we know the constants are equal, we can decide the result of this
1847       // computation precisely.
1848       Result = ICmpInst::isTrueWhenEqual((ICmpInst::Predicate)pred);
1849       break;
1850     case ICmpInst::ICMP_ULT:
1851       switch (pred) {
1852       case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_ULE:
1853         Result = 1; break;
1854       case ICmpInst::ICMP_UGT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_UGE:
1855         Result = 0; break;
1856       }
1857       break;
1858     case ICmpInst::ICMP_SLT:
1859       switch (pred) {
1860       case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_SLE:
1861         Result = 1; break;
1862       case ICmpInst::ICMP_SGT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_SGE:
1863         Result = 0; break;
1864       }
1865       break;
1866     case ICmpInst::ICMP_UGT:
1867       switch (pred) {
1868       case ICmpInst::ICMP_UGT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_UGE:
1869         Result = 1; break;
1870       case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_ULE:
1871         Result = 0; break;
1872       }
1873       break;
1874     case ICmpInst::ICMP_SGT:
1875       switch (pred) {
1876       case ICmpInst::ICMP_SGT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_SGE:
1877         Result = 1; break;
1878       case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_SLE:
1879         Result = 0; break;
1880       }
1881       break;
1882     case ICmpInst::ICMP_ULE:
1883       if (pred == ICmpInst::ICMP_UGT) Result = 0;
1884       if (pred == ICmpInst::ICMP_ULT || pred == ICmpInst::ICMP_ULE) Result = 1;
1885       break;
1886     case ICmpInst::ICMP_SLE:
1887       if (pred == ICmpInst::ICMP_SGT) Result = 0;
1888       if (pred == ICmpInst::ICMP_SLT || pred == ICmpInst::ICMP_SLE) Result = 1;
1889       break;
1890     case ICmpInst::ICMP_UGE:
1891       if (pred == ICmpInst::ICMP_ULT) Result = 0;
1892       if (pred == ICmpInst::ICMP_UGT || pred == ICmpInst::ICMP_UGE) Result = 1;
1893       break;
1894     case ICmpInst::ICMP_SGE:
1895       if (pred == ICmpInst::ICMP_SLT) Result = 0;
1896       if (pred == ICmpInst::ICMP_SGT || pred == ICmpInst::ICMP_SGE) Result = 1;
1897       break;
1898     case ICmpInst::ICMP_NE:
1899       if (pred == ICmpInst::ICMP_EQ) Result = 0;
1900       if (pred == ICmpInst::ICMP_NE) Result = 1;
1901       break;
1902     }
1903
1904     // If we evaluated the result, return it now.
1905     if (Result != -1)
1906       return ConstantInt::get(ResultTy, Result);
1907
1908     // If the right hand side is a bitcast, try using its inverse to simplify
1909     // it by moving it to the left hand side.  We can't do this if it would turn
1910     // a vector compare into a scalar compare or visa versa.
1911     if (ConstantExpr *CE2 = dyn_cast<ConstantExpr>(C2)) {
1912       Constant *CE2Op0 = CE2->getOperand(0);
1913       if (CE2->getOpcode() == Instruction::BitCast &&
1914           CE2->getType()->isVectorTy() == CE2Op0->getType()->isVectorTy()) {
1915         Constant *Inverse = ConstantExpr::getBitCast(C1, CE2Op0->getType());
1916         return ConstantExpr::getICmp(pred, Inverse, CE2Op0);
1917       }
1918     }
1919
1920     // If the left hand side is an extension, try eliminating it.
1921     if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1922       if ((CE1->getOpcode() == Instruction::SExt && ICmpInst::isSigned(pred)) ||
1923           (CE1->getOpcode() == Instruction::ZExt && !ICmpInst::isSigned(pred))){
1924         Constant *CE1Op0 = CE1->getOperand(0);
1925         Constant *CE1Inverse = ConstantExpr::getTrunc(CE1, CE1Op0->getType());
1926         if (CE1Inverse == CE1Op0) {
1927           // Check whether we can safely truncate the right hand side.
1928           Constant *C2Inverse = ConstantExpr::getTrunc(C2, CE1Op0->getType());
1929           if (ConstantExpr::getCast(CE1->getOpcode(), C2Inverse,
1930                                     C2->getType()) == C2)
1931             return ConstantExpr::getICmp(pred, CE1Inverse, C2Inverse);
1932         }
1933       }
1934     }
1935
1936     if ((!isa<ConstantExpr>(C1) && isa<ConstantExpr>(C2)) ||
1937         (C1->isNullValue() && !C2->isNullValue())) {
1938       // If C2 is a constant expr and C1 isn't, flip them around and fold the
1939       // other way if possible.
1940       // Also, if C1 is null and C2 isn't, flip them around.
1941       pred = ICmpInst::getSwappedPredicate((ICmpInst::Predicate)pred);
1942       return ConstantExpr::getICmp(pred, C2, C1);
1943     }
1944   }
1945   return nullptr;
1946 }
1947
1948 /// isInBoundsIndices - Test whether the given sequence of *normalized* indices
1949 /// is "inbounds".
1950 template<typename IndexTy>
1951 static bool isInBoundsIndices(ArrayRef<IndexTy> Idxs) {
1952   // No indices means nothing that could be out of bounds.
1953   if (Idxs.empty()) return true;
1954
1955   // If the first index is zero, it's in bounds.
1956   if (cast<Constant>(Idxs[0])->isNullValue()) return true;
1957
1958   // If the first index is one and all the rest are zero, it's in bounds,
1959   // by the one-past-the-end rule.
1960   if (!cast<ConstantInt>(Idxs[0])->isOne())
1961     return false;
1962   for (unsigned i = 1, e = Idxs.size(); i != e; ++i)
1963     if (!cast<Constant>(Idxs[i])->isNullValue())
1964       return false;
1965   return true;
1966 }
1967
1968 /// \brief Test whether a given ConstantInt is in-range for a SequentialType.
1969 static bool isIndexInRangeOfSequentialType(const SequentialType *STy,
1970                                            const ConstantInt *CI) {
1971   if (const PointerType *PTy = dyn_cast<PointerType>(STy))
1972     // Only handle pointers to sized types, not pointers to functions.
1973     return PTy->getElementType()->isSized();
1974
1975   uint64_t NumElements = 0;
1976   // Determine the number of elements in our sequential type.
1977   if (const ArrayType *ATy = dyn_cast<ArrayType>(STy))
1978     NumElements = ATy->getNumElements();
1979   else if (const VectorType *VTy = dyn_cast<VectorType>(STy))
1980     NumElements = VTy->getNumElements();
1981
1982   assert((isa<ArrayType>(STy) || NumElements > 0) &&
1983          "didn't expect non-array type to have zero elements!");
1984
1985   // We cannot bounds check the index if it doesn't fit in an int64_t.
1986   if (CI->getValue().getActiveBits() > 64)
1987     return false;
1988
1989   // A negative index or an index past the end of our sequential type is
1990   // considered out-of-range.
1991   int64_t IndexVal = CI->getSExtValue();
1992   if (IndexVal < 0 || (NumElements > 0 && (uint64_t)IndexVal >= NumElements))
1993     return false;
1994
1995   // Otherwise, it is in-range.
1996   return true;
1997 }
1998
1999 template<typename IndexTy>
2000 static Constant *ConstantFoldGetElementPtrImpl(Constant *C,
2001                                                bool inBounds,
2002                                                ArrayRef<IndexTy> Idxs) {
2003   if (Idxs.empty()) return C;
2004   Constant *Idx0 = cast<Constant>(Idxs[0]);
2005   if ((Idxs.size() == 1 && Idx0->isNullValue()))
2006     return C;
2007
2008   if (isa<UndefValue>(C)) {
2009     PointerType *Ptr = cast<PointerType>(C->getType());
2010     Type *Ty = GetElementPtrInst::getIndexedType(Ptr, Idxs);
2011     assert(Ty && "Invalid indices for GEP!");
2012     return UndefValue::get(PointerType::get(Ty, Ptr->getAddressSpace()));
2013   }
2014
2015   if (C->isNullValue()) {
2016     bool isNull = true;
2017     for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
2018       if (!cast<Constant>(Idxs[i])->isNullValue()) {
2019         isNull = false;
2020         break;
2021       }
2022     if (isNull) {
2023       PointerType *Ptr = cast<PointerType>(C->getType());
2024       Type *Ty = GetElementPtrInst::getIndexedType(Ptr, Idxs);
2025       assert(Ty && "Invalid indices for GEP!");
2026       return ConstantPointerNull::get(PointerType::get(Ty,
2027                                                        Ptr->getAddressSpace()));
2028     }
2029   }
2030
2031   if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
2032     // Combine Indices - If the source pointer to this getelementptr instruction
2033     // is a getelementptr instruction, combine the indices of the two
2034     // getelementptr instructions into a single instruction.
2035     //
2036     if (CE->getOpcode() == Instruction::GetElementPtr) {
2037       Type *LastTy = nullptr;
2038       for (gep_type_iterator I = gep_type_begin(CE), E = gep_type_end(CE);
2039            I != E; ++I)
2040         LastTy = *I;
2041
2042       // We cannot combine indices if doing so would take us outside of an
2043       // array or vector.  Doing otherwise could trick us if we evaluated such a
2044       // GEP as part of a load.
2045       //
2046       // e.g. Consider if the original GEP was:
2047       // i8* getelementptr ({ [2 x i8], i32, i8, [3 x i8] }* @main.c,
2048       //                    i32 0, i32 0, i64 0)
2049       //
2050       // If we then tried to offset it by '8' to get to the third element,
2051       // an i8, we should *not* get:
2052       // i8* getelementptr ({ [2 x i8], i32, i8, [3 x i8] }* @main.c,
2053       //                    i32 0, i32 0, i64 8)
2054       //
2055       // This GEP tries to index array element '8  which runs out-of-bounds.
2056       // Subsequent evaluation would get confused and produce erroneous results.
2057       //
2058       // The following prohibits such a GEP from being formed by checking to see
2059       // if the index is in-range with respect to an array or vector.
2060       bool PerformFold = false;
2061       if (Idx0->isNullValue())
2062         PerformFold = true;
2063       else if (SequentialType *STy = dyn_cast_or_null<SequentialType>(LastTy))
2064         if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx0))
2065           PerformFold = isIndexInRangeOfSequentialType(STy, CI);
2066
2067       if (PerformFold) {
2068         SmallVector<Value*, 16> NewIndices;
2069         NewIndices.reserve(Idxs.size() + CE->getNumOperands());
2070         for (unsigned i = 1, e = CE->getNumOperands()-1; i != e; ++i)
2071           NewIndices.push_back(CE->getOperand(i));
2072
2073         // Add the last index of the source with the first index of the new GEP.
2074         // Make sure to handle the case when they are actually different types.
2075         Constant *Combined = CE->getOperand(CE->getNumOperands()-1);
2076         // Otherwise it must be an array.
2077         if (!Idx0->isNullValue()) {
2078           Type *IdxTy = Combined->getType();
2079           if (IdxTy != Idx0->getType()) {
2080             Type *Int64Ty = Type::getInt64Ty(IdxTy->getContext());
2081             Constant *C1 = ConstantExpr::getSExtOrBitCast(Idx0, Int64Ty);
2082             Constant *C2 = ConstantExpr::getSExtOrBitCast(Combined, Int64Ty);
2083             Combined = ConstantExpr::get(Instruction::Add, C1, C2);
2084           } else {
2085             Combined =
2086               ConstantExpr::get(Instruction::Add, Idx0, Combined);
2087           }
2088         }
2089
2090         NewIndices.push_back(Combined);
2091         NewIndices.append(Idxs.begin() + 1, Idxs.end());
2092         return
2093           ConstantExpr::getGetElementPtr(CE->getOperand(0), NewIndices,
2094                                          inBounds &&
2095                                            cast<GEPOperator>(CE)->isInBounds());
2096       }
2097     }
2098
2099     // Attempt to fold casts to the same type away.  For example, folding:
2100     //
2101     //   i32* getelementptr ([2 x i32]* bitcast ([3 x i32]* %X to [2 x i32]*),
2102     //                       i64 0, i64 0)
2103     // into:
2104     //
2105     //   i32* getelementptr ([3 x i32]* %X, i64 0, i64 0)
2106     //
2107     // Don't fold if the cast is changing address spaces.
2108     if (CE->isCast() && Idxs.size() > 1 && Idx0->isNullValue()) {
2109       PointerType *SrcPtrTy =
2110         dyn_cast<PointerType>(CE->getOperand(0)->getType());
2111       PointerType *DstPtrTy = dyn_cast<PointerType>(CE->getType());
2112       if (SrcPtrTy && DstPtrTy) {
2113         ArrayType *SrcArrayTy =
2114           dyn_cast<ArrayType>(SrcPtrTy->getElementType());
2115         ArrayType *DstArrayTy =
2116           dyn_cast<ArrayType>(DstPtrTy->getElementType());
2117         if (SrcArrayTy && DstArrayTy
2118             && SrcArrayTy->getElementType() == DstArrayTy->getElementType()
2119             && SrcPtrTy->getAddressSpace() == DstPtrTy->getAddressSpace())
2120           return ConstantExpr::getGetElementPtr((Constant*)CE->getOperand(0),
2121                                                 Idxs, inBounds);
2122       }
2123     }
2124   }
2125
2126   // Check to see if any array indices are not within the corresponding
2127   // notional array or vector bounds. If so, try to determine if they can be
2128   // factored out into preceding dimensions.
2129   bool Unknown = false;
2130   SmallVector<Constant *, 8> NewIdxs;
2131   Type *Ty = C->getType();
2132   Type *Prev = nullptr;
2133   for (unsigned i = 0, e = Idxs.size(); i != e;
2134        Prev = Ty, Ty = cast<CompositeType>(Ty)->getTypeAtIndex(Idxs[i]), ++i) {
2135     if (ConstantInt *CI = dyn_cast<ConstantInt>(Idxs[i])) {
2136       if (isa<ArrayType>(Ty) || isa<VectorType>(Ty))
2137         if (CI->getSExtValue() > 0 &&
2138             !isIndexInRangeOfSequentialType(cast<SequentialType>(Ty), CI)) {
2139           if (isa<SequentialType>(Prev)) {
2140             // It's out of range, but we can factor it into the prior
2141             // dimension.
2142             NewIdxs.resize(Idxs.size());
2143             uint64_t NumElements = 0;
2144             if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty))
2145               NumElements = ATy->getNumElements();
2146             else
2147               NumElements = cast<VectorType>(Ty)->getNumElements();
2148
2149             ConstantInt *Factor = ConstantInt::get(CI->getType(), NumElements);
2150             NewIdxs[i] = ConstantExpr::getSRem(CI, Factor);
2151
2152             Constant *PrevIdx = cast<Constant>(Idxs[i-1]);
2153             Constant *Div = ConstantExpr::getSDiv(CI, Factor);
2154
2155             // Before adding, extend both operands to i64 to avoid
2156             // overflow trouble.
2157             if (!PrevIdx->getType()->isIntegerTy(64))
2158               PrevIdx = ConstantExpr::getSExt(PrevIdx,
2159                                            Type::getInt64Ty(Div->getContext()));
2160             if (!Div->getType()->isIntegerTy(64))
2161               Div = ConstantExpr::getSExt(Div,
2162                                           Type::getInt64Ty(Div->getContext()));
2163
2164             NewIdxs[i-1] = ConstantExpr::getAdd(PrevIdx, Div);
2165           } else {
2166             // It's out of range, but the prior dimension is a struct
2167             // so we can't do anything about it.
2168             Unknown = true;
2169           }
2170         }
2171     } else {
2172       // We don't know if it's in range or not.
2173       Unknown = true;
2174     }
2175   }
2176
2177   // If we did any factoring, start over with the adjusted indices.
2178   if (!NewIdxs.empty()) {
2179     for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
2180       if (!NewIdxs[i]) NewIdxs[i] = cast<Constant>(Idxs[i]);
2181     return ConstantExpr::getGetElementPtr(C, NewIdxs, inBounds);
2182   }
2183
2184   // If all indices are known integers and normalized, we can do a simple
2185   // check for the "inbounds" property.
2186   if (!Unknown && !inBounds)
2187     if (auto *GV = dyn_cast<GlobalVariable>(C))
2188       if (!GV->hasExternalWeakLinkage() && isInBoundsIndices(Idxs))
2189         return ConstantExpr::getInBoundsGetElementPtr(C, Idxs);
2190
2191   return nullptr;
2192 }
2193
2194 Constant *llvm::ConstantFoldGetElementPtr(Constant *C,
2195                                           bool inBounds,
2196                                           ArrayRef<Constant *> Idxs) {
2197   return ConstantFoldGetElementPtrImpl(C, inBounds, Idxs);
2198 }
2199
2200 Constant *llvm::ConstantFoldGetElementPtr(Constant *C,
2201                                           bool inBounds,
2202                                           ArrayRef<Value *> Idxs) {
2203   return ConstantFoldGetElementPtrImpl(C, inBounds, Idxs);
2204 }