f2d879428480f07d8d9be35891785fc4adcf22e8
[oota-llvm.git] / lib / VMCore / Constants.cpp
1 //===-- Constants.cpp - Implement Constant nodes --------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the Constant* classes.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Constants.h"
15 #include "LLVMContextImpl.h"
16 #include "ConstantFold.h"
17 #include "llvm/DerivedTypes.h"
18 #include "llvm/GlobalValue.h"
19 #include "llvm/Instructions.h"
20 #include "llvm/Module.h"
21 #include "llvm/Operator.h"
22 #include "llvm/ADT/FoldingSet.h"
23 #include "llvm/ADT/StringExtras.h"
24 #include "llvm/ADT/StringMap.h"
25 #include "llvm/Support/Compiler.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 "llvm/Support/GetElementPtrTypeIterator.h"
32 #include "llvm/ADT/DenseMap.h"
33 #include "llvm/ADT/SmallVector.h"
34 #include "llvm/ADT/STLExtras.h"
35 #include <algorithm>
36 #include <cstdarg>
37 using namespace llvm;
38
39 //===----------------------------------------------------------------------===//
40 //                              Constant Class
41 //===----------------------------------------------------------------------===//
42
43 void Constant::anchor() { }
44
45 bool Constant::isNegativeZeroValue() const {
46   // Floating point values have an explicit -0.0 value.
47   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
48     return CFP->isZero() && CFP->isNegative();
49   
50   // Otherwise, just use +0.0.
51   return isNullValue();
52 }
53
54 bool Constant::isNullValue() const {
55   // 0 is null.
56   if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
57     return CI->isZero();
58   
59   // +0.0 is null.
60   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
61     return CFP->isZero() && !CFP->isNegative();
62
63   // constant zero is zero for aggregates and cpnull is null for pointers.
64   return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
65 }
66
67 bool Constant::isAllOnesValue() const {
68   // Check for -1 integers
69   if (const ConstantInt *CI = dyn_cast<ConstantInt>(this))
70     return CI->isMinusOne();
71
72   // Check for FP which are bitcasted from -1 integers
73   if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
74     return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
75
76   // Check for constant vectors which are splats of -1 values.
77   if (const ConstantVector *CV = dyn_cast<ConstantVector>(this))
78     if (Constant *Splat = CV->getSplatValue())
79       return Splat->isAllOnesValue();
80
81   return false;
82 }
83
84 // Constructor to create a '0' constant of arbitrary type...
85 Constant *Constant::getNullValue(Type *Ty) {
86   switch (Ty->getTypeID()) {
87   case Type::IntegerTyID:
88     return ConstantInt::get(Ty, 0);
89   case Type::HalfTyID:
90     return ConstantFP::get(Ty->getContext(),
91                            APFloat::getZero(APFloat::IEEEhalf));
92   case Type::FloatTyID:
93     return ConstantFP::get(Ty->getContext(),
94                            APFloat::getZero(APFloat::IEEEsingle));
95   case Type::DoubleTyID:
96     return ConstantFP::get(Ty->getContext(),
97                            APFloat::getZero(APFloat::IEEEdouble));
98   case Type::X86_FP80TyID:
99     return ConstantFP::get(Ty->getContext(),
100                            APFloat::getZero(APFloat::x87DoubleExtended));
101   case Type::FP128TyID:
102     return ConstantFP::get(Ty->getContext(),
103                            APFloat::getZero(APFloat::IEEEquad));
104   case Type::PPC_FP128TyID:
105     return ConstantFP::get(Ty->getContext(),
106                            APFloat(APInt::getNullValue(128)));
107   case Type::PointerTyID:
108     return ConstantPointerNull::get(cast<PointerType>(Ty));
109   case Type::StructTyID:
110   case Type::ArrayTyID:
111   case Type::VectorTyID:
112     return ConstantAggregateZero::get(Ty);
113   default:
114     // Function, Label, or Opaque type?
115     assert(0 && "Cannot create a null constant of that type!");
116     return 0;
117   }
118 }
119
120 Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) {
121   Type *ScalarTy = Ty->getScalarType();
122
123   // Create the base integer constant.
124   Constant *C = ConstantInt::get(Ty->getContext(), V);
125
126   // Convert an integer to a pointer, if necessary.
127   if (PointerType *PTy = dyn_cast<PointerType>(ScalarTy))
128     C = ConstantExpr::getIntToPtr(C, PTy);
129
130   // Broadcast a scalar to a vector, if necessary.
131   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
132     C = ConstantVector::get(std::vector<Constant *>(VTy->getNumElements(), C));
133
134   return C;
135 }
136
137 Constant *Constant::getAllOnesValue(Type *Ty) {
138   if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
139     return ConstantInt::get(Ty->getContext(),
140                             APInt::getAllOnesValue(ITy->getBitWidth()));
141
142   if (Ty->isFloatingPointTy()) {
143     APFloat FL = APFloat::getAllOnesValue(Ty->getPrimitiveSizeInBits(),
144                                           !Ty->isPPC_FP128Ty());
145     return ConstantFP::get(Ty->getContext(), FL);
146   }
147
148   SmallVector<Constant*, 16> Elts;
149   VectorType *VTy = cast<VectorType>(Ty);
150   Elts.resize(VTy->getNumElements(), getAllOnesValue(VTy->getElementType()));
151   assert(Elts[0] && "Invalid AllOnes value!");
152   return cast<ConstantVector>(ConstantVector::get(Elts));
153 }
154
155 void Constant::destroyConstantImpl() {
156   // When a Constant is destroyed, there may be lingering
157   // references to the constant by other constants in the constant pool.  These
158   // constants are implicitly dependent on the module that is being deleted,
159   // but they don't know that.  Because we only find out when the CPV is
160   // deleted, we must now notify all of our users (that should only be
161   // Constants) that they are, in fact, invalid now and should be deleted.
162   //
163   while (!use_empty()) {
164     Value *V = use_back();
165 #ifndef NDEBUG      // Only in -g mode...
166     if (!isa<Constant>(V)) {
167       dbgs() << "While deleting: " << *this
168              << "\n\nUse still stuck around after Def is destroyed: "
169              << *V << "\n\n";
170     }
171 #endif
172     assert(isa<Constant>(V) && "References remain to Constant being destroyed");
173     Constant *CV = cast<Constant>(V);
174     CV->destroyConstant();
175
176     // The constant should remove itself from our use list...
177     assert((use_empty() || use_back() != V) && "Constant not removed!");
178   }
179
180   // Value has no outstanding references it is safe to delete it now...
181   delete this;
182 }
183
184 /// canTrap - Return true if evaluation of this constant could trap.  This is
185 /// true for things like constant expressions that could divide by zero.
186 bool Constant::canTrap() const {
187   assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
188   // The only thing that could possibly trap are constant exprs.
189   const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
190   if (!CE) return false;
191   
192   // ConstantExpr traps if any operands can trap. 
193   for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
194     if (CE->getOperand(i)->canTrap()) 
195       return true;
196
197   // Otherwise, only specific operations can trap.
198   switch (CE->getOpcode()) {
199   default:
200     return false;
201   case Instruction::UDiv:
202   case Instruction::SDiv:
203   case Instruction::FDiv:
204   case Instruction::URem:
205   case Instruction::SRem:
206   case Instruction::FRem:
207     // Div and rem can trap if the RHS is not known to be non-zero.
208     if (!isa<ConstantInt>(CE->getOperand(1)) ||CE->getOperand(1)->isNullValue())
209       return true;
210     return false;
211   }
212 }
213
214 /// isConstantUsed - Return true if the constant has users other than constant
215 /// exprs and other dangling things.
216 bool Constant::isConstantUsed() const {
217   for (const_use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
218     const Constant *UC = dyn_cast<Constant>(*UI);
219     if (UC == 0 || isa<GlobalValue>(UC))
220       return true;
221     
222     if (UC->isConstantUsed())
223       return true;
224   }
225   return false;
226 }
227
228
229
230 /// getRelocationInfo - This method classifies the entry according to
231 /// whether or not it may generate a relocation entry.  This must be
232 /// conservative, so if it might codegen to a relocatable entry, it should say
233 /// so.  The return values are:
234 /// 
235 ///  NoRelocation: This constant pool entry is guaranteed to never have a
236 ///     relocation applied to it (because it holds a simple constant like
237 ///     '4').
238 ///  LocalRelocation: This entry has relocations, but the entries are
239 ///     guaranteed to be resolvable by the static linker, so the dynamic
240 ///     linker will never see them.
241 ///  GlobalRelocations: This entry may have arbitrary relocations.
242 ///
243 /// FIXME: This really should not be in VMCore.
244 Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
245   if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
246     if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
247       return LocalRelocation;  // Local to this file/library.
248     return GlobalRelocations;    // Global reference.
249   }
250   
251   if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
252     return BA->getFunction()->getRelocationInfo();
253   
254   // While raw uses of blockaddress need to be relocated, differences between
255   // two of them don't when they are for labels in the same function.  This is a
256   // common idiom when creating a table for the indirect goto extension, so we
257   // handle it efficiently here.
258   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(this))
259     if (CE->getOpcode() == Instruction::Sub) {
260       ConstantExpr *LHS = dyn_cast<ConstantExpr>(CE->getOperand(0));
261       ConstantExpr *RHS = dyn_cast<ConstantExpr>(CE->getOperand(1));
262       if (LHS && RHS &&
263           LHS->getOpcode() == Instruction::PtrToInt &&
264           RHS->getOpcode() == Instruction::PtrToInt &&
265           isa<BlockAddress>(LHS->getOperand(0)) &&
266           isa<BlockAddress>(RHS->getOperand(0)) &&
267           cast<BlockAddress>(LHS->getOperand(0))->getFunction() ==
268             cast<BlockAddress>(RHS->getOperand(0))->getFunction())
269         return NoRelocation;
270     }
271   
272   PossibleRelocationsTy Result = NoRelocation;
273   for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
274     Result = std::max(Result,
275                       cast<Constant>(getOperand(i))->getRelocationInfo());
276   
277   return Result;
278 }
279
280
281 /// getVectorElements - This method, which is only valid on constant of vector
282 /// type, returns the elements of the vector in the specified smallvector.
283 /// This handles breaking down a vector undef into undef elements, etc.  For
284 /// constant exprs and other cases we can't handle, we return an empty vector.
285 void Constant::getVectorElements(SmallVectorImpl<Constant*> &Elts) const {
286   assert(getType()->isVectorTy() && "Not a vector constant!");
287   
288   if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) {
289     for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i)
290       Elts.push_back(CV->getOperand(i));
291     return;
292   }
293   
294   VectorType *VT = cast<VectorType>(getType());
295   if (isa<ConstantAggregateZero>(this)) {
296     Elts.assign(VT->getNumElements(), 
297                 Constant::getNullValue(VT->getElementType()));
298     return;
299   }
300   
301   if (isa<UndefValue>(this)) {
302     Elts.assign(VT->getNumElements(), UndefValue::get(VT->getElementType()));
303     return;
304   }
305   
306   // Unknown type, must be constant expr etc.
307 }
308
309
310 /// removeDeadUsersOfConstant - If the specified constantexpr is dead, remove
311 /// it.  This involves recursively eliminating any dead users of the
312 /// constantexpr.
313 static bool removeDeadUsersOfConstant(const Constant *C) {
314   if (isa<GlobalValue>(C)) return false; // Cannot remove this
315   
316   while (!C->use_empty()) {
317     const Constant *User = dyn_cast<Constant>(C->use_back());
318     if (!User) return false; // Non-constant usage;
319     if (!removeDeadUsersOfConstant(User))
320       return false; // Constant wasn't dead
321   }
322   
323   const_cast<Constant*>(C)->destroyConstant();
324   return true;
325 }
326
327
328 /// removeDeadConstantUsers - If there are any dead constant users dangling
329 /// off of this constant, remove them.  This method is useful for clients
330 /// that want to check to see if a global is unused, but don't want to deal
331 /// with potentially dead constants hanging off of the globals.
332 void Constant::removeDeadConstantUsers() const {
333   Value::const_use_iterator I = use_begin(), E = use_end();
334   Value::const_use_iterator LastNonDeadUser = E;
335   while (I != E) {
336     const Constant *User = dyn_cast<Constant>(*I);
337     if (User == 0) {
338       LastNonDeadUser = I;
339       ++I;
340       continue;
341     }
342     
343     if (!removeDeadUsersOfConstant(User)) {
344       // If the constant wasn't dead, remember that this was the last live use
345       // and move on to the next constant.
346       LastNonDeadUser = I;
347       ++I;
348       continue;
349     }
350     
351     // If the constant was dead, then the iterator is invalidated.
352     if (LastNonDeadUser == E) {
353       I = use_begin();
354       if (I == E) break;
355     } else {
356       I = LastNonDeadUser;
357       ++I;
358     }
359   }
360 }
361
362
363
364 //===----------------------------------------------------------------------===//
365 //                                ConstantInt
366 //===----------------------------------------------------------------------===//
367
368 void ConstantInt::anchor() { }
369
370 ConstantInt::ConstantInt(IntegerType *Ty, const APInt& V)
371   : Constant(Ty, ConstantIntVal, 0, 0), Val(V) {
372   assert(V.getBitWidth() == Ty->getBitWidth() && "Invalid constant for type");
373 }
374
375 ConstantInt *ConstantInt::getTrue(LLVMContext &Context) {
376   LLVMContextImpl *pImpl = Context.pImpl;
377   if (!pImpl->TheTrueVal)
378     pImpl->TheTrueVal = ConstantInt::get(Type::getInt1Ty(Context), 1);
379   return pImpl->TheTrueVal;
380 }
381
382 ConstantInt *ConstantInt::getFalse(LLVMContext &Context) {
383   LLVMContextImpl *pImpl = Context.pImpl;
384   if (!pImpl->TheFalseVal)
385     pImpl->TheFalseVal = ConstantInt::get(Type::getInt1Ty(Context), 0);
386   return pImpl->TheFalseVal;
387 }
388
389 Constant *ConstantInt::getTrue(Type *Ty) {
390   VectorType *VTy = dyn_cast<VectorType>(Ty);
391   if (!VTy) {
392     assert(Ty->isIntegerTy(1) && "True must be i1 or vector of i1.");
393     return ConstantInt::getTrue(Ty->getContext());
394   }
395   assert(VTy->getElementType()->isIntegerTy(1) &&
396          "True must be vector of i1 or i1.");
397   SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
398                                    ConstantInt::getTrue(Ty->getContext()));
399   return ConstantVector::get(Splat);
400 }
401
402 Constant *ConstantInt::getFalse(Type *Ty) {
403   VectorType *VTy = dyn_cast<VectorType>(Ty);
404   if (!VTy) {
405     assert(Ty->isIntegerTy(1) && "False must be i1 or vector of i1.");
406     return ConstantInt::getFalse(Ty->getContext());
407   }
408   assert(VTy->getElementType()->isIntegerTy(1) &&
409          "False must be vector of i1 or i1.");
410   SmallVector<Constant*, 16> Splat(VTy->getNumElements(),
411                                    ConstantInt::getFalse(Ty->getContext()));
412   return ConstantVector::get(Splat);
413 }
414
415
416 // Get a ConstantInt from an APInt. Note that the value stored in the DenseMap 
417 // as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
418 // operator== and operator!= to ensure that the DenseMap doesn't attempt to
419 // compare APInt's of different widths, which would violate an APInt class
420 // invariant which generates an assertion.
421 ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
422   // Get the corresponding integer type for the bit width of the value.
423   IntegerType *ITy = IntegerType::get(Context, V.getBitWidth());
424   // get an existing value or the insertion position
425   DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
426   ConstantInt *&Slot = Context.pImpl->IntConstants[Key]; 
427   if (!Slot) Slot = new ConstantInt(ITy, V);
428   return Slot;
429 }
430
431 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) {
432   Constant *C = get(cast<IntegerType>(Ty->getScalarType()), V, isSigned);
433
434   // For vectors, broadcast the value.
435   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
436     return ConstantVector::get(SmallVector<Constant*,
437                                            16>(VTy->getNumElements(), C));
438
439   return C;
440 }
441
442 ConstantInt* ConstantInt::get(IntegerType* Ty, uint64_t V, 
443                               bool isSigned) {
444   return get(Ty->getContext(), APInt(Ty->getBitWidth(), V, isSigned));
445 }
446
447 ConstantInt* ConstantInt::getSigned(IntegerType* Ty, int64_t V) {
448   return get(Ty, V, true);
449 }
450
451 Constant *ConstantInt::getSigned(Type *Ty, int64_t V) {
452   return get(Ty, V, true);
453 }
454
455 Constant *ConstantInt::get(Type* Ty, const APInt& V) {
456   ConstantInt *C = get(Ty->getContext(), V);
457   assert(C->getType() == Ty->getScalarType() &&
458          "ConstantInt type doesn't match the type implied by its value!");
459
460   // For vectors, broadcast the value.
461   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
462     return ConstantVector::get(
463       SmallVector<Constant *, 16>(VTy->getNumElements(), C));
464
465   return C;
466 }
467
468 ConstantInt* ConstantInt::get(IntegerType* Ty, StringRef Str,
469                               uint8_t radix) {
470   return get(Ty->getContext(), APInt(Ty->getBitWidth(), Str, radix));
471 }
472
473 //===----------------------------------------------------------------------===//
474 //                                ConstantFP
475 //===----------------------------------------------------------------------===//
476
477 static const fltSemantics *TypeToFloatSemantics(Type *Ty) {
478   if (Ty->isHalfTy())
479     return &APFloat::IEEEhalf;
480   if (Ty->isFloatTy())
481     return &APFloat::IEEEsingle;
482   if (Ty->isDoubleTy())
483     return &APFloat::IEEEdouble;
484   if (Ty->isX86_FP80Ty())
485     return &APFloat::x87DoubleExtended;
486   else if (Ty->isFP128Ty())
487     return &APFloat::IEEEquad;
488   
489   assert(Ty->isPPC_FP128Ty() && "Unknown FP format");
490   return &APFloat::PPCDoubleDouble;
491 }
492
493 void ConstantFP::anchor() { }
494
495 /// get() - This returns a constant fp for the specified value in the
496 /// specified type.  This should only be used for simple constant values like
497 /// 2.0/1.0 etc, that are known-valid both as double and as the target format.
498 Constant *ConstantFP::get(Type* Ty, double V) {
499   LLVMContext &Context = Ty->getContext();
500   
501   APFloat FV(V);
502   bool ignored;
503   FV.convert(*TypeToFloatSemantics(Ty->getScalarType()),
504              APFloat::rmNearestTiesToEven, &ignored);
505   Constant *C = get(Context, FV);
506
507   // For vectors, broadcast the value.
508   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
509     return ConstantVector::get(
510       SmallVector<Constant *, 16>(VTy->getNumElements(), C));
511
512   return C;
513 }
514
515
516 Constant *ConstantFP::get(Type* Ty, StringRef Str) {
517   LLVMContext &Context = Ty->getContext();
518
519   APFloat FV(*TypeToFloatSemantics(Ty->getScalarType()), Str);
520   Constant *C = get(Context, FV);
521
522   // For vectors, broadcast the value.
523   if (VectorType *VTy = dyn_cast<VectorType>(Ty))
524     return ConstantVector::get(
525       SmallVector<Constant *, 16>(VTy->getNumElements(), C));
526
527   return C; 
528 }
529
530
531 ConstantFP* ConstantFP::getNegativeZero(Type* Ty) {
532   LLVMContext &Context = Ty->getContext();
533   APFloat apf = cast <ConstantFP>(Constant::getNullValue(Ty))->getValueAPF();
534   apf.changeSign();
535   return get(Context, apf);
536 }
537
538
539 Constant *ConstantFP::getZeroValueForNegation(Type* Ty) {
540   if (VectorType *PTy = dyn_cast<VectorType>(Ty))
541     if (PTy->getElementType()->isFloatingPointTy()) {
542       SmallVector<Constant*, 16> zeros(PTy->getNumElements(),
543                            getNegativeZero(PTy->getElementType()));
544       return ConstantVector::get(zeros);
545     }
546
547   if (Ty->isFloatingPointTy()) 
548     return getNegativeZero(Ty);
549
550   return Constant::getNullValue(Ty);
551 }
552
553
554 // ConstantFP accessors.
555 ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
556   DenseMapAPFloatKeyInfo::KeyTy Key(V);
557   
558   LLVMContextImpl* pImpl = Context.pImpl;
559   
560   ConstantFP *&Slot = pImpl->FPConstants[Key];
561     
562   if (!Slot) {
563     Type *Ty;
564     if (&V.getSemantics() == &APFloat::IEEEhalf)
565       Ty = Type::getHalfTy(Context);
566     else if (&V.getSemantics() == &APFloat::IEEEsingle)
567       Ty = Type::getFloatTy(Context);
568     else if (&V.getSemantics() == &APFloat::IEEEdouble)
569       Ty = Type::getDoubleTy(Context);
570     else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
571       Ty = Type::getX86_FP80Ty(Context);
572     else if (&V.getSemantics() == &APFloat::IEEEquad)
573       Ty = Type::getFP128Ty(Context);
574     else {
575       assert(&V.getSemantics() == &APFloat::PPCDoubleDouble && 
576              "Unknown FP format");
577       Ty = Type::getPPC_FP128Ty(Context);
578     }
579     Slot = new ConstantFP(Ty, V);
580   }
581   
582   return Slot;
583 }
584
585 ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) {
586   const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
587   return ConstantFP::get(Ty->getContext(),
588                          APFloat::getInf(Semantics, Negative));
589 }
590
591 ConstantFP::ConstantFP(Type *Ty, const APFloat& V)
592   : Constant(Ty, ConstantFPVal, 0, 0), Val(V) {
593   assert(&V.getSemantics() == TypeToFloatSemantics(Ty) &&
594          "FP type Mismatch");
595 }
596
597 bool ConstantFP::isExactlyValue(const APFloat &V) const {
598   return Val.bitwiseIsEqual(V);
599 }
600
601 //===----------------------------------------------------------------------===//
602 //                            ConstantXXX Classes
603 //===----------------------------------------------------------------------===//
604
605
606 ConstantArray::ConstantArray(ArrayType *T, ArrayRef<Constant *> V)
607   : Constant(T, ConstantArrayVal,
608              OperandTraits<ConstantArray>::op_end(this) - V.size(),
609              V.size()) {
610   assert(V.size() == T->getNumElements() &&
611          "Invalid initializer vector for constant array");
612   for (unsigned i = 0, e = V.size(); i != e; ++i)
613     assert(V[i]->getType() == T->getElementType() &&
614            "Initializer for array element doesn't match array element type!");
615   std::copy(V.begin(), V.end(), op_begin());
616 }
617
618 Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) {
619   for (unsigned i = 0, e = V.size(); i != e; ++i) {
620     assert(V[i]->getType() == Ty->getElementType() &&
621            "Wrong type in array element initializer");
622   }
623   LLVMContextImpl *pImpl = Ty->getContext().pImpl;
624   // If this is an all-zero array, return a ConstantAggregateZero object
625   if (!V.empty()) {
626     Constant *C = V[0];
627     if (!C->isNullValue())
628       return pImpl->ArrayConstants.getOrCreate(Ty, V);
629     
630     for (unsigned i = 1, e = V.size(); i != e; ++i)
631       if (V[i] != C)
632         return pImpl->ArrayConstants.getOrCreate(Ty, V);
633   }
634   
635   return ConstantAggregateZero::get(Ty);
636 }
637
638 /// ConstantArray::get(const string&) - Return an array that is initialized to
639 /// contain the specified string.  If length is zero then a null terminator is 
640 /// added to the specified string so that it may be used in a natural way. 
641 /// Otherwise, the length parameter specifies how much of the string to use 
642 /// and it won't be null terminated.
643 ///
644 Constant *ConstantArray::get(LLVMContext &Context, StringRef Str,
645                              bool AddNull) {
646   std::vector<Constant*> ElementVals;
647   ElementVals.reserve(Str.size() + size_t(AddNull));
648   for (unsigned i = 0; i < Str.size(); ++i)
649     ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), Str[i]));
650
651   // Add a null terminator to the string...
652   if (AddNull) {
653     ElementVals.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
654   }
655
656   ArrayType *ATy = ArrayType::get(Type::getInt8Ty(Context), ElementVals.size());
657   return get(ATy, ElementVals);
658 }
659
660 /// getTypeForElements - Return an anonymous struct type to use for a constant
661 /// with the specified set of elements.  The list must not be empty.
662 StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
663                                                ArrayRef<Constant*> V,
664                                                bool Packed) {
665   SmallVector<Type*, 16> EltTypes;
666   for (unsigned i = 0, e = V.size(); i != e; ++i)
667     EltTypes.push_back(V[i]->getType());
668   
669   return StructType::get(Context, EltTypes, Packed);
670 }
671
672
673 StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
674                                                bool Packed) {
675   assert(!V.empty() &&
676          "ConstantStruct::getTypeForElements cannot be called on empty list");
677   return getTypeForElements(V[0]->getContext(), V, Packed);
678 }
679
680
681 ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
682   : Constant(T, ConstantStructVal,
683              OperandTraits<ConstantStruct>::op_end(this) - V.size(),
684              V.size()) {
685   assert(V.size() == T->getNumElements() &&
686          "Invalid initializer vector for constant structure");
687   for (unsigned i = 0, e = V.size(); i != e; ++i)
688     assert((T->isOpaque() || V[i]->getType() == T->getElementType(i)) &&
689            "Initializer for struct element doesn't match struct element type!");
690   std::copy(V.begin(), V.end(), op_begin());
691 }
692
693 // ConstantStruct accessors.
694 Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) {
695   // Create a ConstantAggregateZero value if all elements are zeros.
696   for (unsigned i = 0, e = V.size(); i != e; ++i)
697     if (!V[i]->isNullValue())
698       return ST->getContext().pImpl->StructConstants.getOrCreate(ST, V);
699
700   assert((ST->isOpaque() || ST->getNumElements() == V.size()) &&
701          "Incorrect # elements specified to ConstantStruct::get");
702   return ConstantAggregateZero::get(ST);
703 }
704
705 Constant *ConstantStruct::get(StructType *T, ...) {
706   va_list ap;
707   SmallVector<Constant*, 8> Values;
708   va_start(ap, T);
709   while (Constant *Val = va_arg(ap, llvm::Constant*))
710     Values.push_back(Val);
711   va_end(ap);
712   return get(T, Values);
713 }
714
715 ConstantVector::ConstantVector(VectorType *T, ArrayRef<Constant *> V)
716   : Constant(T, ConstantVectorVal,
717              OperandTraits<ConstantVector>::op_end(this) - V.size(),
718              V.size()) {
719   for (size_t i = 0, e = V.size(); i != e; i++)
720     assert(V[i]->getType() == T->getElementType() &&
721            "Initializer for vector element doesn't match vector element type!");
722   std::copy(V.begin(), V.end(), op_begin());
723 }
724
725 // ConstantVector accessors.
726 Constant *ConstantVector::get(ArrayRef<Constant*> V) {
727   assert(!V.empty() && "Vectors can't be empty");
728   VectorType *T = VectorType::get(V.front()->getType(), V.size());
729   LLVMContextImpl *pImpl = T->getContext().pImpl;
730
731   // If this is an all-undef or all-zero vector, return a
732   // ConstantAggregateZero or UndefValue.
733   Constant *C = V[0];
734   bool isZero = C->isNullValue();
735   bool isUndef = isa<UndefValue>(C);
736
737   if (isZero || isUndef) {
738     for (unsigned i = 1, e = V.size(); i != e; ++i)
739       if (V[i] != C) {
740         isZero = isUndef = false;
741         break;
742       }
743   }
744   
745   if (isZero)
746     return ConstantAggregateZero::get(T);
747   if (isUndef)
748     return UndefValue::get(T);
749     
750   return pImpl->VectorConstants.getOrCreate(T, V);
751 }
752
753 // Utility function for determining if a ConstantExpr is a CastOp or not. This
754 // can't be inline because we don't want to #include Instruction.h into
755 // Constant.h
756 bool ConstantExpr::isCast() const {
757   return Instruction::isCast(getOpcode());
758 }
759
760 bool ConstantExpr::isCompare() const {
761   return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
762 }
763
764 bool ConstantExpr::isGEPWithNoNotionalOverIndexing() const {
765   if (getOpcode() != Instruction::GetElementPtr) return false;
766
767   gep_type_iterator GEPI = gep_type_begin(this), E = gep_type_end(this);
768   User::const_op_iterator OI = llvm::next(this->op_begin());
769
770   // Skip the first index, as it has no static limit.
771   ++GEPI;
772   ++OI;
773
774   // The remaining indices must be compile-time known integers within the
775   // bounds of the corresponding notional static array types.
776   for (; GEPI != E; ++GEPI, ++OI) {
777     ConstantInt *CI = dyn_cast<ConstantInt>(*OI);
778     if (!CI) return false;
779     if (ArrayType *ATy = dyn_cast<ArrayType>(*GEPI))
780       if (CI->getValue().getActiveBits() > 64 ||
781           CI->getZExtValue() >= ATy->getNumElements())
782         return false;
783   }
784
785   // All the indices checked out.
786   return true;
787 }
788
789 bool ConstantExpr::hasIndices() const {
790   return getOpcode() == Instruction::ExtractValue ||
791          getOpcode() == Instruction::InsertValue;
792 }
793
794 ArrayRef<unsigned> ConstantExpr::getIndices() const {
795   if (const ExtractValueConstantExpr *EVCE =
796         dyn_cast<ExtractValueConstantExpr>(this))
797     return EVCE->Indices;
798
799   return cast<InsertValueConstantExpr>(this)->Indices;
800 }
801
802 unsigned ConstantExpr::getPredicate() const {
803   assert(isCompare());
804   return ((const CompareConstantExpr*)this)->predicate;
805 }
806
807 /// getWithOperandReplaced - Return a constant expression identical to this
808 /// one, but with the specified operand set to the specified value.
809 Constant *
810 ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
811   assert(OpNo < getNumOperands() && "Operand num is out of range!");
812   assert(Op->getType() == getOperand(OpNo)->getType() &&
813          "Replacing operand with value of different type!");
814   if (getOperand(OpNo) == Op)
815     return const_cast<ConstantExpr*>(this);
816   
817   Constant *Op0, *Op1, *Op2;
818   switch (getOpcode()) {
819   case Instruction::Trunc:
820   case Instruction::ZExt:
821   case Instruction::SExt:
822   case Instruction::FPTrunc:
823   case Instruction::FPExt:
824   case Instruction::UIToFP:
825   case Instruction::SIToFP:
826   case Instruction::FPToUI:
827   case Instruction::FPToSI:
828   case Instruction::PtrToInt:
829   case Instruction::IntToPtr:
830   case Instruction::BitCast:
831     return ConstantExpr::getCast(getOpcode(), Op, getType());
832   case Instruction::Select:
833     Op0 = (OpNo == 0) ? Op : getOperand(0);
834     Op1 = (OpNo == 1) ? Op : getOperand(1);
835     Op2 = (OpNo == 2) ? Op : getOperand(2);
836     return ConstantExpr::getSelect(Op0, Op1, Op2);
837   case Instruction::InsertElement:
838     Op0 = (OpNo == 0) ? Op : getOperand(0);
839     Op1 = (OpNo == 1) ? Op : getOperand(1);
840     Op2 = (OpNo == 2) ? Op : getOperand(2);
841     return ConstantExpr::getInsertElement(Op0, Op1, Op2);
842   case Instruction::ExtractElement:
843     Op0 = (OpNo == 0) ? Op : getOperand(0);
844     Op1 = (OpNo == 1) ? Op : getOperand(1);
845     return ConstantExpr::getExtractElement(Op0, Op1);
846   case Instruction::ShuffleVector:
847     Op0 = (OpNo == 0) ? Op : getOperand(0);
848     Op1 = (OpNo == 1) ? Op : getOperand(1);
849     Op2 = (OpNo == 2) ? Op : getOperand(2);
850     return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
851   case Instruction::GetElementPtr: {
852     SmallVector<Constant*, 8> Ops;
853     Ops.resize(getNumOperands()-1);
854     for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
855       Ops[i-1] = getOperand(i);
856     if (OpNo == 0)
857       return
858         ConstantExpr::getGetElementPtr(Op, Ops,
859                                        cast<GEPOperator>(this)->isInBounds());
860     Ops[OpNo-1] = Op;
861     return
862       ConstantExpr::getGetElementPtr(getOperand(0), Ops,
863                                      cast<GEPOperator>(this)->isInBounds());
864   }
865   default:
866     assert(getNumOperands() == 2 && "Must be binary operator?");
867     Op0 = (OpNo == 0) ? Op : getOperand(0);
868     Op1 = (OpNo == 1) ? Op : getOperand(1);
869     return ConstantExpr::get(getOpcode(), Op0, Op1, SubclassOptionalData);
870   }
871 }
872
873 /// getWithOperands - This returns the current constant expression with the
874 /// operands replaced with the specified values.  The specified array must
875 /// have the same number of operands as our current one.
876 Constant *ConstantExpr::
877 getWithOperands(ArrayRef<Constant*> Ops, Type *Ty) const {
878   assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
879   bool AnyChange = Ty != getType();
880   for (unsigned i = 0; i != Ops.size(); ++i)
881     AnyChange |= Ops[i] != getOperand(i);
882   
883   if (!AnyChange)  // No operands changed, return self.
884     return const_cast<ConstantExpr*>(this);
885
886   switch (getOpcode()) {
887   case Instruction::Trunc:
888   case Instruction::ZExt:
889   case Instruction::SExt:
890   case Instruction::FPTrunc:
891   case Instruction::FPExt:
892   case Instruction::UIToFP:
893   case Instruction::SIToFP:
894   case Instruction::FPToUI:
895   case Instruction::FPToSI:
896   case Instruction::PtrToInt:
897   case Instruction::IntToPtr:
898   case Instruction::BitCast:
899     return ConstantExpr::getCast(getOpcode(), Ops[0], Ty);
900   case Instruction::Select:
901     return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
902   case Instruction::InsertElement:
903     return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
904   case Instruction::ExtractElement:
905     return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
906   case Instruction::ShuffleVector:
907     return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
908   case Instruction::GetElementPtr:
909     return
910       ConstantExpr::getGetElementPtr(Ops[0], Ops.slice(1),
911                                      cast<GEPOperator>(this)->isInBounds());
912   case Instruction::ICmp:
913   case Instruction::FCmp:
914     return ConstantExpr::getCompare(getPredicate(), Ops[0], Ops[1]);
915   default:
916     assert(getNumOperands() == 2 && "Must be binary operator?");
917     return ConstantExpr::get(getOpcode(), Ops[0], Ops[1], SubclassOptionalData);
918   }
919 }
920
921
922 //===----------------------------------------------------------------------===//
923 //                      isValueValidForType implementations
924
925 bool ConstantInt::isValueValidForType(Type *Ty, uint64_t Val) {
926   unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
927   if (Ty == Type::getInt1Ty(Ty->getContext()))
928     return Val == 0 || Val == 1;
929   if (NumBits >= 64)
930     return true; // always true, has to fit in largest type
931   uint64_t Max = (1ll << NumBits) - 1;
932   return Val <= Max;
933 }
934
935 bool ConstantInt::isValueValidForType(Type *Ty, int64_t Val) {
936   unsigned NumBits = cast<IntegerType>(Ty)->getBitWidth(); // assert okay
937   if (Ty == Type::getInt1Ty(Ty->getContext()))
938     return Val == 0 || Val == 1 || Val == -1;
939   if (NumBits >= 64)
940     return true; // always true, has to fit in largest type
941   int64_t Min = -(1ll << (NumBits-1));
942   int64_t Max = (1ll << (NumBits-1)) - 1;
943   return (Val >= Min && Val <= Max);
944 }
945
946 bool ConstantFP::isValueValidForType(Type *Ty, const APFloat& Val) {
947   // convert modifies in place, so make a copy.
948   APFloat Val2 = APFloat(Val);
949   bool losesInfo;
950   switch (Ty->getTypeID()) {
951   default:
952     return false;         // These can't be represented as floating point!
953
954   // FIXME rounding mode needs to be more flexible
955   case Type::HalfTyID: {
956     if (&Val2.getSemantics() == &APFloat::IEEEhalf)
957       return true;
958     Val2.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven, &losesInfo);
959     return !losesInfo;
960   }
961   case Type::FloatTyID: {
962     if (&Val2.getSemantics() == &APFloat::IEEEsingle)
963       return true;
964     Val2.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven, &losesInfo);
965     return !losesInfo;
966   }
967   case Type::DoubleTyID: {
968     if (&Val2.getSemantics() == &APFloat::IEEEhalf ||
969         &Val2.getSemantics() == &APFloat::IEEEsingle ||
970         &Val2.getSemantics() == &APFloat::IEEEdouble)
971       return true;
972     Val2.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &losesInfo);
973     return !losesInfo;
974   }
975   case Type::X86_FP80TyID:
976     return &Val2.getSemantics() == &APFloat::IEEEhalf ||
977            &Val2.getSemantics() == &APFloat::IEEEsingle || 
978            &Val2.getSemantics() == &APFloat::IEEEdouble ||
979            &Val2.getSemantics() == &APFloat::x87DoubleExtended;
980   case Type::FP128TyID:
981     return &Val2.getSemantics() == &APFloat::IEEEhalf ||
982            &Val2.getSemantics() == &APFloat::IEEEsingle || 
983            &Val2.getSemantics() == &APFloat::IEEEdouble ||
984            &Val2.getSemantics() == &APFloat::IEEEquad;
985   case Type::PPC_FP128TyID:
986     return &Val2.getSemantics() == &APFloat::IEEEhalf ||
987            &Val2.getSemantics() == &APFloat::IEEEsingle || 
988            &Val2.getSemantics() == &APFloat::IEEEdouble ||
989            &Val2.getSemantics() == &APFloat::PPCDoubleDouble;
990   }
991 }
992
993 //===----------------------------------------------------------------------===//
994 //                      Factory Function Implementation
995
996 ConstantAggregateZero *ConstantAggregateZero::get(Type *Ty) {
997   assert((Ty->isStructTy() || Ty->isArrayTy() || Ty->isVectorTy()) &&
998          "Cannot create an aggregate zero of non-aggregate type!");
999   
1000   OwningPtr<ConstantAggregateZero> &Entry =
1001     Ty->getContext().pImpl->CAZConstants[Ty];
1002   if (Entry == 0)
1003     Entry.reset(new ConstantAggregateZero(Ty));
1004   
1005   return Entry.get();
1006 }
1007
1008 /// destroyConstant - Remove the constant from the constant table...
1009 ///
1010 void ConstantAggregateZero::destroyConstant() {
1011   // Drop ownership of the CAZ object before removing the entry so that it
1012   // doesn't get double deleted.
1013   LLVMContextImpl::CAZMapTy &CAZConstants = getContext().pImpl->CAZConstants;
1014   LLVMContextImpl::CAZMapTy::iterator I = CAZConstants.find(getType());
1015   assert(I != CAZConstants.end() && "CAZ object not in uniquing map");
1016   I->second.take();
1017   
1018   // Actually remove the entry from the DenseMap now, which won't free the
1019   // constant.
1020   CAZConstants.erase(I);
1021   
1022   // Free the constant and any dangling references to it.
1023   destroyConstantImpl();
1024 }
1025
1026 /// destroyConstant - Remove the constant from the constant table...
1027 ///
1028 void ConstantArray::destroyConstant() {
1029   getType()->getContext().pImpl->ArrayConstants.remove(this);
1030   destroyConstantImpl();
1031 }
1032
1033 /// isString - This method returns true if the array is an array of i8, and 
1034 /// if the elements of the array are all ConstantInt's.
1035 bool ConstantArray::isString() const {
1036   // Check the element type for i8...
1037   if (!getType()->getElementType()->isIntegerTy(8))
1038     return false;
1039   // Check the elements to make sure they are all integers, not constant
1040   // expressions.
1041   for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1042     if (!isa<ConstantInt>(getOperand(i)))
1043       return false;
1044   return true;
1045 }
1046
1047 /// isCString - This method returns true if the array is a string (see
1048 /// isString) and it ends in a null byte \\0 and does not contains any other
1049 /// null bytes except its terminator.
1050 bool ConstantArray::isCString() const {
1051   // Check the element type for i8...
1052   if (!getType()->getElementType()->isIntegerTy(8))
1053     return false;
1054
1055   // Last element must be a null.
1056   if (!getOperand(getNumOperands()-1)->isNullValue())
1057     return false;
1058   // Other elements must be non-null integers.
1059   for (unsigned i = 0, e = getNumOperands()-1; i != e; ++i) {
1060     if (!isa<ConstantInt>(getOperand(i)))
1061       return false;
1062     if (getOperand(i)->isNullValue())
1063       return false;
1064   }
1065   return true;
1066 }
1067
1068
1069 /// convertToString - Helper function for getAsString() and getAsCString().
1070 static std::string convertToString(const User *U, unsigned len) {
1071   std::string Result;
1072   Result.reserve(len);
1073   for (unsigned i = 0; i != len; ++i)
1074     Result.push_back((char)cast<ConstantInt>(U->getOperand(i))->getZExtValue());
1075   return Result;
1076 }
1077
1078 /// getAsString - If this array is isString(), then this method converts the
1079 /// array to an std::string and returns it.  Otherwise, it asserts out.
1080 ///
1081 std::string ConstantArray::getAsString() const {
1082   assert(isString() && "Not a string!");
1083   return convertToString(this, getNumOperands());
1084 }
1085
1086
1087 /// getAsCString - If this array is isCString(), then this method converts the
1088 /// array (without the trailing null byte) to an std::string and returns it.
1089 /// Otherwise, it asserts out.
1090 ///
1091 std::string ConstantArray::getAsCString() const {
1092   assert(isCString() && "Not a string!");
1093   return convertToString(this, getNumOperands() - 1);
1094 }
1095
1096
1097 //---- ConstantStruct::get() implementation...
1098 //
1099
1100 // destroyConstant - Remove the constant from the constant table...
1101 //
1102 void ConstantStruct::destroyConstant() {
1103   getType()->getContext().pImpl->StructConstants.remove(this);
1104   destroyConstantImpl();
1105 }
1106
1107 // destroyConstant - Remove the constant from the constant table...
1108 //
1109 void ConstantVector::destroyConstant() {
1110   getType()->getContext().pImpl->VectorConstants.remove(this);
1111   destroyConstantImpl();
1112 }
1113
1114 /// getSplatValue - If this is a splat constant, where all of the
1115 /// elements have the same value, return that value. Otherwise return null.
1116 Constant *ConstantVector::getSplatValue() const {
1117   // Check out first element.
1118   Constant *Elt = getOperand(0);
1119   // Then make sure all remaining elements point to the same value.
1120   for (unsigned I = 1, E = getNumOperands(); I < E; ++I)
1121     if (getOperand(I) != Elt)
1122       return 0;
1123   return Elt;
1124 }
1125
1126 //---- ConstantPointerNull::get() implementation.
1127 //
1128
1129 ConstantPointerNull *ConstantPointerNull::get(PointerType *Ty) {
1130   OwningPtr<ConstantPointerNull> &Entry =
1131     Ty->getContext().pImpl->CPNConstants[Ty];
1132   if (Entry == 0)
1133     Entry.reset(new ConstantPointerNull(Ty));
1134   
1135   return Entry.get();
1136 }
1137
1138 // destroyConstant - Remove the constant from the constant table...
1139 //
1140 void ConstantPointerNull::destroyConstant() {
1141   // Drop ownership of the CPN object before removing the entry so that it
1142   // doesn't get double deleted.
1143   LLVMContextImpl::CPNMapTy &CPNConstants = getContext().pImpl->CPNConstants;
1144   LLVMContextImpl::CPNMapTy::iterator I = CPNConstants.find(getType());
1145   assert(I != CPNConstants.end() && "CPN object not in uniquing map");
1146   I->second.take();
1147   
1148   // Actually remove the entry from the DenseMap now, which won't free the
1149   // constant.
1150   CPNConstants.erase(I);
1151   
1152   // Free the constant and any dangling references to it.
1153   destroyConstantImpl();
1154 }
1155
1156
1157 //---- UndefValue::get() implementation.
1158 //
1159
1160 UndefValue *UndefValue::get(Type *Ty) {
1161   OwningPtr<UndefValue> &Entry = Ty->getContext().pImpl->UVConstants[Ty];
1162   if (Entry == 0)
1163     Entry.reset(new UndefValue(Ty));
1164   
1165   return Entry.get();
1166 }
1167
1168 // destroyConstant - Remove the constant from the constant table.
1169 //
1170 void UndefValue::destroyConstant() {
1171   // Drop ownership of the object before removing the entry so that it
1172   // doesn't get double deleted.
1173   LLVMContextImpl::UVMapTy &UVConstants = getContext().pImpl->UVConstants;
1174   LLVMContextImpl::UVMapTy::iterator I = UVConstants.find(getType());
1175   assert(I != UVConstants.end() && "UV object not in uniquing map");
1176   I->second.take();
1177   
1178   // Actually remove the entry from the DenseMap now, which won't free the
1179   // constant.
1180   UVConstants.erase(I);
1181   
1182   // Free the constant and any dangling references to it.
1183   destroyConstantImpl();
1184 }
1185
1186 //---- BlockAddress::get() implementation.
1187 //
1188
1189 BlockAddress *BlockAddress::get(BasicBlock *BB) {
1190   assert(BB->getParent() != 0 && "Block must have a parent");
1191   return get(BB->getParent(), BB);
1192 }
1193
1194 BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) {
1195   BlockAddress *&BA =
1196     F->getContext().pImpl->BlockAddresses[std::make_pair(F, BB)];
1197   if (BA == 0)
1198     BA = new BlockAddress(F, BB);
1199   
1200   assert(BA->getFunction() == F && "Basic block moved between functions");
1201   return BA;
1202 }
1203
1204 BlockAddress::BlockAddress(Function *F, BasicBlock *BB)
1205 : Constant(Type::getInt8PtrTy(F->getContext()), Value::BlockAddressVal,
1206            &Op<0>(), 2) {
1207   setOperand(0, F);
1208   setOperand(1, BB);
1209   BB->AdjustBlockAddressRefCount(1);
1210 }
1211
1212
1213 // destroyConstant - Remove the constant from the constant table.
1214 //
1215 void BlockAddress::destroyConstant() {
1216   getFunction()->getType()->getContext().pImpl
1217     ->BlockAddresses.erase(std::make_pair(getFunction(), getBasicBlock()));
1218   getBasicBlock()->AdjustBlockAddressRefCount(-1);
1219   destroyConstantImpl();
1220 }
1221
1222 void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) {
1223   // This could be replacing either the Basic Block or the Function.  In either
1224   // case, we have to remove the map entry.
1225   Function *NewF = getFunction();
1226   BasicBlock *NewBB = getBasicBlock();
1227   
1228   if (U == &Op<0>())
1229     NewF = cast<Function>(To);
1230   else
1231     NewBB = cast<BasicBlock>(To);
1232   
1233   // See if the 'new' entry already exists, if not, just update this in place
1234   // and return early.
1235   BlockAddress *&NewBA =
1236     getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1237   if (NewBA == 0) {
1238     getBasicBlock()->AdjustBlockAddressRefCount(-1);
1239     
1240     // Remove the old entry, this can't cause the map to rehash (just a
1241     // tombstone will get added).
1242     getContext().pImpl->BlockAddresses.erase(std::make_pair(getFunction(),
1243                                                             getBasicBlock()));
1244     NewBA = this;
1245     setOperand(0, NewF);
1246     setOperand(1, NewBB);
1247     getBasicBlock()->AdjustBlockAddressRefCount(1);
1248     return;
1249   }
1250
1251   // Otherwise, I do need to replace this with an existing value.
1252   assert(NewBA != this && "I didn't contain From!");
1253   
1254   // Everyone using this now uses the replacement.
1255   replaceAllUsesWith(NewBA);
1256   
1257   destroyConstant();
1258 }
1259
1260 //---- ConstantExpr::get() implementations.
1261 //
1262
1263 /// This is a utility function to handle folding of casts and lookup of the
1264 /// cast in the ExprConstants map. It is used by the various get* methods below.
1265 static inline Constant *getFoldedCast(
1266   Instruction::CastOps opc, Constant *C, Type *Ty) {
1267   assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
1268   // Fold a few common cases
1269   if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
1270     return FC;
1271
1272   LLVMContextImpl *pImpl = Ty->getContext().pImpl;
1273
1274   // Look up the constant in the table first to ensure uniqueness
1275   std::vector<Constant*> argVec(1, C);
1276   ExprMapKeyType Key(opc, argVec);
1277   
1278   return pImpl->ExprConstants.getOrCreate(Ty, Key);
1279 }
1280  
1281 Constant *ConstantExpr::getCast(unsigned oc, Constant *C, Type *Ty) {
1282   Instruction::CastOps opc = Instruction::CastOps(oc);
1283   assert(Instruction::isCast(opc) && "opcode out of range");
1284   assert(C && Ty && "Null arguments to getCast");
1285   assert(CastInst::castIsValid(opc, C, Ty) && "Invalid constantexpr cast!");
1286
1287   switch (opc) {
1288   default:
1289     llvm_unreachable("Invalid cast opcode");
1290   case Instruction::Trunc:    return getTrunc(C, Ty);
1291   case Instruction::ZExt:     return getZExt(C, Ty);
1292   case Instruction::SExt:     return getSExt(C, Ty);
1293   case Instruction::FPTrunc:  return getFPTrunc(C, Ty);
1294   case Instruction::FPExt:    return getFPExtend(C, Ty);
1295   case Instruction::UIToFP:   return getUIToFP(C, Ty);
1296   case Instruction::SIToFP:   return getSIToFP(C, Ty);
1297   case Instruction::FPToUI:   return getFPToUI(C, Ty);
1298   case Instruction::FPToSI:   return getFPToSI(C, Ty);
1299   case Instruction::PtrToInt: return getPtrToInt(C, Ty);
1300   case Instruction::IntToPtr: return getIntToPtr(C, Ty);
1301   case Instruction::BitCast:  return getBitCast(C, Ty);
1302   }
1303
1304
1305 Constant *ConstantExpr::getZExtOrBitCast(Constant *C, Type *Ty) {
1306   if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
1307     return getBitCast(C, Ty);
1308   return getZExt(C, Ty);
1309 }
1310
1311 Constant *ConstantExpr::getSExtOrBitCast(Constant *C, Type *Ty) {
1312   if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
1313     return getBitCast(C, Ty);
1314   return getSExt(C, Ty);
1315 }
1316
1317 Constant *ConstantExpr::getTruncOrBitCast(Constant *C, Type *Ty) {
1318   if (C->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
1319     return getBitCast(C, Ty);
1320   return getTrunc(C, Ty);
1321 }
1322
1323 Constant *ConstantExpr::getPointerCast(Constant *S, Type *Ty) {
1324   assert(S->getType()->isPointerTy() && "Invalid cast");
1325   assert((Ty->isIntegerTy() || Ty->isPointerTy()) && "Invalid cast");
1326
1327   if (Ty->isIntegerTy())
1328     return getPtrToInt(S, Ty);
1329   return getBitCast(S, Ty);
1330 }
1331
1332 Constant *ConstantExpr::getIntegerCast(Constant *C, Type *Ty, 
1333                                        bool isSigned) {
1334   assert(C->getType()->isIntOrIntVectorTy() &&
1335          Ty->isIntOrIntVectorTy() && "Invalid cast");
1336   unsigned SrcBits = C->getType()->getScalarSizeInBits();
1337   unsigned DstBits = Ty->getScalarSizeInBits();
1338   Instruction::CastOps opcode =
1339     (SrcBits == DstBits ? Instruction::BitCast :
1340      (SrcBits > DstBits ? Instruction::Trunc :
1341       (isSigned ? Instruction::SExt : Instruction::ZExt)));
1342   return getCast(opcode, C, Ty);
1343 }
1344
1345 Constant *ConstantExpr::getFPCast(Constant *C, Type *Ty) {
1346   assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
1347          "Invalid cast");
1348   unsigned SrcBits = C->getType()->getScalarSizeInBits();
1349   unsigned DstBits = Ty->getScalarSizeInBits();
1350   if (SrcBits == DstBits)
1351     return C; // Avoid a useless cast
1352   Instruction::CastOps opcode =
1353     (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt);
1354   return getCast(opcode, C, Ty);
1355 }
1356
1357 Constant *ConstantExpr::getTrunc(Constant *C, Type *Ty) {
1358 #ifndef NDEBUG
1359   bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1360   bool toVec = Ty->getTypeID() == Type::VectorTyID;
1361 #endif
1362   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1363   assert(C->getType()->isIntOrIntVectorTy() && "Trunc operand must be integer");
1364   assert(Ty->isIntOrIntVectorTy() && "Trunc produces only integral");
1365   assert(C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
1366          "SrcTy must be larger than DestTy for Trunc!");
1367
1368   return getFoldedCast(Instruction::Trunc, C, Ty);
1369 }
1370
1371 Constant *ConstantExpr::getSExt(Constant *C, Type *Ty) {
1372 #ifndef NDEBUG
1373   bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1374   bool toVec = Ty->getTypeID() == Type::VectorTyID;
1375 #endif
1376   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1377   assert(C->getType()->isIntOrIntVectorTy() && "SExt operand must be integral");
1378   assert(Ty->isIntOrIntVectorTy() && "SExt produces only integer");
1379   assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
1380          "SrcTy must be smaller than DestTy for SExt!");
1381
1382   return getFoldedCast(Instruction::SExt, C, Ty);
1383 }
1384
1385 Constant *ConstantExpr::getZExt(Constant *C, Type *Ty) {
1386 #ifndef NDEBUG
1387   bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1388   bool toVec = Ty->getTypeID() == Type::VectorTyID;
1389 #endif
1390   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1391   assert(C->getType()->isIntOrIntVectorTy() && "ZEXt operand must be integral");
1392   assert(Ty->isIntOrIntVectorTy() && "ZExt produces only integer");
1393   assert(C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
1394          "SrcTy must be smaller than DestTy for ZExt!");
1395
1396   return getFoldedCast(Instruction::ZExt, C, Ty);
1397 }
1398
1399 Constant *ConstantExpr::getFPTrunc(Constant *C, Type *Ty) {
1400 #ifndef NDEBUG
1401   bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1402   bool toVec = Ty->getTypeID() == Type::VectorTyID;
1403 #endif
1404   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1405   assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
1406          C->getType()->getScalarSizeInBits() > Ty->getScalarSizeInBits()&&
1407          "This is an illegal floating point truncation!");
1408   return getFoldedCast(Instruction::FPTrunc, C, Ty);
1409 }
1410
1411 Constant *ConstantExpr::getFPExtend(Constant *C, Type *Ty) {
1412 #ifndef NDEBUG
1413   bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1414   bool toVec = Ty->getTypeID() == Type::VectorTyID;
1415 #endif
1416   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1417   assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
1418          C->getType()->getScalarSizeInBits() < Ty->getScalarSizeInBits()&&
1419          "This is an illegal floating point extension!");
1420   return getFoldedCast(Instruction::FPExt, C, Ty);
1421 }
1422
1423 Constant *ConstantExpr::getUIToFP(Constant *C, Type *Ty) {
1424 #ifndef NDEBUG
1425   bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1426   bool toVec = Ty->getTypeID() == Type::VectorTyID;
1427 #endif
1428   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1429   assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
1430          "This is an illegal uint to floating point cast!");
1431   return getFoldedCast(Instruction::UIToFP, C, Ty);
1432 }
1433
1434 Constant *ConstantExpr::getSIToFP(Constant *C, Type *Ty) {
1435 #ifndef NDEBUG
1436   bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1437   bool toVec = Ty->getTypeID() == Type::VectorTyID;
1438 #endif
1439   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1440   assert(C->getType()->isIntOrIntVectorTy() && Ty->isFPOrFPVectorTy() &&
1441          "This is an illegal sint to floating point cast!");
1442   return getFoldedCast(Instruction::SIToFP, C, Ty);
1443 }
1444
1445 Constant *ConstantExpr::getFPToUI(Constant *C, Type *Ty) {
1446 #ifndef NDEBUG
1447   bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1448   bool toVec = Ty->getTypeID() == Type::VectorTyID;
1449 #endif
1450   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1451   assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
1452          "This is an illegal floating point to uint cast!");
1453   return getFoldedCast(Instruction::FPToUI, C, Ty);
1454 }
1455
1456 Constant *ConstantExpr::getFPToSI(Constant *C, Type *Ty) {
1457 #ifndef NDEBUG
1458   bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1459   bool toVec = Ty->getTypeID() == Type::VectorTyID;
1460 #endif
1461   assert((fromVec == toVec) && "Cannot convert from scalar to/from vector");
1462   assert(C->getType()->isFPOrFPVectorTy() && Ty->isIntOrIntVectorTy() &&
1463          "This is an illegal floating point to sint cast!");
1464   return getFoldedCast(Instruction::FPToSI, C, Ty);
1465 }
1466
1467 Constant *ConstantExpr::getPtrToInt(Constant *C, Type *DstTy) {
1468   assert(C->getType()->getScalarType()->isPointerTy() &&
1469          "PtrToInt source must be pointer or pointer vector");
1470   assert(DstTy->getScalarType()->isIntegerTy() && 
1471          "PtrToInt destination must be integer or integer vector");
1472   assert(C->getType()->getNumElements() == DstTy->getNumElements() &&
1473     "Invalid cast between a different number of vector elements");
1474   return getFoldedCast(Instruction::PtrToInt, C, DstTy);
1475 }
1476
1477 Constant *ConstantExpr::getIntToPtr(Constant *C, Type *DstTy) {
1478   assert(C->getType()->getScalarType()->isIntegerTy() &&
1479          "IntToPtr source must be integer or integer vector");
1480   assert(DstTy->getScalarType()->isPointerTy() &&
1481          "IntToPtr destination must be a pointer or pointer vector");
1482   assert(C->getType()->getNumElements() == DstTy->getNumElements() &&
1483     "Invalid cast between a different number of vector elements");
1484   return getFoldedCast(Instruction::IntToPtr, C, DstTy);
1485 }
1486
1487 Constant *ConstantExpr::getBitCast(Constant *C, Type *DstTy) {
1488   assert(CastInst::castIsValid(Instruction::BitCast, C, DstTy) &&
1489          "Invalid constantexpr bitcast!");
1490   
1491   // It is common to ask for a bitcast of a value to its own type, handle this
1492   // speedily.
1493   if (C->getType() == DstTy) return C;
1494   
1495   return getFoldedCast(Instruction::BitCast, C, DstTy);
1496 }
1497
1498 Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2,
1499                             unsigned Flags) {
1500   // Check the operands for consistency first.
1501   assert(Opcode >= Instruction::BinaryOpsBegin &&
1502          Opcode <  Instruction::BinaryOpsEnd   &&
1503          "Invalid opcode in binary constant expression");
1504   assert(C1->getType() == C2->getType() &&
1505          "Operand types in binary constant expression should match");
1506   
1507 #ifndef NDEBUG
1508   switch (Opcode) {
1509   case Instruction::Add:
1510   case Instruction::Sub:
1511   case Instruction::Mul:
1512     assert(C1->getType() == C2->getType() && "Op types should be identical!");
1513     assert(C1->getType()->isIntOrIntVectorTy() &&
1514            "Tried to create an integer operation on a non-integer type!");
1515     break;
1516   case Instruction::FAdd:
1517   case Instruction::FSub:
1518   case Instruction::FMul:
1519     assert(C1->getType() == C2->getType() && "Op types should be identical!");
1520     assert(C1->getType()->isFPOrFPVectorTy() &&
1521            "Tried to create a floating-point operation on a "
1522            "non-floating-point type!");
1523     break;
1524   case Instruction::UDiv: 
1525   case Instruction::SDiv: 
1526     assert(C1->getType() == C2->getType() && "Op types should be identical!");
1527     assert(C1->getType()->isIntOrIntVectorTy() &&
1528            "Tried to create an arithmetic operation on a non-arithmetic type!");
1529     break;
1530   case Instruction::FDiv:
1531     assert(C1->getType() == C2->getType() && "Op types should be identical!");
1532     assert(C1->getType()->isFPOrFPVectorTy() &&
1533            "Tried to create an arithmetic operation on a non-arithmetic type!");
1534     break;
1535   case Instruction::URem: 
1536   case Instruction::SRem: 
1537     assert(C1->getType() == C2->getType() && "Op types should be identical!");
1538     assert(C1->getType()->isIntOrIntVectorTy() &&
1539            "Tried to create an arithmetic operation on a non-arithmetic type!");
1540     break;
1541   case Instruction::FRem:
1542     assert(C1->getType() == C2->getType() && "Op types should be identical!");
1543     assert(C1->getType()->isFPOrFPVectorTy() &&
1544            "Tried to create an arithmetic operation on a non-arithmetic type!");
1545     break;
1546   case Instruction::And:
1547   case Instruction::Or:
1548   case Instruction::Xor:
1549     assert(C1->getType() == C2->getType() && "Op types should be identical!");
1550     assert(C1->getType()->isIntOrIntVectorTy() &&
1551            "Tried to create a logical operation on a non-integral type!");
1552     break;
1553   case Instruction::Shl:
1554   case Instruction::LShr:
1555   case Instruction::AShr:
1556     assert(C1->getType() == C2->getType() && "Op types should be identical!");
1557     assert(C1->getType()->isIntOrIntVectorTy() &&
1558            "Tried to create a shift operation on a non-integer type!");
1559     break;
1560   default:
1561     break;
1562   }
1563 #endif
1564
1565   if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1566     return FC;          // Fold a few common cases.
1567   
1568   std::vector<Constant*> argVec(1, C1);
1569   argVec.push_back(C2);
1570   ExprMapKeyType Key(Opcode, argVec, 0, Flags);
1571   
1572   LLVMContextImpl *pImpl = C1->getContext().pImpl;
1573   return pImpl->ExprConstants.getOrCreate(C1->getType(), Key);
1574 }
1575
1576 Constant *ConstantExpr::getSizeOf(Type* Ty) {
1577   // sizeof is implemented as: (i64) gep (Ty*)null, 1
1578   // Note that a non-inbounds gep is used, as null isn't within any object.
1579   Constant *GEPIdx = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
1580   Constant *GEP = getGetElementPtr(
1581                  Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
1582   return getPtrToInt(GEP, 
1583                      Type::getInt64Ty(Ty->getContext()));
1584 }
1585
1586 Constant *ConstantExpr::getAlignOf(Type* Ty) {
1587   // alignof is implemented as: (i64) gep ({i1,Ty}*)null, 0, 1
1588   // Note that a non-inbounds gep is used, as null isn't within any object.
1589   Type *AligningTy = 
1590     StructType::get(Type::getInt1Ty(Ty->getContext()), Ty, NULL);
1591   Constant *NullPtr = Constant::getNullValue(AligningTy->getPointerTo());
1592   Constant *Zero = ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0);
1593   Constant *One = ConstantInt::get(Type::getInt32Ty(Ty->getContext()), 1);
1594   Constant *Indices[2] = { Zero, One };
1595   Constant *GEP = getGetElementPtr(NullPtr, Indices);
1596   return getPtrToInt(GEP,
1597                      Type::getInt64Ty(Ty->getContext()));
1598 }
1599
1600 Constant *ConstantExpr::getOffsetOf(StructType* STy, unsigned FieldNo) {
1601   return getOffsetOf(STy, ConstantInt::get(Type::getInt32Ty(STy->getContext()),
1602                                            FieldNo));
1603 }
1604
1605 Constant *ConstantExpr::getOffsetOf(Type* Ty, Constant *FieldNo) {
1606   // offsetof is implemented as: (i64) gep (Ty*)null, 0, FieldNo
1607   // Note that a non-inbounds gep is used, as null isn't within any object.
1608   Constant *GEPIdx[] = {
1609     ConstantInt::get(Type::getInt64Ty(Ty->getContext()), 0),
1610     FieldNo
1611   };
1612   Constant *GEP = getGetElementPtr(
1613                 Constant::getNullValue(PointerType::getUnqual(Ty)), GEPIdx);
1614   return getPtrToInt(GEP,
1615                      Type::getInt64Ty(Ty->getContext()));
1616 }
1617
1618 Constant *ConstantExpr::getCompare(unsigned short Predicate, 
1619                                    Constant *C1, Constant *C2) {
1620   assert(C1->getType() == C2->getType() && "Op types should be identical!");
1621   
1622   switch (Predicate) {
1623   default: llvm_unreachable("Invalid CmpInst predicate");
1624   case CmpInst::FCMP_FALSE: case CmpInst::FCMP_OEQ: case CmpInst::FCMP_OGT:
1625   case CmpInst::FCMP_OGE:   case CmpInst::FCMP_OLT: case CmpInst::FCMP_OLE:
1626   case CmpInst::FCMP_ONE:   case CmpInst::FCMP_ORD: case CmpInst::FCMP_UNO:
1627   case CmpInst::FCMP_UEQ:   case CmpInst::FCMP_UGT: case CmpInst::FCMP_UGE:
1628   case CmpInst::FCMP_ULT:   case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
1629   case CmpInst::FCMP_TRUE:
1630     return getFCmp(Predicate, C1, C2);
1631     
1632   case CmpInst::ICMP_EQ:  case CmpInst::ICMP_NE:  case CmpInst::ICMP_UGT:
1633   case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE:
1634   case CmpInst::ICMP_SGT: case CmpInst::ICMP_SGE: case CmpInst::ICMP_SLT:
1635   case CmpInst::ICMP_SLE:
1636     return getICmp(Predicate, C1, C2);
1637   }
1638 }
1639
1640 Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2) {
1641   assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
1642
1643   if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1644     return SC;        // Fold common cases
1645
1646   std::vector<Constant*> argVec(3, C);
1647   argVec[1] = V1;
1648   argVec[2] = V2;
1649   ExprMapKeyType Key(Instruction::Select, argVec);
1650   
1651   LLVMContextImpl *pImpl = C->getContext().pImpl;
1652   return pImpl->ExprConstants.getOrCreate(V1->getType(), Key);
1653 }
1654
1655 Constant *ConstantExpr::getGetElementPtr(Constant *C, ArrayRef<Value *> Idxs,
1656                                          bool InBounds) {
1657   if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
1658     return FC;          // Fold a few common cases.
1659
1660   // Get the result type of the getelementptr!
1661   Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), Idxs);
1662   assert(Ty && "GEP indices invalid!");
1663   unsigned AS = cast<PointerType>(C->getType())->getAddressSpace();
1664   Type *ReqTy = Ty->getPointerTo(AS);
1665   
1666   assert(C->getType()->isPointerTy() &&
1667          "Non-pointer type for constant GetElementPtr expression");
1668   // Look up the constant in the table first to ensure uniqueness
1669   std::vector<Constant*> ArgVec;
1670   ArgVec.reserve(1 + Idxs.size());
1671   ArgVec.push_back(C);
1672   for (unsigned i = 0, e = Idxs.size(); i != e; ++i)
1673     ArgVec.push_back(cast<Constant>(Idxs[i]));
1674   const ExprMapKeyType Key(Instruction::GetElementPtr, ArgVec, 0,
1675                            InBounds ? GEPOperator::IsInBounds : 0);
1676   
1677   LLVMContextImpl *pImpl = C->getContext().pImpl;
1678   return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1679 }
1680
1681 Constant *
1682 ConstantExpr::getICmp(unsigned short pred, Constant *LHS, Constant *RHS) {
1683   assert(LHS->getType() == RHS->getType());
1684   assert(pred >= ICmpInst::FIRST_ICMP_PREDICATE && 
1685          pred <= ICmpInst::LAST_ICMP_PREDICATE && "Invalid ICmp Predicate");
1686
1687   if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
1688     return FC;          // Fold a few common cases...
1689
1690   // Look up the constant in the table first to ensure uniqueness
1691   std::vector<Constant*> ArgVec;
1692   ArgVec.push_back(LHS);
1693   ArgVec.push_back(RHS);
1694   // Get the key type with both the opcode and predicate
1695   const ExprMapKeyType Key(Instruction::ICmp, ArgVec, pred);
1696
1697   Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1698   if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
1699     ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1700
1701   LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
1702   return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
1703 }
1704
1705 Constant *
1706 ConstantExpr::getFCmp(unsigned short pred, Constant *LHS, Constant *RHS) {
1707   assert(LHS->getType() == RHS->getType());
1708   assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1709
1710   if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
1711     return FC;          // Fold a few common cases...
1712
1713   // Look up the constant in the table first to ensure uniqueness
1714   std::vector<Constant*> ArgVec;
1715   ArgVec.push_back(LHS);
1716   ArgVec.push_back(RHS);
1717   // Get the key type with both the opcode and predicate
1718   const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
1719
1720   Type *ResultTy = Type::getInt1Ty(LHS->getContext());
1721   if (VectorType *VT = dyn_cast<VectorType>(LHS->getType()))
1722     ResultTy = VectorType::get(ResultTy, VT->getNumElements());
1723
1724   LLVMContextImpl *pImpl = LHS->getType()->getContext().pImpl;
1725   return pImpl->ExprConstants.getOrCreate(ResultTy, Key);
1726 }
1727
1728 Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
1729   assert(Val->getType()->isVectorTy() &&
1730          "Tried to create extractelement operation on non-vector type!");
1731   assert(Idx->getType()->isIntegerTy(32) &&
1732          "Extractelement index must be i32 type!");
1733   
1734   if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
1735     return FC;          // Fold a few common cases.
1736   
1737   // Look up the constant in the table first to ensure uniqueness
1738   std::vector<Constant*> ArgVec(1, Val);
1739   ArgVec.push_back(Idx);
1740   const ExprMapKeyType Key(Instruction::ExtractElement,ArgVec);
1741   
1742   LLVMContextImpl *pImpl = Val->getContext().pImpl;
1743   Type *ReqTy = cast<VectorType>(Val->getType())->getElementType();
1744   return pImpl->ExprConstants.getOrCreate(ReqTy, Key);
1745 }
1746
1747 Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt, 
1748                                          Constant *Idx) {
1749   assert(Val->getType()->isVectorTy() &&
1750          "Tried to create insertelement operation on non-vector type!");
1751   assert(Elt->getType() == cast<VectorType>(Val->getType())->getElementType()
1752          && "Insertelement types must match!");
1753   assert(Idx->getType()->isIntegerTy(32) &&
1754          "Insertelement index must be i32 type!");
1755
1756   if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1757     return FC;          // Fold a few common cases.
1758   // Look up the constant in the table first to ensure uniqueness
1759   std::vector<Constant*> ArgVec(1, Val);
1760   ArgVec.push_back(Elt);
1761   ArgVec.push_back(Idx);
1762   const ExprMapKeyType Key(Instruction::InsertElement,ArgVec);
1763   
1764   LLVMContextImpl *pImpl = Val->getContext().pImpl;
1765   return pImpl->ExprConstants.getOrCreate(Val->getType(), Key);
1766 }
1767
1768 Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2, 
1769                                          Constant *Mask) {
1770   assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1771          "Invalid shuffle vector constant expr operands!");
1772
1773   if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1774     return FC;          // Fold a few common cases.
1775
1776   unsigned NElts = cast<VectorType>(Mask->getType())->getNumElements();
1777   Type *EltTy = cast<VectorType>(V1->getType())->getElementType();
1778   Type *ShufTy = VectorType::get(EltTy, NElts);
1779
1780   // Look up the constant in the table first to ensure uniqueness
1781   std::vector<Constant*> ArgVec(1, V1);
1782   ArgVec.push_back(V2);
1783   ArgVec.push_back(Mask);
1784   const ExprMapKeyType Key(Instruction::ShuffleVector,ArgVec);
1785   
1786   LLVMContextImpl *pImpl = ShufTy->getContext().pImpl;
1787   return pImpl->ExprConstants.getOrCreate(ShufTy, Key);
1788 }
1789
1790 Constant *ConstantExpr::getInsertValue(Constant *Agg, Constant *Val,
1791                                        ArrayRef<unsigned> Idxs) {
1792   assert(ExtractValueInst::getIndexedType(Agg->getType(),
1793                                           Idxs) == Val->getType() &&
1794          "insertvalue indices invalid!");
1795   assert(Agg->getType()->isFirstClassType() &&
1796          "Non-first-class type for constant insertvalue expression");
1797   Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
1798   assert(FC && "insertvalue constant expr couldn't be folded!");
1799   return FC;
1800 }
1801
1802 Constant *ConstantExpr::getExtractValue(Constant *Agg,
1803                                         ArrayRef<unsigned> Idxs) {
1804   assert(Agg->getType()->isFirstClassType() &&
1805          "Tried to create extractelement operation on non-first-class type!");
1806
1807   Type *ReqTy = ExtractValueInst::getIndexedType(Agg->getType(), Idxs);
1808   (void)ReqTy;
1809   assert(ReqTy && "extractvalue indices invalid!");
1810   
1811   assert(Agg->getType()->isFirstClassType() &&
1812          "Non-first-class type for constant extractvalue expression");
1813   Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
1814   assert(FC && "ExtractValue constant expr couldn't be folded!");
1815   return FC;
1816 }
1817
1818 Constant *ConstantExpr::getNeg(Constant *C, bool HasNUW, bool HasNSW) {
1819   assert(C->getType()->isIntOrIntVectorTy() &&
1820          "Cannot NEG a nonintegral value!");
1821   return getSub(ConstantFP::getZeroValueForNegation(C->getType()),
1822                 C, HasNUW, HasNSW);
1823 }
1824
1825 Constant *ConstantExpr::getFNeg(Constant *C) {
1826   assert(C->getType()->isFPOrFPVectorTy() &&
1827          "Cannot FNEG a non-floating-point value!");
1828   return getFSub(ConstantFP::getZeroValueForNegation(C->getType()), C);
1829 }
1830
1831 Constant *ConstantExpr::getNot(Constant *C) {
1832   assert(C->getType()->isIntOrIntVectorTy() &&
1833          "Cannot NOT a nonintegral value!");
1834   return get(Instruction::Xor, C, Constant::getAllOnesValue(C->getType()));
1835 }
1836
1837 Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2,
1838                                bool HasNUW, bool HasNSW) {
1839   unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1840                    (HasNSW ? OverflowingBinaryOperator::NoSignedWrap   : 0);
1841   return get(Instruction::Add, C1, C2, Flags);
1842 }
1843
1844 Constant *ConstantExpr::getFAdd(Constant *C1, Constant *C2) {
1845   return get(Instruction::FAdd, C1, C2);
1846 }
1847
1848 Constant *ConstantExpr::getSub(Constant *C1, Constant *C2,
1849                                bool HasNUW, bool HasNSW) {
1850   unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1851                    (HasNSW ? OverflowingBinaryOperator::NoSignedWrap   : 0);
1852   return get(Instruction::Sub, C1, C2, Flags);
1853 }
1854
1855 Constant *ConstantExpr::getFSub(Constant *C1, Constant *C2) {
1856   return get(Instruction::FSub, C1, C2);
1857 }
1858
1859 Constant *ConstantExpr::getMul(Constant *C1, Constant *C2,
1860                                bool HasNUW, bool HasNSW) {
1861   unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1862                    (HasNSW ? OverflowingBinaryOperator::NoSignedWrap   : 0);
1863   return get(Instruction::Mul, C1, C2, Flags);
1864 }
1865
1866 Constant *ConstantExpr::getFMul(Constant *C1, Constant *C2) {
1867   return get(Instruction::FMul, C1, C2);
1868 }
1869
1870 Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2, bool isExact) {
1871   return get(Instruction::UDiv, C1, C2,
1872              isExact ? PossiblyExactOperator::IsExact : 0);
1873 }
1874
1875 Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2, bool isExact) {
1876   return get(Instruction::SDiv, C1, C2,
1877              isExact ? PossiblyExactOperator::IsExact : 0);
1878 }
1879
1880 Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
1881   return get(Instruction::FDiv, C1, C2);
1882 }
1883
1884 Constant *ConstantExpr::getURem(Constant *C1, Constant *C2) {
1885   return get(Instruction::URem, C1, C2);
1886 }
1887
1888 Constant *ConstantExpr::getSRem(Constant *C1, Constant *C2) {
1889   return get(Instruction::SRem, C1, C2);
1890 }
1891
1892 Constant *ConstantExpr::getFRem(Constant *C1, Constant *C2) {
1893   return get(Instruction::FRem, C1, C2);
1894 }
1895
1896 Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
1897   return get(Instruction::And, C1, C2);
1898 }
1899
1900 Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
1901   return get(Instruction::Or, C1, C2);
1902 }
1903
1904 Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
1905   return get(Instruction::Xor, C1, C2);
1906 }
1907
1908 Constant *ConstantExpr::getShl(Constant *C1, Constant *C2,
1909                                bool HasNUW, bool HasNSW) {
1910   unsigned Flags = (HasNUW ? OverflowingBinaryOperator::NoUnsignedWrap : 0) |
1911                    (HasNSW ? OverflowingBinaryOperator::NoSignedWrap   : 0);
1912   return get(Instruction::Shl, C1, C2, Flags);
1913 }
1914
1915 Constant *ConstantExpr::getLShr(Constant *C1, Constant *C2, bool isExact) {
1916   return get(Instruction::LShr, C1, C2,
1917              isExact ? PossiblyExactOperator::IsExact : 0);
1918 }
1919
1920 Constant *ConstantExpr::getAShr(Constant *C1, Constant *C2, bool isExact) {
1921   return get(Instruction::AShr, C1, C2,
1922              isExact ? PossiblyExactOperator::IsExact : 0);
1923 }
1924
1925 // destroyConstant - Remove the constant from the constant table...
1926 //
1927 void ConstantExpr::destroyConstant() {
1928   getType()->getContext().pImpl->ExprConstants.remove(this);
1929   destroyConstantImpl();
1930 }
1931
1932 const char *ConstantExpr::getOpcodeName() const {
1933   return Instruction::getOpcodeName(getOpcode());
1934 }
1935
1936
1937
1938 GetElementPtrConstantExpr::
1939 GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
1940                           Type *DestTy)
1941   : ConstantExpr(DestTy, Instruction::GetElementPtr,
1942                  OperandTraits<GetElementPtrConstantExpr>::op_end(this)
1943                  - (IdxList.size()+1), IdxList.size()+1) {
1944   OperandList[0] = C;
1945   for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
1946     OperandList[i+1] = IdxList[i];
1947 }
1948
1949
1950 //===----------------------------------------------------------------------===//
1951 //                replaceUsesOfWithOnConstant implementations
1952
1953 /// replaceUsesOfWithOnConstant - Update this constant array to change uses of
1954 /// 'From' to be uses of 'To'.  This must update the uniquing data structures
1955 /// etc.
1956 ///
1957 /// Note that we intentionally replace all uses of From with To here.  Consider
1958 /// a large array that uses 'From' 1000 times.  By handling this case all here,
1959 /// ConstantArray::replaceUsesOfWithOnConstant is only invoked once, and that
1960 /// single invocation handles all 1000 uses.  Handling them one at a time would
1961 /// work, but would be really slow because it would have to unique each updated
1962 /// array instance.
1963 ///
1964 void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
1965                                                 Use *U) {
1966   assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1967   Constant *ToC = cast<Constant>(To);
1968
1969   LLVMContextImpl *pImpl = getType()->getContext().pImpl;
1970
1971   std::pair<LLVMContextImpl::ArrayConstantsTy::MapKey, ConstantArray*> Lookup;
1972   Lookup.first.first = cast<ArrayType>(getType());
1973   Lookup.second = this;
1974
1975   std::vector<Constant*> &Values = Lookup.first.second;
1976   Values.reserve(getNumOperands());  // Build replacement array.
1977
1978   // Fill values with the modified operands of the constant array.  Also, 
1979   // compute whether this turns into an all-zeros array.
1980   bool isAllZeros = false;
1981   unsigned NumUpdated = 0;
1982   if (!ToC->isNullValue()) {
1983     for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
1984       Constant *Val = cast<Constant>(O->get());
1985       if (Val == From) {
1986         Val = ToC;
1987         ++NumUpdated;
1988       }
1989       Values.push_back(Val);
1990     }
1991   } else {
1992     isAllZeros = true;
1993     for (Use *O = OperandList, *E = OperandList+getNumOperands();O != E; ++O) {
1994       Constant *Val = cast<Constant>(O->get());
1995       if (Val == From) {
1996         Val = ToC;
1997         ++NumUpdated;
1998       }
1999       Values.push_back(Val);
2000       if (isAllZeros) isAllZeros = Val->isNullValue();
2001     }
2002   }
2003   
2004   Constant *Replacement = 0;
2005   if (isAllZeros) {
2006     Replacement = ConstantAggregateZero::get(getType());
2007   } else {
2008     // Check to see if we have this array type already.
2009     bool Exists;
2010     LLVMContextImpl::ArrayConstantsTy::MapTy::iterator I =
2011       pImpl->ArrayConstants.InsertOrGetItem(Lookup, Exists);
2012     
2013     if (Exists) {
2014       Replacement = I->second;
2015     } else {
2016       // Okay, the new shape doesn't exist in the system yet.  Instead of
2017       // creating a new constant array, inserting it, replaceallusesof'ing the
2018       // old with the new, then deleting the old... just update the current one
2019       // in place!
2020       pImpl->ArrayConstants.MoveConstantToNewSlot(this, I);
2021       
2022       // Update to the new value.  Optimize for the case when we have a single
2023       // operand that we're changing, but handle bulk updates efficiently.
2024       if (NumUpdated == 1) {
2025         unsigned OperandToUpdate = U - OperandList;
2026         assert(getOperand(OperandToUpdate) == From &&
2027                "ReplaceAllUsesWith broken!");
2028         setOperand(OperandToUpdate, ToC);
2029       } else {
2030         for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
2031           if (getOperand(i) == From)
2032             setOperand(i, ToC);
2033       }
2034       return;
2035     }
2036   }
2037  
2038   // Otherwise, I do need to replace this with an existing value.
2039   assert(Replacement != this && "I didn't contain From!");
2040   
2041   // Everyone using this now uses the replacement.
2042   replaceAllUsesWith(Replacement);
2043   
2044   // Delete the old constant!
2045   destroyConstant();
2046 }
2047
2048 void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
2049                                                  Use *U) {
2050   assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2051   Constant *ToC = cast<Constant>(To);
2052
2053   unsigned OperandToUpdate = U-OperandList;
2054   assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
2055
2056   std::pair<LLVMContextImpl::StructConstantsTy::MapKey, ConstantStruct*> Lookup;
2057   Lookup.first.first = cast<StructType>(getType());
2058   Lookup.second = this;
2059   std::vector<Constant*> &Values = Lookup.first.second;
2060   Values.reserve(getNumOperands());  // Build replacement struct.
2061   
2062   
2063   // Fill values with the modified operands of the constant struct.  Also, 
2064   // compute whether this turns into an all-zeros struct.
2065   bool isAllZeros = false;
2066   if (!ToC->isNullValue()) {
2067     for (Use *O = OperandList, *E = OperandList + getNumOperands(); O != E; ++O)
2068       Values.push_back(cast<Constant>(O->get()));
2069   } else {
2070     isAllZeros = true;
2071     for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
2072       Constant *Val = cast<Constant>(O->get());
2073       Values.push_back(Val);
2074       if (isAllZeros) isAllZeros = Val->isNullValue();
2075     }
2076   }
2077   Values[OperandToUpdate] = ToC;
2078   
2079   LLVMContextImpl *pImpl = getContext().pImpl;
2080   
2081   Constant *Replacement = 0;
2082   if (isAllZeros) {
2083     Replacement = ConstantAggregateZero::get(getType());
2084   } else {
2085     // Check to see if we have this struct type already.
2086     bool Exists;
2087     LLVMContextImpl::StructConstantsTy::MapTy::iterator I =
2088       pImpl->StructConstants.InsertOrGetItem(Lookup, Exists);
2089     
2090     if (Exists) {
2091       Replacement = I->second;
2092     } else {
2093       // Okay, the new shape doesn't exist in the system yet.  Instead of
2094       // creating a new constant struct, inserting it, replaceallusesof'ing the
2095       // old with the new, then deleting the old... just update the current one
2096       // in place!
2097       pImpl->StructConstants.MoveConstantToNewSlot(this, I);
2098       
2099       // Update to the new value.
2100       setOperand(OperandToUpdate, ToC);
2101       return;
2102     }
2103   }
2104   
2105   assert(Replacement != this && "I didn't contain From!");
2106   
2107   // Everyone using this now uses the replacement.
2108   replaceAllUsesWith(Replacement);
2109   
2110   // Delete the old constant!
2111   destroyConstant();
2112 }
2113
2114 void ConstantVector::replaceUsesOfWithOnConstant(Value *From, Value *To,
2115                                                  Use *U) {
2116   assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2117   
2118   std::vector<Constant*> Values;
2119   Values.reserve(getNumOperands());  // Build replacement array...
2120   for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2121     Constant *Val = getOperand(i);
2122     if (Val == From) Val = cast<Constant>(To);
2123     Values.push_back(Val);
2124   }
2125   
2126   Constant *Replacement = get(Values);
2127   assert(Replacement != this && "I didn't contain From!");
2128   
2129   // Everyone using this now uses the replacement.
2130   replaceAllUsesWith(Replacement);
2131   
2132   // Delete the old constant!
2133   destroyConstant();
2134 }
2135
2136 void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
2137                                                Use *U) {
2138   assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
2139   Constant *To = cast<Constant>(ToV);
2140   
2141   Constant *Replacement = 0;
2142   if (getOpcode() == Instruction::GetElementPtr) {
2143     SmallVector<Constant*, 8> Indices;
2144     Constant *Pointer = getOperand(0);
2145     Indices.reserve(getNumOperands()-1);
2146     if (Pointer == From) Pointer = To;
2147     
2148     for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
2149       Constant *Val = getOperand(i);
2150       if (Val == From) Val = To;
2151       Indices.push_back(Val);
2152     }
2153     Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices,
2154                                          cast<GEPOperator>(this)->isInBounds());
2155   } else if (getOpcode() == Instruction::ExtractValue) {
2156     Constant *Agg = getOperand(0);
2157     if (Agg == From) Agg = To;
2158     
2159     ArrayRef<unsigned> Indices = getIndices();
2160     Replacement = ConstantExpr::getExtractValue(Agg, Indices);
2161   } else if (getOpcode() == Instruction::InsertValue) {
2162     Constant *Agg = getOperand(0);
2163     Constant *Val = getOperand(1);
2164     if (Agg == From) Agg = To;
2165     if (Val == From) Val = To;
2166     
2167     ArrayRef<unsigned> Indices = getIndices();
2168     Replacement = ConstantExpr::getInsertValue(Agg, Val, Indices);
2169   } else if (isCast()) {
2170     assert(getOperand(0) == From && "Cast only has one use!");
2171     Replacement = ConstantExpr::getCast(getOpcode(), To, getType());
2172   } else if (getOpcode() == Instruction::Select) {
2173     Constant *C1 = getOperand(0);
2174     Constant *C2 = getOperand(1);
2175     Constant *C3 = getOperand(2);
2176     if (C1 == From) C1 = To;
2177     if (C2 == From) C2 = To;
2178     if (C3 == From) C3 = To;
2179     Replacement = ConstantExpr::getSelect(C1, C2, C3);
2180   } else if (getOpcode() == Instruction::ExtractElement) {
2181     Constant *C1 = getOperand(0);
2182     Constant *C2 = getOperand(1);
2183     if (C1 == From) C1 = To;
2184     if (C2 == From) C2 = To;
2185     Replacement = ConstantExpr::getExtractElement(C1, C2);
2186   } else if (getOpcode() == Instruction::InsertElement) {
2187     Constant *C1 = getOperand(0);
2188     Constant *C2 = getOperand(1);
2189     Constant *C3 = getOperand(1);
2190     if (C1 == From) C1 = To;
2191     if (C2 == From) C2 = To;
2192     if (C3 == From) C3 = To;
2193     Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
2194   } else if (getOpcode() == Instruction::ShuffleVector) {
2195     Constant *C1 = getOperand(0);
2196     Constant *C2 = getOperand(1);
2197     Constant *C3 = getOperand(2);
2198     if (C1 == From) C1 = To;
2199     if (C2 == From) C2 = To;
2200     if (C3 == From) C3 = To;
2201     Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
2202   } else if (isCompare()) {
2203     Constant *C1 = getOperand(0);
2204     Constant *C2 = getOperand(1);
2205     if (C1 == From) C1 = To;
2206     if (C2 == From) C2 = To;
2207     if (getOpcode() == Instruction::ICmp)
2208       Replacement = ConstantExpr::getICmp(getPredicate(), C1, C2);
2209     else {
2210       assert(getOpcode() == Instruction::FCmp);
2211       Replacement = ConstantExpr::getFCmp(getPredicate(), C1, C2);
2212     }
2213   } else if (getNumOperands() == 2) {
2214     Constant *C1 = getOperand(0);
2215     Constant *C2 = getOperand(1);
2216     if (C1 == From) C1 = To;
2217     if (C2 == From) C2 = To;
2218     Replacement = ConstantExpr::get(getOpcode(), C1, C2, SubclassOptionalData);
2219   } else {
2220     llvm_unreachable("Unknown ConstantExpr type!");
2221   }
2222   
2223   assert(Replacement != this && "I didn't contain From!");
2224   
2225   // Everyone using this now uses the replacement.
2226   replaceAllUsesWith(Replacement);
2227   
2228   // Delete the old constant!
2229   destroyConstant();
2230 }