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