ConstantFold.cpp revision 283526
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>
36using namespace llvm;
37using 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.
46static 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
76static unsigned
77foldConstantCastPair(
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
102static 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///
199static 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///
339static 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///
396static 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///
462static 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
512Constant *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
714Constant *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
769Constant *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
789Constant *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
812Constant *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
853Constant *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
865Constant *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
899Constant *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      // undef * undef -> undef
919      if (isa<UndefValue>(C1) && isa<UndefValue>(C2))
920        return C1;
921      const APInt *CV;
922      // X * undef -> undef   if X is odd
923      if (match(C1, m_APInt(CV)) || match(C2, m_APInt(CV)))
924        if ((*CV)[0])
925          return UndefValue::get(C1->getType());
926
927      // X * undef -> 0       otherwise
928      return Constant::getNullValue(C1->getType());
929    }
930    case Instruction::SDiv:
931    case Instruction::UDiv:
932      // X / undef -> undef
933      if (match(C1, m_Zero()))
934        return C2;
935      // undef / 0 -> undef
936      // undef / 1 -> undef
937      if (match(C2, m_Zero()) || match(C2, m_One()))
938        return C1;
939      // undef / X -> 0       otherwise
940      return Constant::getNullValue(C1->getType());
941    case Instruction::URem:
942    case Instruction::SRem:
943      // X % undef -> undef
944      if (match(C2, m_Undef()))
945        return C2;
946      // undef % 0 -> undef
947      if (match(C2, m_Zero()))
948        return C1;
949      // undef % X -> 0       otherwise
950      return Constant::getNullValue(C1->getType());
951    case Instruction::Or:                          // X | undef -> -1
952      if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // undef | undef -> undef
953        return C1;
954      return Constant::getAllOnesValue(C1->getType()); // undef | X -> ~0
955    case Instruction::LShr:
956      // X >>l undef -> undef
957      if (isa<UndefValue>(C2))
958        return C2;
959      // undef >>l 0 -> undef
960      if (match(C2, m_Zero()))
961        return C1;
962      // undef >>l X -> 0
963      return Constant::getNullValue(C1->getType());
964    case Instruction::AShr:
965      // X >>a undef -> undef
966      if (isa<UndefValue>(C2))
967        return C2;
968      // undef >>a 0 -> undef
969      if (match(C2, m_Zero()))
970        return C1;
971      // TODO: undef >>a X -> undef if the shift is exact
972      // undef >>a X -> 0
973      return Constant::getNullValue(C1->getType());
974    case Instruction::Shl:
975      // X << undef -> undef
976      if (isa<UndefValue>(C2))
977        return C2;
978      // undef << 0 -> undef
979      if (match(C2, m_Zero()))
980        return C1;
981      // undef << X -> 0
982      return Constant::getNullValue(C1->getType());
983    }
984  }
985
986  // Handle simplifications when the RHS is a constant int.
987  if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2)) {
988    switch (Opcode) {
989    case Instruction::Add:
990      if (CI2->equalsInt(0)) return C1;                         // X + 0 == X
991      break;
992    case Instruction::Sub:
993      if (CI2->equalsInt(0)) return C1;                         // X - 0 == X
994      break;
995    case Instruction::Mul:
996      if (CI2->equalsInt(0)) return C2;                         // X * 0 == 0
997      if (CI2->equalsInt(1))
998        return C1;                                              // X * 1 == X
999      break;
1000    case Instruction::UDiv:
1001    case Instruction::SDiv:
1002      if (CI2->equalsInt(1))
1003        return C1;                                            // X / 1 == X
1004      if (CI2->equalsInt(0))
1005        return UndefValue::get(CI2->getType());               // X / 0 == undef
1006      break;
1007    case Instruction::URem:
1008    case Instruction::SRem:
1009      if (CI2->equalsInt(1))
1010        return Constant::getNullValue(CI2->getType());        // X % 1 == 0
1011      if (CI2->equalsInt(0))
1012        return UndefValue::get(CI2->getType());               // X % 0 == undef
1013      break;
1014    case Instruction::And:
1015      if (CI2->isZero()) return C2;                           // X & 0 == 0
1016      if (CI2->isAllOnesValue())
1017        return C1;                                            // X & -1 == X
1018
1019      if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1020        // (zext i32 to i64) & 4294967295 -> (zext i32 to i64)
1021        if (CE1->getOpcode() == Instruction::ZExt) {
1022          unsigned DstWidth = CI2->getType()->getBitWidth();
1023          unsigned SrcWidth =
1024            CE1->getOperand(0)->getType()->getPrimitiveSizeInBits();
1025          APInt PossiblySetBits(APInt::getLowBitsSet(DstWidth, SrcWidth));
1026          if ((PossiblySetBits & CI2->getValue()) == PossiblySetBits)
1027            return C1;
1028        }
1029
1030        // If and'ing the address of a global with a constant, fold it.
1031        if (CE1->getOpcode() == Instruction::PtrToInt &&
1032            isa<GlobalValue>(CE1->getOperand(0))) {
1033          GlobalValue *GV = cast<GlobalValue>(CE1->getOperand(0));
1034
1035          // Functions are at least 4-byte aligned.
1036          unsigned GVAlign = GV->getAlignment();
1037          if (isa<Function>(GV))
1038            GVAlign = std::max(GVAlign, 4U);
1039
1040          if (GVAlign > 1) {
1041            unsigned DstWidth = CI2->getType()->getBitWidth();
1042            unsigned SrcWidth = std::min(DstWidth, Log2_32(GVAlign));
1043            APInt BitsNotSet(APInt::getLowBitsSet(DstWidth, SrcWidth));
1044
1045            // If checking bits we know are clear, return zero.
1046            if ((CI2->getValue() & BitsNotSet) == CI2->getValue())
1047              return Constant::getNullValue(CI2->getType());
1048          }
1049        }
1050      }
1051      break;
1052    case Instruction::Or:
1053      if (CI2->equalsInt(0)) return C1;    // X | 0 == X
1054      if (CI2->isAllOnesValue())
1055        return C2;                         // X | -1 == -1
1056      break;
1057    case Instruction::Xor:
1058      if (CI2->equalsInt(0)) return C1;    // X ^ 0 == X
1059
1060      if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1061        switch (CE1->getOpcode()) {
1062        default: break;
1063        case Instruction::ICmp:
1064        case Instruction::FCmp:
1065          // cmp pred ^ true -> cmp !pred
1066          assert(CI2->equalsInt(1));
1067          CmpInst::Predicate pred = (CmpInst::Predicate)CE1->getPredicate();
1068          pred = CmpInst::getInversePredicate(pred);
1069          return ConstantExpr::getCompare(pred, CE1->getOperand(0),
1070                                          CE1->getOperand(1));
1071        }
1072      }
1073      break;
1074    case Instruction::AShr:
1075      // ashr (zext C to Ty), C2 -> lshr (zext C, CSA), C2
1076      if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1))
1077        if (CE1->getOpcode() == Instruction::ZExt)  // Top bits known zero.
1078          return ConstantExpr::getLShr(C1, C2);
1079      break;
1080    }
1081  } else if (isa<ConstantInt>(C1)) {
1082    // If C1 is a ConstantInt and C2 is not, swap the operands.
1083    if (Instruction::isCommutative(Opcode))
1084      return ConstantExpr::get(Opcode, C2, C1);
1085  }
1086
1087  // At this point we know neither constant is an UndefValue.
1088  if (ConstantInt *CI1 = dyn_cast<ConstantInt>(C1)) {
1089    if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2)) {
1090      const APInt &C1V = CI1->getValue();
1091      const APInt &C2V = CI2->getValue();
1092      switch (Opcode) {
1093      default:
1094        break;
1095      case Instruction::Add:
1096        return ConstantInt::get(CI1->getContext(), C1V + C2V);
1097      case Instruction::Sub:
1098        return ConstantInt::get(CI1->getContext(), C1V - C2V);
1099      case Instruction::Mul:
1100        return ConstantInt::get(CI1->getContext(), C1V * C2V);
1101      case Instruction::UDiv:
1102        assert(!CI2->isNullValue() && "Div by zero handled above");
1103        return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V));
1104      case Instruction::SDiv:
1105        assert(!CI2->isNullValue() && "Div by zero handled above");
1106        if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1107          return UndefValue::get(CI1->getType());   // MIN_INT / -1 -> undef
1108        return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V));
1109      case Instruction::URem:
1110        assert(!CI2->isNullValue() && "Div by zero handled above");
1111        return ConstantInt::get(CI1->getContext(), C1V.urem(C2V));
1112      case Instruction::SRem:
1113        assert(!CI2->isNullValue() && "Div by zero handled above");
1114        if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1115          return UndefValue::get(CI1->getType());   // MIN_INT % -1 -> undef
1116        return ConstantInt::get(CI1->getContext(), C1V.srem(C2V));
1117      case Instruction::And:
1118        return ConstantInt::get(CI1->getContext(), C1V & C2V);
1119      case Instruction::Or:
1120        return ConstantInt::get(CI1->getContext(), C1V | C2V);
1121      case Instruction::Xor:
1122        return ConstantInt::get(CI1->getContext(), C1V ^ C2V);
1123      case Instruction::Shl:
1124        if (C2V.ult(C1V.getBitWidth()))
1125          return ConstantInt::get(CI1->getContext(), C1V.shl(C2V));
1126        return UndefValue::get(C1->getType()); // too big shift is undef
1127      case Instruction::LShr:
1128        if (C2V.ult(C1V.getBitWidth()))
1129          return ConstantInt::get(CI1->getContext(), C1V.lshr(C2V));
1130        return UndefValue::get(C1->getType()); // too big shift is undef
1131      case Instruction::AShr:
1132        if (C2V.ult(C1V.getBitWidth()))
1133          return ConstantInt::get(CI1->getContext(), C1V.ashr(C2V));
1134        return UndefValue::get(C1->getType()); // too big shift is undef
1135      }
1136    }
1137
1138    switch (Opcode) {
1139    case Instruction::SDiv:
1140    case Instruction::UDiv:
1141    case Instruction::URem:
1142    case Instruction::SRem:
1143    case Instruction::LShr:
1144    case Instruction::AShr:
1145    case Instruction::Shl:
1146      if (CI1->equalsInt(0)) return C1;
1147      break;
1148    default:
1149      break;
1150    }
1151  } else if (ConstantFP *CFP1 = dyn_cast<ConstantFP>(C1)) {
1152    if (ConstantFP *CFP2 = dyn_cast<ConstantFP>(C2)) {
1153      APFloat C1V = CFP1->getValueAPF();
1154      APFloat C2V = CFP2->getValueAPF();
1155      APFloat C3V = C1V;  // copy for modification
1156      switch (Opcode) {
1157      default:
1158        break;
1159      case Instruction::FAdd:
1160        (void)C3V.add(C2V, APFloat::rmNearestTiesToEven);
1161        return ConstantFP::get(C1->getContext(), C3V);
1162      case Instruction::FSub:
1163        (void)C3V.subtract(C2V, APFloat::rmNearestTiesToEven);
1164        return ConstantFP::get(C1->getContext(), C3V);
1165      case Instruction::FMul:
1166        (void)C3V.multiply(C2V, APFloat::rmNearestTiesToEven);
1167        return ConstantFP::get(C1->getContext(), C3V);
1168      case Instruction::FDiv:
1169        (void)C3V.divide(C2V, APFloat::rmNearestTiesToEven);
1170        return ConstantFP::get(C1->getContext(), C3V);
1171      case Instruction::FRem:
1172        (void)C3V.mod(C2V, APFloat::rmNearestTiesToEven);
1173        return ConstantFP::get(C1->getContext(), C3V);
1174      }
1175    }
1176  } else if (VectorType *VTy = dyn_cast<VectorType>(C1->getType())) {
1177    // Perform elementwise folding.
1178    SmallVector<Constant*, 16> Result;
1179    Type *Ty = IntegerType::get(VTy->getContext(), 32);
1180    for (unsigned i = 0, e = VTy->getNumElements(); i != e; ++i) {
1181      Constant *LHS =
1182        ConstantExpr::getExtractElement(C1, ConstantInt::get(Ty, i));
1183      Constant *RHS =
1184        ConstantExpr::getExtractElement(C2, ConstantInt::get(Ty, i));
1185
1186      Result.push_back(ConstantExpr::get(Opcode, LHS, RHS));
1187    }
1188
1189    return ConstantVector::get(Result);
1190  }
1191
1192  if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1193    // There are many possible foldings we could do here.  We should probably
1194    // at least fold add of a pointer with an integer into the appropriate
1195    // getelementptr.  This will improve alias analysis a bit.
1196
1197    // Given ((a + b) + c), if (b + c) folds to something interesting, return
1198    // (a + (b + c)).
1199    if (Instruction::isAssociative(Opcode) && CE1->getOpcode() == Opcode) {
1200      Constant *T = ConstantExpr::get(Opcode, CE1->getOperand(1), C2);
1201      if (!isa<ConstantExpr>(T) || cast<ConstantExpr>(T)->getOpcode() != Opcode)
1202        return ConstantExpr::get(Opcode, CE1->getOperand(0), T);
1203    }
1204  } else if (isa<ConstantExpr>(C2)) {
1205    // If C2 is a constant expr and C1 isn't, flop them around and fold the
1206    // other way if possible.
1207    if (Instruction::isCommutative(Opcode))
1208      return ConstantFoldBinaryInstruction(Opcode, C2, C1);
1209  }
1210
1211  // i1 can be simplified in many cases.
1212  if (C1->getType()->isIntegerTy(1)) {
1213    switch (Opcode) {
1214    case Instruction::Add:
1215    case Instruction::Sub:
1216      return ConstantExpr::getXor(C1, C2);
1217    case Instruction::Mul:
1218      return ConstantExpr::getAnd(C1, C2);
1219    case Instruction::Shl:
1220    case Instruction::LShr:
1221    case Instruction::AShr:
1222      // We can assume that C2 == 0.  If it were one the result would be
1223      // undefined because the shift value is as large as the bitwidth.
1224      return C1;
1225    case Instruction::SDiv:
1226    case Instruction::UDiv:
1227      // We can assume that C2 == 1.  If it were zero the result would be
1228      // undefined through division by zero.
1229      return C1;
1230    case Instruction::URem:
1231    case Instruction::SRem:
1232      // We can assume that C2 == 1.  If it were zero the result would be
1233      // undefined through division by zero.
1234      return ConstantInt::getFalse(C1->getContext());
1235    default:
1236      break;
1237    }
1238  }
1239
1240  // We don't know how to fold this.
1241  return nullptr;
1242}
1243
1244/// isZeroSizedType - This type is zero sized if its an array or structure of
1245/// zero sized types.  The only leaf zero sized type is an empty structure.
1246static bool isMaybeZeroSizedType(Type *Ty) {
1247  if (StructType *STy = dyn_cast<StructType>(Ty)) {
1248    if (STy->isOpaque()) return true;  // Can't say.
1249
1250    // If all of elements have zero size, this does too.
1251    for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1252      if (!isMaybeZeroSizedType(STy->getElementType(i))) return false;
1253    return true;
1254
1255  } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1256    return isMaybeZeroSizedType(ATy->getElementType());
1257  }
1258  return false;
1259}
1260
1261/// IdxCompare - Compare the two constants as though they were getelementptr
1262/// indices.  This allows coersion of the types to be the same thing.
1263///
1264/// If the two constants are the "same" (after coersion), return 0.  If the
1265/// first is less than the second, return -1, if the second is less than the
1266/// first, return 1.  If the constants are not integral, return -2.
1267///
1268static int IdxCompare(Constant *C1, Constant *C2, Type *ElTy) {
1269  if (C1 == C2) return 0;
1270
1271  // Ok, we found a different index.  If they are not ConstantInt, we can't do
1272  // anything with them.
1273  if (!isa<ConstantInt>(C1) || !isa<ConstantInt>(C2))
1274    return -2; // don't know!
1275
1276  // Ok, we have two differing integer indices.  Sign extend them to be the same
1277  // type.  Long is always big enough, so we use it.
1278  if (!C1->getType()->isIntegerTy(64))
1279    C1 = ConstantExpr::getSExt(C1, Type::getInt64Ty(C1->getContext()));
1280
1281  if (!C2->getType()->isIntegerTy(64))
1282    C2 = ConstantExpr::getSExt(C2, Type::getInt64Ty(C1->getContext()));
1283
1284  if (C1 == C2) return 0;  // They are equal
1285
1286  // If the type being indexed over is really just a zero sized type, there is
1287  // no pointer difference being made here.
1288  if (isMaybeZeroSizedType(ElTy))
1289    return -2; // dunno.
1290
1291  // If they are really different, now that they are the same type, then we
1292  // found a difference!
1293  if (cast<ConstantInt>(C1)->getSExtValue() <
1294      cast<ConstantInt>(C2)->getSExtValue())
1295    return -1;
1296  else
1297    return 1;
1298}
1299
1300/// evaluateFCmpRelation - This function determines if there is anything we can
1301/// decide about the two constants provided.  This doesn't need to handle simple
1302/// things like ConstantFP comparisons, but should instead handle ConstantExprs.
1303/// If we can determine that the two constants have a particular relation to
1304/// each other, we should return the corresponding FCmpInst predicate,
1305/// otherwise return FCmpInst::BAD_FCMP_PREDICATE. This is used below in
1306/// ConstantFoldCompareInstruction.
1307///
1308/// To simplify this code we canonicalize the relation so that the first
1309/// operand is always the most "complex" of the two.  We consider ConstantFP
1310/// to be the simplest, and ConstantExprs to be the most complex.
1311static FCmpInst::Predicate evaluateFCmpRelation(Constant *V1, Constant *V2) {
1312  assert(V1->getType() == V2->getType() &&
1313         "Cannot compare values of different types!");
1314
1315  // Handle degenerate case quickly
1316  if (V1 == V2) return FCmpInst::FCMP_OEQ;
1317
1318  if (!isa<ConstantExpr>(V1)) {
1319    if (!isa<ConstantExpr>(V2)) {
1320      // We distilled thisUse the standard constant folder for a few cases
1321      ConstantInt *R = nullptr;
1322      R = dyn_cast<ConstantInt>(
1323                      ConstantExpr::getFCmp(FCmpInst::FCMP_OEQ, V1, V2));
1324      if (R && !R->isZero())
1325        return FCmpInst::FCMP_OEQ;
1326      R = dyn_cast<ConstantInt>(
1327                      ConstantExpr::getFCmp(FCmpInst::FCMP_OLT, V1, V2));
1328      if (R && !R->isZero())
1329        return FCmpInst::FCMP_OLT;
1330      R = dyn_cast<ConstantInt>(
1331                      ConstantExpr::getFCmp(FCmpInst::FCMP_OGT, V1, V2));
1332      if (R && !R->isZero())
1333        return FCmpInst::FCMP_OGT;
1334
1335      // Nothing more we can do
1336      return FCmpInst::BAD_FCMP_PREDICATE;
1337    }
1338
1339    // If the first operand is simple and second is ConstantExpr, swap operands.
1340    FCmpInst::Predicate SwappedRelation = evaluateFCmpRelation(V2, V1);
1341    if (SwappedRelation != FCmpInst::BAD_FCMP_PREDICATE)
1342      return FCmpInst::getSwappedPredicate(SwappedRelation);
1343  } else {
1344    // Ok, the LHS is known to be a constantexpr.  The RHS can be any of a
1345    // constantexpr or a simple constant.
1346    ConstantExpr *CE1 = cast<ConstantExpr>(V1);
1347    switch (CE1->getOpcode()) {
1348    case Instruction::FPTrunc:
1349    case Instruction::FPExt:
1350    case Instruction::UIToFP:
1351    case Instruction::SIToFP:
1352      // We might be able to do something with these but we don't right now.
1353      break;
1354    default:
1355      break;
1356    }
1357  }
1358  // There are MANY other foldings that we could perform here.  They will
1359  // probably be added on demand, as they seem needed.
1360  return FCmpInst::BAD_FCMP_PREDICATE;
1361}
1362
1363static ICmpInst::Predicate areGlobalsPotentiallyEqual(const GlobalValue *GV1,
1364                                                      const GlobalValue *GV2) {
1365  auto isGlobalUnsafeForEquality = [](const GlobalValue *GV) {
1366    if (GV->hasExternalWeakLinkage() || GV->hasWeakAnyLinkage())
1367      return true;
1368    if (const auto *GVar = dyn_cast<GlobalVariable>(GV)) {
1369      Type *Ty = GVar->getType()->getPointerElementType();
1370      // A global with opaque type might end up being zero sized.
1371      if (!Ty->isSized())
1372        return true;
1373      // A global with an empty type might lie at the address of any other
1374      // global.
1375      if (Ty->isEmptyTy())
1376        return true;
1377    }
1378    return false;
1379  };
1380  // Don't try to decide equality of aliases.
1381  if (!isa<GlobalAlias>(GV1) && !isa<GlobalAlias>(GV2))
1382    if (!isGlobalUnsafeForEquality(GV1) && !isGlobalUnsafeForEquality(GV2))
1383      return ICmpInst::ICMP_NE;
1384  return ICmpInst::BAD_ICMP_PREDICATE;
1385}
1386
1387/// evaluateICmpRelation - This function determines if there is anything we can
1388/// decide about the two constants provided.  This doesn't need to handle simple
1389/// things like integer comparisons, but should instead handle ConstantExprs
1390/// and GlobalValues.  If we can determine that the two constants have a
1391/// particular relation to each other, we should return the corresponding ICmp
1392/// predicate, otherwise return ICmpInst::BAD_ICMP_PREDICATE.
1393///
1394/// To simplify this code we canonicalize the relation so that the first
1395/// operand is always the most "complex" of the two.  We consider simple
1396/// constants (like ConstantInt) to be the simplest, followed by
1397/// GlobalValues, followed by ConstantExpr's (the most complex).
1398///
1399static ICmpInst::Predicate evaluateICmpRelation(Constant *V1, Constant *V2,
1400                                                bool isSigned) {
1401  assert(V1->getType() == V2->getType() &&
1402         "Cannot compare different types of values!");
1403  if (V1 == V2) return ICmpInst::ICMP_EQ;
1404
1405  if (!isa<ConstantExpr>(V1) && !isa<GlobalValue>(V1) &&
1406      !isa<BlockAddress>(V1)) {
1407    if (!isa<GlobalValue>(V2) && !isa<ConstantExpr>(V2) &&
1408        !isa<BlockAddress>(V2)) {
1409      // We distilled this down to a simple case, use the standard constant
1410      // folder.
1411      ConstantInt *R = nullptr;
1412      ICmpInst::Predicate pred = ICmpInst::ICMP_EQ;
1413      R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, V1, V2));
1414      if (R && !R->isZero())
1415        return pred;
1416      pred = isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1417      R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, V1, V2));
1418      if (R && !R->isZero())
1419        return pred;
1420      pred = isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1421      R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, V1, V2));
1422      if (R && !R->isZero())
1423        return pred;
1424
1425      // If we couldn't figure it out, bail.
1426      return ICmpInst::BAD_ICMP_PREDICATE;
1427    }
1428
1429    // If the first operand is simple, swap operands.
1430    ICmpInst::Predicate SwappedRelation =
1431      evaluateICmpRelation(V2, V1, isSigned);
1432    if (SwappedRelation != ICmpInst::BAD_ICMP_PREDICATE)
1433      return ICmpInst::getSwappedPredicate(SwappedRelation);
1434
1435  } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(V1)) {
1436    if (isa<ConstantExpr>(V2)) {  // Swap as necessary.
1437      ICmpInst::Predicate SwappedRelation =
1438        evaluateICmpRelation(V2, V1, isSigned);
1439      if (SwappedRelation != ICmpInst::BAD_ICMP_PREDICATE)
1440        return ICmpInst::getSwappedPredicate(SwappedRelation);
1441      return ICmpInst::BAD_ICMP_PREDICATE;
1442    }
1443
1444    // Now we know that the RHS is a GlobalValue, BlockAddress or simple
1445    // constant (which, since the types must match, means that it's a
1446    // ConstantPointerNull).
1447    if (const GlobalValue *GV2 = dyn_cast<GlobalValue>(V2)) {
1448      return areGlobalsPotentiallyEqual(GV, GV2);
1449    } else if (isa<BlockAddress>(V2)) {
1450      return ICmpInst::ICMP_NE; // Globals never equal labels.
1451    } else {
1452      assert(isa<ConstantPointerNull>(V2) && "Canonicalization guarantee!");
1453      // GlobalVals can never be null unless they have external weak linkage.
1454      // We don't try to evaluate aliases here.
1455      if (!GV->hasExternalWeakLinkage() && !isa<GlobalAlias>(GV))
1456        return ICmpInst::ICMP_NE;
1457    }
1458  } else if (const BlockAddress *BA = dyn_cast<BlockAddress>(V1)) {
1459    if (isa<ConstantExpr>(V2)) {  // Swap as necessary.
1460      ICmpInst::Predicate SwappedRelation =
1461        evaluateICmpRelation(V2, V1, isSigned);
1462      if (SwappedRelation != ICmpInst::BAD_ICMP_PREDICATE)
1463        return ICmpInst::getSwappedPredicate(SwappedRelation);
1464      return ICmpInst::BAD_ICMP_PREDICATE;
1465    }
1466
1467    // Now we know that the RHS is a GlobalValue, BlockAddress or simple
1468    // constant (which, since the types must match, means that it is a
1469    // ConstantPointerNull).
1470    if (const BlockAddress *BA2 = dyn_cast<BlockAddress>(V2)) {
1471      // Block address in another function can't equal this one, but block
1472      // addresses in the current function might be the same if blocks are
1473      // empty.
1474      if (BA2->getFunction() != BA->getFunction())
1475        return ICmpInst::ICMP_NE;
1476    } else {
1477      // Block addresses aren't null, don't equal the address of globals.
1478      assert((isa<ConstantPointerNull>(V2) || isa<GlobalValue>(V2)) &&
1479             "Canonicalization guarantee!");
1480      return ICmpInst::ICMP_NE;
1481    }
1482  } else {
1483    // Ok, the LHS is known to be a constantexpr.  The RHS can be any of a
1484    // constantexpr, a global, block address, or a simple constant.
1485    ConstantExpr *CE1 = cast<ConstantExpr>(V1);
1486    Constant *CE1Op0 = CE1->getOperand(0);
1487
1488    switch (CE1->getOpcode()) {
1489    case Instruction::Trunc:
1490    case Instruction::FPTrunc:
1491    case Instruction::FPExt:
1492    case Instruction::FPToUI:
1493    case Instruction::FPToSI:
1494      break; // We can't evaluate floating point casts or truncations.
1495
1496    case Instruction::UIToFP:
1497    case Instruction::SIToFP:
1498    case Instruction::BitCast:
1499    case Instruction::ZExt:
1500    case Instruction::SExt:
1501      // If the cast is not actually changing bits, and the second operand is a
1502      // null pointer, do the comparison with the pre-casted value.
1503      if (V2->isNullValue() &&
1504          (CE1->getType()->isPointerTy() || CE1->getType()->isIntegerTy())) {
1505        if (CE1->getOpcode() == Instruction::ZExt) isSigned = false;
1506        if (CE1->getOpcode() == Instruction::SExt) isSigned = true;
1507        return evaluateICmpRelation(CE1Op0,
1508                                    Constant::getNullValue(CE1Op0->getType()),
1509                                    isSigned);
1510      }
1511      break;
1512
1513    case Instruction::GetElementPtr: {
1514      GEPOperator *CE1GEP = cast<GEPOperator>(CE1);
1515      // Ok, since this is a getelementptr, we know that the constant has a
1516      // pointer type.  Check the various cases.
1517      if (isa<ConstantPointerNull>(V2)) {
1518        // If we are comparing a GEP to a null pointer, check to see if the base
1519        // of the GEP equals the null pointer.
1520        if (const GlobalValue *GV = dyn_cast<GlobalValue>(CE1Op0)) {
1521          if (GV->hasExternalWeakLinkage())
1522            // Weak linkage GVals could be zero or not. We're comparing that
1523            // to null pointer so its greater-or-equal
1524            return isSigned ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE;
1525          else
1526            // If its not weak linkage, the GVal must have a non-zero address
1527            // so the result is greater-than
1528            return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1529        } else if (isa<ConstantPointerNull>(CE1Op0)) {
1530          // If we are indexing from a null pointer, check to see if we have any
1531          // non-zero indices.
1532          for (unsigned i = 1, e = CE1->getNumOperands(); i != e; ++i)
1533            if (!CE1->getOperand(i)->isNullValue())
1534              // Offsetting from null, must not be equal.
1535              return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1536          // Only zero indexes from null, must still be zero.
1537          return ICmpInst::ICMP_EQ;
1538        }
1539        // Otherwise, we can't really say if the first operand is null or not.
1540      } else if (const GlobalValue *GV2 = dyn_cast<GlobalValue>(V2)) {
1541        if (isa<ConstantPointerNull>(CE1Op0)) {
1542          if (GV2->hasExternalWeakLinkage())
1543            // Weak linkage GVals could be zero or not. We're comparing it to
1544            // a null pointer, so its less-or-equal
1545            return isSigned ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE;
1546          else
1547            // If its not weak linkage, the GVal must have a non-zero address
1548            // so the result is less-than
1549            return isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1550        } else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CE1Op0)) {
1551          if (GV == GV2) {
1552            // If this is a getelementptr of the same global, then it must be
1553            // different.  Because the types must match, the getelementptr could
1554            // only have at most one index, and because we fold getelementptr's
1555            // with a single zero index, it must be nonzero.
1556            assert(CE1->getNumOperands() == 2 &&
1557                   !CE1->getOperand(1)->isNullValue() &&
1558                   "Surprising getelementptr!");
1559            return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1560          } else {
1561            if (CE1GEP->hasAllZeroIndices())
1562              return areGlobalsPotentiallyEqual(GV, GV2);
1563            return ICmpInst::BAD_ICMP_PREDICATE;
1564          }
1565        }
1566      } else {
1567        ConstantExpr *CE2 = cast<ConstantExpr>(V2);
1568        Constant *CE2Op0 = CE2->getOperand(0);
1569
1570        // There are MANY other foldings that we could perform here.  They will
1571        // probably be added on demand, as they seem needed.
1572        switch (CE2->getOpcode()) {
1573        default: break;
1574        case Instruction::GetElementPtr:
1575          // By far the most common case to handle is when the base pointers are
1576          // obviously to the same global.
1577          if (isa<GlobalValue>(CE1Op0) && isa<GlobalValue>(CE2Op0)) {
1578            // Don't know relative ordering, but check for inequality.
1579            if (CE1Op0 != CE2Op0) {
1580              GEPOperator *CE2GEP = cast<GEPOperator>(CE2);
1581              if (CE1GEP->hasAllZeroIndices() && CE2GEP->hasAllZeroIndices())
1582                return areGlobalsPotentiallyEqual(cast<GlobalValue>(CE1Op0),
1583                                                  cast<GlobalValue>(CE2Op0));
1584              return ICmpInst::BAD_ICMP_PREDICATE;
1585            }
1586            // Ok, we know that both getelementptr instructions are based on the
1587            // same global.  From this, we can precisely determine the relative
1588            // ordering of the resultant pointers.
1589            unsigned i = 1;
1590
1591            // The logic below assumes that the result of the comparison
1592            // can be determined by finding the first index that differs.
1593            // This doesn't work if there is over-indexing in any
1594            // subsequent indices, so check for that case first.
1595            if (!CE1->isGEPWithNoNotionalOverIndexing() ||
1596                !CE2->isGEPWithNoNotionalOverIndexing())
1597               return ICmpInst::BAD_ICMP_PREDICATE; // Might be equal.
1598
1599            // Compare all of the operands the GEP's have in common.
1600            gep_type_iterator GTI = gep_type_begin(CE1);
1601            for (;i != CE1->getNumOperands() && i != CE2->getNumOperands();
1602                 ++i, ++GTI)
1603              switch (IdxCompare(CE1->getOperand(i),
1604                                 CE2->getOperand(i), GTI.getIndexedType())) {
1605              case -1: return isSigned ? ICmpInst::ICMP_SLT:ICmpInst::ICMP_ULT;
1606              case 1:  return isSigned ? ICmpInst::ICMP_SGT:ICmpInst::ICMP_UGT;
1607              case -2: return ICmpInst::BAD_ICMP_PREDICATE;
1608              }
1609
1610            // Ok, we ran out of things they have in common.  If any leftovers
1611            // are non-zero then we have a difference, otherwise we are equal.
1612            for (; i < CE1->getNumOperands(); ++i)
1613              if (!CE1->getOperand(i)->isNullValue()) {
1614                if (isa<ConstantInt>(CE1->getOperand(i)))
1615                  return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
1616                else
1617                  return ICmpInst::BAD_ICMP_PREDICATE; // Might be equal.
1618              }
1619
1620            for (; i < CE2->getNumOperands(); ++i)
1621              if (!CE2->getOperand(i)->isNullValue()) {
1622                if (isa<ConstantInt>(CE2->getOperand(i)))
1623                  return isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
1624                else
1625                  return ICmpInst::BAD_ICMP_PREDICATE; // Might be equal.
1626              }
1627            return ICmpInst::ICMP_EQ;
1628          }
1629        }
1630      }
1631    }
1632    default:
1633      break;
1634    }
1635  }
1636
1637  return ICmpInst::BAD_ICMP_PREDICATE;
1638}
1639
1640Constant *llvm::ConstantFoldCompareInstruction(unsigned short pred,
1641                                               Constant *C1, Constant *C2) {
1642  Type *ResultTy;
1643  if (VectorType *VT = dyn_cast<VectorType>(C1->getType()))
1644    ResultTy = VectorType::get(Type::getInt1Ty(C1->getContext()),
1645                               VT->getNumElements());
1646  else
1647    ResultTy = Type::getInt1Ty(C1->getContext());
1648
1649  // Fold FCMP_FALSE/FCMP_TRUE unconditionally.
1650  if (pred == FCmpInst::FCMP_FALSE)
1651    return Constant::getNullValue(ResultTy);
1652
1653  if (pred == FCmpInst::FCMP_TRUE)
1654    return Constant::getAllOnesValue(ResultTy);
1655
1656  // Handle some degenerate cases first
1657  if (isa<UndefValue>(C1) || isa<UndefValue>(C2)) {
1658    // For EQ and NE, we can always pick a value for the undef to make the
1659    // predicate pass or fail, so we can return undef.
1660    // Also, if both operands are undef, we can return undef.
1661    if (ICmpInst::isEquality(ICmpInst::Predicate(pred)) ||
1662        (isa<UndefValue>(C1) && isa<UndefValue>(C2)))
1663      return UndefValue::get(ResultTy);
1664    // Otherwise, pick the same value as the non-undef operand, and fold
1665    // it to true or false.
1666    return ConstantInt::get(ResultTy, CmpInst::isTrueWhenEqual(pred));
1667  }
1668
1669  // icmp eq/ne(null,GV) -> false/true
1670  if (C1->isNullValue()) {
1671    if (const GlobalValue *GV = dyn_cast<GlobalValue>(C2))
1672      // Don't try to evaluate aliases.  External weak GV can be null.
1673      if (!isa<GlobalAlias>(GV) && !GV->hasExternalWeakLinkage()) {
1674        if (pred == ICmpInst::ICMP_EQ)
1675          return ConstantInt::getFalse(C1->getContext());
1676        else if (pred == ICmpInst::ICMP_NE)
1677          return ConstantInt::getTrue(C1->getContext());
1678      }
1679  // icmp eq/ne(GV,null) -> false/true
1680  } else if (C2->isNullValue()) {
1681    if (const GlobalValue *GV = dyn_cast<GlobalValue>(C1))
1682      // Don't try to evaluate aliases.  External weak GV can be null.
1683      if (!isa<GlobalAlias>(GV) && !GV->hasExternalWeakLinkage()) {
1684        if (pred == ICmpInst::ICMP_EQ)
1685          return ConstantInt::getFalse(C1->getContext());
1686        else if (pred == ICmpInst::ICMP_NE)
1687          return ConstantInt::getTrue(C1->getContext());
1688      }
1689  }
1690
1691  // If the comparison is a comparison between two i1's, simplify it.
1692  if (C1->getType()->isIntegerTy(1)) {
1693    switch(pred) {
1694    case ICmpInst::ICMP_EQ:
1695      if (isa<ConstantInt>(C2))
1696        return ConstantExpr::getXor(C1, ConstantExpr::getNot(C2));
1697      return ConstantExpr::getXor(ConstantExpr::getNot(C1), C2);
1698    case ICmpInst::ICMP_NE:
1699      return ConstantExpr::getXor(C1, C2);
1700    default:
1701      break;
1702    }
1703  }
1704
1705  if (isa<ConstantInt>(C1) && isa<ConstantInt>(C2)) {
1706    APInt V1 = cast<ConstantInt>(C1)->getValue();
1707    APInt V2 = cast<ConstantInt>(C2)->getValue();
1708    switch (pred) {
1709    default: llvm_unreachable("Invalid ICmp Predicate");
1710    case ICmpInst::ICMP_EQ:  return ConstantInt::get(ResultTy, V1 == V2);
1711    case ICmpInst::ICMP_NE:  return ConstantInt::get(ResultTy, V1 != V2);
1712    case ICmpInst::ICMP_SLT: return ConstantInt::get(ResultTy, V1.slt(V2));
1713    case ICmpInst::ICMP_SGT: return ConstantInt::get(ResultTy, V1.sgt(V2));
1714    case ICmpInst::ICMP_SLE: return ConstantInt::get(ResultTy, V1.sle(V2));
1715    case ICmpInst::ICMP_SGE: return ConstantInt::get(ResultTy, V1.sge(V2));
1716    case ICmpInst::ICMP_ULT: return ConstantInt::get(ResultTy, V1.ult(V2));
1717    case ICmpInst::ICMP_UGT: return ConstantInt::get(ResultTy, V1.ugt(V2));
1718    case ICmpInst::ICMP_ULE: return ConstantInt::get(ResultTy, V1.ule(V2));
1719    case ICmpInst::ICMP_UGE: return ConstantInt::get(ResultTy, V1.uge(V2));
1720    }
1721  } else if (isa<ConstantFP>(C1) && isa<ConstantFP>(C2)) {
1722    APFloat C1V = cast<ConstantFP>(C1)->getValueAPF();
1723    APFloat C2V = cast<ConstantFP>(C2)->getValueAPF();
1724    APFloat::cmpResult R = C1V.compare(C2V);
1725    switch (pred) {
1726    default: llvm_unreachable("Invalid FCmp Predicate");
1727    case FCmpInst::FCMP_FALSE: return Constant::getNullValue(ResultTy);
1728    case FCmpInst::FCMP_TRUE:  return Constant::getAllOnesValue(ResultTy);
1729    case FCmpInst::FCMP_UNO:
1730      return ConstantInt::get(ResultTy, R==APFloat::cmpUnordered);
1731    case FCmpInst::FCMP_ORD:
1732      return ConstantInt::get(ResultTy, R!=APFloat::cmpUnordered);
1733    case FCmpInst::FCMP_UEQ:
1734      return ConstantInt::get(ResultTy, R==APFloat::cmpUnordered ||
1735                                        R==APFloat::cmpEqual);
1736    case FCmpInst::FCMP_OEQ:
1737      return ConstantInt::get(ResultTy, R==APFloat::cmpEqual);
1738    case FCmpInst::FCMP_UNE:
1739      return ConstantInt::get(ResultTy, R!=APFloat::cmpEqual);
1740    case FCmpInst::FCMP_ONE:
1741      return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan ||
1742                                        R==APFloat::cmpGreaterThan);
1743    case FCmpInst::FCMP_ULT:
1744      return ConstantInt::get(ResultTy, R==APFloat::cmpUnordered ||
1745                                        R==APFloat::cmpLessThan);
1746    case FCmpInst::FCMP_OLT:
1747      return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan);
1748    case FCmpInst::FCMP_UGT:
1749      return ConstantInt::get(ResultTy, R==APFloat::cmpUnordered ||
1750                                        R==APFloat::cmpGreaterThan);
1751    case FCmpInst::FCMP_OGT:
1752      return ConstantInt::get(ResultTy, R==APFloat::cmpGreaterThan);
1753    case FCmpInst::FCMP_ULE:
1754      return ConstantInt::get(ResultTy, R!=APFloat::cmpGreaterThan);
1755    case FCmpInst::FCMP_OLE:
1756      return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan ||
1757                                        R==APFloat::cmpEqual);
1758    case FCmpInst::FCMP_UGE:
1759      return ConstantInt::get(ResultTy, R!=APFloat::cmpLessThan);
1760    case FCmpInst::FCMP_OGE:
1761      return ConstantInt::get(ResultTy, R==APFloat::cmpGreaterThan ||
1762                                        R==APFloat::cmpEqual);
1763    }
1764  } else if (C1->getType()->isVectorTy()) {
1765    // If we can constant fold the comparison of each element, constant fold
1766    // the whole vector comparison.
1767    SmallVector<Constant*, 4> ResElts;
1768    Type *Ty = IntegerType::get(C1->getContext(), 32);
1769    // Compare the elements, producing an i1 result or constant expr.
1770    for (unsigned i = 0, e = C1->getType()->getVectorNumElements(); i != e;++i){
1771      Constant *C1E =
1772        ConstantExpr::getExtractElement(C1, ConstantInt::get(Ty, i));
1773      Constant *C2E =
1774        ConstantExpr::getExtractElement(C2, ConstantInt::get(Ty, i));
1775
1776      ResElts.push_back(ConstantExpr::getCompare(pred, C1E, C2E));
1777    }
1778
1779    return ConstantVector::get(ResElts);
1780  }
1781
1782  if (C1->getType()->isFloatingPointTy()) {
1783    int Result = -1;  // -1 = unknown, 0 = known false, 1 = known true.
1784    switch (evaluateFCmpRelation(C1, C2)) {
1785    default: llvm_unreachable("Unknown relation!");
1786    case FCmpInst::FCMP_UNO:
1787    case FCmpInst::FCMP_ORD:
1788    case FCmpInst::FCMP_UEQ:
1789    case FCmpInst::FCMP_UNE:
1790    case FCmpInst::FCMP_ULT:
1791    case FCmpInst::FCMP_UGT:
1792    case FCmpInst::FCMP_ULE:
1793    case FCmpInst::FCMP_UGE:
1794    case FCmpInst::FCMP_TRUE:
1795    case FCmpInst::FCMP_FALSE:
1796    case FCmpInst::BAD_FCMP_PREDICATE:
1797      break; // Couldn't determine anything about these constants.
1798    case FCmpInst::FCMP_OEQ: // We know that C1 == C2
1799      Result = (pred == FCmpInst::FCMP_UEQ || pred == FCmpInst::FCMP_OEQ ||
1800                pred == FCmpInst::FCMP_ULE || pred == FCmpInst::FCMP_OLE ||
1801                pred == FCmpInst::FCMP_UGE || pred == FCmpInst::FCMP_OGE);
1802      break;
1803    case FCmpInst::FCMP_OLT: // We know that C1 < C2
1804      Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE ||
1805                pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT ||
1806                pred == FCmpInst::FCMP_ULE || pred == FCmpInst::FCMP_OLE);
1807      break;
1808    case FCmpInst::FCMP_OGT: // We know that C1 > C2
1809      Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE ||
1810                pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT ||
1811                pred == FCmpInst::FCMP_UGE || pred == FCmpInst::FCMP_OGE);
1812      break;
1813    case FCmpInst::FCMP_OLE: // We know that C1 <= C2
1814      // We can only partially decide this relation.
1815      if (pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT)
1816        Result = 0;
1817      else if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT)
1818        Result = 1;
1819      break;
1820    case FCmpInst::FCMP_OGE: // We known that C1 >= C2
1821      // We can only partially decide this relation.
1822      if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT)
1823        Result = 0;
1824      else if (pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT)
1825        Result = 1;
1826      break;
1827    case FCmpInst::FCMP_ONE: // We know that C1 != C2
1828      // We can only partially decide this relation.
1829      if (pred == FCmpInst::FCMP_OEQ || pred == FCmpInst::FCMP_UEQ)
1830        Result = 0;
1831      else if (pred == FCmpInst::FCMP_ONE || pred == FCmpInst::FCMP_UNE)
1832        Result = 1;
1833      break;
1834    }
1835
1836    // If we evaluated the result, return it now.
1837    if (Result != -1)
1838      return ConstantInt::get(ResultTy, Result);
1839
1840  } else {
1841    // Evaluate the relation between the two constants, per the predicate.
1842    int Result = -1;  // -1 = unknown, 0 = known false, 1 = known true.
1843    switch (evaluateICmpRelation(C1, C2, CmpInst::isSigned(pred))) {
1844    default: llvm_unreachable("Unknown relational!");
1845    case ICmpInst::BAD_ICMP_PREDICATE:
1846      break;  // Couldn't determine anything about these constants.
1847    case ICmpInst::ICMP_EQ:   // We know the constants are equal!
1848      // If we know the constants are equal, we can decide the result of this
1849      // computation precisely.
1850      Result = ICmpInst::isTrueWhenEqual((ICmpInst::Predicate)pred);
1851      break;
1852    case ICmpInst::ICMP_ULT:
1853      switch (pred) {
1854      case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_ULE:
1855        Result = 1; break;
1856      case ICmpInst::ICMP_UGT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_UGE:
1857        Result = 0; break;
1858      }
1859      break;
1860    case ICmpInst::ICMP_SLT:
1861      switch (pred) {
1862      case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_SLE:
1863        Result = 1; break;
1864      case ICmpInst::ICMP_SGT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_SGE:
1865        Result = 0; break;
1866      }
1867      break;
1868    case ICmpInst::ICMP_UGT:
1869      switch (pred) {
1870      case ICmpInst::ICMP_UGT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_UGE:
1871        Result = 1; break;
1872      case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_ULE:
1873        Result = 0; break;
1874      }
1875      break;
1876    case ICmpInst::ICMP_SGT:
1877      switch (pred) {
1878      case ICmpInst::ICMP_SGT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_SGE:
1879        Result = 1; break;
1880      case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_SLE:
1881        Result = 0; break;
1882      }
1883      break;
1884    case ICmpInst::ICMP_ULE:
1885      if (pred == ICmpInst::ICMP_UGT) Result = 0;
1886      if (pred == ICmpInst::ICMP_ULT || pred == ICmpInst::ICMP_ULE) Result = 1;
1887      break;
1888    case ICmpInst::ICMP_SLE:
1889      if (pred == ICmpInst::ICMP_SGT) Result = 0;
1890      if (pred == ICmpInst::ICMP_SLT || pred == ICmpInst::ICMP_SLE) Result = 1;
1891      break;
1892    case ICmpInst::ICMP_UGE:
1893      if (pred == ICmpInst::ICMP_ULT) Result = 0;
1894      if (pred == ICmpInst::ICMP_UGT || pred == ICmpInst::ICMP_UGE) Result = 1;
1895      break;
1896    case ICmpInst::ICMP_SGE:
1897      if (pred == ICmpInst::ICMP_SLT) Result = 0;
1898      if (pred == ICmpInst::ICMP_SGT || pred == ICmpInst::ICMP_SGE) Result = 1;
1899      break;
1900    case ICmpInst::ICMP_NE:
1901      if (pred == ICmpInst::ICMP_EQ) Result = 0;
1902      if (pred == ICmpInst::ICMP_NE) Result = 1;
1903      break;
1904    }
1905
1906    // If we evaluated the result, return it now.
1907    if (Result != -1)
1908      return ConstantInt::get(ResultTy, Result);
1909
1910    // If the right hand side is a bitcast, try using its inverse to simplify
1911    // it by moving it to the left hand side.  We can't do this if it would turn
1912    // a vector compare into a scalar compare or visa versa.
1913    if (ConstantExpr *CE2 = dyn_cast<ConstantExpr>(C2)) {
1914      Constant *CE2Op0 = CE2->getOperand(0);
1915      if (CE2->getOpcode() == Instruction::BitCast &&
1916          CE2->getType()->isVectorTy() == CE2Op0->getType()->isVectorTy()) {
1917        Constant *Inverse = ConstantExpr::getBitCast(C1, CE2Op0->getType());
1918        return ConstantExpr::getICmp(pred, Inverse, CE2Op0);
1919      }
1920    }
1921
1922    // If the left hand side is an extension, try eliminating it.
1923    if (ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
1924      if ((CE1->getOpcode() == Instruction::SExt && ICmpInst::isSigned(pred)) ||
1925          (CE1->getOpcode() == Instruction::ZExt && !ICmpInst::isSigned(pred))){
1926        Constant *CE1Op0 = CE1->getOperand(0);
1927        Constant *CE1Inverse = ConstantExpr::getTrunc(CE1, CE1Op0->getType());
1928        if (CE1Inverse == CE1Op0) {
1929          // Check whether we can safely truncate the right hand side.
1930          Constant *C2Inverse = ConstantExpr::getTrunc(C2, CE1Op0->getType());
1931          if (ConstantExpr::getCast(CE1->getOpcode(), C2Inverse,
1932                                    C2->getType()) == C2)
1933            return ConstantExpr::getICmp(pred, CE1Inverse, C2Inverse);
1934        }
1935      }
1936    }
1937
1938    if ((!isa<ConstantExpr>(C1) && isa<ConstantExpr>(C2)) ||
1939        (C1->isNullValue() && !C2->isNullValue())) {
1940      // If C2 is a constant expr and C1 isn't, flip them around and fold the
1941      // other way if possible.
1942      // Also, if C1 is null and C2 isn't, flip them around.
1943      pred = ICmpInst::getSwappedPredicate((ICmpInst::Predicate)pred);
1944      return ConstantExpr::getICmp(pred, C2, C1);
1945    }
1946  }
1947  return nullptr;
1948}
1949
1950/// isInBoundsIndices - Test whether the given sequence of *normalized* indices
1951/// is "inbounds".
1952template<typename IndexTy>
1953static bool isInBoundsIndices(ArrayRef<IndexTy> Idxs) {
1954  // No indices means nothing that could be out of bounds.
1955  if (Idxs.empty()) return true;
1956
1957  // If the first index is zero, it's in bounds.
1958  if (cast<Constant>(Idxs[0])->isNullValue()) return true;
1959
1960  // If the first index is one and all the rest are zero, it's in bounds,
1961  // by the one-past-the-end rule.
1962  if (!cast<ConstantInt>(Idxs[0])->isOne())
1963    return false;
1964  for (unsigned i = 1, e = Idxs.size(); i != e; ++i)
1965    if (!cast<Constant>(Idxs[i])->isNullValue())
1966      return false;
1967  return true;
1968}
1969
1970/// \brief Test whether a given ConstantInt is in-range for a SequentialType.
1971static bool isIndexInRangeOfSequentialType(const SequentialType *STy,
1972                                           const ConstantInt *CI) {
1973  if (const PointerType *PTy = dyn_cast<PointerType>(STy))
1974    // Only handle pointers to sized types, not pointers to functions.
1975    return PTy->getElementType()->isSized();
1976
1977  uint64_t NumElements = 0;
1978  // Determine the number of elements in our sequential type.
1979  if (const ArrayType *ATy = dyn_cast<ArrayType>(STy))
1980    NumElements = ATy->getNumElements();
1981  else if (const VectorType *VTy = dyn_cast<VectorType>(STy))
1982    NumElements = VTy->getNumElements();
1983
1984  assert((isa<ArrayType>(STy) || NumElements > 0) &&
1985         "didn't expect non-array type to have zero elements!");
1986
1987  // We cannot bounds check the index if it doesn't fit in an int64_t.
1988  if (CI->getValue().getActiveBits() > 64)
1989    return false;
1990
1991  // A negative index or an index past the end of our sequential type is
1992  // considered out-of-range.
1993  int64_t IndexVal = CI->getSExtValue();
1994  if (IndexVal < 0 || (NumElements > 0 && (uint64_t)IndexVal >= NumElements))
1995    return false;
1996
1997  // Otherwise, it is in-range.
1998  return true;
1999}
2000
2001template<typename IndexTy>
2002static Constant *ConstantFoldGetElementPtrImpl(Constant *C,
2003                                               bool inBounds,
2004                                               ArrayRef<IndexTy> Idxs) {
2005  if (Idxs.empty()) return C;
2006  Constant *Idx0 = cast<Constant>(Idxs[0]);
2007  if ((Idxs.size() == 1 && Idx0->isNullValue()))
2008    return C;
2009
2010  if (isa<UndefValue>(C)) {
2011    PointerType *Ptr = cast<PointerType>(C->getType());
2012    Type *Ty = GetElementPtrInst::getIndexedType(Ptr, Idxs);
2013    assert(Ty && "Invalid indices for GEP!");
2014    return UndefValue::get(PointerType::get(Ty, Ptr->getAddressSpace()));
2015  }
2016
2017  if (C->isNullValue()) {
2018    bool isNull = true;
2019    for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
2020      if (!cast<Constant>(Idxs[i])->isNullValue()) {
2021        isNull = false;
2022        break;
2023      }
2024    if (isNull) {
2025      PointerType *Ptr = cast<PointerType>(C->getType());
2026      Type *Ty = GetElementPtrInst::getIndexedType(Ptr, Idxs);
2027      assert(Ty && "Invalid indices for GEP!");
2028      return ConstantPointerNull::get(PointerType::get(Ty,
2029                                                       Ptr->getAddressSpace()));
2030    }
2031  }
2032
2033  if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
2034    // Combine Indices - If the source pointer to this getelementptr instruction
2035    // is a getelementptr instruction, combine the indices of the two
2036    // getelementptr instructions into a single instruction.
2037    //
2038    if (CE->getOpcode() == Instruction::GetElementPtr) {
2039      Type *LastTy = nullptr;
2040      for (gep_type_iterator I = gep_type_begin(CE), E = gep_type_end(CE);
2041           I != E; ++I)
2042        LastTy = *I;
2043
2044      // We cannot combine indices if doing so would take us outside of an
2045      // array or vector.  Doing otherwise could trick us if we evaluated such a
2046      // GEP as part of a load.
2047      //
2048      // e.g. Consider if the original GEP was:
2049      // i8* getelementptr ({ [2 x i8], i32, i8, [3 x i8] }* @main.c,
2050      //                    i32 0, i32 0, i64 0)
2051      //
2052      // If we then tried to offset it by '8' to get to the third element,
2053      // an i8, we should *not* get:
2054      // i8* getelementptr ({ [2 x i8], i32, i8, [3 x i8] }* @main.c,
2055      //                    i32 0, i32 0, i64 8)
2056      //
2057      // This GEP tries to index array element '8  which runs out-of-bounds.
2058      // Subsequent evaluation would get confused and produce erroneous results.
2059      //
2060      // The following prohibits such a GEP from being formed by checking to see
2061      // if the index is in-range with respect to an array or vector.
2062      bool PerformFold = false;
2063      if (Idx0->isNullValue())
2064        PerformFold = true;
2065      else if (SequentialType *STy = dyn_cast_or_null<SequentialType>(LastTy))
2066        if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx0))
2067          PerformFold = isIndexInRangeOfSequentialType(STy, CI);
2068
2069      if (PerformFold) {
2070        SmallVector<Value*, 16> NewIndices;
2071        NewIndices.reserve(Idxs.size() + CE->getNumOperands());
2072        for (unsigned i = 1, e = CE->getNumOperands()-1; i != e; ++i)
2073          NewIndices.push_back(CE->getOperand(i));
2074
2075        // Add the last index of the source with the first index of the new GEP.
2076        // Make sure to handle the case when they are actually different types.
2077        Constant *Combined = CE->getOperand(CE->getNumOperands()-1);
2078        // Otherwise it must be an array.
2079        if (!Idx0->isNullValue()) {
2080          Type *IdxTy = Combined->getType();
2081          if (IdxTy != Idx0->getType()) {
2082            Type *Int64Ty = Type::getInt64Ty(IdxTy->getContext());
2083            Constant *C1 = ConstantExpr::getSExtOrBitCast(Idx0, Int64Ty);
2084            Constant *C2 = ConstantExpr::getSExtOrBitCast(Combined, Int64Ty);
2085            Combined = ConstantExpr::get(Instruction::Add, C1, C2);
2086          } else {
2087            Combined =
2088              ConstantExpr::get(Instruction::Add, Idx0, Combined);
2089          }
2090        }
2091
2092        NewIndices.push_back(Combined);
2093        NewIndices.append(Idxs.begin() + 1, Idxs.end());
2094        return
2095          ConstantExpr::getGetElementPtr(CE->getOperand(0), NewIndices,
2096                                         inBounds &&
2097                                           cast<GEPOperator>(CE)->isInBounds());
2098      }
2099    }
2100
2101    // Attempt to fold casts to the same type away.  For example, folding:
2102    //
2103    //   i32* getelementptr ([2 x i32]* bitcast ([3 x i32]* %X to [2 x i32]*),
2104    //                       i64 0, i64 0)
2105    // into:
2106    //
2107    //   i32* getelementptr ([3 x i32]* %X, i64 0, i64 0)
2108    //
2109    // Don't fold if the cast is changing address spaces.
2110    if (CE->isCast() && Idxs.size() > 1 && Idx0->isNullValue()) {
2111      PointerType *SrcPtrTy =
2112        dyn_cast<PointerType>(CE->getOperand(0)->getType());
2113      PointerType *DstPtrTy = dyn_cast<PointerType>(CE->getType());
2114      if (SrcPtrTy && DstPtrTy) {
2115        ArrayType *SrcArrayTy =
2116          dyn_cast<ArrayType>(SrcPtrTy->getElementType());
2117        ArrayType *DstArrayTy =
2118          dyn_cast<ArrayType>(DstPtrTy->getElementType());
2119        if (SrcArrayTy && DstArrayTy
2120            && SrcArrayTy->getElementType() == DstArrayTy->getElementType()
2121            && SrcPtrTy->getAddressSpace() == DstPtrTy->getAddressSpace())
2122          return ConstantExpr::getGetElementPtr((Constant*)CE->getOperand(0),
2123                                                Idxs, inBounds);
2124      }
2125    }
2126  }
2127
2128  // Check to see if any array indices are not within the corresponding
2129  // notional array or vector bounds. If so, try to determine if they can be
2130  // factored out into preceding dimensions.
2131  bool Unknown = false;
2132  SmallVector<Constant *, 8> NewIdxs;
2133  Type *Ty = C->getType();
2134  Type *Prev = nullptr;
2135  for (unsigned i = 0, e = Idxs.size(); i != e;
2136       Prev = Ty, Ty = cast<CompositeType>(Ty)->getTypeAtIndex(Idxs[i]), ++i) {
2137    if (ConstantInt *CI = dyn_cast<ConstantInt>(Idxs[i])) {
2138      if (isa<ArrayType>(Ty) || isa<VectorType>(Ty))
2139        if (CI->getSExtValue() > 0 &&
2140            !isIndexInRangeOfSequentialType(cast<SequentialType>(Ty), CI)) {
2141          if (isa<SequentialType>(Prev)) {
2142            // It's out of range, but we can factor it into the prior
2143            // dimension.
2144            NewIdxs.resize(Idxs.size());
2145            uint64_t NumElements = 0;
2146            if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty))
2147              NumElements = ATy->getNumElements();
2148            else
2149              NumElements = cast<VectorType>(Ty)->getNumElements();
2150
2151            ConstantInt *Factor = ConstantInt::get(CI->getType(), NumElements);
2152            NewIdxs[i] = ConstantExpr::getSRem(CI, Factor);
2153
2154            Constant *PrevIdx = cast<Constant>(Idxs[i-1]);
2155            Constant *Div = ConstantExpr::getSDiv(CI, Factor);
2156
2157            // Before adding, extend both operands to i64 to avoid
2158            // overflow trouble.
2159            if (!PrevIdx->getType()->isIntegerTy(64))
2160              PrevIdx = ConstantExpr::getSExt(PrevIdx,
2161                                           Type::getInt64Ty(Div->getContext()));
2162            if (!Div->getType()->isIntegerTy(64))
2163              Div = ConstantExpr::getSExt(Div,
2164                                          Type::getInt64Ty(Div->getContext()));
2165
2166            NewIdxs[i-1] = ConstantExpr::getAdd(PrevIdx, Div);
2167          } else {
2168            // It's out of range, but the prior dimension is a struct
2169            // so we can't do anything about it.
2170            Unknown = true;
2171          }
2172        }
2173    } else {
2174      // We don't know if it's in range or not.
2175      Unknown = true;
2176    }
2177  }
2178
2179  // If we did any factoring, start over with the adjusted indices.
2180  if (!NewIdxs.empty()) {
2181    for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
2182      if (!NewIdxs[i]) NewIdxs[i] = cast<Constant>(Idxs[i]);
2183    return ConstantExpr::getGetElementPtr(C, NewIdxs, inBounds);
2184  }
2185
2186  // If all indices are known integers and normalized, we can do a simple
2187  // check for the "inbounds" property.
2188  if (!Unknown && !inBounds)
2189    if (auto *GV = dyn_cast<GlobalVariable>(C))
2190      if (!GV->hasExternalWeakLinkage() && isInBoundsIndices(Idxs))
2191        return ConstantExpr::getInBoundsGetElementPtr(C, Idxs);
2192
2193  return nullptr;
2194}
2195
2196Constant *llvm::ConstantFoldGetElementPtr(Constant *C,
2197                                          bool inBounds,
2198                                          ArrayRef<Constant *> Idxs) {
2199  return ConstantFoldGetElementPtrImpl(C, inBounds, Idxs);
2200}
2201
2202Constant *llvm::ConstantFoldGetElementPtr(Constant *C,
2203                                          bool inBounds,
2204                                          ArrayRef<Value *> Idxs) {
2205  return ConstantFoldGetElementPtrImpl(C, inBounds, Idxs);
2206}
2207