1 //===-- Constants.cpp - Implement Constant nodes --------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the Constant* classes.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "llvm/IR/Constants.h"
14 #include "ConstantFold.h"
15 #include "LLVMContextImpl.h"
16 #include "llvm/ADT/STLExtras.h"
17 #include "llvm/ADT/SmallVector.h"
18 #include "llvm/ADT/StringMap.h"
19 #include "llvm/IR/DerivedTypes.h"
20 #include "llvm/IR/GetElementPtrTypeIterator.h"
21 #include "llvm/IR/GlobalValue.h"
22 #include "llvm/IR/Instructions.h"
23 #include "llvm/IR/Module.h"
24 #include "llvm/IR/Operator.h"
25 #include "llvm/IR/PatternMatch.h"
26 #include "llvm/Support/Debug.h"
27 #include "llvm/Support/ErrorHandling.h"
28 #include "llvm/Support/ManagedStatic.h"
29 #include "llvm/Support/MathExtras.h"
30 #include "llvm/Support/raw_ostream.h"
31 #include <algorithm>
32 
33 using namespace llvm;
34 using namespace PatternMatch;
35 
36 //===----------------------------------------------------------------------===//
37 //                              Constant Class
38 //===----------------------------------------------------------------------===//
39 
40 bool Constant::isNegativeZeroValue() const {
41   // Floating point values have an explicit -0.0 value.
42   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
43     return CFP->isZero() && CFP->isNegative();
44 
45   // Equivalent for a vector of -0.0's.
46   if (getType()->isVectorTy())
47     if (const auto *SplatCFP = dyn_cast_or_null<ConstantFP>(getSplatValue()))
48       return SplatCFP->isNegativeZeroValue();
49 
50   // We've already handled true FP case; any other FP vectors can't represent -0.0.
51   if (getType()->isFPOrFPVectorTy())
52     return false;
53 
54   // Otherwise, just use +0.0.
55   return isNullValue();
56 }
57 
58 // Return true iff this constant is positive zero (floating point), negative
59 // zero (floating point), or a null value.
60 bool Constant::isZeroValue() const {
61   // Floating point values have an explicit -0.0 value.
62   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
63     return CFP->isZero();
64 
65   // Check for constant splat vectors of 1 values.
66   if (getType()->isVectorTy())
67     if (const auto *SplatCFP = dyn_cast_or_null<ConstantFP>(getSplatValue()))
68       return SplatCFP->isZero();
69 
70   // Otherwise, just use +0.0.
71   return isNullValue();
72 }
73 
74 bool Constant::isNullValue() const {
75   // 0 is null.
76   if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
77     return CI->isZero();
78 
79   // +0.0 is null.
80   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
81     // ppc_fp128 determine isZero using high order double only
82     // Should check the bitwise value to make sure all bits are zero.
83     return CFP->isExactlyValue(+0.0);
84 
85   // constant zero is zero for aggregates, cpnull is null for pointers, none for
86   // tokens.
87   return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this) ||
88          isa<ConstantTokenNone>(this);
89 }
90 
91 bool Constant::isAllOnesValue() const {
92   // Check for -1 integers
93   if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
94     return CI->isMinusOne();
95 
96   // Check for FP which are bitcasted from -1 integers
97   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
98     return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
99 
100   // Check for constant splat vectors of 1 values.
101   if (getType()->isVectorTy())
102     if (const auto *SplatVal = getSplatValue())
103       return SplatVal->isAllOnesValue();
104 
105   return false;
106 }
107 
108 bool Constant::isOneValue() const {
109   // Check for 1 integers
110   if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
111     return CI->isOne();
112 
113   // Check for FP which are bitcasted from 1 integers
114   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
115     return CFP->getValueAPF().bitcastToAPInt().isOneValue();
116 
117   // Check for constant splat vectors of 1 values.
118   if (getType()->isVectorTy())
119     if (const auto *SplatVal = getSplatValue())
120       return SplatVal->isOneValue();
121 
122   return false;
123 }
124 
125 bool Constant::isNotOneValue() const {
126   // Check for 1 integers
127   if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
128     return !CI->isOneValue();
129 
130   // Check for FP which are bitcasted from 1 integers
131   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
132     return !CFP->getValueAPF().bitcastToAPInt().isOneValue();
133 
134   // Check that vectors don't contain 1
135   if (auto *VTy = dyn_cast<FixedVectorType>(getType())) {
136     for (unsigned I = 0, E = VTy->getNumElements(); I != E; ++I) {
137       Constant *Elt = getAggregateElement(I);
138       if (!Elt || !Elt->isNotOneValue())
139         return false;
140     }
141     return true;
142   }
143 
144   // Check for splats that don't contain 1
145   if (getType()->isVectorTy())
146     if (const auto *SplatVal = getSplatValue())
147       return SplatVal->isNotOneValue();
148 
149   // It *may* contain 1, we can't tell.
150   return false;
151 }
152 
153 bool Constant::isMinSignedValue() const {
154   // Check for INT_MIN integers
155   if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
156     return CI->isMinValue(/*isSigned=*/true);
157 
158   // Check for FP which are bitcasted from INT_MIN integers
159   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
160     return CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
161 
162   // Check for splats of INT_MIN values.
163   if (getType()->isVectorTy())
164     if (const auto *SplatVal = getSplatValue())
165       return SplatVal->isMinSignedValue();
166 
167   return false;
168 }
169 
170 bool Constant::isNotMinSignedValue() const {
171   // Check for INT_MIN integers
172   if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
173     return !CI->isMinValue(/*isSigned=*/true);
174 
175   // Check for FP which are bitcasted from INT_MIN integers
176   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
177     return !CFP->getValueAPF().bitcastToAPInt().isMinSignedValue();
178 
179   // Check that vectors don't contain INT_MIN
180   if (auto *VTy = dyn_cast<FixedVectorType>(getType())) {
181     for (unsigned I = 0, E = VTy->getNumElements(); I != E; ++I) {
182       Constant *Elt = getAggregateElement(I);
183       if (!Elt || !Elt->isNotMinSignedValue())
184         return false;
185     }
186     return true;
187   }
188 
189   // Check for splats that aren't INT_MIN
190   if (getType()->isVectorTy())
191     if (const auto *SplatVal = getSplatValue())
192       return SplatVal->isNotMinSignedValue();
193 
194   // It *may* contain INT_MIN, we can't tell.
195   return false;
196 }
197 
198 bool Constant::isFiniteNonZeroFP() const {
199   if (auto *CFP = dyn_cast<ConstantFP>(this))
200     return CFP->getValueAPF().isFiniteNonZero();
201 
202   if (auto *VTy = dyn_cast<FixedVectorType>(getType())) {
203     for (unsigned I = 0, E = VTy->getNumElements(); I != E; ++I) {
204       auto *CFP = dyn_cast_or_null<ConstantFP>(getAggregateElement(I));
205       if (!CFP || !CFP->getValueAPF().isFiniteNonZero())
206         return false;
207     }
208     return true;
209   }
210 
211   if (getType()->isVectorTy())
212     if (const auto *SplatCFP = dyn_cast_or_null<ConstantFP>(getSplatValue()))
213       return SplatCFP->isFiniteNonZeroFP();
214 
215   // It *may* contain finite non-zero, we can't tell.
216   return false;
217 }
218 
219 bool Constant::isNormalFP() const {
220   if (auto *CFP = dyn_cast<ConstantFP>(this))
221     return CFP->getValueAPF().isNormal();
222 
223   if (auto *VTy = dyn_cast<FixedVectorType>(getType())) {
224     for (unsigned I = 0, E = VTy->getNumElements(); I != E; ++I) {
225       auto *CFP = dyn_cast_or_null<ConstantFP>(getAggregateElement(I));
226       if (!CFP || !CFP->getValueAPF().isNormal())
227         return false;
228     }
229     return true;
230   }
231 
232   if (getType()->isVectorTy())
233     if (const auto *SplatCFP = dyn_cast_or_null<ConstantFP>(getSplatValue()))
234       return SplatCFP->isNormalFP();
235 
236   // It *may* contain a normal fp value, we can't tell.
237   return false;
238 }
239 
240 bool Constant::hasExactInverseFP() const {
241   if (auto *CFP = dyn_cast<ConstantFP>(this))
242     return CFP->getValueAPF().getExactInverse(nullptr);
243 
244   if (auto *VTy = dyn_cast<FixedVectorType>(getType())) {
245     for (unsigned I = 0, E = VTy->getNumElements(); I != E; ++I) {
246       auto *CFP = dyn_cast_or_null<ConstantFP>(getAggregateElement(I));
247       if (!CFP || !CFP->getValueAPF().getExactInverse(nullptr))
248         return false;
249     }
250     return true;
251   }
252 
253   if (getType()->isVectorTy())
254     if (const auto *SplatCFP = dyn_cast_or_null<ConstantFP>(getSplatValue()))
255       return SplatCFP->hasExactInverseFP();
256 
257   // It *may* have an exact inverse fp value, we can't tell.
258   return false;
259 }
260 
261 bool Constant::isNaN() const {
262   if (auto *CFP = dyn_cast<ConstantFP>(this))
263     return CFP->isNaN();
264 
265   if (auto *VTy = dyn_cast<FixedVectorType>(getType())) {
266     for (unsigned I = 0, E = VTy->getNumElements(); I != E; ++I) {
267       auto *CFP = dyn_cast_or_null<ConstantFP>(getAggregateElement(I));
268       if (!CFP || !CFP->isNaN())
269         return false;
270     }
271     return true;
272   }
273 
274   if (getType()->isVectorTy())
275     if (const auto *SplatCFP = dyn_cast_or_null<ConstantFP>(getSplatValue()))
276       return SplatCFP->isNaN();
277 
278   // It *may* be NaN, we can't tell.
279   return false;
280 }
281 
282 bool Constant::isElementWiseEqual(Value *Y) const {
283   // Are they fully identical?
284   if (this == Y)
285     return true;
286 
287   // The input value must be a vector constant with the same type.
288   auto *VTy = dyn_cast<VectorType>(getType());
289   if (!isa<Constant>(Y) || !VTy || VTy != Y->getType())
290     return false;
291 
292   // TODO: Compare pointer constants?
293   if (!(VTy->getElementType()->isIntegerTy() ||
294         VTy->getElementType()->isFloatingPointTy()))
295     return false;
296 
297   // They may still be identical element-wise (if they have `undef`s).
298   // Bitcast to integer to allow exact bitwise comparison for all types.
299   Type *IntTy = VectorType::getInteger(VTy);
300   Constant *C0 = ConstantExpr::getBitCast(const_cast<Constant *>(this), IntTy);
301   Constant *C1 = ConstantExpr::getBitCast(cast<Constant>(Y), IntTy);
302   Constant *CmpEq = ConstantExpr::getICmp(ICmpInst::ICMP_EQ, C0, C1);
303   return isa<UndefValue>(CmpEq) || match(CmpEq, m_One());
304 }
305 
306 static bool
307 containsUndefinedElement(const Constant *C,
308                          function_ref<bool(const Constant *)> HasFn) {
309   if (auto *VTy = dyn_cast<VectorType>(C->getType())) {
310     if (HasFn(C))
311       return true;
312     if (isa<ConstantAggregateZero>(C))
313       return false;
314     if (isa<ScalableVectorType>(C->getType()))
315       return false;
316 
317     for (unsigned i = 0, e = cast<FixedVectorType>(VTy)->getNumElements();
318          i != e; ++i)
319       if (HasFn(C->getAggregateElement(i)))
320         return true;
321   }
322 
323   return false;
324 }
325 
326 bool Constant::containsUndefOrPoisonElement() const {
327   return containsUndefinedElement(
328       this, [&](const auto *C) { return isa<UndefValue>(C); });
329 }
330 
331 bool Constant::containsPoisonElement() const {
332   return containsUndefinedElement(
333       this, [&](const auto *C) { return isa<PoisonValue>(C); });
334 }
335 
336 bool Constant::containsConstantExpression() const {
337   if (auto *VTy = dyn_cast<FixedVectorType>(getType())) {
338     for (unsigned i = 0, e = VTy->getNumElements(); i != e; ++i)
339       if (isa<ConstantExpr>(getAggregateElement(i)))
340         return true;
341   }
342   return false;
343 }
344 
345 /// Constructor to create a '0' constant of arbitrary type.
346 Constant *Constant::getNullValue(Type *Ty) {
347   switch (Ty->getTypeID()) {
348   case Type::IntegerTyID:
349     return ConstantInt::get(Ty, 0);
350   case Type::HalfTyID:
351     return ConstantFP::get(Ty->getContext(),
352                            APFloat::getZero(APFloat::IEEEhalf()));
353   case Type::BFloatTyID:
354     return ConstantFP::get(Ty->getContext(),
355                            APFloat::getZero(APFloat::BFloat()));
356   case Type::FloatTyID:
357     return ConstantFP::get(Ty->getContext(),
358                            APFloat::getZero(APFloat::IEEEsingle()));
359   case Type::DoubleTyID:
360     return ConstantFP::get(Ty->getContext(),
361                            APFloat::getZero(APFloat::IEEEdouble()));
362   case Type::X86_FP80TyID:
363     return ConstantFP::get(Ty->getContext(),
364                            APFloat::getZero(APFloat::x87DoubleExtended()));
365   case Type::FP128TyID:
366     return ConstantFP::get(Ty->getContext(),
367                            APFloat::getZero(APFloat::IEEEquad()));
368   case Type::PPC_FP128TyID:
369     return ConstantFP::get(Ty->getContext(),
370                            APFloat(APFloat::PPCDoubleDouble(),
371                                    APInt::getNullValue(128)));
372   case Type::PointerTyID:
373     return ConstantPointerNull::get(cast<PointerType>(Ty));
374   case Type::StructTyID:
375   case Type::ArrayTyID:
376   case Type::FixedVectorTyID:
377   case Type::ScalableVectorTyID:
378     return ConstantAggregateZero::get(Ty);
379   case Type::TokenTyID:
380     return ConstantTokenNone::get(Ty->getContext());
381   default:
382     // Function, Label, or Opaque type?
383     llvm_unreachable("Cannot create a null constant of that type!");
384   }
385 }
386 
387 Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
388   Type *ScalarTy = Ty->getScalarType();
389 
390   // Create the base integer constant.
391   Constant *C = ConstantInt::get(Ty->getContext(), V);
392 
393   // Convert an integer to a pointer, if necessary.
394   if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
395     C = ConstantExpr::getIntToPtr(C, PTy);
396 
397   // Broadcast a scalar to a vector, if necessary.
398   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
399     C = ConstantVector::getSplat(VTy->getElementCount(), C);
400 
401   return C;
402 }
403 
404 Constant *Constant::getAllOnesValue(Type *Ty) {
405   if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
406     return ConstantInt::get(Ty->getContext(),
407                             APInt::getAllOnesValue(ITy->getBitWidth()));
408 
409   if (Ty->isFloatingPointTy()) {
410     APFloat FL = APFloat::getAllOnesValue(Ty->getFltSemantics(),
411                                           Ty->getPrimitiveSizeInBits());
412     return ConstantFP::get(Ty->getContext(), FL);
413   }
414 
415   VectorType *VTy = cast<VectorType>(Ty);
416   return ConstantVector::getSplat(VTy->getElementCount(),
417                                   getAllOnesValue(VTy->getElementType()));
418 }
419 
420 Constant *Constant::getAggregateElement(unsigned Elt) const {
421   assert((getType()->isAggregateType() || getType()->isVectorTy()) &&
422          "Must be an aggregate/vector constant");
423 
424   if (const auto *CC = dyn_cast<ConstantAggregate>(this))
425     return Elt < CC->getNumOperands() ? CC->getOperand(Elt) : nullptr;
426 
427   if (const auto *CAZ = dyn_cast<ConstantAggregateZero>(this))
428     return Elt < CAZ->getElementCount().getKnownMinValue()
429                ? CAZ->getElementValue(Elt)
430                : nullptr;
431 
432   // FIXME: getNumElements() will fail for non-fixed vector types.
433   if (isa<ScalableVectorType>(getType()))
434     return nullptr;
435 
436   if (const auto *PV = dyn_cast<PoisonValue>(this))
437     return Elt < PV->getNumElements() ? PV->getElementValue(Elt) : nullptr;
438 
439   if (const auto *UV = dyn_cast<UndefValue>(this))
440     return Elt < UV->getNumElements() ? UV->getElementValue(Elt) : nullptr;
441 
442   if (const auto *CDS = dyn_cast<ConstantDataSequential>(this))
443     return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt)
444                                        : nullptr;
445 
446   return nullptr;
447 }
448 
449 Constant *Constant::getAggregateElement(Constant *Elt) const {
450   assert(isa<IntegerType>(Elt->getType()) && "Index must be an integer");
451   if (ConstantInt *CI = dyn_cast<ConstantInt>(Elt)) {
452     // Check if the constant fits into an uint64_t.
453     if (CI->getValue().getActiveBits() > 64)
454       return nullptr;
455     return getAggregateElement(CI->getZExtValue());
456   }
457   return nullptr;
458 }
459 
460 void Constant::destroyConstant() {
461   /// First call destroyConstantImpl on the subclass.  This gives the subclass
462   /// a chance to remove the constant from any maps/pools it's contained in.
463   switch (getValueID()) {
464   default:
465     llvm_unreachable("Not a constant!");
466 #define HANDLE_CONSTANT(Name)                                                  \
467   case Value::Name##Val:                                                       \
468     cast<Name>(this)->destroyConstantImpl();                                   \
469     break;
470 #include "llvm/IR/Value.def"
471   }
472 
473   // When a Constant is destroyed, there may be lingering
474   // references to the constant by other constants in the constant pool.  These
475   // constants are implicitly dependent on the module that is being deleted,
476   // but they don't know that.  Because we only find out when the CPV is
477   // deleted, we must now notify all of our users (that should only be
478   // Constants) that they are, in fact, invalid now and should be deleted.
479   //
480   while (!use_empty()) {
481     Value *V = user_back();
482 #ifndef NDEBUG // Only in -g mode...
483     if (!isa<Constant>(V)) {
484       dbgs() << "While deleting: " << *this
485              << "\n\nUse still stuck around after Def is destroyed: " << *V
486              << "\n\n";
487     }
488 #endif
489     assert(isa<Constant>(V) && "References remain to Constant being destroyed");
490     cast<Constant>(V)->destroyConstant();
491 
492     // The constant should remove itself from our use list...
493     assert((use_empty() || user_back() != V) && "Constant not removed!");
494   }
495 
496   // Value has no outstanding references it is safe to delete it now...
497   deleteConstant(this);
498 }
499 
500 void llvm::deleteConstant(Constant *C) {
501   switch (C->getValueID()) {
502   case Constant::ConstantIntVal:
503     delete static_cast<ConstantInt *>(C);
504     break;
505   case Constant::ConstantFPVal:
506     delete static_cast<ConstantFP *>(C);
507     break;
508   case Constant::ConstantAggregateZeroVal:
509     delete static_cast<ConstantAggregateZero *>(C);
510     break;
511   case Constant::ConstantArrayVal:
512     delete static_cast<ConstantArray *>(C);
513     break;
514   case Constant::ConstantStructVal:
515     delete static_cast<ConstantStruct *>(C);
516     break;
517   case Constant::ConstantVectorVal:
518     delete static_cast<ConstantVector *>(C);
519     break;
520   case Constant::ConstantPointerNullVal:
521     delete static_cast<ConstantPointerNull *>(C);
522     break;
523   case Constant::ConstantDataArrayVal:
524     delete static_cast<ConstantDataArray *>(C);
525     break;
526   case Constant::ConstantDataVectorVal:
527     delete static_cast<ConstantDataVector *>(C);
528     break;
529   case Constant::ConstantTokenNoneVal:
530     delete static_cast<ConstantTokenNone *>(C);
531     break;
532   case Constant::BlockAddressVal:
533     delete static_cast<BlockAddress *>(C);
534     break;
535   case Constant::DSOLocalEquivalentVal:
536     delete static_cast<DSOLocalEquivalent *>(C);
537     break;
538   case Constant::UndefValueVal:
539     delete static_cast<UndefValue *>(C);
540     break;
541   case Constant::PoisonValueVal:
542     delete static_cast<PoisonValue *>(C);
543     break;
544   case Constant::ConstantExprVal:
545     if (isa<UnaryConstantExpr>(C))
546       delete static_cast<UnaryConstantExpr *>(C);
547     else if (isa<BinaryConstantExpr>(C))
548       delete static_cast<BinaryConstantExpr *>(C);
549     else if (isa<SelectConstantExpr>(C))
550       delete static_cast<SelectConstantExpr *>(C);
551     else if (isa<ExtractElementConstantExpr>(C))
552       delete static_cast<ExtractElementConstantExpr *>(C);
553     else if (isa<InsertElementConstantExpr>(C))
554       delete static_cast<InsertElementConstantExpr *>(C);
555     else if (isa<ShuffleVectorConstantExpr>(C))
556       delete static_cast<ShuffleVectorConstantExpr *>(C);
557     else if (isa<ExtractValueConstantExpr>(C))
558       delete static_cast<ExtractValueConstantExpr *>(C);
559     else if (isa<InsertValueConstantExpr>(C))
560       delete static_cast<InsertValueConstantExpr *>(C);
561     else if (isa<GetElementPtrConstantExpr>(C))
562       delete static_cast<GetElementPtrConstantExpr *>(C);
563     else if (isa<CompareConstantExpr>(C))
564       delete static_cast<CompareConstantExpr *>(C);
565     else
566       llvm_unreachable("Unexpected constant expr");
567     break;
568   default:
569     llvm_unreachable("Unexpected constant");
570   }
571 }
572 
573 static bool canTrapImpl(const Constant *C,
574                         SmallPtrSetImpl<const ConstantExpr *> &NonTrappingOps) {
575   assert(C->getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
576   // The only thing that could possibly trap are constant exprs.
577   const ConstantExpr *CE = dyn_cast<ConstantExpr>(C);
578   if (!CE)
579     return false;
580 
581   // ConstantExpr traps if any operands can trap.
582   for (unsigned i = 0, e = C->getNumOperands(); i != e; ++i) {
583     if (ConstantExpr *Op = dyn_cast<ConstantExpr>(CE->getOperand(i))) {
584       if (NonTrappingOps.insert(Op).second && canTrapImpl(Op, NonTrappingOps))
585         return true;
586     }
587   }
588 
589   // Otherwise, only specific operations can trap.
590   switch (CE->getOpcode()) {
591   default:
592     return false;
593   case Instruction::UDiv:
594   case Instruction::SDiv:
595   case Instruction::URem:
596   case Instruction::SRem:
597     // Div and rem can trap if the RHS is not known to be non-zero.
598     if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
599       return true;
600     return false;
601   }
602 }
603 
604 bool Constant::canTrap() const {
605   SmallPtrSet<const ConstantExpr *, 4> NonTrappingOps;
606   return canTrapImpl(this, NonTrappingOps);
607 }
608 
609 /// Check if C contains a GlobalValue for which Predicate is true.
610 static bool
611 ConstHasGlobalValuePredicate(const Constant *C,
612                              bool (*Predicate)(const GlobalValue *)) {
613   SmallPtrSet<const Constant *, 8> Visited;
614   SmallVector<const Constant *, 8> WorkList;
615   WorkList.push_back(C);
616   Visited.insert(C);
617 
618   while (!WorkList.empty()) {
619     const Constant *WorkItem = WorkList.pop_back_val();
620     if (const auto *GV = dyn_cast<GlobalValue>(WorkItem))
621       if (Predicate(GV))
622         return true;
623     for (const Value *Op : WorkItem->operands()) {
624       const Constant *ConstOp = dyn_cast<Constant>(Op);
625       if (!ConstOp)
626         continue;
627       if (Visited.insert(ConstOp).second)
628         WorkList.push_back(ConstOp);
629     }
630   }
631   return false;
632 }
633 
634 bool Constant::isThreadDependent() const {
635   auto DLLImportPredicate = [](const GlobalValue *GV) {
636     return GV->isThreadLocal();
637   };
638   return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
639 }
640 
641 bool Constant::isDLLImportDependent() const {
642   auto DLLImportPredicate = [](const GlobalValue *GV) {
643     return GV->hasDLLImportStorageClass();
644   };
645   return ConstHasGlobalValuePredicate(this, DLLImportPredicate);
646 }
647 
648 bool Constant::isConstantUsed() const {
649   for (const User *U : users()) {
650     const Constant *UC = dyn_cast<Constant>(U);
651     if (!UC || isa<GlobalValue>(UC))
652       return true;
653 
654     if (UC->isConstantUsed())
655       return true;
656   }
657   return false;
658 }
659 
660 bool Constant::needsDynamicRelocation() const {
661   return getRelocationInfo() == GlobalRelocation;
662 }
663 
664 bool Constant::needsRelocation() const {
665   return getRelocationInfo() != NoRelocation;
666 }
667 
668 Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
669   if (isa<GlobalValue>(this))
670     return GlobalRelocation; // Global reference.
671 
672   if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
673     return BA->getFunction()->getRelocationInfo();
674 
675   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this)) {
676     if (CE->getOpcode() == Instruction::Sub) {
677       ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
678       ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
679       if (LHS && RHS && LHS->getOpcode() == Instruction::PtrToInt &&
680           RHS->getOpcode() == Instruction::PtrToInt) {
681         Constant *LHSOp0 = LHS->getOperand(0);
682         Constant *RHSOp0 = RHS->getOperand(0);
683 
684         // While raw uses of blockaddress need to be relocated, differences
685         // between two of them don't when they are for labels in the same
686         // function.  This is a common idiom when creating a table for the
687         // indirect goto extension, so we handle it efficiently here.
688         if (isa<BlockAddress>(LHSOp0) && isa<BlockAddress>(RHSOp0) &&
689             cast<BlockAddress>(LHSOp0)->getFunction() ==
690                 cast<BlockAddress>(RHSOp0)->getFunction())
691           return NoRelocation;
692 
693         // Relative pointers do not need to be dynamically relocated.
694         if (auto *RHSGV =
695                 dyn_cast<GlobalValue>(RHSOp0->stripInBoundsConstantOffsets())) {
696           auto *LHS = LHSOp0->stripInBoundsConstantOffsets();
697           if (auto *LHSGV = dyn_cast<GlobalValue>(LHS)) {
698             if (LHSGV->isDSOLocal() && RHSGV->isDSOLocal())
699               return LocalRelocation;
700           } else if (isa<DSOLocalEquivalent>(LHS)) {
701             if (RHSGV->isDSOLocal())
702               return LocalRelocation;
703           }
704         }
705       }
706     }
707   }
708 
709   PossibleRelocationsTy Result = NoRelocation;
710   for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
711     Result =
712         std::max(cast<Constant>(getOperand(i))->getRelocationInfo(), Result);
713 
714   return Result;
715 }
716 
717 /// If the specified constantexpr is dead, remove it. This involves recursively
718 /// eliminating any dead users of the constantexpr.
719 static bool removeDeadUsersOfConstant(const Constant *C) {
720   if (isa<GlobalValue>(C)) return false; // Cannot remove this
721 
722   while (!C->use_empty()) {
723     const Constant *User = dyn_cast<Constant>(C->user_back());
724     if (!User) return false; // Non-constant usage;
725     if (!removeDeadUsersOfConstant(User))
726       return false; // Constant wasn't dead
727   }
728 
729   // If C is only used by metadata, it should not be preserved but should have
730   // its uses replaced.
731   if (C->isUsedByMetadata()) {
732     const_cast<Constant *>(C)->replaceAllUsesWith(
733         UndefValue::get(C->getType()));
734   }
735   const_cast<Constant*>(C)->destroyConstant();
736   return true;
737 }
738 
739 
740 void Constant::removeDeadConstantUsers() const {
741   Value::const_user_iterator I = user_begin(), E = user_end();
742   Value::const_user_iterator LastNonDeadUser = E;
743   while (I != E) {
744     const Constant *User = dyn_cast<Constant>(*I);
745     if (!User) {
746       LastNonDeadUser = I;
747       ++I;
748       continue;
749     }
750 
751     if (!removeDeadUsersOfConstant(User)) {
752       // If the constant wasn't dead, remember that this was the last live use
753       // and move on to the next constant.
754       LastNonDeadUser = I;
755       ++I;
756       continue;
757     }
758 
759     // If the constant was dead, then the iterator is invalidated.
760     if (LastNonDeadUser == E)
761       I = user_begin();
762     else
763       I = std::next(LastNonDeadUser);
764   }
765 }
766 
767 Constant *Constant::replaceUndefsWith(Constant *C, Constant *Replacement) {
768   assert(C && Replacement && "Expected non-nullptr constant arguments");
769   Type *Ty = C->getType();
770   if (match(C, m_Undef())) {
771     assert(Ty == Replacement->getType() && "Expected matching types");
772     return Replacement;
773   }
774 
775   // Don't know how to deal with this constant.
776   auto *VTy = dyn_cast<FixedVectorType>(Ty);
777   if (!VTy)
778     return C;
779 
780   unsigned NumElts = VTy->getNumElements();
781   SmallVector<Constant *, 32> NewC(NumElts);
782   for (unsigned i = 0; i != NumElts; ++i) {
783     Constant *EltC = C->getAggregateElement(i);
784     assert((!EltC || EltC->getType() == Replacement->getType()) &&
785            "Expected matching types");
786     NewC[i] = EltC && match(EltC, m_Undef()) ? Replacement : EltC;
787   }
788   return ConstantVector::get(NewC);
789 }
790 
791 Constant *Constant::mergeUndefsWith(Constant *C, Constant *Other) {
792   assert(C && Other && "Expected non-nullptr constant arguments");
793   if (match(C, m_Undef()))
794     return C;
795 
796   Type *Ty = C->getType();
797   if (match(Other, m_Undef()))
798     return UndefValue::get(Ty);
799 
800   auto *VTy = dyn_cast<FixedVectorType>(Ty);
801   if (!VTy)
802     return C;
803 
804   Type *EltTy = VTy->getElementType();
805   unsigned NumElts = VTy->getNumElements();
806   assert(isa<FixedVectorType>(Other->getType()) &&
807          cast<FixedVectorType>(Other->getType())->getNumElements() == NumElts &&
808          "Type mismatch");
809 
810   bool FoundExtraUndef = false;
811   SmallVector<Constant *, 32> NewC(NumElts);
812   for (unsigned I = 0; I != NumElts; ++I) {
813     NewC[I] = C->getAggregateElement(I);
814     Constant *OtherEltC = Other->getAggregateElement(I);
815     assert(NewC[I] && OtherEltC && "Unknown vector element");
816     if (!match(NewC[I], m_Undef()) && match(OtherEltC, m_Undef())) {
817       NewC[I] = UndefValue::get(EltTy);
818       FoundExtraUndef = true;
819     }
820   }
821   if (FoundExtraUndef)
822     return ConstantVector::get(NewC);
823   return C;
824 }
825 
826 bool Constant::isManifestConstant() const {
827   if (isa<ConstantData>(this))
828     return true;
829   if (isa<ConstantAggregate>(this) || isa<ConstantExpr>(this)) {
830     for (const Value *Op : operand_values())
831       if (!cast<Constant>(Op)->isManifestConstant())
832         return false;
833     return true;
834   }
835   return false;
836 }
837 
838 //===----------------------------------------------------------------------===//
839 //                                ConstantInt
840 //===----------------------------------------------------------------------===//
841 
842 ConstantInt::ConstantInt(IntegerType *Ty, const APInt &V)
843     : ConstantData(Ty, ConstantIntVal), Val(V) {
844   assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
845 }
846 
847 ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
848   LLVMContextImpl *pImpl = Context.pImpl;
849   if (!pImpl->TheTrueVal)
850     pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
851   return pImpl->TheTrueVal;
852 }
853 
854 ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
855   LLVMContextImpl *pImpl = Context.pImpl;
856   if (!pImpl->TheFalseVal)
857     pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
858   return pImpl->TheFalseVal;
859 }
860 
861 ConstantInt *ConstantInt::getBool(LLVMContext &Context, bool V) {
862   return V ? getTrue(Context) : getFalse(Context);
863 }
864 
865 Constant *ConstantInt::getTrue(Type *Ty) {
866   assert(Ty->isIntOrIntVectorTy(1) && "Type not i1 or vector of i1.");
867   ConstantInt *TrueC = ConstantInt::getTrue(Ty->getContext());
868   if (auto *VTy = dyn_cast<VectorType>(Ty))
869     return ConstantVector::getSplat(VTy->getElementCount(), TrueC);
870   return TrueC;
871 }
872 
873 Constant *ConstantInt::getFalse(Type *Ty) {
874   assert(Ty->isIntOrIntVectorTy(1) && "Type not i1 or vector of i1.");
875   ConstantInt *FalseC = ConstantInt::getFalse(Ty->getContext());
876   if (auto *VTy = dyn_cast<VectorType>(Ty))
877     return ConstantVector::getSplat(VTy->getElementCount(), FalseC);
878   return FalseC;
879 }
880 
881 Constant *ConstantInt::getBool(Type *Ty, bool V) {
882   return V ? getTrue(Ty) : getFalse(Ty);
883 }
884 
885 // Get a ConstantInt from an APInt.
886 ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
887   // get an existing value or the insertion position
888   LLVMContextImpl *pImpl = Context.pImpl;
889   std::unique_ptr<ConstantInt> &Slot = pImpl->IntConstants[V];
890   if (!Slot) {
891     // Get the corresponding integer type for the bit width of the value.
892     IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
893     Slot.reset(new ConstantInt(ITy, V));
894   }
895   assert(Slot->getType() == IntegerType::get(Context, V.getBitWidth()));
896   return Slot.get();
897 }
898 
899 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
900   Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
901 
902   // For vectors, broadcast the value.
903   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
904     return ConstantVector::getSplat(VTy->getElementCount(), C);
905 
906   return C;
907 }
908 
909 ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V, bool isSigned) {
910   return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
911 }
912 
913 ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) {
914   return get(Ty, V, true);
915 }
916 
917 Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
918   return get(Ty, V, true);
919 }
920 
921 Constant *ConstantInt::get(Type *Ty, const APInt& V) {
922   ConstantInt *C = get(Ty->getContext(), V);
923   assert(C->getType() == Ty->getScalarType() &&
924          "ConstantInt type doesn't match the type implied by its value!");
925 
926   // For vectors, broadcast the value.
927   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
928     return ConstantVector::getSplat(VTy->getElementCount(), C);
929 
930   return C;
931 }
932 
933 ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str, uint8_t radix) {
934   return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
935 }
936 
937 /// Remove the constant from the constant table.
938 void ConstantInt::destroyConstantImpl() {
939   llvm_unreachable("You can't ConstantInt->destroyConstantImpl()!");
940 }
941 
942 //===----------------------------------------------------------------------===//
943 //                                ConstantFP
944 //===----------------------------------------------------------------------===//
945 
946 Constant *ConstantFP::get(Type *Ty, double V) {
947   LLVMContext &Context = Ty->getContext();
948 
949   APFloat FV(V);
950   bool ignored;
951   FV.convert(Ty->getScalarType()->getFltSemantics(),
952              APFloat::rmNearestTiesToEven, &ignored);
953   Constant *C = get(Context, FV);
954 
955   // For vectors, broadcast the value.
956   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
957     return ConstantVector::getSplat(VTy->getElementCount(), C);
958 
959   return C;
960 }
961 
962 Constant *ConstantFP::get(Type *Ty, const APFloat &V) {
963   ConstantFP *C = get(Ty->getContext(), V);
964   assert(C->getType() == Ty->getScalarType() &&
965          "ConstantFP type doesn't match the type implied by its value!");
966 
967   // For vectors, broadcast the value.
968   if (auto *VTy = dyn_cast<VectorType>(Ty))
969     return ConstantVector::getSplat(VTy->getElementCount(), C);
970 
971   return C;
972 }
973 
974 Constant *ConstantFP::get(Type *Ty, StringRef Str) {
975   LLVMContext &Context = Ty->getContext();
976 
977   APFloat FV(Ty->getScalarType()->getFltSemantics(), Str);
978   Constant *C = get(Context, FV);
979 
980   // For vectors, broadcast the value.
981   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
982     return ConstantVector::getSplat(VTy->getElementCount(), C);
983 
984   return C;
985 }
986 
987 Constant *ConstantFP::getNaN(Type *Ty, bool Negative, uint64_t Payload) {
988   const fltSemantics &Semantics = Ty->getScalarType()->getFltSemantics();
989   APFloat NaN = APFloat::getNaN(Semantics, Negative, Payload);
990   Constant *C = get(Ty->getContext(), NaN);
991 
992   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
993     return ConstantVector::getSplat(VTy->getElementCount(), C);
994 
995   return C;
996 }
997 
998 Constant *ConstantFP::getQNaN(Type *Ty, bool Negative, APInt *Payload) {
999   const fltSemantics &Semantics = Ty->getScalarType()->getFltSemantics();
1000   APFloat NaN = APFloat::getQNaN(Semantics, Negative, Payload);
1001   Constant *C = get(Ty->getContext(), NaN);
1002 
1003   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
1004     return ConstantVector::getSplat(VTy->getElementCount(), C);
1005 
1006   return C;
1007 }
1008 
1009 Constant *ConstantFP::getSNaN(Type *Ty, bool Negative, APInt *Payload) {
1010   const fltSemantics &Semantics = Ty->getScalarType()->getFltSemantics();
1011   APFloat NaN = APFloat::getSNaN(Semantics, Negative, Payload);
1012   Constant *C = get(Ty->getContext(), NaN);
1013 
1014   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
1015     return ConstantVector::getSplat(VTy->getElementCount(), C);
1016 
1017   return C;
1018 }
1019 
1020 Constant *ConstantFP::getNegativeZero(Type *Ty) {
1021   const fltSemantics &Semantics = Ty->getScalarType()->getFltSemantics();
1022   APFloat NegZero = APFloat::getZero(Semantics, /*Negative=*/true);
1023   Constant *C = get(Ty->getContext(), NegZero);
1024 
1025   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
1026     return ConstantVector::getSplat(VTy->getElementCount(), C);
1027 
1028   return C;
1029 }
1030 
1031 
1032 Constant *ConstantFP::getZeroValueForNegation(Type *Ty) {
1033   if (Ty->isFPOrFPVectorTy())
1034     return getNegativeZero(Ty);
1035 
1036   return Constant::getNullValue(Ty);
1037 }
1038 
1039 
1040 // ConstantFP accessors.
1041 ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
1042   LLVMContextImpl* pImpl = Context.pImpl;
1043 
1044   std::unique_ptr<ConstantFP> &Slot = pImpl->FPConstants[V];
1045 
1046   if (!Slot) {
1047     Type *Ty = Type::getFloatingPointTy(Context, V.getSemantics());
1048     Slot.reset(new ConstantFP(Ty, V));
1049   }
1050 
1051   return Slot.get();
1052 }
1053 
1054 Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) {
1055   const fltSemantics &Semantics = Ty->getScalarType()->getFltSemantics();
1056   Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative));
1057 
1058   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
1059     return ConstantVector::getSplat(VTy->getElementCount(), C);
1060 
1061   return C;
1062 }
1063 
1064 ConstantFP::ConstantFP(Type *Ty, const APFloat &V)
1065     : ConstantData(Ty, ConstantFPVal), Val(V) {
1066   assert(&V.getSemantics() == &Ty->getFltSemantics() &&
1067          "FP type Mismatch");
1068 }
1069 
1070 bool ConstantFP::isExactlyValue(const APFloat &V) const {
1071   return Val.bitwiseIsEqual(V);
1072 }
1073 
1074 /// Remove the constant from the constant table.
1075 void ConstantFP::destroyConstantImpl() {
1076   llvm_unreachable("You can't ConstantFP->destroyConstantImpl()!");
1077 }
1078 
1079 //===----------------------------------------------------------------------===//
1080 //                   ConstantAggregateZero Implementation
1081 //===----------------------------------------------------------------------===//
1082 
1083 Constant *ConstantAggregateZero::getSequentialElement() const {
1084   if (auto *AT = dyn_cast<ArrayType>(getType()))
1085     return Constant::getNullValue(AT->getElementType());
1086   return Constant::getNullValue(cast<VectorType>(getType())->getElementType());
1087 }
1088 
1089 Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
1090   return Constant::getNullValue(getType()->getStructElementType(Elt));
1091 }
1092 
1093 Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
1094   if (isa<ArrayType>(getType()) || isa<VectorType>(getType()))
1095     return getSequentialElement();
1096   return getStructElement(cast<ConstantInt>(C)->getZExtValue());
1097 }
1098 
1099 Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
1100   if (isa<ArrayType>(getType()) || isa<VectorType>(getType()))
1101     return getSequentialElement();
1102   return getStructElement(Idx);
1103 }
1104 
1105 ElementCount ConstantAggregateZero::getElementCount() const {
1106   Type *Ty = getType();
1107   if (auto *AT = dyn_cast<ArrayType>(Ty))
1108     return ElementCount::getFixed(AT->getNumElements());
1109   if (auto *VT = dyn_cast<VectorType>(Ty))
1110     return VT->getElementCount();
1111   return ElementCount::getFixed(Ty->getStructNumElements());
1112 }
1113 
1114 //===----------------------------------------------------------------------===//
1115 //                         UndefValue Implementation
1116 //===----------------------------------------------------------------------===//
1117 
1118 UndefValue *UndefValue::getSequentialElement() const {
1119   if (ArrayType *ATy = dyn_cast<ArrayType>(getType()))
1120     return UndefValue::get(ATy->getElementType());
1121   return UndefValue::get(cast<VectorType>(getType())->getElementType());
1122 }
1123 
1124 UndefValue *UndefValue::getStructElement(unsigned Elt) const {
1125   return UndefValue::get(getType()->getStructElementType(Elt));
1126 }
1127 
1128 UndefValue *UndefValue::getElementValue(Constant *C) const {
1129   if (isa<ArrayType>(getType()) || isa<VectorType>(getType()))
1130     return getSequentialElement();
1131   return getStructElement(cast<ConstantInt>(C)->getZExtValue());
1132 }
1133 
1134 UndefValue *UndefValue::getElementValue(unsigned Idx) const {
1135   if (isa<ArrayType>(getType()) || isa<VectorType>(getType()))
1136     return getSequentialElement();
1137   return getStructElement(Idx);
1138 }
1139 
1140 unsigned UndefValue::getNumElements() const {
1141   Type *Ty = getType();
1142   if (auto *AT = dyn_cast<ArrayType>(Ty))
1143     return AT->getNumElements();
1144   if (auto *VT = dyn_cast<VectorType>(Ty))
1145     return cast<FixedVectorType>(VT)->getNumElements();
1146   return Ty->getStructNumElements();
1147 }
1148 
1149 //===----------------------------------------------------------------------===//
1150 //                         PoisonValue Implementation
1151 //===----------------------------------------------------------------------===//
1152 
1153 PoisonValue *PoisonValue::getSequentialElement() const {
1154   if (ArrayType *ATy = dyn_cast<ArrayType>(getType()))
1155     return PoisonValue::get(ATy->getElementType());
1156   return PoisonValue::get(cast<VectorType>(getType())->getElementType());
1157 }
1158 
1159 PoisonValue *PoisonValue::getStructElement(unsigned Elt) const {
1160   return PoisonValue::get(getType()->getStructElementType(Elt));
1161 }
1162 
1163 PoisonValue *PoisonValue::getElementValue(Constant *C) const {
1164   if (isa<ArrayType>(getType()) || isa<VectorType>(getType()))
1165     return getSequentialElement();
1166   return getStructElement(cast<ConstantInt>(C)->getZExtValue());
1167 }
1168 
1169 PoisonValue *PoisonValue::getElementValue(unsigned Idx) const {
1170   if (isa<ArrayType>(getType()) || isa<VectorType>(getType()))
1171     return getSequentialElement();
1172   return getStructElement(Idx);
1173 }
1174 
1175 //===----------------------------------------------------------------------===//
1176 //                            ConstantXXX Classes
1177 //===----------------------------------------------------------------------===//
1178 
1179 template <typename ItTy, typename EltTy>
1180 static bool rangeOnlyContains(ItTy Start, ItTy End, EltTy Elt) {
1181   for (; Start != End; ++Start)
1182     if (*Start != Elt)
1183       return false;
1184   return true;
1185 }
1186 
1187 template <typename SequentialTy, typename ElementTy>
1188 static Constant *getIntSequenceIfElementsMatch(ArrayRef<Constant *> V) {
1189   assert(!V.empty() && "Cannot get empty int sequence.");
1190 
1191   SmallVector<ElementTy, 16> Elts;
1192   for (Constant *C : V)
1193     if (auto *CI = dyn_cast<ConstantInt>(C))
1194       Elts.push_back(CI->getZExtValue());
1195     else
1196       return nullptr;
1197   return SequentialTy::get(V[0]->getContext(), Elts);
1198 }
1199 
1200 template <typename SequentialTy, typename ElementTy>
1201 static Constant *getFPSequenceIfElementsMatch(ArrayRef<Constant *> V) {
1202   assert(!V.empty() && "Cannot get empty FP sequence.");
1203 
1204   SmallVector<ElementTy, 16> Elts;
1205   for (Constant *C : V)
1206     if (auto *CFP = dyn_cast<ConstantFP>(C))
1207       Elts.push_back(CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
1208     else
1209       return nullptr;
1210   return SequentialTy::getFP(V[0]->getType(), Elts);
1211 }
1212 
1213 template <typename SequenceTy>
1214 static Constant *getSequenceIfElementsMatch(Constant *C,
1215                                             ArrayRef<Constant *> V) {
1216   // We speculatively build the elements here even if it turns out that there is
1217   // a constantexpr or something else weird, since it is so uncommon for that to
1218   // happen.
1219   if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
1220     if (CI->getType()->isIntegerTy(8))
1221       return getIntSequenceIfElementsMatch<SequenceTy, uint8_t>(V);
1222     else if (CI->getType()->isIntegerTy(16))
1223       return getIntSequenceIfElementsMatch<SequenceTy, uint16_t>(V);
1224     else if (CI->getType()->isIntegerTy(32))
1225       return getIntSequenceIfElementsMatch<SequenceTy, uint32_t>(V);
1226     else if (CI->getType()->isIntegerTy(64))
1227       return getIntSequenceIfElementsMatch<SequenceTy, uint64_t>(V);
1228   } else if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) {
1229     if (CFP->getType()->isHalfTy() || CFP->getType()->isBFloatTy())
1230       return getFPSequenceIfElementsMatch<SequenceTy, uint16_t>(V);
1231     else if (CFP->getType()->isFloatTy())
1232       return getFPSequenceIfElementsMatch<SequenceTy, uint32_t>(V);
1233     else if (CFP->getType()->isDoubleTy())
1234       return getFPSequenceIfElementsMatch<SequenceTy, uint64_t>(V);
1235   }
1236 
1237   return nullptr;
1238 }
1239 
1240 ConstantAggregate::ConstantAggregate(Type *T, ValueTy VT,
1241                                      ArrayRef<Constant *> V)
1242     : Constant(T, VT, OperandTraits<ConstantAggregate>::op_end(this) - V.size(),
1243                V.size()) {
1244   llvm::copy(V, op_begin());
1245 
1246   // Check that types match, unless this is an opaque struct.
1247   if (auto *ST = dyn_cast<StructType>(T)) {
1248     if (ST->isOpaque())
1249       return;
1250     for (unsigned I = 0, E = V.size(); I != E; ++I)
1251       assert(V[I]->getType() == ST->getTypeAtIndex(I) &&
1252              "Initializer for struct element doesn't match!");
1253   }
1254 }
1255 
1256 ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
1257     : ConstantAggregate(T, ConstantArrayVal, V) {
1258   assert(V.size() == T->getNumElements() &&
1259          "Invalid initializer for constant array");
1260 }
1261 
1262 Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
1263   if (Constant *C = getImpl(Ty, V))
1264     return C;
1265   return Ty->getContext().pImpl->ArrayConstants.getOrCreate(Ty, V);
1266 }
1267 
1268 Constant *ConstantArray::getImpl(ArrayType *Ty, ArrayRef<Constant*> V) {
1269   // Empty arrays are canonicalized to ConstantAggregateZero.
1270   if (V.empty())
1271     return ConstantAggregateZero::get(Ty);
1272 
1273   for (unsigned i = 0, e = V.size(); i != e; ++i) {
1274     assert(V[i]->getType() == Ty->getElementType() &&
1275            "Wrong type in array element initializer");
1276   }
1277 
1278   // If this is an all-zero array, return a ConstantAggregateZero object.  If
1279   // all undef, return an UndefValue, if "all simple", then return a
1280   // ConstantDataArray.
1281   Constant *C = V[0];
1282   if (isa<PoisonValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
1283     return PoisonValue::get(Ty);
1284 
1285   if (isa<UndefValue>(C) && rangeOnlyContains(V.begin(), V.end(), C))
1286     return UndefValue::get(Ty);
1287 
1288   if (C->isNullValue() && rangeOnlyContains(V.begin(), V.end(), C))
1289     return ConstantAggregateZero::get(Ty);
1290 
1291   // Check to see if all of the elements are ConstantFP or ConstantInt and if
1292   // the element type is compatible with ConstantDataVector.  If so, use it.
1293   if (ConstantDataSequential::isElementTypeCompatible(C->getType()))
1294     return getSequenceIfElementsMatch<ConstantDataArray>(C, V);
1295 
1296   // Otherwise, we really do want to create a ConstantArray.
1297   return nullptr;
1298 }
1299 
1300 StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
1301                                                ArrayRef<Constant*> V,
1302                                                bool Packed) {
1303   unsigned VecSize = V.size();
1304   SmallVector<Type*, 16> EltTypes(VecSize);
1305   for (unsigned i = 0; i != VecSize; ++i)
1306     EltTypes[i] = V[i]->getType();
1307 
1308   return StructType::get(Context, EltTypes, Packed);
1309 }
1310 
1311 
1312 StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
1313                                                bool Packed) {
1314   assert(!V.empty() &&
1315          "ConstantStruct::getTypeForElements cannot be called on empty list");
1316   return getTypeForElements(V[0]->getContext(), V, Packed);
1317 }
1318 
1319 ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
1320     : ConstantAggregate(T, ConstantStructVal, V) {
1321   assert((T->isOpaque() || V.size() == T->getNumElements()) &&
1322          "Invalid initializer for constant struct");
1323 }
1324 
1325 // ConstantStruct accessors.
1326 Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
1327   assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
1328          "Incorrect # elements specified to ConstantStruct::get");
1329 
1330   // Create a ConstantAggregateZero value if all elements are zeros.
1331   bool isZero = true;
1332   bool isUndef = false;
1333   bool isPoison = false;
1334 
1335   if (!V.empty()) {
1336     isUndef = isa<UndefValue>(V[0]);
1337     isPoison = isa<PoisonValue>(V[0]);
1338     isZero = V[0]->isNullValue();
1339     // PoisonValue inherits UndefValue, so its check is not necessary.
1340     if (isUndef || isZero) {
1341       for (unsigned i = 0, e = V.size(); i != e; ++i) {
1342         if (!V[i]->isNullValue())
1343           isZero = false;
1344         if (!isa<PoisonValue>(V[i]))
1345           isPoison = false;
1346         if (isa<PoisonValue>(V[i]) || !isa<UndefValue>(V[i]))
1347           isUndef = false;
1348       }
1349     }
1350   }
1351   if (isZero)
1352     return ConstantAggregateZero::get(ST);
1353   if (isPoison)
1354     return PoisonValue::get(ST);
1355   if (isUndef)
1356     return UndefValue::get(ST);
1357 
1358   return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
1359 }
1360 
1361 ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
1362     : ConstantAggregate(T, ConstantVectorVal, V) {
1363   assert(V.size() == cast<FixedVectorType>(T)->getNumElements() &&
1364          "Invalid initializer for constant vector");
1365 }
1366 
1367 // ConstantVector accessors.
1368 Constant *ConstantVector::get(ArrayRef<Constant*> V) {
1369   if (Constant *C = getImpl(V))
1370     return C;
1371   auto *Ty = FixedVectorType::get(V.front()->getType(), V.size());
1372   return Ty->getContext().pImpl->VectorConstants.getOrCreate(Ty, V);
1373 }
1374 
1375 Constant *ConstantVector::getImpl(ArrayRef<Constant*> V) {
1376   assert(!V.empty() && "Vectors can't be empty");
1377   auto *T = FixedVectorType::get(V.front()->getType(), V.size());
1378 
1379   // If this is an all-undef or all-zero vector, return a
1380   // ConstantAggregateZero or UndefValue.
1381   Constant *C = V[0];
1382   bool isZero = C->isNullValue();
1383   bool isUndef = isa<UndefValue>(C);
1384   bool isPoison = isa<PoisonValue>(C);
1385 
1386   if (isZero || isUndef) {
1387     for (unsigned i = 1, e = V.size(); i != e; ++i)
1388       if (V[i] != C) {
1389         isZero = isUndef = isPoison = false;
1390         break;
1391       }
1392   }
1393 
1394   if (isZero)
1395     return ConstantAggregateZero::get(T);
1396   if (isPoison)
1397     return PoisonValue::get(T);
1398   if (isUndef)
1399     return UndefValue::get(T);
1400 
1401   // Check to see if all of the elements are ConstantFP or ConstantInt and if
1402   // the element type is compatible with ConstantDataVector.  If so, use it.
1403   if (ConstantDataSequential::isElementTypeCompatible(C->getType()))
1404     return getSequenceIfElementsMatch<ConstantDataVector>(C, V);
1405 
1406   // Otherwise, the element type isn't compatible with ConstantDataVector, or
1407   // the operand list contains a ConstantExpr or something else strange.
1408   return nullptr;
1409 }
1410 
1411 Constant *ConstantVector::getSplat(ElementCount EC, Constant *V) {
1412   if (!EC.isScalable()) {
1413     // If this splat is compatible with ConstantDataVector, use it instead of
1414     // ConstantVector.
1415     if ((isa<ConstantFP>(V) || isa<ConstantInt>(V)) &&
1416         ConstantDataSequential::isElementTypeCompatible(V->getType()))
1417       return ConstantDataVector::getSplat(EC.getKnownMinValue(), V);
1418 
1419     SmallVector<Constant *, 32> Elts(EC.getKnownMinValue(), V);
1420     return get(Elts);
1421   }
1422 
1423   Type *VTy = VectorType::get(V->getType(), EC);
1424 
1425   if (V->isNullValue())
1426     return ConstantAggregateZero::get(VTy);
1427   else if (isa<UndefValue>(V))
1428     return UndefValue::get(VTy);
1429 
1430   Type *I32Ty = Type::getInt32Ty(VTy->getContext());
1431 
1432   // Move scalar into vector.
1433   Constant *PoisonV = PoisonValue::get(VTy);
1434   V = ConstantExpr::getInsertElement(PoisonV, V, ConstantInt::get(I32Ty, 0));
1435   // Build shuffle mask to perform the splat.
1436   SmallVector<int, 8> Zeros(EC.getKnownMinValue(), 0);
1437   // Splat.
1438   return ConstantExpr::getShuffleVector(V, PoisonV, Zeros);
1439 }
1440 
1441 ConstantTokenNone *ConstantTokenNone::get(LLVMContext &Context) {
1442   LLVMContextImpl *pImpl = Context.pImpl;
1443   if (!pImpl->TheNoneToken)
1444     pImpl->TheNoneToken.reset(new ConstantTokenNone(Context));
1445   return pImpl->TheNoneToken.get();
1446 }
1447 
1448 /// Remove the constant from the constant table.
1449 void ConstantTokenNone::destroyConstantImpl() {
1450   llvm_unreachable("You can't ConstantTokenNone->destroyConstantImpl()!");
1451 }
1452 
1453 // Utility function for determining if a ConstantExpr is a CastOp or not. This
1454 // can't be inline because we don't want to #include Instruction.h into
1455 // Constant.h
1456 bool ConstantExpr::isCast() const {
1457   return Instruction::isCast(getOpcode());
1458 }
1459 
1460 bool ConstantExpr::isCompare() const {
1461   return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
1462 }
1463 
1464 bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
1465   if (getOpcode() != Instruction::GetElementPtr) return false;
1466 
1467   gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
1468   User::const_op_iterator OI = std::next(this->op_begin());
1469 
1470   // The remaining indices may be compile-time known integers within the bounds
1471   // of the corresponding notional static array types.
1472   for (; GEPI != E; ++GEPI, ++OI) {
1473     if (isa<UndefValue>(*OI))
1474       continue;
1475     auto *CI = dyn_cast<ConstantInt>(*OI);
1476     if (!CI || (GEPI.isBoundedSequential() &&
1477                 (CI->getValue().getActiveBits() > 64 ||
1478                  CI->getZExtValue() >= GEPI.getSequentialNumElements())))
1479       return false;
1480   }
1481 
1482   // All the indices checked out.
1483   return true;
1484 }
1485 
1486 bool ConstantExpr::hasIndices() const {
1487   return getOpcode() == Instruction::ExtractValue ||
1488          getOpcode() == Instruction::InsertValue;
1489 }
1490 
1491 ArrayRef<unsigned> ConstantExpr::getIndices() const {
1492   if (const ExtractValueConstantExpr *EVCE =
1493         dyn_cast<ExtractValueConstantExpr>(this))
1494     return EVCE->Indices;
1495 
1496   return cast<InsertValueConstantExpr>(this)->Indices;
1497 }
1498 
1499 unsigned ConstantExpr::getPredicate() const {
1500   return cast<CompareConstantExpr>(this)->predicate;
1501 }
1502 
1503 ArrayRef<int> ConstantExpr::getShuffleMask() const {
1504   return cast<ShuffleVectorConstantExpr>(this)->ShuffleMask;
1505 }
1506 
1507 Constant *ConstantExpr::getShuffleMaskForBitcode() const {
1508   return cast<ShuffleVectorConstantExpr>(this)->ShuffleMaskForBitcode;
1509 }
1510 
1511 Constant *ConstantExpr::getWithOperands(ArrayRef<Constant *> Ops, Type *Ty,
1512                                         bool OnlyIfReduced, Type *SrcTy) const {
1513   assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
1514 
1515   // If no operands changed return self.
1516   if (Ty == getType() && std::equal(Ops.begin(), Ops.end(), op_begin()))
1517     return const_cast<ConstantExpr*>(this);
1518 
1519   Type *OnlyIfReducedTy = OnlyIfReduced ? Ty : nullptr;
1520   switch (getOpcode()) {
1521   case Instruction::Trunc:
1522   case Instruction::ZExt:
1523   case Instruction::SExt:
1524   case Instruction::FPTrunc:
1525   case Instruction::FPExt:
1526   case Instruction::UIToFP:
1527   case Instruction::SIToFP:
1528   case Instruction::FPToUI:
1529   case Instruction::FPToSI:
1530   case Instruction::PtrToInt:
1531   case Instruction::IntToPtr:
1532   case Instruction::BitCast:
1533   case Instruction::AddrSpaceCast:
1534     return ConstantExpr::getCast(getOpcode(), Ops[0], Ty, OnlyIfReduced);
1535   case Instruction::Select:
1536     return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2], OnlyIfReducedTy);
1537   case Instruction::InsertElement:
1538     return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2],
1539                                           OnlyIfReducedTy);
1540   case Instruction::ExtractElement:
1541     return ConstantExpr::getExtractElement(Ops[0], Ops[1], OnlyIfReducedTy);
1542   case Instruction::InsertValue:
1543     return ConstantExpr::getInsertValue(Ops[0], Ops[1], getIndices(),
1544                                         OnlyIfReducedTy);
1545   case Instruction::ExtractValue:
1546     return ConstantExpr::getExtractValue(Ops[0], getIndices(), OnlyIfReducedTy);
1547   case Instruction::FNeg:
1548     return ConstantExpr::getFNeg(Ops[0]);
1549   case Instruction::ShuffleVector:
1550     return ConstantExpr::getShuffleVector(Ops[0], Ops[1], getShuffleMask(),
1551                                           OnlyIfReducedTy);
1552   case Instruction::GetElementPtr: {
1553     auto *GEPO = cast<GEPOperator>(this);
1554     assert(SrcTy || (Ops[0]->getType() == getOperand(0)->getType()));
1555     return ConstantExpr::getGetElementPtr(
1556         SrcTy ? SrcTy : GEPO->getSourceElementType(), Ops[0], Ops.slice(1),
1557         GEPO->isInBounds(), GEPO->getInRangeIndex(), OnlyIfReducedTy);
1558   }
1559   case Instruction::ICmp:
1560   case Instruction::FCmp:
1561     return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1],
1562                                     OnlyIfReducedTy);
1563   default:
1564     assert(getNumOperands() == 2 && "Must be binary operator?");
1565     return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData,
1566                              OnlyIfReducedTy);
1567   }
1568 }
1569 
1570 
1571 //===----------------------------------------------------------------------===//
1572 //                      isValueValidForType implementations
1573 
1574 bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
1575   unsigned NumBits = Ty->getIntegerBitWidth(); // assert okay
1576   if (Ty->isIntegerTy(1))
1577     return Val == 0 || Val == 1;
1578   return isUIntN(NumBits, Val);
1579 }
1580 
1581 bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
1582   unsigned NumBits = Ty->getIntegerBitWidth();
1583   if (Ty->isIntegerTy(1))
1584     return Val == 0 || Val == 1 || Val == -1;
1585   return isIntN(NumBits, Val);
1586 }
1587 
1588 bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
1589   // convert modifies in place, so make a copy.
1590   APFloat Val2 = APFloat(Val);
1591   bool losesInfo;
1592   switch (Ty->getTypeID()) {
1593   default:
1594     return false;         // These can't be represented as floating point!
1595 
1596   // FIXME rounding mode needs to be more flexible
1597   case Type::HalfTyID: {
1598     if (&Val2.getSemantics() == &APFloat::IEEEhalf())
1599       return true;
1600     Val2.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven, &losesInfo);
1601     return !losesInfo;
1602   }
1603   case Type::BFloatTyID: {
1604     if (&Val2.getSemantics() == &APFloat::BFloat())
1605       return true;
1606     Val2.convert(APFloat::BFloat(), APFloat::rmNearestTiesToEven, &losesInfo);
1607     return !losesInfo;
1608   }
1609   case Type::FloatTyID: {
1610     if (&Val2.getSemantics() == &APFloat::IEEEsingle())
1611       return true;
1612     Val2.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven, &losesInfo);
1613     return !losesInfo;
1614   }
1615   case Type::DoubleTyID: {
1616     if (&Val2.getSemantics() == &APFloat::IEEEhalf() ||
1617         &Val2.getSemantics() == &APFloat::BFloat() ||
1618         &Val2.getSemantics() == &APFloat::IEEEsingle() ||
1619         &Val2.getSemantics() == &APFloat::IEEEdouble())
1620       return true;
1621     Val2.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &losesInfo);
1622     return !losesInfo;
1623   }
1624   case Type::X86_FP80TyID:
1625     return &Val2.getSemantics() == &APFloat::IEEEhalf() ||
1626            &Val2.getSemantics() == &APFloat::BFloat() ||
1627            &Val2.getSemantics() == &APFloat::IEEEsingle() ||
1628            &Val2.getSemantics() == &APFloat::IEEEdouble() ||
1629            &Val2.getSemantics() == &APFloat::x87DoubleExtended();
1630   case Type::FP128TyID:
1631     return &Val2.getSemantics() == &APFloat::IEEEhalf() ||
1632            &Val2.getSemantics() == &APFloat::BFloat() ||
1633            &Val2.getSemantics() == &APFloat::IEEEsingle() ||
1634            &Val2.getSemantics() == &APFloat::IEEEdouble() ||
1635            &Val2.getSemantics() == &APFloat::IEEEquad();
1636   case Type::PPC_FP128TyID:
1637     return &Val2.getSemantics() == &APFloat::IEEEhalf() ||
1638            &Val2.getSemantics() == &APFloat::BFloat() ||
1639            &Val2.getSemantics() == &APFloat::IEEEsingle() ||
1640            &Val2.getSemantics() == &APFloat::IEEEdouble() ||
1641            &Val2.getSemantics() == &APFloat::PPCDoubleDouble();
1642   }
1643 }
1644 
1645 
1646 //===----------------------------------------------------------------------===//
1647 //                      Factory Function Implementation
1648 
1649 ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
1650   assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
1651          "Cannot create an aggregate zero of non-aggregate type!");
1652 
1653   std::unique_ptr<ConstantAggregateZero> &Entry =
1654       Ty->getContext().pImpl->CAZConstants[Ty];
1655   if (!Entry)
1656     Entry.reset(new ConstantAggregateZero(Ty));
1657 
1658   return Entry.get();
1659 }
1660 
1661 /// Remove the constant from the constant table.
1662 void ConstantAggregateZero::destroyConstantImpl() {
1663   getContext().pImpl->CAZConstants.erase(getType());
1664 }
1665 
1666 /// Remove the constant from the constant table.
1667 void ConstantArray::destroyConstantImpl() {
1668   getType()->getContext().pImpl->ArrayConstants.remove(this);
1669 }
1670 
1671 
1672 //---- ConstantStruct::get() implementation...
1673 //
1674 
1675 /// Remove the constant from the constant table.
1676 void ConstantStruct::destroyConstantImpl() {
1677   getType()->getContext().pImpl->StructConstants.remove(this);
1678 }
1679 
1680 /// Remove the constant from the constant table.
1681 void ConstantVector::destroyConstantImpl() {
1682   getType()->getContext().pImpl->VectorConstants.remove(this);
1683 }
1684 
1685 Constant *Constant::getSplatValue(bool AllowUndefs) const {
1686   assert(this->getType()->isVectorTy() && "Only valid for vectors!");
1687   if (isa<ConstantAggregateZero>(this))
1688     return getNullValue(cast<VectorType>(getType())->getElementType());
1689   if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this))
1690     return CV->getSplatValue();
1691   if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
1692     return CV->getSplatValue(AllowUndefs);
1693 
1694   // Check if this is a constant expression splat of the form returned by
1695   // ConstantVector::getSplat()
1696   const auto *Shuf = dyn_cast<ConstantExpr>(this);
1697   if (Shuf && Shuf->getOpcode() == Instruction::ShuffleVector &&
1698       isa<UndefValue>(Shuf->getOperand(1))) {
1699 
1700     const auto *IElt = dyn_cast<ConstantExpr>(Shuf->getOperand(0));
1701     if (IElt && IElt->getOpcode() == Instruction::InsertElement &&
1702         isa<UndefValue>(IElt->getOperand(0))) {
1703 
1704       ArrayRef<int> Mask = Shuf->getShuffleMask();
1705       Constant *SplatVal = IElt->getOperand(1);
1706       ConstantInt *Index = dyn_cast<ConstantInt>(IElt->getOperand(2));
1707 
1708       if (Index && Index->getValue() == 0 &&
1709           llvm::all_of(Mask, [](int I) { return I == 0; }))
1710         return SplatVal;
1711     }
1712   }
1713 
1714   return nullptr;
1715 }
1716 
1717 Constant *ConstantVector::getSplatValue(bool AllowUndefs) const {
1718   // Check out first element.
1719   Constant *Elt = getOperand(0);
1720   // Then make sure all remaining elements point to the same value.
1721   for (unsigned I = 1, E = getNumOperands(); I < E; ++I) {
1722     Constant *OpC = getOperand(I);
1723     if (OpC == Elt)
1724       continue;
1725 
1726     // Strict mode: any mismatch is not a splat.
1727     if (!AllowUndefs)
1728       return nullptr;
1729 
1730     // Allow undefs mode: ignore undefined elements.
1731     if (isa<UndefValue>(OpC))
1732       continue;
1733 
1734     // If we do not have a defined element yet, use the current operand.
1735     if (isa<UndefValue>(Elt))
1736       Elt = OpC;
1737 
1738     if (OpC != Elt)
1739       return nullptr;
1740   }
1741   return Elt;
1742 }
1743 
1744 const APInt &Constant::getUniqueInteger() const {
1745   if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
1746     return CI->getValue();
1747   assert(this->getSplatValue() && "Doesn't contain a unique integer!");
1748   const Constant *C = this->getAggregateElement(0U);
1749   assert(C && isa<ConstantInt>(C) && "Not a vector of numbers!");
1750   return cast<ConstantInt>(C)->getValue();
1751 }
1752 
1753 //---- ConstantPointerNull::get() implementation.
1754 //
1755 
1756 ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
1757   std::unique_ptr<ConstantPointerNull> &Entry =
1758       Ty->getContext().pImpl->CPNConstants[Ty];
1759   if (!Entry)
1760     Entry.reset(new ConstantPointerNull(Ty));
1761 
1762   return Entry.get();
1763 }
1764 
1765 /// Remove the constant from the constant table.
1766 void ConstantPointerNull::destroyConstantImpl() {
1767   getContext().pImpl->CPNConstants.erase(getType());
1768 }
1769 
1770 UndefValue *UndefValue::get(Type *Ty) {
1771   std::unique_ptr<UndefValue> &Entry = Ty->getContext().pImpl->UVConstants[Ty];
1772   if (!Entry)
1773     Entry.reset(new UndefValue(Ty));
1774 
1775   return Entry.get();
1776 }
1777 
1778 /// Remove the constant from the constant table.
1779 void UndefValue::destroyConstantImpl() {
1780   // Free the constant and any dangling references to it.
1781   if (getValueID() == UndefValueVal) {
1782     getContext().pImpl->UVConstants.erase(getType());
1783   } else if (getValueID() == PoisonValueVal) {
1784     getContext().pImpl->PVConstants.erase(getType());
1785   }
1786   llvm_unreachable("Not a undef or a poison!");
1787 }
1788 
1789 PoisonValue *PoisonValue::get(Type *Ty) {
1790   std::unique_ptr<PoisonValue> &Entry = Ty->getContext().pImpl->PVConstants[Ty];
1791   if (!Entry)
1792     Entry.reset(new PoisonValue(Ty));
1793 
1794   return Entry.get();
1795 }
1796 
1797 /// Remove the constant from the constant table.
1798 void PoisonValue::destroyConstantImpl() {
1799   // Free the constant and any dangling references to it.
1800   getContext().pImpl->PVConstants.erase(getType());
1801 }
1802 
1803 BlockAddress *BlockAddress::get(BasicBlock *BB) {
1804   assert(BB->getParent() && "Block must have a parent");
1805   return get(BB->getParent(), BB);
1806 }
1807 
1808 BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1809   BlockAddress *&BA =
1810     F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1811   if (!BA)
1812     BA = new BlockAddress(F, BB);
1813 
1814   assert(BA->getFunction() == F && "Basic block moved between functions");
1815   return BA;
1816 }
1817 
1818 BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1819     : Constant(Type::getInt8PtrTy(F->getContext(), F->getAddressSpace()),
1820                Value::BlockAddressVal, &Op<0>(), 2) {
1821   setOperand(0, F);
1822   setOperand(1, BB);
1823   BB->AdjustBlockAddressRefCount(1);
1824 }
1825 
1826 BlockAddress *BlockAddress::lookup(const BasicBlock *BB) {
1827   if (!BB->hasAddressTaken())
1828     return nullptr;
1829 
1830   const Function *F = BB->getParent();
1831   assert(F && "Block must have a parent");
1832   BlockAddress *BA =
1833       F->getContext().pImpl->BlockAddresses.lookup(std::make_pair(F, BB));
1834   assert(BA && "Refcount and block address map disagree!");
1835   return BA;
1836 }
1837 
1838 /// Remove the constant from the constant table.
1839 void BlockAddress::destroyConstantImpl() {
1840   getFunction()->getType()->getContext().pImpl
1841     ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
1842   getBasicBlock()->AdjustBlockAddressRefCount(-1);
1843 }
1844 
1845 Value *BlockAddress::handleOperandChangeImpl(Value *From, Value *To) {
1846   // This could be replacing either the Basic Block or the Function.  In either
1847   // case, we have to remove the map entry.
1848   Function *NewF = getFunction();
1849   BasicBlock *NewBB = getBasicBlock();
1850 
1851   if (From == NewF)
1852     NewF = cast<Function>(To->stripPointerCasts());
1853   else {
1854     assert(From == NewBB && "From does not match any operand");
1855     NewBB = cast<BasicBlock>(To);
1856   }
1857 
1858   // See if the 'new' entry already exists, if not, just update this in place
1859   // and return early.
1860   BlockAddress *&NewBA =
1861     getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1862   if (NewBA)
1863     return NewBA;
1864 
1865   getBasicBlock()->AdjustBlockAddressRefCount(-1);
1866 
1867   // Remove the old entry, this can't cause the map to rehash (just a
1868   // tombstone will get added).
1869   getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1870                                                           getBasicBlock()));
1871   NewBA = this;
1872   setOperand(0, NewF);
1873   setOperand(1, NewBB);
1874   getBasicBlock()->AdjustBlockAddressRefCount(1);
1875 
1876   // If we just want to keep the existing value, then return null.
1877   // Callers know that this means we shouldn't delete this value.
1878   return nullptr;
1879 }
1880 
1881 DSOLocalEquivalent *DSOLocalEquivalent::get(GlobalValue *GV) {
1882   DSOLocalEquivalent *&Equiv = GV->getContext().pImpl->DSOLocalEquivalents[GV];
1883   if (!Equiv)
1884     Equiv = new DSOLocalEquivalent(GV);
1885 
1886   assert(Equiv->getGlobalValue() == GV &&
1887          "DSOLocalFunction does not match the expected global value");
1888   return Equiv;
1889 }
1890 
1891 DSOLocalEquivalent::DSOLocalEquivalent(GlobalValue *GV)
1892     : Constant(GV->getType(), Value::DSOLocalEquivalentVal, &Op<0>(), 1) {
1893   setOperand(0, GV);
1894 }
1895 
1896 /// Remove the constant from the constant table.
1897 void DSOLocalEquivalent::destroyConstantImpl() {
1898   const GlobalValue *GV = getGlobalValue();
1899   GV->getContext().pImpl->DSOLocalEquivalents.erase(GV);
1900 }
1901 
1902 Value *DSOLocalEquivalent::handleOperandChangeImpl(Value *From, Value *To) {
1903   assert(From == getGlobalValue() && "Changing value does not match operand.");
1904   assert(isa<Constant>(To) && "Can only replace the operands with a constant");
1905 
1906   // The replacement is with another global value.
1907   if (const auto *ToObj = dyn_cast<GlobalValue>(To)) {
1908     DSOLocalEquivalent *&NewEquiv =
1909         getContext().pImpl->DSOLocalEquivalents[ToObj];
1910     if (NewEquiv)
1911       return llvm::ConstantExpr::getBitCast(NewEquiv, getType());
1912   }
1913 
1914   // If the argument is replaced with a null value, just replace this constant
1915   // with a null value.
1916   if (cast<Constant>(To)->isNullValue())
1917     return To;
1918 
1919   // The replacement could be a bitcast or an alias to another function. We can
1920   // replace it with a bitcast to the dso_local_equivalent of that function.
1921   auto *Func = cast<Function>(To->stripPointerCastsAndAliases());
1922   DSOLocalEquivalent *&NewEquiv = getContext().pImpl->DSOLocalEquivalents[Func];
1923   if (NewEquiv)
1924     return llvm::ConstantExpr::getBitCast(NewEquiv, getType());
1925 
1926   // Replace this with the new one.
1927   getContext().pImpl->DSOLocalEquivalents.erase(getGlobalValue());
1928   NewEquiv = this;
1929   setOperand(0, Func);
1930 
1931   if (Func->getType() != getType()) {
1932     // It is ok to mutate the type here because this constant should always
1933     // reflect the type of the function it's holding.
1934     mutateType(Func->getType());
1935   }
1936   return nullptr;
1937 }
1938 
1939 //---- ConstantExpr::get() implementations.
1940 //
1941 
1942 /// This is a utility function to handle folding of casts and lookup of the
1943 /// cast in the ExprConstants map. It is used by the various get* methods below.
1944 static Constant *getFoldedCast(Instruction::CastOps opc, Constant *C, Type *Ty,
1945                                bool OnlyIfReduced = false) {
1946   assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
1947   // Fold a few common cases
1948   if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
1949     return FC;
1950 
1951   if (OnlyIfReduced)
1952     return nullptr;
1953 
1954   LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1955 
1956   // Look up the constant in the table first to ensure uniqueness.
1957   ConstantExprKeyType Key(opc, C);
1958 
1959   return pImpl->ExprConstants.getOrCreate(Ty, Key);
1960 }
1961 
1962 Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty,
1963                                 bool OnlyIfReduced) {
1964   Instruction::CastOps opc = Instruction::CastOps(oc);
1965   assert(Instruction::isCast(opc) && "opcode out of range");
1966   assert(C && Ty && "Null arguments to getCast");
1967   assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
1968 
1969   switch (opc) {
1970   default:
1971     llvm_unreachable("Invalid cast opcode");
1972   case Instruction::Trunc:
1973     return getTrunc(C, Ty, OnlyIfReduced);
1974   case Instruction::ZExt:
1975     return getZExt(C, Ty, OnlyIfReduced);
1976   case Instruction::SExt:
1977     return getSExt(C, Ty, OnlyIfReduced);
1978   case Instruction::FPTrunc:
1979     return getFPTrunc(C, Ty, OnlyIfReduced);
1980   case Instruction::FPExt:
1981     return getFPExtend(C, Ty, OnlyIfReduced);
1982   case Instruction::UIToFP:
1983     return getUIToFP(C, Ty, OnlyIfReduced);
1984   case Instruction::SIToFP:
1985     return getSIToFP(C, Ty, OnlyIfReduced);
1986   case Instruction::FPToUI:
1987     return getFPToUI(C, Ty, OnlyIfReduced);
1988   case Instruction::FPToSI:
1989     return getFPToSI(C, Ty, OnlyIfReduced);
1990   case Instruction::PtrToInt:
1991     return getPtrToInt(C, Ty, OnlyIfReduced);
1992   case Instruction::IntToPtr:
1993     return getIntToPtr(C, Ty, OnlyIfReduced);
1994   case Instruction::BitCast:
1995     return getBitCast(C, Ty, OnlyIfReduced);
1996   case Instruction::AddrSpaceCast:
1997     return getAddrSpaceCast(C, Ty, OnlyIfReduced);
1998   }
1999 }
2000 
2001 Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
2002   if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
2003     return getBitCast(C, Ty);
2004   return getZExt(C, Ty);
2005 }
2006 
2007 Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
2008   if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
2009     return getBitCast(C, Ty);
2010   return getSExt(C, Ty);
2011 }
2012 
2013 Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
2014   if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
2015     return getBitCast(C, Ty);
2016   return getTrunc(C, Ty);
2017 }
2018 
2019 Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
2020   assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2021   assert((Ty->isIntOrIntVectorTy() || Ty->isPtrOrPtrVectorTy()) &&
2022           "Invalid cast");
2023 
2024   if (Ty->isIntOrIntVectorTy())
2025     return getPtrToInt(S, Ty);
2026 
2027   unsigned SrcAS = S->getType()->getPointerAddressSpace();
2028   if (Ty->isPtrOrPtrVectorTy() && SrcAS != Ty->getPointerAddressSpace())
2029     return getAddrSpaceCast(S, Ty);
2030 
2031   return getBitCast(S, Ty);
2032 }
2033 
2034 Constant *ConstantExpr::getPointerBitCastOrAddrSpaceCast(Constant *S,
2035                                                          Type *Ty) {
2036   assert(S->getType()->isPtrOrPtrVectorTy() && "Invalid cast");
2037   assert(Ty->isPtrOrPtrVectorTy() && "Invalid cast");
2038 
2039   if (S->getType()->getPointerAddressSpace() != Ty->getPointerAddressSpace())
2040     return getAddrSpaceCast(S, Ty);
2041 
2042   return getBitCast(S, Ty);
2043 }
2044 
2045 Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty, bool isSigned) {
2046   assert(C->getType()->isIntOrIntVectorTy() &&
2047          Ty->isIntOrIntVectorTy() && "Invalid cast");
2048   unsigned SrcBits = C->getType()->getScalarSizeInBits();
2049   unsigned DstBits = Ty->getScalarSizeInBits();
2050   Instruction::CastOps opcode =
2051     (SrcBits == DstBits ? Instruction::BitCast :
2052      (SrcBits > DstBits ? Instruction::Trunc :
2053       (isSigned ? Instruction::SExt : Instruction::ZExt)));
2054   return getCast(opcode, C, Ty);
2055 }
2056 
2057 Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
2058   assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
2059          "Invalid cast");
2060   unsigned SrcBits = C->getType()->getScalarSizeInBits();
2061   unsigned DstBits = Ty->getScalarSizeInBits();
2062   if (SrcBits == DstBits)
2063     return C; // Avoid a useless cast
2064   Instruction::CastOps opcode =
2065     (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
2066   return getCast(opcode, C, Ty);
2067 }
2068 
2069 Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
2070 #ifndef NDEBUG
2071   bool fromVec = isa<VectorType>(C->getType());
2072   bool toVec = isa<VectorType>(Ty);
2073 #endif
2074   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2075   assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
2076   assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
2077   assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
2078          "SrcTy must be larger than DestTy for Trunc!");
2079 
2080   return getFoldedCast(Instruction::Trunc, C, Ty, OnlyIfReduced);
2081 }
2082 
2083 Constant *ConstantExpr::getSExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
2084 #ifndef NDEBUG
2085   bool fromVec = isa<VectorType>(C->getType());
2086   bool toVec = isa<VectorType>(Ty);
2087 #endif
2088   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2089   assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
2090   assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
2091   assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
2092          "SrcTy must be smaller than DestTy for SExt!");
2093 
2094   return getFoldedCast(Instruction::SExt, C, Ty, OnlyIfReduced);
2095 }
2096 
2097 Constant *ConstantExpr::getZExt(Constant *C, Type *Ty, bool OnlyIfReduced) {
2098 #ifndef NDEBUG
2099   bool fromVec = isa<VectorType>(C->getType());
2100   bool toVec = isa<VectorType>(Ty);
2101 #endif
2102   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2103   assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
2104   assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
2105   assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
2106          "SrcTy must be smaller than DestTy for ZExt!");
2107 
2108   return getFoldedCast(Instruction::ZExt, C, Ty, OnlyIfReduced);
2109 }
2110 
2111 Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty, bool OnlyIfReduced) {
2112 #ifndef NDEBUG
2113   bool fromVec = isa<VectorType>(C->getType());
2114   bool toVec = isa<VectorType>(Ty);
2115 #endif
2116   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2117   assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
2118          C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
2119          "This is an illegal floating point truncation!");
2120   return getFoldedCast(Instruction::FPTrunc, C, Ty, OnlyIfReduced);
2121 }
2122 
2123 Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty, bool OnlyIfReduced) {
2124 #ifndef NDEBUG
2125   bool fromVec = isa<VectorType>(C->getType());
2126   bool toVec = isa<VectorType>(Ty);
2127 #endif
2128   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2129   assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
2130          C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
2131          "This is an illegal floating point extension!");
2132   return getFoldedCast(Instruction::FPExt, C, Ty, OnlyIfReduced);
2133 }
2134 
2135 Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
2136 #ifndef NDEBUG
2137   bool fromVec = isa<VectorType>(C->getType());
2138   bool toVec = isa<VectorType>(Ty);
2139 #endif
2140   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2141   assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
2142          "This is an illegal uint to floating point cast!");
2143   return getFoldedCast(Instruction::UIToFP, C, Ty, OnlyIfReduced);
2144 }
2145 
2146 Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty, bool OnlyIfReduced) {
2147 #ifndef NDEBUG
2148   bool fromVec = isa<VectorType>(C->getType());
2149   bool toVec = isa<VectorType>(Ty);
2150 #endif
2151   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2152   assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
2153          "This is an illegal sint to floating point cast!");
2154   return getFoldedCast(Instruction::SIToFP, C, Ty, OnlyIfReduced);
2155 }
2156 
2157 Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty, bool OnlyIfReduced) {
2158 #ifndef NDEBUG
2159   bool fromVec = isa<VectorType>(C->getType());
2160   bool toVec = isa<VectorType>(Ty);
2161 #endif
2162   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2163   assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
2164          "This is an illegal floating point to uint cast!");
2165   return getFoldedCast(Instruction::FPToUI, C, Ty, OnlyIfReduced);
2166 }
2167 
2168 Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty, bool OnlyIfReduced) {
2169 #ifndef NDEBUG
2170   bool fromVec = isa<VectorType>(C->getType());
2171   bool toVec = isa<VectorType>(Ty);
2172 #endif
2173   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
2174   assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
2175          "This is an illegal floating point to sint cast!");
2176   return getFoldedCast(Instruction::FPToSI, C, Ty, OnlyIfReduced);
2177 }
2178 
2179 Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy,
2180                                     bool OnlyIfReduced) {
2181   assert(C->getType()->isPtrOrPtrVectorTy() &&
2182          "PtrToInt source must be pointer or pointer vector");
2183   assert(DstTy->isIntOrIntVectorTy() &&
2184          "PtrToInt destination must be integer or integer vector");
2185   assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
2186   if (isa<VectorType>(C->getType()))
2187     assert(cast<FixedVectorType>(C->getType())->getNumElements() ==
2188                cast<FixedVectorType>(DstTy)->getNumElements() &&
2189            "Invalid cast between a different number of vector elements");
2190   return getFoldedCast(Instruction::PtrToInt, C, DstTy, OnlyIfReduced);
2191 }
2192 
2193 Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy,
2194                                     bool OnlyIfReduced) {
2195   assert(C->getType()->isIntOrIntVectorTy() &&
2196          "IntToPtr source must be integer or integer vector");
2197   assert(DstTy->isPtrOrPtrVectorTy() &&
2198          "IntToPtr destination must be a pointer or pointer vector");
2199   assert(isa<VectorType>(C->getType()) == isa<VectorType>(DstTy));
2200   if (isa<VectorType>(C->getType()))
2201     assert(cast<VectorType>(C->getType())->getElementCount() ==
2202                cast<VectorType>(DstTy)->getElementCount() &&
2203            "Invalid cast between a different number of vector elements");
2204   return getFoldedCast(Instruction::IntToPtr, C, DstTy, OnlyIfReduced);
2205 }
2206 
2207 Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy,
2208                                    bool OnlyIfReduced) {
2209   assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
2210          "Invalid constantexpr bitcast!");
2211 
2212   // It is common to ask for a bitcast of a value to its own type, handle this
2213   // speedily.
2214   if (C->getType() == DstTy) return C;
2215 
2216   return getFoldedCast(Instruction::BitCast, C, DstTy, OnlyIfReduced);
2217 }
2218 
2219 Constant *ConstantExpr::getAddrSpaceCast(Constant *C, Type *DstTy,
2220                                          bool OnlyIfReduced) {
2221   assert(CastInst::castIsValid(Instruction::AddrSpaceCast, C, DstTy) &&
2222          "Invalid constantexpr addrspacecast!");
2223 
2224   // Canonicalize addrspacecasts between different pointer types by first
2225   // bitcasting the pointer type and then converting the address space.
2226   PointerType *SrcScalarTy = cast<PointerType>(C->getType()->getScalarType());
2227   PointerType *DstScalarTy = cast<PointerType>(DstTy->getScalarType());
2228   if (!SrcScalarTy->hasSameElementTypeAs(DstScalarTy)) {
2229     Type *MidTy = PointerType::getWithSamePointeeType(
2230         DstScalarTy, SrcScalarTy->getAddressSpace());
2231     if (VectorType *VT = dyn_cast<VectorType>(DstTy)) {
2232       // Handle vectors of pointers.
2233       MidTy = FixedVectorType::get(MidTy,
2234                                    cast<FixedVectorType>(VT)->getNumElements());
2235     }
2236     C = getBitCast(C, MidTy);
2237   }
2238   return getFoldedCast(Instruction::AddrSpaceCast, C, DstTy, OnlyIfReduced);
2239 }
2240 
2241 Constant *ConstantExpr::get(unsigned Opcode, Constant *C, unsigned Flags,
2242                             Type *OnlyIfReducedTy) {
2243   // Check the operands for consistency first.
2244   assert(Instruction::isUnaryOp(Opcode) &&
2245          "Invalid opcode in unary constant expression");
2246 
2247 #ifndef NDEBUG
2248   switch (Opcode) {
2249   case Instruction::FNeg:
2250     assert(C->getType()->isFPOrFPVectorTy() &&
2251            "Tried to create a floating-point operation on a "
2252            "non-floating-point type!");
2253     break;
2254   default:
2255     break;
2256   }
2257 #endif
2258 
2259   if (Constant *FC = ConstantFoldUnaryInstruction(Opcode, C))
2260     return FC;
2261 
2262   if (OnlyIfReducedTy == C->getType())
2263     return nullptr;
2264 
2265   Constant *ArgVec[] = { C };
2266   ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags);
2267 
2268   LLVMContextImpl *pImpl = C->getContext().pImpl;
2269   return pImpl->ExprConstants.getOrCreate(C->getType(), Key);
2270 }
2271 
2272 Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
2273                             unsigned Flags, Type *OnlyIfReducedTy) {
2274   // Check the operands for consistency first.
2275   assert(Instruction::isBinaryOp(Opcode) &&
2276          "Invalid opcode in binary constant expression");
2277   assert(C1->getType() == C2->getType() &&
2278          "Operand types in binary constant expression should match");
2279 
2280 #ifndef NDEBUG
2281   switch (Opcode) {
2282   case Instruction::Add:
2283   case Instruction::Sub:
2284   case Instruction::Mul:
2285   case Instruction::UDiv:
2286   case Instruction::SDiv:
2287   case Instruction::URem:
2288   case Instruction::SRem:
2289     assert(C1->getType()->isIntOrIntVectorTy() &&
2290            "Tried to create an integer operation on a non-integer type!");
2291     break;
2292   case Instruction::FAdd:
2293   case Instruction::FSub:
2294   case Instruction::FMul:
2295   case Instruction::FDiv:
2296   case Instruction::FRem:
2297     assert(C1->getType()->isFPOrFPVectorTy() &&
2298            "Tried to create a floating-point operation on a "
2299            "non-floating-point type!");
2300     break;
2301   case Instruction::And:
2302   case Instruction::Or:
2303   case Instruction::Xor:
2304     assert(C1->getType()->isIntOrIntVectorTy() &&
2305            "Tried to create a logical operation on a non-integral type!");
2306     break;
2307   case Instruction::Shl:
2308   case Instruction::LShr:
2309   case Instruction::AShr:
2310     assert(C1->getType()->isIntOrIntVectorTy() &&
2311            "Tried to create a shift operation on a non-integer type!");
2312     break;
2313   default:
2314     break;
2315   }
2316 #endif
2317 
2318   if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
2319     return FC;
2320 
2321   if (OnlyIfReducedTy == C1->getType())
2322     return nullptr;
2323 
2324   Constant *ArgVec[] = { C1, C2 };
2325   ConstantExprKeyType Key(Opcode, ArgVec, 0, Flags);
2326 
2327   LLVMContextImpl *pImpl = C1->getContext().pImpl;
2328   return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
2329 }
2330 
2331 Constant *ConstantExpr::getSizeOf(Type* Ty) {
2332   // sizeof is implemented as: (i64) gep (Ty*)null, 1
2333   // Note that a non-inbounds gep is used, as null isn't within any object.
2334   Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
2335   Constant *GEP = getGetElementPtr(
2336       Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
2337   return getPtrToInt(GEP,
2338                      Type::getInt64Ty(Ty->getContext()));
2339 }
2340 
2341 Constant *ConstantExpr::getAlignOf(Type* Ty) {
2342   // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
2343   // Note that a non-inbounds gep is used, as null isn't within any object.
2344   Type *AligningTy = StructType::get(Type::getInt1Ty(Ty->getContext()), Ty);
2345   Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo(0));
2346   Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
2347   Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
2348   Constant *Indices[2] = { Zero, One };
2349   Constant *GEP = getGetElementPtr(AligningTy, NullPtr, Indices);
2350   return getPtrToInt(GEP,
2351                      Type::getInt64Ty(Ty->getContext()));
2352 }
2353 
2354 Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
2355   return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
2356                                            FieldNo));
2357 }
2358 
2359 Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
2360   // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
2361   // Note that a non-inbounds gep is used, as null isn't within any object.
2362   Constant *GEPIdx[] = {
2363     ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
2364     FieldNo
2365   };
2366   Constant *GEP = getGetElementPtr(
2367       Ty, Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
2368   return getPtrToInt(GEP,
2369                      Type::getInt64Ty(Ty->getContext()));
2370 }
2371 
2372 Constant *ConstantExpr::getCompare(unsigned short Predicate, Constant *C1,
2373                                    Constant *C2, bool OnlyIfReduced) {
2374   assert(C1->getType() == C2->getType() && "Op types should be identical!");
2375 
2376   switch (Predicate) {
2377   default: llvm_unreachable("Invalid CmpInst predicate");
2378   case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
2379   case CmpInst::FCMP_OGE:   case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
2380   case CmpInst::FCMP_ONE:   case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
2381   case CmpInst::FCMP_UEQ:   case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
2382   case CmpInst::FCMP_ULT:   case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
2383   case CmpInst::FCMP_TRUE:
2384     return getFCmp(Predicate, C1, C2, OnlyIfReduced);
2385 
2386   case CmpInst::ICMP_EQ:  case CmpInst::ICMP_NE:  case CmpInst::ICMP_UGT:
2387   case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
2388   case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
2389   case CmpInst::ICMP_SLE:
2390     return getICmp(Predicate, C1, C2, OnlyIfReduced);
2391   }
2392 }
2393 
2394 Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2,
2395                                   Type *OnlyIfReducedTy) {
2396   assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
2397 
2398   if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
2399     return SC;        // Fold common cases
2400 
2401   if (OnlyIfReducedTy == V1->getType())
2402     return nullptr;
2403 
2404   Constant *ArgVec[] = { C, V1, V2 };
2405   ConstantExprKeyType Key(Instruction::Select, ArgVec);
2406 
2407   LLVMContextImpl *pImpl = C->getContext().pImpl;
2408   return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
2409 }
2410 
2411 Constant *ConstantExpr::getGetElementPtr(Type *Ty, Constant *C,
2412                                          ArrayRef<Value *> Idxs, bool InBounds,
2413                                          Optional<unsigned> InRangeIndex,
2414                                          Type *OnlyIfReducedTy) {
2415   PointerType *OrigPtrTy = cast<PointerType>(C->getType()->getScalarType());
2416   assert(Ty && "Must specify element type");
2417   assert(OrigPtrTy->isOpaqueOrPointeeTypeMatches(Ty));
2418 
2419   if (Constant *FC =
2420           ConstantFoldGetElementPtr(Ty, C, InBounds, InRangeIndex, Idxs))
2421     return FC;          // Fold a few common cases.
2422 
2423   // Get the result type of the getelementptr!
2424   Type *DestTy = GetElementPtrInst::getIndexedType(Ty, Idxs);
2425   assert(DestTy && "GEP indices invalid!");
2426   unsigned AS = OrigPtrTy->getAddressSpace();
2427   Type *ReqTy = OrigPtrTy->isOpaque()
2428       ? PointerType::get(OrigPtrTy->getContext(), AS)
2429       : DestTy->getPointerTo(AS);
2430 
2431   auto EltCount = ElementCount::getFixed(0);
2432   if (VectorType *VecTy = dyn_cast<VectorType>(C->getType()))
2433     EltCount = VecTy->getElementCount();
2434   else
2435     for (auto Idx : Idxs)
2436       if (VectorType *VecTy = dyn_cast<VectorType>(Idx->getType()))
2437         EltCount = VecTy->getElementCount();
2438 
2439   if (EltCount.isNonZero())
2440     ReqTy = VectorType::get(ReqTy, EltCount);
2441 
2442   if (OnlyIfReducedTy == ReqTy)
2443     return nullptr;
2444 
2445   // Look up the constant in the table first to ensure uniqueness
2446   std::vector<Constant*> ArgVec;
2447   ArgVec.reserve(1 + Idxs.size());
2448   ArgVec.push_back(C);
2449   auto GTI = gep_type_begin(Ty, Idxs), GTE = gep_type_end(Ty, Idxs);
2450   for (; GTI != GTE; ++GTI) {
2451     auto *Idx = cast<Constant>(GTI.getOperand());
2452     assert(
2453         (!isa<VectorType>(Idx->getType()) ||
2454          cast<VectorType>(Idx->getType())->getElementCount() == EltCount) &&
2455         "getelementptr index type missmatch");
2456 
2457     if (GTI.isStruct() && Idx->getType()->isVectorTy()) {
2458       Idx = Idx->getSplatValue();
2459     } else if (GTI.isSequential() && EltCount.isNonZero() &&
2460                !Idx->getType()->isVectorTy()) {
2461       Idx = ConstantVector::getSplat(EltCount, Idx);
2462     }
2463     ArgVec.push_back(Idx);
2464   }
2465 
2466   unsigned SubClassOptionalData = InBounds ? GEPOperator::IsInBounds : 0;
2467   if (InRangeIndex && *InRangeIndex < 63)
2468     SubClassOptionalData |= (*InRangeIndex + 1) << 1;
2469   const ConstantExprKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
2470                                 SubClassOptionalData, None, None, Ty);
2471 
2472   LLVMContextImpl *pImpl = C->getContext().pImpl;
2473   return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
2474 }
2475 
2476 Constant *ConstantExpr::getICmp(unsigned short pred, Constant *LHS,
2477                                 Constant *RHS, bool OnlyIfReduced) {
2478   assert(LHS->getType() == RHS->getType());
2479   assert(CmpInst::isIntPredicate((CmpInst::Predicate)pred) &&
2480          "Invalid ICmp Predicate");
2481 
2482   if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
2483     return FC;          // Fold a few common cases...
2484 
2485   if (OnlyIfReduced)
2486     return nullptr;
2487 
2488   // Look up the constant in the table first to ensure uniqueness
2489   Constant *ArgVec[] = { LHS, RHS };
2490   // Get the key type with both the opcode and predicate
2491   const ConstantExprKeyType Key(Instruction::ICmp, ArgVec, pred);
2492 
2493   Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2494   if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
2495     ResultTy = VectorType::get(ResultTy, VT->getElementCount());
2496 
2497   LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
2498   return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
2499 }
2500 
2501 Constant *ConstantExpr::getFCmp(unsigned short pred, Constant *LHS,
2502                                 Constant *RHS, bool OnlyIfReduced) {
2503   assert(LHS->getType() == RHS->getType());
2504   assert(CmpInst::isFPPredicate((CmpInst::Predicate)pred) &&
2505          "Invalid FCmp Predicate");
2506 
2507   if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
2508     return FC;          // Fold a few common cases...
2509 
2510   if (OnlyIfReduced)
2511     return nullptr;
2512 
2513   // Look up the constant in the table first to ensure uniqueness
2514   Constant *ArgVec[] = { LHS, RHS };
2515   // Get the key type with both the opcode and predicate
2516   const ConstantExprKeyType Key(Instruction::FCmp, ArgVec, pred);
2517 
2518   Type *ResultTy = Type::getInt1Ty(LHS->getContext());
2519   if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
2520     ResultTy = VectorType::get(ResultTy, VT->getElementCount());
2521 
2522   LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
2523   return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
2524 }
2525 
2526 Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx,
2527                                           Type *OnlyIfReducedTy) {
2528   assert(Val->getType()->isVectorTy() &&
2529          "Tried to create extractelement operation on non-vector type!");
2530   assert(Idx->getType()->isIntegerTy() &&
2531          "Extractelement index must be an integer type!");
2532 
2533   if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
2534     return FC;          // Fold a few common cases.
2535 
2536   Type *ReqTy = cast<VectorType>(Val->getType())->getElementType();
2537   if (OnlyIfReducedTy == ReqTy)
2538     return nullptr;
2539 
2540   // Look up the constant in the table first to ensure uniqueness
2541   Constant *ArgVec[] = { Val, Idx };
2542   const ConstantExprKeyType Key(Instruction::ExtractElement, ArgVec);
2543 
2544   LLVMContextImpl *pImpl = Val->getContext().pImpl;
2545   return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
2546 }
2547 
2548 Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
2549                                          Constant *Idx, Type *OnlyIfReducedTy) {
2550   assert(Val->getType()->isVectorTy() &&
2551          "Tried to create insertelement operation on non-vector type!");
2552   assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType() &&
2553          "Insertelement types must match!");
2554   assert(Idx->getType()->isIntegerTy() &&
2555          "Insertelement index must be i32 type!");
2556 
2557   if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
2558     return FC;          // Fold a few common cases.
2559 
2560   if (OnlyIfReducedTy == Val->getType())
2561     return nullptr;
2562 
2563   // Look up the constant in the table first to ensure uniqueness
2564   Constant *ArgVec[] = { Val, Elt, Idx };
2565   const ConstantExprKeyType Key(Instruction::InsertElement, ArgVec);
2566 
2567   LLVMContextImpl *pImpl = Val->getContext().pImpl;
2568   return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
2569 }
2570 
2571 Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
2572                                          ArrayRef<int> Mask,
2573                                          Type *OnlyIfReducedTy) {
2574   assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
2575          "Invalid shuffle vector constant expr operands!");
2576 
2577   if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2578     return FC;          // Fold a few common cases.
2579 
2580   unsigned NElts = Mask.size();
2581   auto V1VTy = cast<VectorType>(V1->getType());
2582   Type *EltTy = V1VTy->getElementType();
2583   bool TypeIsScalable = isa<ScalableVectorType>(V1VTy);
2584   Type *ShufTy = VectorType::get(EltTy, NElts, TypeIsScalable);
2585 
2586   if (OnlyIfReducedTy == ShufTy)
2587     return nullptr;
2588 
2589   // Look up the constant in the table first to ensure uniqueness
2590   Constant *ArgVec[] = {V1, V2};
2591   ConstantExprKeyType Key(Instruction::ShuffleVector, ArgVec, 0, 0, None, Mask);
2592 
2593   LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
2594   return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
2595 }
2596 
2597 Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
2598                                        ArrayRef<unsigned> Idxs,
2599                                        Type *OnlyIfReducedTy) {
2600   assert(Agg->getType()->isFirstClassType() &&
2601          "Non-first-class type for constant insertvalue expression");
2602 
2603   assert(ExtractValueInst::getIndexedType(Agg->getType(),
2604                                           Idxs) == Val->getType() &&
2605          "insertvalue indices invalid!");
2606   Type *ReqTy = Val->getType();
2607 
2608   if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs))
2609     return FC;
2610 
2611   if (OnlyIfReducedTy == ReqTy)
2612     return nullptr;
2613 
2614   Constant *ArgVec[] = { Agg, Val };
2615   const ConstantExprKeyType Key(Instruction::InsertValue, ArgVec, 0, 0, Idxs);
2616 
2617   LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2618   return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
2619 }
2620 
2621 Constant *ConstantExpr::getExtractValue(Constant *Agg, ArrayRef<unsigned> Idxs,
2622                                         Type *OnlyIfReducedTy) {
2623   assert(Agg->getType()->isFirstClassType() &&
2624          "Tried to create extractelement operation on non-first-class type!");
2625 
2626   Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
2627   (void)ReqTy;
2628   assert(ReqTy && "extractvalue indices invalid!");
2629 
2630   assert(Agg->getType()->isFirstClassType() &&
2631          "Non-first-class type for constant extractvalue expression");
2632   if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs))
2633     return FC;
2634 
2635   if (OnlyIfReducedTy == ReqTy)
2636     return nullptr;
2637 
2638   Constant *ArgVec[] = { Agg };
2639   const ConstantExprKeyType Key(Instruction::ExtractValue, ArgVec, 0, 0, Idxs);
2640 
2641   LLVMContextImpl *pImpl = Agg->getContext().pImpl;
2642   return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
2643 }
2644 
2645 Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
2646   assert(C->getType()->isIntOrIntVectorTy() &&
2647          "Cannot NEG a nonintegral value!");
2648   return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
2649                 C, HasNUW, HasNSW);
2650 }
2651 
2652 Constant *ConstantExpr::getFNeg(Constant *C) {
2653   assert(C->getType()->isFPOrFPVectorTy() &&
2654          "Cannot FNEG a non-floating-point value!");
2655   return get(Instruction::FNeg, C);
2656 }
2657 
2658 Constant *ConstantExpr::getNot(Constant *C) {
2659   assert(C->getType()->isIntOrIntVectorTy() &&
2660          "Cannot NOT a nonintegral value!");
2661   return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
2662 }
2663 
2664 Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
2665                                bool HasNUW, bool HasNSW) {
2666   unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2667                    (HasNSW ? OverflowingBinaryOperator::NoSignedWrap   : 0);
2668   return get(Instruction::Add, C1, C2, Flags);
2669 }
2670 
2671 Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
2672   return get(Instruction::FAdd, C1, C2);
2673 }
2674 
2675 Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
2676                                bool HasNUW, bool HasNSW) {
2677   unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2678                    (HasNSW ? OverflowingBinaryOperator::NoSignedWrap   : 0);
2679   return get(Instruction::Sub, C1, C2, Flags);
2680 }
2681 
2682 Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
2683   return get(Instruction::FSub, C1, C2);
2684 }
2685 
2686 Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
2687                                bool HasNUW, bool HasNSW) {
2688   unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2689                    (HasNSW ? OverflowingBinaryOperator::NoSignedWrap   : 0);
2690   return get(Instruction::Mul, C1, C2, Flags);
2691 }
2692 
2693 Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
2694   return get(Instruction::FMul, C1, C2);
2695 }
2696 
2697 Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
2698   return get(Instruction::UDiv, C1, C2,
2699              isExact ? PossiblyExactOperator::IsExact : 0);
2700 }
2701 
2702 Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
2703   return get(Instruction::SDiv, C1, C2,
2704              isExact ? PossiblyExactOperator::IsExact : 0);
2705 }
2706 
2707 Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
2708   return get(Instruction::FDiv, C1, C2);
2709 }
2710 
2711 Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
2712   return get(Instruction::URem, C1, C2);
2713 }
2714 
2715 Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
2716   return get(Instruction::SRem, C1, C2);
2717 }
2718 
2719 Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
2720   return get(Instruction::FRem, C1, C2);
2721 }
2722 
2723 Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
2724   return get(Instruction::And, C1, C2);
2725 }
2726 
2727 Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
2728   return get(Instruction::Or, C1, C2);
2729 }
2730 
2731 Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
2732   return get(Instruction::Xor, C1, C2);
2733 }
2734 
2735 Constant *ConstantExpr::getUMin(Constant *C1, Constant *C2) {
2736   Constant *Cmp = ConstantExpr::getICmp(CmpInst::ICMP_ULT, C1, C2);
2737   return getSelect(Cmp, C1, C2);
2738 }
2739 
2740 Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
2741                                bool HasNUW, bool HasNSW) {
2742   unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
2743                    (HasNSW ? OverflowingBinaryOperator::NoSignedWrap   : 0);
2744   return get(Instruction::Shl, C1, C2, Flags);
2745 }
2746 
2747 Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
2748   return get(Instruction::LShr, C1, C2,
2749              isExact ? PossiblyExactOperator::IsExact : 0);
2750 }
2751 
2752 Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
2753   return get(Instruction::AShr, C1, C2,
2754              isExact ? PossiblyExactOperator::IsExact : 0);
2755 }
2756 
2757 Constant *ConstantExpr::getExactLogBase2(Constant *C) {
2758   Type *Ty = C->getType();
2759   const APInt *IVal;
2760   if (match(C, m_APInt(IVal)) && IVal->isPowerOf2())
2761     return ConstantInt::get(Ty, IVal->logBase2());
2762 
2763   // FIXME: We can extract pow of 2 of splat constant for scalable vectors.
2764   auto *VecTy = dyn_cast<FixedVectorType>(Ty);
2765   if (!VecTy)
2766     return nullptr;
2767 
2768   SmallVector<Constant *, 4> Elts;
2769   for (unsigned I = 0, E = VecTy->getNumElements(); I != E; ++I) {
2770     Constant *Elt = C->getAggregateElement(I);
2771     if (!Elt)
2772       return nullptr;
2773     // Note that log2(iN undef) is *NOT* iN undef, because log2(iN undef) u< N.
2774     if (isa<UndefValue>(Elt)) {
2775       Elts.push_back(Constant::getNullValue(Ty->getScalarType()));
2776       continue;
2777     }
2778     if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2())
2779       return nullptr;
2780     Elts.push_back(ConstantInt::get(Ty->getScalarType(), IVal->logBase2()));
2781   }
2782 
2783   return ConstantVector::get(Elts);
2784 }
2785 
2786 Constant *ConstantExpr::getBinOpIdentity(unsigned Opcode, Type *Ty,
2787                                          bool AllowRHSConstant) {
2788   assert(Instruction::isBinaryOp(Opcode) && "Only binops allowed");
2789 
2790   // Commutative opcodes: it does not matter if AllowRHSConstant is set.
2791   if (Instruction::isCommutative(Opcode)) {
2792     switch (Opcode) {
2793       case Instruction::Add: // X + 0 = X
2794       case Instruction::Or:  // X | 0 = X
2795       case Instruction::Xor: // X ^ 0 = X
2796         return Constant::getNullValue(Ty);
2797       case Instruction::Mul: // X * 1 = X
2798         return ConstantInt::get(Ty, 1);
2799       case Instruction::And: // X & -1 = X
2800         return Constant::getAllOnesValue(Ty);
2801       case Instruction::FAdd: // X + -0.0 = X
2802         // TODO: If the fadd has 'nsz', should we return +0.0?
2803         return ConstantFP::getNegativeZero(Ty);
2804       case Instruction::FMul: // X * 1.0 = X
2805         return ConstantFP::get(Ty, 1.0);
2806       default:
2807         llvm_unreachable("Every commutative binop has an identity constant");
2808     }
2809   }
2810 
2811   // Non-commutative opcodes: AllowRHSConstant must be set.
2812   if (!AllowRHSConstant)
2813     return nullptr;
2814 
2815   switch (Opcode) {
2816     case Instruction::Sub:  // X - 0 = X
2817     case Instruction::Shl:  // X << 0 = X
2818     case Instruction::LShr: // X >>u 0 = X
2819     case Instruction::AShr: // X >> 0 = X
2820     case Instruction::FSub: // X - 0.0 = X
2821       return Constant::getNullValue(Ty);
2822     case Instruction::SDiv: // X / 1 = X
2823     case Instruction::UDiv: // X /u 1 = X
2824       return ConstantInt::get(Ty, 1);
2825     case Instruction::FDiv: // X / 1.0 = X
2826       return ConstantFP::get(Ty, 1.0);
2827     default:
2828       return nullptr;
2829   }
2830 }
2831 
2832 Constant *ConstantExpr::getBinOpAbsorber(unsigned Opcode, Type *Ty) {
2833   switch (Opcode) {
2834   default:
2835     // Doesn't have an absorber.
2836     return nullptr;
2837 
2838   case Instruction::Or:
2839     return Constant::getAllOnesValue(Ty);
2840 
2841   case Instruction::And:
2842   case Instruction::Mul:
2843     return Constant::getNullValue(Ty);
2844   }
2845 }
2846 
2847 /// Remove the constant from the constant table.
2848 void ConstantExpr::destroyConstantImpl() {
2849   getType()->getContext().pImpl->ExprConstants.remove(this);
2850 }
2851 
2852 const char *ConstantExpr::getOpcodeName() const {
2853   return Instruction::getOpcodeName(getOpcode());
2854 }
2855 
2856 GetElementPtrConstantExpr::GetElementPtrConstantExpr(
2857     Type *SrcElementTy, Constant *C, ArrayRef<Constant *> IdxList, Type *DestTy)
2858     : ConstantExpr(DestTy, Instruction::GetElementPtr,
2859                    OperandTraits<GetElementPtrConstantExpr>::op_end(this) -
2860                        (IdxList.size() + 1),
2861                    IdxList.size() + 1),
2862       SrcElementTy(SrcElementTy),
2863       ResElementTy(GetElementPtrInst::getIndexedType(SrcElementTy, IdxList)) {
2864   Op<0>() = C;
2865   Use *OperandList = getOperandList();
2866   for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
2867     OperandList[i+1] = IdxList[i];
2868 }
2869 
2870 Type *GetElementPtrConstantExpr::getSourceElementType() const {
2871   return SrcElementTy;
2872 }
2873 
2874 Type *GetElementPtrConstantExpr::getResultElementType() const {
2875   return ResElementTy;
2876 }
2877 
2878 //===----------------------------------------------------------------------===//
2879 //                       ConstantData* implementations
2880 
2881 Type *ConstantDataSequential::getElementType() const {
2882   if (ArrayType *ATy = dyn_cast<ArrayType>(getType()))
2883     return ATy->getElementType();
2884   return cast<VectorType>(getType())->getElementType();
2885 }
2886 
2887 StringRef ConstantDataSequential::getRawDataValues() const {
2888   return StringRef(DataElements, getNumElements()*getElementByteSize());
2889 }
2890 
2891 bool ConstantDataSequential::isElementTypeCompatible(Type *Ty) {
2892   if (Ty->isHalfTy() || Ty->isBFloatTy() || Ty->isFloatTy() || Ty->isDoubleTy())
2893     return true;
2894   if (auto *IT = dyn_cast<IntegerType>(Ty)) {
2895     switch (IT->getBitWidth()) {
2896     case 8:
2897     case 16:
2898     case 32:
2899     case 64:
2900       return true;
2901     default: break;
2902     }
2903   }
2904   return false;
2905 }
2906 
2907 unsigned ConstantDataSequential::getNumElements() const {
2908   if (ArrayType *AT = dyn_cast<ArrayType>(getType()))
2909     return AT->getNumElements();
2910   return cast<FixedVectorType>(getType())->getNumElements();
2911 }
2912 
2913 
2914 uint64_t ConstantDataSequential::getElementByteSize() const {
2915   return getElementType()->getPrimitiveSizeInBits()/8;
2916 }
2917 
2918 /// Return the start of the specified element.
2919 const char *ConstantDataSequential::getElementPointer(unsigned Elt) const {
2920   assert(Elt < getNumElements() && "Invalid Elt");
2921   return DataElements+Elt*getElementByteSize();
2922 }
2923 
2924 
2925 /// Return true if the array is empty or all zeros.
2926 static bool isAllZeros(StringRef Arr) {
2927   for (char I : Arr)
2928     if (I != 0)
2929       return false;
2930   return true;
2931 }
2932 
2933 /// This is the underlying implementation of all of the
2934 /// ConstantDataSequential::get methods.  They all thunk down to here, providing
2935 /// the correct element type.  We take the bytes in as a StringRef because
2936 /// we *want* an underlying "char*" to avoid TBAA type punning violations.
2937 Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
2938 #ifndef NDEBUG
2939   if (ArrayType *ATy = dyn_cast<ArrayType>(Ty))
2940     assert(isElementTypeCompatible(ATy->getElementType()));
2941   else
2942     assert(isElementTypeCompatible(cast<VectorType>(Ty)->getElementType()));
2943 #endif
2944   // If the elements are all zero or there are no elements, return a CAZ, which
2945   // is more dense and canonical.
2946   if (isAllZeros(Elements))
2947     return ConstantAggregateZero::get(Ty);
2948 
2949   // Do a lookup to see if we have already formed one of these.
2950   auto &Slot =
2951       *Ty->getContext()
2952            .pImpl->CDSConstants.insert(std::make_pair(Elements, nullptr))
2953            .first;
2954 
2955   // The bucket can point to a linked list of different CDS's that have the same
2956   // body but different types.  For example, 0,0,0,1 could be a 4 element array
2957   // of i8, or a 1-element array of i32.  They'll both end up in the same
2958   /// StringMap bucket, linked up by their Next pointers.  Walk the list.
2959   std::unique_ptr<ConstantDataSequential> *Entry = &Slot.second;
2960   for (; *Entry; Entry = &(*Entry)->Next)
2961     if ((*Entry)->getType() == Ty)
2962       return Entry->get();
2963 
2964   // Okay, we didn't get a hit.  Create a node of the right class, link it in,
2965   // and return it.
2966   if (isa<ArrayType>(Ty)) {
2967     // Use reset because std::make_unique can't access the constructor.
2968     Entry->reset(new ConstantDataArray(Ty, Slot.first().data()));
2969     return Entry->get();
2970   }
2971 
2972   assert(isa<VectorType>(Ty));
2973   // Use reset because std::make_unique can't access the constructor.
2974   Entry->reset(new ConstantDataVector(Ty, Slot.first().data()));
2975   return Entry->get();
2976 }
2977 
2978 void ConstantDataSequential::destroyConstantImpl() {
2979   // Remove the constant from the StringMap.
2980   StringMap<std::unique_ptr<ConstantDataSequential>> &CDSConstants =
2981       getType()->getContext().pImpl->CDSConstants;
2982 
2983   auto Slot = CDSConstants.find(getRawDataValues());
2984 
2985   assert(Slot != CDSConstants.end() && "CDS not found in uniquing table");
2986 
2987   std::unique_ptr<ConstantDataSequential> *Entry = &Slot->getValue();
2988 
2989   // Remove the entry from the hash table.
2990   if (!(*Entry)->Next) {
2991     // If there is only one value in the bucket (common case) it must be this
2992     // entry, and removing the entry should remove the bucket completely.
2993     assert(Entry->get() == this && "Hash mismatch in ConstantDataSequential");
2994     getContext().pImpl->CDSConstants.erase(Slot);
2995     return;
2996   }
2997 
2998   // Otherwise, there are multiple entries linked off the bucket, unlink the
2999   // node we care about but keep the bucket around.
3000   while (true) {
3001     std::unique_ptr<ConstantDataSequential> &Node = *Entry;
3002     assert(Node && "Didn't find entry in its uniquing hash table!");
3003     // If we found our entry, unlink it from the list and we're done.
3004     if (Node.get() == this) {
3005       Node = std::move(Node->Next);
3006       return;
3007     }
3008 
3009     Entry = &Node->Next;
3010   }
3011 }
3012 
3013 /// getFP() constructors - Return a constant of array type with a float
3014 /// element type taken from argument `ElementType', and count taken from
3015 /// argument `Elts'.  The amount of bits of the contained type must match the
3016 /// number of bits of the type contained in the passed in ArrayRef.
3017 /// (i.e. half or bfloat for 16bits, float for 32bits, double for 64bits) Note
3018 /// that this can return a ConstantAggregateZero object.
3019 Constant *ConstantDataArray::getFP(Type *ElementType, ArrayRef<uint16_t> Elts) {
3020   assert((ElementType->isHalfTy() || ElementType->isBFloatTy()) &&
3021          "Element type is not a 16-bit float type");
3022   Type *Ty = ArrayType::get(ElementType, Elts.size());
3023   const char *Data = reinterpret_cast<const char *>(Elts.data());
3024   return getImpl(StringRef(Data, Elts.size() * 2), Ty);
3025 }
3026 Constant *ConstantDataArray::getFP(Type *ElementType, ArrayRef<uint32_t> Elts) {
3027   assert(ElementType->isFloatTy() && "Element type is not a 32-bit float type");
3028   Type *Ty = ArrayType::get(ElementType, Elts.size());
3029   const char *Data = reinterpret_cast<const char *>(Elts.data());
3030   return getImpl(StringRef(Data, Elts.size() * 4), Ty);
3031 }
3032 Constant *ConstantDataArray::getFP(Type *ElementType, ArrayRef<uint64_t> Elts) {
3033   assert(ElementType->isDoubleTy() &&
3034          "Element type is not a 64-bit float type");
3035   Type *Ty = ArrayType::get(ElementType, Elts.size());
3036   const char *Data = reinterpret_cast<const char *>(Elts.data());
3037   return getImpl(StringRef(Data, Elts.size() * 8), Ty);
3038 }
3039 
3040 Constant *ConstantDataArray::getString(LLVMContext &Context,
3041                                        StringRef Str, bool AddNull) {
3042   if (!AddNull) {
3043     const uint8_t *Data = Str.bytes_begin();
3044     return get(Context, makeArrayRef(Data, Str.size()));
3045   }
3046 
3047   SmallVector<uint8_t, 64> ElementVals;
3048   ElementVals.append(Str.begin(), Str.end());
3049   ElementVals.push_back(0);
3050   return get(Context, ElementVals);
3051 }
3052 
3053 /// get() constructors - Return a constant with vector type with an element
3054 /// count and element type matching the ArrayRef passed in.  Note that this
3055 /// can return a ConstantAggregateZero object.
3056 Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint8_t> Elts){
3057   auto *Ty = FixedVectorType::get(Type::getInt8Ty(Context), Elts.size());
3058   const char *Data = reinterpret_cast<const char *>(Elts.data());
3059   return getImpl(StringRef(Data, Elts.size() * 1), Ty);
3060 }
3061 Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint16_t> Elts){
3062   auto *Ty = FixedVectorType::get(Type::getInt16Ty(Context), Elts.size());
3063   const char *Data = reinterpret_cast<const char *>(Elts.data());
3064   return getImpl(StringRef(Data, Elts.size() * 2), Ty);
3065 }
3066 Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint32_t> Elts){
3067   auto *Ty = FixedVectorType::get(Type::getInt32Ty(Context), Elts.size());
3068   const char *Data = reinterpret_cast<const char *>(Elts.data());
3069   return getImpl(StringRef(Data, Elts.size() * 4), Ty);
3070 }
3071 Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<uint64_t> Elts){
3072   auto *Ty = FixedVectorType::get(Type::getInt64Ty(Context), Elts.size());
3073   const char *Data = reinterpret_cast<const char *>(Elts.data());
3074   return getImpl(StringRef(Data, Elts.size() * 8), Ty);
3075 }
3076 Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<float> Elts) {
3077   auto *Ty = FixedVectorType::get(Type::getFloatTy(Context), Elts.size());
3078   const char *Data = reinterpret_cast<const char *>(Elts.data());
3079   return getImpl(StringRef(Data, Elts.size() * 4), Ty);
3080 }
3081 Constant *ConstantDataVector::get(LLVMContext &Context, ArrayRef<double> Elts) {
3082   auto *Ty = FixedVectorType::get(Type::getDoubleTy(Context), Elts.size());
3083   const char *Data = reinterpret_cast<const char *>(Elts.data());
3084   return getImpl(StringRef(Data, Elts.size() * 8), Ty);
3085 }
3086 
3087 /// getFP() constructors - Return a constant of vector type with a float
3088 /// element type taken from argument `ElementType', and count taken from
3089 /// argument `Elts'.  The amount of bits of the contained type must match the
3090 /// number of bits of the type contained in the passed in ArrayRef.
3091 /// (i.e. half or bfloat for 16bits, float for 32bits, double for 64bits) Note
3092 /// that this can return a ConstantAggregateZero object.
3093 Constant *ConstantDataVector::getFP(Type *ElementType,
3094                                     ArrayRef<uint16_t> Elts) {
3095   assert((ElementType->isHalfTy() || ElementType->isBFloatTy()) &&
3096          "Element type is not a 16-bit float type");
3097   auto *Ty = FixedVectorType::get(ElementType, Elts.size());
3098   const char *Data = reinterpret_cast<const char *>(Elts.data());
3099   return getImpl(StringRef(Data, Elts.size() * 2), Ty);
3100 }
3101 Constant *ConstantDataVector::getFP(Type *ElementType,
3102                                     ArrayRef<uint32_t> Elts) {
3103   assert(ElementType->isFloatTy() && "Element type is not a 32-bit float type");
3104   auto *Ty = FixedVectorType::get(ElementType, Elts.size());
3105   const char *Data = reinterpret_cast<const char *>(Elts.data());
3106   return getImpl(StringRef(Data, Elts.size() * 4), Ty);
3107 }
3108 Constant *ConstantDataVector::getFP(Type *ElementType,
3109                                     ArrayRef<uint64_t> Elts) {
3110   assert(ElementType->isDoubleTy() &&
3111          "Element type is not a 64-bit float type");
3112   auto *Ty = FixedVectorType::get(ElementType, Elts.size());
3113   const char *Data = reinterpret_cast<const char *>(Elts.data());
3114   return getImpl(StringRef(Data, Elts.size() * 8), Ty);
3115 }
3116 
3117 Constant *ConstantDataVector::getSplat(unsigned NumElts, Constant *V) {
3118   assert(isElementTypeCompatible(V->getType()) &&
3119          "Element type not compatible with ConstantData");
3120   if (ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
3121     if (CI->getType()->isIntegerTy(8)) {
3122       SmallVector<uint8_t, 16> Elts(NumElts, CI->getZExtValue());
3123       return get(V->getContext(), Elts);
3124     }
3125     if (CI->getType()->isIntegerTy(16)) {
3126       SmallVector<uint16_t, 16> Elts(NumElts, CI->getZExtValue());
3127       return get(V->getContext(), Elts);
3128     }
3129     if (CI->getType()->isIntegerTy(32)) {
3130       SmallVector<uint32_t, 16> Elts(NumElts, CI->getZExtValue());
3131       return get(V->getContext(), Elts);
3132     }
3133     assert(CI->getType()->isIntegerTy(64) && "Unsupported ConstantData type");
3134     SmallVector<uint64_t, 16> Elts(NumElts, CI->getZExtValue());
3135     return get(V->getContext(), Elts);
3136   }
3137 
3138   if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
3139     if (CFP->getType()->isHalfTy()) {
3140       SmallVector<uint16_t, 16> Elts(
3141           NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
3142       return getFP(V->getType(), Elts);
3143     }
3144     if (CFP->getType()->isBFloatTy()) {
3145       SmallVector<uint16_t, 16> Elts(
3146           NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
3147       return getFP(V->getType(), Elts);
3148     }
3149     if (CFP->getType()->isFloatTy()) {
3150       SmallVector<uint32_t, 16> Elts(
3151           NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
3152       return getFP(V->getType(), Elts);
3153     }
3154     if (CFP->getType()->isDoubleTy()) {
3155       SmallVector<uint64_t, 16> Elts(
3156           NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
3157       return getFP(V->getType(), Elts);
3158     }
3159   }
3160   return ConstantVector::getSplat(ElementCount::getFixed(NumElts), V);
3161 }
3162 
3163 
3164 uint64_t ConstantDataSequential::getElementAsInteger(unsigned Elt) const {
3165   assert(isa<IntegerType>(getElementType()) &&
3166          "Accessor can only be used when element is an integer");
3167   const char *EltPtr = getElementPointer(Elt);
3168 
3169   // The data is stored in host byte order, make sure to cast back to the right
3170   // type to load with the right endianness.
3171   switch (getElementType()->getIntegerBitWidth()) {
3172   default: llvm_unreachable("Invalid bitwidth for CDS");
3173   case 8:
3174     return *reinterpret_cast<const uint8_t *>(EltPtr);
3175   case 16:
3176     return *reinterpret_cast<const uint16_t *>(EltPtr);
3177   case 32:
3178     return *reinterpret_cast<const uint32_t *>(EltPtr);
3179   case 64:
3180     return *reinterpret_cast<const uint64_t *>(EltPtr);
3181   }
3182 }
3183 
3184 APInt ConstantDataSequential::getElementAsAPInt(unsigned Elt) const {
3185   assert(isa<IntegerType>(getElementType()) &&
3186          "Accessor can only be used when element is an integer");
3187   const char *EltPtr = getElementPointer(Elt);
3188 
3189   // The data is stored in host byte order, make sure to cast back to the right
3190   // type to load with the right endianness.
3191   switch (getElementType()->getIntegerBitWidth()) {
3192   default: llvm_unreachable("Invalid bitwidth for CDS");
3193   case 8: {
3194     auto EltVal = *reinterpret_cast<const uint8_t *>(EltPtr);
3195     return APInt(8, EltVal);
3196   }
3197   case 16: {
3198     auto EltVal = *reinterpret_cast<const uint16_t *>(EltPtr);
3199     return APInt(16, EltVal);
3200   }
3201   case 32: {
3202     auto EltVal = *reinterpret_cast<const uint32_t *>(EltPtr);
3203     return APInt(32, EltVal);
3204   }
3205   case 64: {
3206     auto EltVal = *reinterpret_cast<const uint64_t *>(EltPtr);
3207     return APInt(64, EltVal);
3208   }
3209   }
3210 }
3211 
3212 APFloat ConstantDataSequential::getElementAsAPFloat(unsigned Elt) const {
3213   const char *EltPtr = getElementPointer(Elt);
3214 
3215   switch (getElementType()->getTypeID()) {
3216   default:
3217     llvm_unreachable("Accessor can only be used when element is float/double!");
3218   case Type::HalfTyID: {
3219     auto EltVal = *reinterpret_cast<const uint16_t *>(EltPtr);
3220     return APFloat(APFloat::IEEEhalf(), APInt(16, EltVal));
3221   }
3222   case Type::BFloatTyID: {
3223     auto EltVal = *reinterpret_cast<const uint16_t *>(EltPtr);
3224     return APFloat(APFloat::BFloat(), APInt(16, EltVal));
3225   }
3226   case Type::FloatTyID: {
3227     auto EltVal = *reinterpret_cast<const uint32_t *>(EltPtr);
3228     return APFloat(APFloat::IEEEsingle(), APInt(32, EltVal));
3229   }
3230   case Type::DoubleTyID: {
3231     auto EltVal = *reinterpret_cast<const uint64_t *>(EltPtr);
3232     return APFloat(APFloat::IEEEdouble(), APInt(64, EltVal));
3233   }
3234   }
3235 }
3236 
3237 float ConstantDataSequential::getElementAsFloat(unsigned Elt) const {
3238   assert(getElementType()->isFloatTy() &&
3239          "Accessor can only be used when element is a 'float'");
3240   return *reinterpret_cast<const float *>(getElementPointer(Elt));
3241 }
3242 
3243 double ConstantDataSequential::getElementAsDouble(unsigned Elt) const {
3244   assert(getElementType()->isDoubleTy() &&
3245          "Accessor can only be used when element is a 'float'");
3246   return *reinterpret_cast<const double *>(getElementPointer(Elt));
3247 }
3248 
3249 Constant *ConstantDataSequential::getElementAsConstant(unsigned Elt) const {
3250   if (getElementType()->isHalfTy() || getElementType()->isBFloatTy() ||
3251       getElementType()->isFloatTy() || getElementType()->isDoubleTy())
3252     return ConstantFP::get(getContext(), getElementAsAPFloat(Elt));
3253 
3254   return ConstantInt::get(getElementType(), getElementAsInteger(Elt));
3255 }
3256 
3257 bool ConstantDataSequential::isString(unsigned CharSize) const {
3258   return isa<ArrayType>(getType()) && getElementType()->isIntegerTy(CharSize);
3259 }
3260 
3261 bool ConstantDataSequential::isCString() const {
3262   if (!isString())
3263     return false;
3264 
3265   StringRef Str = getAsString();
3266 
3267   // The last value must be nul.
3268   if (Str.back() != 0) return false;
3269 
3270   // Other elements must be non-nul.
3271   return Str.drop_back().find(0) == StringRef::npos;
3272 }
3273 
3274 bool ConstantDataVector::isSplatData() const {
3275   const char *Base = getRawDataValues().data();
3276 
3277   // Compare elements 1+ to the 0'th element.
3278   unsigned EltSize = getElementByteSize();
3279   for (unsigned i = 1, e = getNumElements(); i != e; ++i)
3280     if (memcmp(Base, Base+i*EltSize, EltSize))
3281       return false;
3282 
3283   return true;
3284 }
3285 
3286 bool ConstantDataVector::isSplat() const {
3287   if (!IsSplatSet) {
3288     IsSplatSet = true;
3289     IsSplat = isSplatData();
3290   }
3291   return IsSplat;
3292 }
3293 
3294 Constant *ConstantDataVector::getSplatValue() const {
3295   // If they're all the same, return the 0th one as a representative.
3296   return isSplat() ? getElementAsConstant(0) : nullptr;
3297 }
3298 
3299 //===----------------------------------------------------------------------===//
3300 //                handleOperandChange implementations
3301 
3302 /// Update this constant array to change uses of
3303 /// 'From' to be uses of 'To'.  This must update the uniquing data structures
3304 /// etc.
3305 ///
3306 /// Note that we intentionally replace all uses of From with To here.  Consider
3307 /// a large array that uses 'From' 1000 times.  By handling this case all here,
3308 /// ConstantArray::handleOperandChange is only invoked once, and that
3309 /// single invocation handles all 1000 uses.  Handling them one at a time would
3310 /// work, but would be really slow because it would have to unique each updated
3311 /// array instance.
3312 ///
3313 void Constant::handleOperandChange(Value *From, Value *To) {
3314   Value *Replacement = nullptr;
3315   switch (getValueID()) {
3316   default:
3317     llvm_unreachable("Not a constant!");
3318 #define HANDLE_CONSTANT(Name)                                                  \
3319   case Value::Name##Val:                                                       \
3320     Replacement = cast<Name>(this)->handleOperandChangeImpl(From, To);         \
3321     break;
3322 #include "llvm/IR/Value.def"
3323   }
3324 
3325   // If handleOperandChangeImpl returned nullptr, then it handled
3326   // replacing itself and we don't want to delete or replace anything else here.
3327   if (!Replacement)
3328     return;
3329 
3330   // I do need to replace this with an existing value.
3331   assert(Replacement != this && "I didn't contain From!");
3332 
3333   // Everyone using this now uses the replacement.
3334   replaceAllUsesWith(Replacement);
3335 
3336   // Delete the old constant!
3337   destroyConstant();
3338 }
3339 
3340 Value *ConstantArray::handleOperandChangeImpl(Value *From, Value *To) {
3341   assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
3342   Constant *ToC = cast<Constant>(To);
3343 
3344   SmallVector<Constant*, 8> Values;
3345   Values.reserve(getNumOperands());  // Build replacement array.
3346 
3347   // Fill values with the modified operands of the constant array.  Also,
3348   // compute whether this turns into an all-zeros array.
3349   unsigned NumUpdated = 0;
3350 
3351   // Keep track of whether all the values in the array are "ToC".
3352   bool AllSame = true;
3353   Use *OperandList = getOperandList();
3354   unsigned OperandNo = 0;
3355   for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
3356     Constant *Val = cast<Constant>(O->get());
3357     if (Val == From) {
3358       OperandNo = (O - OperandList);
3359       Val = ToC;
3360       ++NumUpdated;
3361     }
3362     Values.push_back(Val);
3363     AllSame &= Val == ToC;
3364   }
3365 
3366   if (AllSame && ToC->isNullValue())
3367     return ConstantAggregateZero::get(getType());
3368 
3369   if (AllSame && isa<UndefValue>(ToC))
3370     return UndefValue::get(getType());
3371 
3372   // Check for any other type of constant-folding.
3373   if (Constant *C = getImpl(getType(), Values))
3374     return C;
3375 
3376   // Update to the new value.
3377   return getContext().pImpl->ArrayConstants.replaceOperandsInPlace(
3378       Values, this, From, ToC, NumUpdated, OperandNo);
3379 }
3380 
3381 Value *ConstantStruct::handleOperandChangeImpl(Value *From, Value *To) {
3382   assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
3383   Constant *ToC = cast<Constant>(To);
3384 
3385   Use *OperandList = getOperandList();
3386 
3387   SmallVector<Constant*, 8> Values;
3388   Values.reserve(getNumOperands());  // Build replacement struct.
3389 
3390   // Fill values with the modified operands of the constant struct.  Also,
3391   // compute whether this turns into an all-zeros struct.
3392   unsigned NumUpdated = 0;
3393   bool AllSame = true;
3394   unsigned OperandNo = 0;
3395   for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O) {
3396     Constant *Val = cast<Constant>(O->get());
3397     if (Val == From) {
3398       OperandNo = (O - OperandList);
3399       Val = ToC;
3400       ++NumUpdated;
3401     }
3402     Values.push_back(Val);
3403     AllSame &= Val == ToC;
3404   }
3405 
3406   if (AllSame && ToC->isNullValue())
3407     return ConstantAggregateZero::get(getType());
3408 
3409   if (AllSame && isa<UndefValue>(ToC))
3410     return UndefValue::get(getType());
3411 
3412   // Update to the new value.
3413   return getContext().pImpl->StructConstants.replaceOperandsInPlace(
3414       Values, this, From, ToC, NumUpdated, OperandNo);
3415 }
3416 
3417 Value *ConstantVector::handleOperandChangeImpl(Value *From, Value *To) {
3418   assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
3419   Constant *ToC = cast<Constant>(To);
3420 
3421   SmallVector<Constant*, 8> Values;
3422   Values.reserve(getNumOperands());  // Build replacement array...
3423   unsigned NumUpdated = 0;
3424   unsigned OperandNo = 0;
3425   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
3426     Constant *Val = getOperand(i);
3427     if (Val == From) {
3428       OperandNo = i;
3429       ++NumUpdated;
3430       Val = ToC;
3431     }
3432     Values.push_back(Val);
3433   }
3434 
3435   if (Constant *C = getImpl(Values))
3436     return C;
3437 
3438   // Update to the new value.
3439   return getContext().pImpl->VectorConstants.replaceOperandsInPlace(
3440       Values, this, From, ToC, NumUpdated, OperandNo);
3441 }
3442 
3443 Value *ConstantExpr::handleOperandChangeImpl(Value *From, Value *ToV) {
3444   assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
3445   Constant *To = cast<Constant>(ToV);
3446 
3447   SmallVector<Constant*, 8> NewOps;
3448   unsigned NumUpdated = 0;
3449   unsigned OperandNo = 0;
3450   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
3451     Constant *Op = getOperand(i);
3452     if (Op == From) {
3453       OperandNo = i;
3454       ++NumUpdated;
3455       Op = To;
3456     }
3457     NewOps.push_back(Op);
3458   }
3459   assert(NumUpdated && "I didn't contain From!");
3460 
3461   if (Constant *C = getWithOperands(NewOps, getType(), true))
3462     return C;
3463 
3464   // Update to the new value.
3465   return getContext().pImpl->ExprConstants.replaceOperandsInPlace(
3466       NewOps, this, From, To, NumUpdated, OperandNo);
3467 }
3468 
3469 Instruction *ConstantExpr::getAsInstruction() const {
3470   SmallVector<Value *, 4> ValueOperands(operands());
3471   ArrayRef<Value*> Ops(ValueOperands);
3472 
3473   switch (getOpcode()) {
3474   case Instruction::Trunc:
3475   case Instruction::ZExt:
3476   case Instruction::SExt:
3477   case Instruction::FPTrunc:
3478   case Instruction::FPExt:
3479   case Instruction::UIToFP:
3480   case Instruction::SIToFP:
3481   case Instruction::FPToUI:
3482   case Instruction::FPToSI:
3483   case Instruction::PtrToInt:
3484   case Instruction::IntToPtr:
3485   case Instruction::BitCast:
3486   case Instruction::AddrSpaceCast:
3487     return CastInst::Create((Instruction::CastOps)getOpcode(),
3488                             Ops[0], getType());
3489   case Instruction::Select:
3490     return SelectInst::Create(Ops[0], Ops[1], Ops[2]);
3491   case Instruction::InsertElement:
3492     return InsertElementInst::Create(Ops[0], Ops[1], Ops[2]);
3493   case Instruction::ExtractElement:
3494     return ExtractElementInst::Create(Ops[0], Ops[1]);
3495   case Instruction::InsertValue:
3496     return InsertValueInst::Create(Ops[0], Ops[1], getIndices());
3497   case Instruction::ExtractValue:
3498     return ExtractValueInst::Create(Ops[0], getIndices());
3499   case Instruction::ShuffleVector:
3500     return new ShuffleVectorInst(Ops[0], Ops[1], getShuffleMask());
3501 
3502   case Instruction::GetElementPtr: {
3503     const auto *GO = cast<GEPOperator>(this);
3504     if (GO->isInBounds())
3505       return GetElementPtrInst::CreateInBounds(GO->getSourceElementType(),
3506                                                Ops[0], Ops.slice(1));
3507     return GetElementPtrInst::Create(GO->getSourceElementType(), Ops[0],
3508                                      Ops.slice(1));
3509   }
3510   case Instruction::ICmp:
3511   case Instruction::FCmp:
3512     return CmpInst::Create((Instruction::OtherOps)getOpcode(),
3513                            (CmpInst::Predicate)getPredicate(), Ops[0], Ops[1]);
3514   case Instruction::FNeg:
3515     return UnaryOperator::Create((Instruction::UnaryOps)getOpcode(), Ops[0]);
3516   default:
3517     assert(getNumOperands() == 2 && "Must be binary operator?");
3518     BinaryOperator *BO =
3519       BinaryOperator::Create((Instruction::BinaryOps)getOpcode(),
3520                              Ops[0], Ops[1]);
3521     if (isa<OverflowingBinaryOperator>(BO)) {
3522       BO->setHasNoUnsignedWrap(SubclassOptionalData &
3523                                OverflowingBinaryOperator::NoUnsignedWrap);
3524       BO->setHasNoSignedWrap(SubclassOptionalData &
3525                              OverflowingBinaryOperator::NoSignedWrap);
3526     }
3527     if (isa<PossiblyExactOperator>(BO))
3528       BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact);
3529     return BO;
3530   }
3531 }
3532