Attempt to outwit overly smart compiler.
[oota-llvm.git] / lib / VMCore / Instructions.cpp
1 //===-- Instructions.cpp - Implement the LLVM instructions ----------------===//
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 all of the non-inline methods for the LLVM instruction
11 // classes.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "LLVMContextImpl.h"
16 #include "llvm/Constants.h"
17 #include "llvm/DerivedTypes.h"
18 #include "llvm/Function.h"
19 #include "llvm/Instructions.h"
20 #include "llvm/Module.h"
21 #include "llvm/Operator.h"
22 #include "llvm/Analysis/Dominators.h"
23 #include "llvm/Support/ErrorHandling.h"
24 #include "llvm/Support/CallSite.h"
25 #include "llvm/Support/ConstantRange.h"
26 #include "llvm/Support/MathExtras.h"
27 using namespace llvm;
28
29 //===----------------------------------------------------------------------===//
30 //                            CallSite Class
31 //===----------------------------------------------------------------------===//
32
33 User::op_iterator CallSite::getCallee() const {
34   Instruction *II(getInstruction());
35   return isCall()
36     ? cast<CallInst>(II)->op_end() - 1 // Skip Callee
37     : cast<InvokeInst>(II)->op_end() - 3; // Skip BB, BB, Callee
38 }
39
40 //===----------------------------------------------------------------------===//
41 //                            TerminatorInst Class
42 //===----------------------------------------------------------------------===//
43
44 // Out of line virtual method, so the vtable, etc has a home.
45 TerminatorInst::~TerminatorInst() {
46 }
47
48 //===----------------------------------------------------------------------===//
49 //                           UnaryInstruction Class
50 //===----------------------------------------------------------------------===//
51
52 // Out of line virtual method, so the vtable, etc has a home.
53 UnaryInstruction::~UnaryInstruction() {
54 }
55
56 //===----------------------------------------------------------------------===//
57 //                              SelectInst Class
58 //===----------------------------------------------------------------------===//
59
60 /// areInvalidOperands - Return a string if the specified operands are invalid
61 /// for a select operation, otherwise return null.
62 const char *SelectInst::areInvalidOperands(Value *Op0, Value *Op1, Value *Op2) {
63   if (Op1->getType() != Op2->getType())
64     return "both values to select must have same type";
65   
66   if (const VectorType *VT = dyn_cast<VectorType>(Op0->getType())) {
67     // Vector select.
68     if (VT->getElementType() != Type::getInt1Ty(Op0->getContext()))
69       return "vector select condition element type must be i1";
70     const VectorType *ET = dyn_cast<VectorType>(Op1->getType());
71     if (ET == 0)
72       return "selected values for vector select must be vectors";
73     if (ET->getNumElements() != VT->getNumElements())
74       return "vector select requires selected vectors to have "
75                    "the same vector length as select condition";
76   } else if (Op0->getType() != Type::getInt1Ty(Op0->getContext())) {
77     return "select condition must be i1 or <n x i1>";
78   }
79   return 0;
80 }
81
82
83 //===----------------------------------------------------------------------===//
84 //                               PHINode Class
85 //===----------------------------------------------------------------------===//
86
87 PHINode::PHINode(const PHINode &PN)
88   : Instruction(PN.getType(), Instruction::PHI,
89                 allocHungoffUses(PN.getNumOperands()), PN.getNumOperands()),
90     ReservedSpace(PN.getNumOperands()) {
91   Use *OL = OperandList;
92   for (unsigned i = 0, e = PN.getNumOperands(); i != e; i+=2) {
93     OL[i] = PN.getOperand(i);
94     OL[i+1] = PN.getOperand(i+1);
95   }
96   SubclassOptionalData = PN.SubclassOptionalData;
97 }
98
99 PHINode::~PHINode() {
100   if (OperandList)
101     dropHungoffUses(OperandList);
102 }
103
104 // removeIncomingValue - Remove an incoming value.  This is useful if a
105 // predecessor basic block is deleted.
106 Value *PHINode::removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty) {
107   unsigned NumOps = getNumOperands();
108   Use *OL = OperandList;
109   assert(Idx*2 < NumOps && "BB not in PHI node!");
110   Value *Removed = OL[Idx*2];
111
112   // Move everything after this operand down.
113   //
114   // FIXME: we could just swap with the end of the list, then erase.  However,
115   // client might not expect this to happen.  The code as it is thrashes the
116   // use/def lists, which is kinda lame.
117   for (unsigned i = (Idx+1)*2; i != NumOps; i += 2) {
118     OL[i-2] = OL[i];
119     OL[i-2+1] = OL[i+1];
120   }
121
122   // Nuke the last value.
123   OL[NumOps-2].set(0);
124   OL[NumOps-2+1].set(0);
125   NumOperands = NumOps-2;
126
127   // If the PHI node is dead, because it has zero entries, nuke it now.
128   if (NumOps == 2 && DeletePHIIfEmpty) {
129     // If anyone is using this PHI, make them use a dummy value instead...
130     replaceAllUsesWith(UndefValue::get(getType()));
131     eraseFromParent();
132   }
133   return Removed;
134 }
135
136 /// resizeOperands - resize operands - This adjusts the length of the operands
137 /// list according to the following behavior:
138 ///   1. If NumOps == 0, grow the operand list in response to a push_back style
139 ///      of operation.  This grows the number of ops by 1.5 times.
140 ///   2. If NumOps > NumOperands, reserve space for NumOps operands.
141 ///   3. If NumOps == NumOperands, trim the reserved space.
142 ///
143 void PHINode::resizeOperands(unsigned NumOps) {
144   unsigned e = getNumOperands();
145   if (NumOps == 0) {
146     NumOps = e*3/2;
147     if (NumOps < 4) NumOps = 4;      // 4 op PHI nodes are VERY common.
148   } else if (NumOps*2 > NumOperands) {
149     // No resize needed.
150     if (ReservedSpace >= NumOps) return;
151   } else if (NumOps == NumOperands) {
152     if (ReservedSpace == NumOps) return;
153   } else {
154     return;
155   }
156
157   ReservedSpace = NumOps;
158   Use *OldOps = OperandList;
159   Use *NewOps = allocHungoffUses(NumOps);
160   std::copy(OldOps, OldOps + e, NewOps);
161   OperandList = NewOps;
162   if (OldOps) Use::zap(OldOps, OldOps + e, true);
163 }
164
165 /// hasConstantValue - If the specified PHI node always merges together the same
166 /// value, return the value, otherwise return null.
167 ///
168 /// If the PHI has undef operands, but all the rest of the operands are
169 /// some unique value, return that value if it can be proved that the
170 /// value dominates the PHI. If DT is null, use a conservative check,
171 /// otherwise use DT to test for dominance.
172 ///
173 Value *PHINode::hasConstantValue(DominatorTree *DT) const {
174   // If the PHI node only has one incoming value, eliminate the PHI node.
175   if (getNumIncomingValues() == 1) {
176     if (getIncomingValue(0) != this)   // not  X = phi X
177       return getIncomingValue(0);
178     return UndefValue::get(getType());  // Self cycle is dead.
179   }
180       
181   // Otherwise if all of the incoming values are the same for the PHI, replace
182   // the PHI node with the incoming value.
183   //
184   Value *InVal = 0;
185   bool HasUndefInput = false;
186   for (unsigned i = 0, e = getNumIncomingValues(); i != e; ++i)
187     if (isa<UndefValue>(getIncomingValue(i))) {
188       HasUndefInput = true;
189     } else if (getIncomingValue(i) != this) { // Not the PHI node itself...
190       if (InVal && getIncomingValue(i) != InVal)
191         return 0;  // Not the same, bail out.
192       InVal = getIncomingValue(i);
193     }
194   
195   // The only case that could cause InVal to be null is if we have a PHI node
196   // that only has entries for itself.  In this case, there is no entry into the
197   // loop, so kill the PHI.
198   //
199   if (InVal == 0) InVal = UndefValue::get(getType());
200   
201   // If we have a PHI node like phi(X, undef, X), where X is defined by some
202   // instruction, we cannot always return X as the result of the PHI node.  Only
203   // do this if X is not an instruction (thus it must dominate the PHI block),
204   // or if the client is prepared to deal with this possibility.
205   if (!HasUndefInput || !isa<Instruction>(InVal))
206     return InVal;
207   
208   Instruction *IV = cast<Instruction>(InVal);
209   if (DT) {
210     // We have a DominatorTree. Do a precise test.
211     if (!DT->dominates(IV, this))
212       return 0;
213   } else {
214     // If it is in the entry block, it obviously dominates everything.
215     if (IV->getParent() != &IV->getParent()->getParent()->getEntryBlock() ||
216         isa<InvokeInst>(IV))
217       return 0;   // Cannot guarantee that InVal dominates this PHINode.
218   }
219
220   // All of the incoming values are the same, return the value now.
221   return InVal;
222 }
223
224
225 //===----------------------------------------------------------------------===//
226 //                        CallInst Implementation
227 //===----------------------------------------------------------------------===//
228
229 CallInst::~CallInst() {
230 }
231
232 void CallInst::init(Value *Func, Value* const *Params, unsigned NumParams) {
233   assert(NumOperands == NumParams+1 && "NumOperands not set up?");
234   Op<-1>() = Func;
235
236   const FunctionType *FTy =
237     cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
238   FTy = FTy;  // silence warning.
239
240   assert((NumParams == FTy->getNumParams() ||
241           (FTy->isVarArg() && NumParams > FTy->getNumParams())) &&
242          "Calling a function with bad signature!");
243   for (unsigned i = 0; i != NumParams; ++i) {
244     assert((i >= FTy->getNumParams() || 
245             FTy->getParamType(i) == Params[i]->getType()) &&
246            "Calling a function with a bad signature!");
247     OperandList[i] = Params[i];
248   }
249 }
250
251 void CallInst::init(Value *Func, Value *Actual1, Value *Actual2) {
252   assert(NumOperands == 3 && "NumOperands not set up?");
253   Op<-1>() = Func;
254   Op<0>() = Actual1;
255   Op<1>() = Actual2;
256
257   const FunctionType *FTy =
258     cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
259   FTy = FTy;  // silence warning.
260
261   assert((FTy->getNumParams() == 2 ||
262           (FTy->isVarArg() && FTy->getNumParams() < 2)) &&
263          "Calling a function with bad signature");
264   assert((0 >= FTy->getNumParams() || 
265           FTy->getParamType(0) == Actual1->getType()) &&
266          "Calling a function with a bad signature!");
267   assert((1 >= FTy->getNumParams() || 
268           FTy->getParamType(1) == Actual2->getType()) &&
269          "Calling a function with a bad signature!");
270 }
271
272 void CallInst::init(Value *Func, Value *Actual) {
273   assert(NumOperands == 2 && "NumOperands not set up?");
274   Op<-1>() = Func;
275   Op<0>() = Actual;
276
277   const FunctionType *FTy =
278     cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
279   FTy = FTy;  // silence warning.
280
281   assert((FTy->getNumParams() == 1 ||
282           (FTy->isVarArg() && FTy->getNumParams() == 0)) &&
283          "Calling a function with bad signature");
284   assert((0 == FTy->getNumParams() || 
285           FTy->getParamType(0) == Actual->getType()) &&
286          "Calling a function with a bad signature!");
287 }
288
289 void CallInst::init(Value *Func) {
290   assert(NumOperands == 1 && "NumOperands not set up?");
291   Op<-1>() = Func;
292
293   const FunctionType *FTy =
294     cast<FunctionType>(cast<PointerType>(Func->getType())->getElementType());
295   FTy = FTy;  // silence warning.
296
297   assert(FTy->getNumParams() == 0 && "Calling a function with bad signature");
298 }
299
300 CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
301                    Instruction *InsertBefore)
302   : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
303                                    ->getElementType())->getReturnType(),
304                 Instruction::Call,
305                 OperandTraits<CallInst>::op_end(this) - 2,
306                 2, InsertBefore) {
307   init(Func, Actual);
308   setName(Name);
309 }
310
311 CallInst::CallInst(Value *Func, Value* Actual, const Twine &Name,
312                    BasicBlock  *InsertAtEnd)
313   : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
314                                    ->getElementType())->getReturnType(),
315                 Instruction::Call,
316                 OperandTraits<CallInst>::op_end(this) - 2,
317                 2, InsertAtEnd) {
318   init(Func, Actual);
319   setName(Name);
320 }
321 CallInst::CallInst(Value *Func, const Twine &Name,
322                    Instruction *InsertBefore)
323   : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
324                                    ->getElementType())->getReturnType(),
325                 Instruction::Call,
326                 OperandTraits<CallInst>::op_end(this) - 1,
327                 1, InsertBefore) {
328   init(Func);
329   setName(Name);
330 }
331
332 CallInst::CallInst(Value *Func, const Twine &Name,
333                    BasicBlock *InsertAtEnd)
334   : Instruction(cast<FunctionType>(cast<PointerType>(Func->getType())
335                                    ->getElementType())->getReturnType(),
336                 Instruction::Call,
337                 OperandTraits<CallInst>::op_end(this) - 1,
338                 1, InsertAtEnd) {
339   init(Func);
340   setName(Name);
341 }
342
343 CallInst::CallInst(const CallInst &CI)
344   : Instruction(CI.getType(), Instruction::Call,
345                 OperandTraits<CallInst>::op_end(this) - CI.getNumOperands(),
346                 CI.getNumOperands()) {
347   setAttributes(CI.getAttributes());
348   setTailCall(CI.isTailCall());
349   setCallingConv(CI.getCallingConv());
350     
351   Use *OL = OperandList;
352   Use *InOL = CI.OperandList;
353   for (unsigned i = 0, e = CI.getNumOperands(); i != e; ++i)
354     OL[i] = InOL[i];
355   SubclassOptionalData = CI.SubclassOptionalData;
356 }
357
358 void CallInst::addAttribute(unsigned i, Attributes attr) {
359   AttrListPtr PAL = getAttributes();
360   PAL = PAL.addAttr(i, attr);
361   setAttributes(PAL);
362 }
363
364 void CallInst::removeAttribute(unsigned i, Attributes attr) {
365   AttrListPtr PAL = getAttributes();
366   PAL = PAL.removeAttr(i, attr);
367   setAttributes(PAL);
368 }
369
370 bool CallInst::paramHasAttr(unsigned i, Attributes attr) const {
371   if (AttributeList.paramHasAttr(i, attr))
372     return true;
373   if (const Function *F = getCalledFunction())
374     return F->paramHasAttr(i, attr);
375   return false;
376 }
377
378 /// IsConstantOne - Return true only if val is constant int 1
379 static bool IsConstantOne(Value *val) {
380   assert(val && "IsConstantOne does not work with NULL val");
381   return isa<ConstantInt>(val) && cast<ConstantInt>(val)->isOne();
382 }
383
384 static Instruction *createMalloc(Instruction *InsertBefore,
385                                  BasicBlock *InsertAtEnd, const Type *IntPtrTy,
386                                  const Type *AllocTy, Value *AllocSize, 
387                                  Value *ArraySize, Function *MallocF,
388                                  const Twine &Name) {
389   assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
390          "createMalloc needs either InsertBefore or InsertAtEnd");
391
392   // malloc(type) becomes: 
393   //       bitcast (i8* malloc(typeSize)) to type*
394   // malloc(type, arraySize) becomes:
395   //       bitcast (i8 *malloc(typeSize*arraySize)) to type*
396   if (!ArraySize)
397     ArraySize = ConstantInt::get(IntPtrTy, 1);
398   else if (ArraySize->getType() != IntPtrTy) {
399     if (InsertBefore)
400       ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
401                                               "", InsertBefore);
402     else
403       ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
404                                               "", InsertAtEnd);
405   }
406
407   if (!IsConstantOne(ArraySize)) {
408     if (IsConstantOne(AllocSize)) {
409       AllocSize = ArraySize;         // Operand * 1 = Operand
410     } else if (Constant *CO = dyn_cast<Constant>(ArraySize)) {
411       Constant *Scale = ConstantExpr::getIntegerCast(CO, IntPtrTy,
412                                                      false /*ZExt*/);
413       // Malloc arg is constant product of type size and array size
414       AllocSize = ConstantExpr::getMul(Scale, cast<Constant>(AllocSize));
415     } else {
416       // Multiply type size by the array size...
417       if (InsertBefore)
418         AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
419                                               "mallocsize", InsertBefore);
420       else
421         AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
422                                               "mallocsize", InsertAtEnd);
423     }
424   }
425
426   assert(AllocSize->getType() == IntPtrTy && "malloc arg is wrong size");
427   // Create the call to Malloc.
428   BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
429   Module* M = BB->getParent()->getParent();
430   const Type *BPTy = Type::getInt8PtrTy(BB->getContext());
431   Value *MallocFunc = MallocF;
432   if (!MallocFunc)
433     // prototype malloc as "void *malloc(size_t)"
434     MallocFunc = M->getOrInsertFunction("malloc", BPTy, IntPtrTy, NULL);
435   const PointerType *AllocPtrType = PointerType::getUnqual(AllocTy);
436   CallInst *MCall = NULL;
437   Instruction *Result = NULL;
438   if (InsertBefore) {
439     MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall", InsertBefore);
440     Result = MCall;
441     if (Result->getType() != AllocPtrType)
442       // Create a cast instruction to convert to the right type...
443       Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
444   } else {
445     MCall = CallInst::Create(MallocFunc, AllocSize, "malloccall");
446     Result = MCall;
447     if (Result->getType() != AllocPtrType) {
448       InsertAtEnd->getInstList().push_back(MCall);
449       // Create a cast instruction to convert to the right type...
450       Result = new BitCastInst(MCall, AllocPtrType, Name);
451     }
452   }
453   MCall->setTailCall();
454   if (Function *F = dyn_cast<Function>(MallocFunc)) {
455     MCall->setCallingConv(F->getCallingConv());
456     if (!F->doesNotAlias(0)) F->setDoesNotAlias(0);
457   }
458   assert(!MCall->getType()->isVoidTy() && "Malloc has void return type");
459
460   return Result;
461 }
462
463 /// CreateMalloc - Generate the IR for a call to malloc:
464 /// 1. Compute the malloc call's argument as the specified type's size,
465 ///    possibly multiplied by the array size if the array size is not
466 ///    constant 1.
467 /// 2. Call malloc with that argument.
468 /// 3. Bitcast the result of the malloc call to the specified type.
469 Instruction *CallInst::CreateMalloc(Instruction *InsertBefore,
470                                     const Type *IntPtrTy, const Type *AllocTy,
471                                     Value *AllocSize, Value *ArraySize,
472                                     Function * MallocF,
473                                     const Twine &Name) {
474   return createMalloc(InsertBefore, NULL, IntPtrTy, AllocTy, AllocSize,
475                       ArraySize, MallocF, Name);
476 }
477
478 /// CreateMalloc - Generate the IR for a call to malloc:
479 /// 1. Compute the malloc call's argument as the specified type's size,
480 ///    possibly multiplied by the array size if the array size is not
481 ///    constant 1.
482 /// 2. Call malloc with that argument.
483 /// 3. Bitcast the result of the malloc call to the specified type.
484 /// Note: This function does not add the bitcast to the basic block, that is the
485 /// responsibility of the caller.
486 Instruction *CallInst::CreateMalloc(BasicBlock *InsertAtEnd,
487                                     const Type *IntPtrTy, const Type *AllocTy,
488                                     Value *AllocSize, Value *ArraySize, 
489                                     Function *MallocF, const Twine &Name) {
490   return createMalloc(NULL, InsertAtEnd, IntPtrTy, AllocTy, AllocSize,
491                       ArraySize, MallocF, Name);
492 }
493
494 static Instruction* createFree(Value* Source, Instruction *InsertBefore,
495                                BasicBlock *InsertAtEnd) {
496   assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
497          "createFree needs either InsertBefore or InsertAtEnd");
498   assert(Source->getType()->isPointerTy() &&
499          "Can not free something of nonpointer type!");
500
501   BasicBlock* BB = InsertBefore ? InsertBefore->getParent() : InsertAtEnd;
502   Module* M = BB->getParent()->getParent();
503
504   const Type *VoidTy = Type::getVoidTy(M->getContext());
505   const Type *IntPtrTy = Type::getInt8PtrTy(M->getContext());
506   // prototype free as "void free(void*)"
507   Value *FreeFunc = M->getOrInsertFunction("free", VoidTy, IntPtrTy, NULL);
508   CallInst* Result = NULL;
509   Value *PtrCast = Source;
510   if (InsertBefore) {
511     if (Source->getType() != IntPtrTy)
512       PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertBefore);
513     Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
514   } else {
515     if (Source->getType() != IntPtrTy)
516       PtrCast = new BitCastInst(Source, IntPtrTy, "", InsertAtEnd);
517     Result = CallInst::Create(FreeFunc, PtrCast, "");
518   }
519   Result->setTailCall();
520   if (Function *F = dyn_cast<Function>(FreeFunc))
521     Result->setCallingConv(F->getCallingConv());
522
523   return Result;
524 }
525
526 /// CreateFree - Generate the IR for a call to the builtin free function.
527 Instruction * CallInst::CreateFree(Value* Source, Instruction *InsertBefore) {
528   return createFree(Source, InsertBefore, NULL);
529 }
530
531 /// CreateFree - Generate the IR for a call to the builtin free function.
532 /// Note: This function does not add the call to the basic block, that is the
533 /// responsibility of the caller.
534 Instruction* CallInst::CreateFree(Value* Source, BasicBlock *InsertAtEnd) {
535   Instruction* FreeCall = createFree(Source, NULL, InsertAtEnd);
536   assert(FreeCall && "CreateFree did not create a CallInst");
537   return FreeCall;
538 }
539
540 //===----------------------------------------------------------------------===//
541 //                        InvokeInst Implementation
542 //===----------------------------------------------------------------------===//
543
544 void InvokeInst::init(Value *Fn, BasicBlock *IfNormal, BasicBlock *IfException,
545                       Value* const *Args, unsigned NumArgs) {
546   assert(NumOperands == 3+NumArgs && "NumOperands not set up?");
547   Op<-3>() = Fn;
548   Op<-2>() = IfNormal;
549   Op<-1>() = IfException;
550   const FunctionType *FTy =
551     cast<FunctionType>(cast<PointerType>(Fn->getType())->getElementType());
552   FTy = FTy;  // silence warning.
553
554   assert(((NumArgs == FTy->getNumParams()) ||
555           (FTy->isVarArg() && NumArgs > FTy->getNumParams())) &&
556          "Invoking a function with bad signature");
557
558   Use *OL = OperandList;
559   for (unsigned i = 0, e = NumArgs; i != e; i++) {
560     assert((i >= FTy->getNumParams() || 
561             FTy->getParamType(i) == Args[i]->getType()) &&
562            "Invoking a function with a bad signature!");
563     
564     OL[i] = Args[i];
565   }
566 }
567
568 InvokeInst::InvokeInst(const InvokeInst &II)
569   : TerminatorInst(II.getType(), Instruction::Invoke,
570                    OperandTraits<InvokeInst>::op_end(this)
571                    - II.getNumOperands(),
572                    II.getNumOperands()) {
573   setAttributes(II.getAttributes());
574   setCallingConv(II.getCallingConv());
575   Use *OL = OperandList, *InOL = II.OperandList;
576   for (unsigned i = 0, e = II.getNumOperands(); i != e; ++i)
577     OL[i] = InOL[i];
578   SubclassOptionalData = II.SubclassOptionalData;
579 }
580
581 BasicBlock *InvokeInst::getSuccessorV(unsigned idx) const {
582   return getSuccessor(idx);
583 }
584 unsigned InvokeInst::getNumSuccessorsV() const {
585   return getNumSuccessors();
586 }
587 void InvokeInst::setSuccessorV(unsigned idx, BasicBlock *B) {
588   return setSuccessor(idx, B);
589 }
590
591 bool InvokeInst::paramHasAttr(unsigned i, Attributes attr) const {
592   if (AttributeList.paramHasAttr(i, attr))
593     return true;
594   if (const Function *F = getCalledFunction())
595     return F->paramHasAttr(i, attr);
596   return false;
597 }
598
599 void InvokeInst::addAttribute(unsigned i, Attributes attr) {
600   AttrListPtr PAL = getAttributes();
601   PAL = PAL.addAttr(i, attr);
602   setAttributes(PAL);
603 }
604
605 void InvokeInst::removeAttribute(unsigned i, Attributes attr) {
606   AttrListPtr PAL = getAttributes();
607   PAL = PAL.removeAttr(i, attr);
608   setAttributes(PAL);
609 }
610
611
612 //===----------------------------------------------------------------------===//
613 //                        ReturnInst Implementation
614 //===----------------------------------------------------------------------===//
615
616 ReturnInst::ReturnInst(const ReturnInst &RI)
617   : TerminatorInst(Type::getVoidTy(RI.getContext()), Instruction::Ret,
618                    OperandTraits<ReturnInst>::op_end(this) -
619                      RI.getNumOperands(),
620                    RI.getNumOperands()) {
621   if (RI.getNumOperands())
622     Op<0>() = RI.Op<0>();
623   SubclassOptionalData = RI.SubclassOptionalData;
624 }
625
626 ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore)
627   : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
628                    OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
629                    InsertBefore) {
630   if (retVal)
631     Op<0>() = retVal;
632 }
633 ReturnInst::ReturnInst(LLVMContext &C, Value *retVal, BasicBlock *InsertAtEnd)
634   : TerminatorInst(Type::getVoidTy(C), Instruction::Ret,
635                    OperandTraits<ReturnInst>::op_end(this) - !!retVal, !!retVal,
636                    InsertAtEnd) {
637   if (retVal)
638     Op<0>() = retVal;
639 }
640 ReturnInst::ReturnInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
641   : TerminatorInst(Type::getVoidTy(Context), Instruction::Ret,
642                    OperandTraits<ReturnInst>::op_end(this), 0, InsertAtEnd) {
643 }
644
645 unsigned ReturnInst::getNumSuccessorsV() const {
646   return getNumSuccessors();
647 }
648
649 /// Out-of-line ReturnInst method, put here so the C++ compiler can choose to
650 /// emit the vtable for the class in this translation unit.
651 void ReturnInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
652   llvm_unreachable("ReturnInst has no successors!");
653 }
654
655 BasicBlock *ReturnInst::getSuccessorV(unsigned idx) const {
656   llvm_unreachable("ReturnInst has no successors!");
657   return 0;
658 }
659
660 ReturnInst::~ReturnInst() {
661 }
662
663 //===----------------------------------------------------------------------===//
664 //                        UnwindInst Implementation
665 //===----------------------------------------------------------------------===//
666
667 UnwindInst::UnwindInst(LLVMContext &Context, Instruction *InsertBefore)
668   : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
669                    0, 0, InsertBefore) {
670 }
671 UnwindInst::UnwindInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
672   : TerminatorInst(Type::getVoidTy(Context), Instruction::Unwind,
673                    0, 0, InsertAtEnd) {
674 }
675
676
677 unsigned UnwindInst::getNumSuccessorsV() const {
678   return getNumSuccessors();
679 }
680
681 void UnwindInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
682   llvm_unreachable("UnwindInst has no successors!");
683 }
684
685 BasicBlock *UnwindInst::getSuccessorV(unsigned idx) const {
686   llvm_unreachable("UnwindInst has no successors!");
687   return 0;
688 }
689
690 //===----------------------------------------------------------------------===//
691 //                      UnreachableInst Implementation
692 //===----------------------------------------------------------------------===//
693
694 UnreachableInst::UnreachableInst(LLVMContext &Context, 
695                                  Instruction *InsertBefore)
696   : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
697                    0, 0, InsertBefore) {
698 }
699 UnreachableInst::UnreachableInst(LLVMContext &Context, BasicBlock *InsertAtEnd)
700   : TerminatorInst(Type::getVoidTy(Context), Instruction::Unreachable,
701                    0, 0, InsertAtEnd) {
702 }
703
704 unsigned UnreachableInst::getNumSuccessorsV() const {
705   return getNumSuccessors();
706 }
707
708 void UnreachableInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
709   llvm_unreachable("UnwindInst has no successors!");
710 }
711
712 BasicBlock *UnreachableInst::getSuccessorV(unsigned idx) const {
713   llvm_unreachable("UnwindInst has no successors!");
714   return 0;
715 }
716
717 //===----------------------------------------------------------------------===//
718 //                        BranchInst Implementation
719 //===----------------------------------------------------------------------===//
720
721 void BranchInst::AssertOK() {
722   if (isConditional())
723     assert(getCondition()->getType()->isIntegerTy(1) &&
724            "May only branch on boolean predicates!");
725 }
726
727 BranchInst::BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore)
728   : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
729                    OperandTraits<BranchInst>::op_end(this) - 1,
730                    1, InsertBefore) {
731   assert(IfTrue != 0 && "Branch destination may not be null!");
732   Op<-1>() = IfTrue;
733 }
734 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
735                        Instruction *InsertBefore)
736   : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
737                    OperandTraits<BranchInst>::op_end(this) - 3,
738                    3, InsertBefore) {
739   Op<-1>() = IfTrue;
740   Op<-2>() = IfFalse;
741   Op<-3>() = Cond;
742 #ifndef NDEBUG
743   AssertOK();
744 #endif
745 }
746
747 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd)
748   : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
749                    OperandTraits<BranchInst>::op_end(this) - 1,
750                    1, InsertAtEnd) {
751   assert(IfTrue != 0 && "Branch destination may not be null!");
752   Op<-1>() = IfTrue;
753 }
754
755 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
756            BasicBlock *InsertAtEnd)
757   : TerminatorInst(Type::getVoidTy(IfTrue->getContext()), Instruction::Br,
758                    OperandTraits<BranchInst>::op_end(this) - 3,
759                    3, InsertAtEnd) {
760   Op<-1>() = IfTrue;
761   Op<-2>() = IfFalse;
762   Op<-3>() = Cond;
763 #ifndef NDEBUG
764   AssertOK();
765 #endif
766 }
767
768
769 BranchInst::BranchInst(const BranchInst &BI) :
770   TerminatorInst(Type::getVoidTy(BI.getContext()), Instruction::Br,
771                  OperandTraits<BranchInst>::op_end(this) - BI.getNumOperands(),
772                  BI.getNumOperands()) {
773   Op<-1>() = BI.Op<-1>();
774   if (BI.getNumOperands() != 1) {
775     assert(BI.getNumOperands() == 3 && "BR can have 1 or 3 operands!");
776     Op<-3>() = BI.Op<-3>();
777     Op<-2>() = BI.Op<-2>();
778   }
779   SubclassOptionalData = BI.SubclassOptionalData;
780 }
781
782
783 Use* Use::getPrefix() {
784   PointerIntPair<Use**, 2, PrevPtrTag> &PotentialPrefix(this[-1].Prev);
785   if (PotentialPrefix.getOpaqueValue())
786     return 0;
787
788   return reinterpret_cast<Use*>((char*)&PotentialPrefix + 1);
789 }
790
791 BranchInst::~BranchInst() {
792   if (NumOperands == 1) {
793     if (Use *Prefix = OperandList->getPrefix()) {
794       Op<-1>() = 0;
795       //
796       // mark OperandList to have a special value for scrutiny
797       // by baseclass destructors and operator delete
798       OperandList = Prefix;
799     } else {
800       NumOperands = 3;
801       OperandList = op_begin();
802     }
803   }
804 }
805
806
807 BasicBlock *BranchInst::getSuccessorV(unsigned idx) const {
808   return getSuccessor(idx);
809 }
810 unsigned BranchInst::getNumSuccessorsV() const {
811   return getNumSuccessors();
812 }
813 void BranchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
814   setSuccessor(idx, B);
815 }
816
817
818 //===----------------------------------------------------------------------===//
819 //                        AllocaInst Implementation
820 //===----------------------------------------------------------------------===//
821
822 static Value *getAISize(LLVMContext &Context, Value *Amt) {
823   if (!Amt)
824     Amt = ConstantInt::get(Type::getInt32Ty(Context), 1);
825   else {
826     assert(!isa<BasicBlock>(Amt) &&
827            "Passed basic block into allocation size parameter! Use other ctor");
828     assert(Amt->getType()->isIntegerTy() &&
829            "Allocation array size is not an integer!");
830   }
831   return Amt;
832 }
833
834 AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize,
835                        const Twine &Name, Instruction *InsertBefore)
836   : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
837                      getAISize(Ty->getContext(), ArraySize), InsertBefore) {
838   setAlignment(0);
839   assert(!Ty->isVoidTy() && "Cannot allocate void!");
840   setName(Name);
841 }
842
843 AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize,
844                        const Twine &Name, BasicBlock *InsertAtEnd)
845   : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
846                      getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
847   setAlignment(0);
848   assert(!Ty->isVoidTy() && "Cannot allocate void!");
849   setName(Name);
850 }
851
852 AllocaInst::AllocaInst(const Type *Ty, const Twine &Name,
853                        Instruction *InsertBefore)
854   : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
855                      getAISize(Ty->getContext(), 0), InsertBefore) {
856   setAlignment(0);
857   assert(!Ty->isVoidTy() && "Cannot allocate void!");
858   setName(Name);
859 }
860
861 AllocaInst::AllocaInst(const Type *Ty, const Twine &Name,
862                        BasicBlock *InsertAtEnd)
863   : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
864                      getAISize(Ty->getContext(), 0), InsertAtEnd) {
865   setAlignment(0);
866   assert(!Ty->isVoidTy() && "Cannot allocate void!");
867   setName(Name);
868 }
869
870 AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
871                        const Twine &Name, Instruction *InsertBefore)
872   : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
873                      getAISize(Ty->getContext(), ArraySize), InsertBefore) {
874   setAlignment(Align);
875   assert(!Ty->isVoidTy() && "Cannot allocate void!");
876   setName(Name);
877 }
878
879 AllocaInst::AllocaInst(const Type *Ty, Value *ArraySize, unsigned Align,
880                        const Twine &Name, BasicBlock *InsertAtEnd)
881   : UnaryInstruction(PointerType::getUnqual(Ty), Alloca,
882                      getAISize(Ty->getContext(), ArraySize), InsertAtEnd) {
883   setAlignment(Align);
884   assert(!Ty->isVoidTy() && "Cannot allocate void!");
885   setName(Name);
886 }
887
888 // Out of line virtual method, so the vtable, etc has a home.
889 AllocaInst::~AllocaInst() {
890 }
891
892 void AllocaInst::setAlignment(unsigned Align) {
893   assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
894   assert(Align <= MaximumAlignment &&
895          "Alignment is greater than MaximumAlignment!");
896   setInstructionSubclassData(Log2_32(Align) + 1);
897   assert(getAlignment() == Align && "Alignment representation error!");
898 }
899
900 bool AllocaInst::isArrayAllocation() const {
901   if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(0)))
902     return !CI->isOne();
903   return true;
904 }
905
906 const Type *AllocaInst::getAllocatedType() const {
907   return getType()->getElementType();
908 }
909
910 /// isStaticAlloca - Return true if this alloca is in the entry block of the
911 /// function and is a constant size.  If so, the code generator will fold it
912 /// into the prolog/epilog code, so it is basically free.
913 bool AllocaInst::isStaticAlloca() const {
914   // Must be constant size.
915   if (!isa<ConstantInt>(getArraySize())) return false;
916   
917   // Must be in the entry block.
918   const BasicBlock *Parent = getParent();
919   return Parent == &Parent->getParent()->front();
920 }
921
922 //===----------------------------------------------------------------------===//
923 //                           LoadInst Implementation
924 //===----------------------------------------------------------------------===//
925
926 void LoadInst::AssertOK() {
927   assert(getOperand(0)->getType()->isPointerTy() &&
928          "Ptr must have pointer type.");
929 }
930
931 LoadInst::LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef)
932   : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
933                      Load, Ptr, InsertBef) {
934   setVolatile(false);
935   setAlignment(0);
936   AssertOK();
937   setName(Name);
938 }
939
940 LoadInst::LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE)
941   : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
942                      Load, Ptr, InsertAE) {
943   setVolatile(false);
944   setAlignment(0);
945   AssertOK();
946   setName(Name);
947 }
948
949 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
950                    Instruction *InsertBef)
951   : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
952                      Load, Ptr, InsertBef) {
953   setVolatile(isVolatile);
954   setAlignment(0);
955   AssertOK();
956   setName(Name);
957 }
958
959 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, 
960                    unsigned Align, Instruction *InsertBef)
961   : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
962                      Load, Ptr, InsertBef) {
963   setVolatile(isVolatile);
964   setAlignment(Align);
965   AssertOK();
966   setName(Name);
967 }
968
969 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, 
970                    unsigned Align, BasicBlock *InsertAE)
971   : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
972                      Load, Ptr, InsertAE) {
973   setVolatile(isVolatile);
974   setAlignment(Align);
975   AssertOK();
976   setName(Name);
977 }
978
979 LoadInst::LoadInst(Value *Ptr, const Twine &Name, bool isVolatile,
980                    BasicBlock *InsertAE)
981   : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
982                      Load, Ptr, InsertAE) {
983   setVolatile(isVolatile);
984   setAlignment(0);
985   AssertOK();
986   setName(Name);
987 }
988
989
990
991 LoadInst::LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef)
992   : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
993                      Load, Ptr, InsertBef) {
994   setVolatile(false);
995   setAlignment(0);
996   AssertOK();
997   if (Name && Name[0]) setName(Name);
998 }
999
1000 LoadInst::LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE)
1001   : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1002                      Load, Ptr, InsertAE) {
1003   setVolatile(false);
1004   setAlignment(0);
1005   AssertOK();
1006   if (Name && Name[0]) setName(Name);
1007 }
1008
1009 LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1010                    Instruction *InsertBef)
1011 : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1012                    Load, Ptr, InsertBef) {
1013   setVolatile(isVolatile);
1014   setAlignment(0);
1015   AssertOK();
1016   if (Name && Name[0]) setName(Name);
1017 }
1018
1019 LoadInst::LoadInst(Value *Ptr, const char *Name, bool isVolatile,
1020                    BasicBlock *InsertAE)
1021   : UnaryInstruction(cast<PointerType>(Ptr->getType())->getElementType(),
1022                      Load, Ptr, InsertAE) {
1023   setVolatile(isVolatile);
1024   setAlignment(0);
1025   AssertOK();
1026   if (Name && Name[0]) setName(Name);
1027 }
1028
1029 void LoadInst::setAlignment(unsigned Align) {
1030   assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
1031   assert(Align <= MaximumAlignment &&
1032          "Alignment is greater than MaximumAlignment!");
1033   setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
1034                              ((Log2_32(Align)+1)<<1));
1035   assert(getAlignment() == Align && "Alignment representation error!");
1036 }
1037
1038 //===----------------------------------------------------------------------===//
1039 //                           StoreInst Implementation
1040 //===----------------------------------------------------------------------===//
1041
1042 void StoreInst::AssertOK() {
1043   assert(getOperand(0) && getOperand(1) && "Both operands must be non-null!");
1044   assert(getOperand(1)->getType()->isPointerTy() &&
1045          "Ptr must have pointer type!");
1046   assert(getOperand(0)->getType() ==
1047                  cast<PointerType>(getOperand(1)->getType())->getElementType()
1048          && "Ptr must be a pointer to Val type!");
1049 }
1050
1051
1052 StoreInst::StoreInst(Value *val, Value *addr, Instruction *InsertBefore)
1053   : Instruction(Type::getVoidTy(val->getContext()), Store,
1054                 OperandTraits<StoreInst>::op_begin(this),
1055                 OperandTraits<StoreInst>::operands(this),
1056                 InsertBefore) {
1057   Op<0>() = val;
1058   Op<1>() = addr;
1059   setVolatile(false);
1060   setAlignment(0);
1061   AssertOK();
1062 }
1063
1064 StoreInst::StoreInst(Value *val, Value *addr, BasicBlock *InsertAtEnd)
1065   : Instruction(Type::getVoidTy(val->getContext()), Store,
1066                 OperandTraits<StoreInst>::op_begin(this),
1067                 OperandTraits<StoreInst>::operands(this),
1068                 InsertAtEnd) {
1069   Op<0>() = val;
1070   Op<1>() = addr;
1071   setVolatile(false);
1072   setAlignment(0);
1073   AssertOK();
1074 }
1075
1076 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1077                      Instruction *InsertBefore)
1078   : Instruction(Type::getVoidTy(val->getContext()), Store,
1079                 OperandTraits<StoreInst>::op_begin(this),
1080                 OperandTraits<StoreInst>::operands(this),
1081                 InsertBefore) {
1082   Op<0>() = val;
1083   Op<1>() = addr;
1084   setVolatile(isVolatile);
1085   setAlignment(0);
1086   AssertOK();
1087 }
1088
1089 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1090                      unsigned Align, Instruction *InsertBefore)
1091   : Instruction(Type::getVoidTy(val->getContext()), Store,
1092                 OperandTraits<StoreInst>::op_begin(this),
1093                 OperandTraits<StoreInst>::operands(this),
1094                 InsertBefore) {
1095   Op<0>() = val;
1096   Op<1>() = addr;
1097   setVolatile(isVolatile);
1098   setAlignment(Align);
1099   AssertOK();
1100 }
1101
1102 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1103                      unsigned Align, BasicBlock *InsertAtEnd)
1104   : Instruction(Type::getVoidTy(val->getContext()), Store,
1105                 OperandTraits<StoreInst>::op_begin(this),
1106                 OperandTraits<StoreInst>::operands(this),
1107                 InsertAtEnd) {
1108   Op<0>() = val;
1109   Op<1>() = addr;
1110   setVolatile(isVolatile);
1111   setAlignment(Align);
1112   AssertOK();
1113 }
1114
1115 StoreInst::StoreInst(Value *val, Value *addr, bool isVolatile,
1116                      BasicBlock *InsertAtEnd)
1117   : Instruction(Type::getVoidTy(val->getContext()), Store,
1118                 OperandTraits<StoreInst>::op_begin(this),
1119                 OperandTraits<StoreInst>::operands(this),
1120                 InsertAtEnd) {
1121   Op<0>() = val;
1122   Op<1>() = addr;
1123   setVolatile(isVolatile);
1124   setAlignment(0);
1125   AssertOK();
1126 }
1127
1128 void StoreInst::setAlignment(unsigned Align) {
1129   assert((Align & (Align-1)) == 0 && "Alignment is not a power of 2!");
1130   assert(Align <= MaximumAlignment &&
1131          "Alignment is greater than MaximumAlignment!");
1132   setInstructionSubclassData((getSubclassDataFromInstruction() & 1) |
1133                              ((Log2_32(Align)+1) << 1));
1134   assert(getAlignment() == Align && "Alignment representation error!");
1135 }
1136
1137 //===----------------------------------------------------------------------===//
1138 //                       GetElementPtrInst Implementation
1139 //===----------------------------------------------------------------------===//
1140
1141 static unsigned retrieveAddrSpace(const Value *Val) {
1142   return cast<PointerType>(Val->getType())->getAddressSpace();
1143 }
1144
1145 void GetElementPtrInst::init(Value *Ptr, Value* const *Idx, unsigned NumIdx,
1146                              const Twine &Name) {
1147   assert(NumOperands == 1+NumIdx && "NumOperands not initialized?");
1148   Use *OL = OperandList;
1149   OL[0] = Ptr;
1150
1151   for (unsigned i = 0; i != NumIdx; ++i)
1152     OL[i+1] = Idx[i];
1153
1154   setName(Name);
1155 }
1156
1157 void GetElementPtrInst::init(Value *Ptr, Value *Idx, const Twine &Name) {
1158   assert(NumOperands == 2 && "NumOperands not initialized?");
1159   Use *OL = OperandList;
1160   OL[0] = Ptr;
1161   OL[1] = Idx;
1162
1163   setName(Name);
1164 }
1165
1166 GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI)
1167   : Instruction(GEPI.getType(), GetElementPtr,
1168                 OperandTraits<GetElementPtrInst>::op_end(this)
1169                 - GEPI.getNumOperands(),
1170                 GEPI.getNumOperands()) {
1171   Use *OL = OperandList;
1172   Use *GEPIOL = GEPI.OperandList;
1173   for (unsigned i = 0, E = NumOperands; i != E; ++i)
1174     OL[i] = GEPIOL[i];
1175   SubclassOptionalData = GEPI.SubclassOptionalData;
1176 }
1177
1178 GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
1179                                      const Twine &Name, Instruction *InBe)
1180   : Instruction(PointerType::get(
1181       checkType(getIndexedType(Ptr->getType(),Idx)), retrieveAddrSpace(Ptr)),
1182                 GetElementPtr,
1183                 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1184                 2, InBe) {
1185   init(Ptr, Idx, Name);
1186 }
1187
1188 GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx,
1189                                      const Twine &Name, BasicBlock *IAE)
1190   : Instruction(PointerType::get(
1191             checkType(getIndexedType(Ptr->getType(),Idx)),  
1192                 retrieveAddrSpace(Ptr)),
1193                 GetElementPtr,
1194                 OperandTraits<GetElementPtrInst>::op_end(this) - 2,
1195                 2, IAE) {
1196   init(Ptr, Idx, Name);
1197 }
1198
1199 /// getIndexedType - Returns the type of the element that would be accessed with
1200 /// a gep instruction with the specified parameters.
1201 ///
1202 /// The Idxs pointer should point to a continuous piece of memory containing the
1203 /// indices, either as Value* or uint64_t.
1204 ///
1205 /// A null type is returned if the indices are invalid for the specified
1206 /// pointer type.
1207 ///
1208 template <typename IndexTy>
1209 static const Type* getIndexedTypeInternal(const Type *Ptr, IndexTy const *Idxs,
1210                                           unsigned NumIdx) {
1211   const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1212   if (!PTy) return 0;   // Type isn't a pointer type!
1213   const Type *Agg = PTy->getElementType();
1214
1215   // Handle the special case of the empty set index set, which is always valid.
1216   if (NumIdx == 0)
1217     return Agg;
1218   
1219   // If there is at least one index, the top level type must be sized, otherwise
1220   // it cannot be 'stepped over'.  We explicitly allow abstract types (those
1221   // that contain opaque types) under the assumption that it will be resolved to
1222   // a sane type later.
1223   if (!Agg->isSized() && !Agg->isAbstract())
1224     return 0;
1225
1226   unsigned CurIdx = 1;
1227   for (; CurIdx != NumIdx; ++CurIdx) {
1228     const CompositeType *CT = dyn_cast<CompositeType>(Agg);
1229     if (!CT || CT->isPointerTy()) return 0;
1230     IndexTy Index = Idxs[CurIdx];
1231     if (!CT->indexValid(Index)) return 0;
1232     Agg = CT->getTypeAtIndex(Index);
1233
1234     // If the new type forwards to another type, then it is in the middle
1235     // of being refined to another type (and hence, may have dropped all
1236     // references to what it was using before).  So, use the new forwarded
1237     // type.
1238     if (const Type *Ty = Agg->getForwardedType())
1239       Agg = Ty;
1240   }
1241   return CurIdx == NumIdx ? Agg : 0;
1242 }
1243
1244 const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
1245                                               Value* const *Idxs,
1246                                               unsigned NumIdx) {
1247   return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1248 }
1249
1250 const Type* GetElementPtrInst::getIndexedType(const Type *Ptr,
1251                                               uint64_t const *Idxs,
1252                                               unsigned NumIdx) {
1253   return getIndexedTypeInternal(Ptr, Idxs, NumIdx);
1254 }
1255
1256 const Type* GetElementPtrInst::getIndexedType(const Type *Ptr, Value *Idx) {
1257   const PointerType *PTy = dyn_cast<PointerType>(Ptr);
1258   if (!PTy) return 0;   // Type isn't a pointer type!
1259
1260   // Check the pointer index.
1261   if (!PTy->indexValid(Idx)) return 0;
1262
1263   return PTy->getElementType();
1264 }
1265
1266
1267 /// hasAllZeroIndices - Return true if all of the indices of this GEP are
1268 /// zeros.  If so, the result pointer and the first operand have the same
1269 /// value, just potentially different types.
1270 bool GetElementPtrInst::hasAllZeroIndices() const {
1271   for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1272     if (ConstantInt *CI = dyn_cast<ConstantInt>(getOperand(i))) {
1273       if (!CI->isZero()) return false;
1274     } else {
1275       return false;
1276     }
1277   }
1278   return true;
1279 }
1280
1281 /// hasAllConstantIndices - Return true if all of the indices of this GEP are
1282 /// constant integers.  If so, the result pointer and the first operand have
1283 /// a constant offset between them.
1284 bool GetElementPtrInst::hasAllConstantIndices() const {
1285   for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1286     if (!isa<ConstantInt>(getOperand(i)))
1287       return false;
1288   }
1289   return true;
1290 }
1291
1292 void GetElementPtrInst::setIsInBounds(bool B) {
1293   cast<GEPOperator>(this)->setIsInBounds(B);
1294 }
1295
1296 bool GetElementPtrInst::isInBounds() const {
1297   return cast<GEPOperator>(this)->isInBounds();
1298 }
1299
1300 //===----------------------------------------------------------------------===//
1301 //                           ExtractElementInst Implementation
1302 //===----------------------------------------------------------------------===//
1303
1304 ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
1305                                        const Twine &Name,
1306                                        Instruction *InsertBef)
1307   : Instruction(cast<VectorType>(Val->getType())->getElementType(),
1308                 ExtractElement,
1309                 OperandTraits<ExtractElementInst>::op_begin(this),
1310                 2, InsertBef) {
1311   assert(isValidOperands(Val, Index) &&
1312          "Invalid extractelement instruction operands!");
1313   Op<0>() = Val;
1314   Op<1>() = Index;
1315   setName(Name);
1316 }
1317
1318 ExtractElementInst::ExtractElementInst(Value *Val, Value *Index,
1319                                        const Twine &Name,
1320                                        BasicBlock *InsertAE)
1321   : Instruction(cast<VectorType>(Val->getType())->getElementType(),
1322                 ExtractElement,
1323                 OperandTraits<ExtractElementInst>::op_begin(this),
1324                 2, InsertAE) {
1325   assert(isValidOperands(Val, Index) &&
1326          "Invalid extractelement instruction operands!");
1327
1328   Op<0>() = Val;
1329   Op<1>() = Index;
1330   setName(Name);
1331 }
1332
1333
1334 bool ExtractElementInst::isValidOperands(const Value *Val, const Value *Index) {
1335   if (!Val->getType()->isVectorTy() || !Index->getType()->isIntegerTy(32))
1336     return false;
1337   return true;
1338 }
1339
1340
1341 //===----------------------------------------------------------------------===//
1342 //                           InsertElementInst Implementation
1343 //===----------------------------------------------------------------------===//
1344
1345 InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
1346                                      const Twine &Name,
1347                                      Instruction *InsertBef)
1348   : Instruction(Vec->getType(), InsertElement,
1349                 OperandTraits<InsertElementInst>::op_begin(this),
1350                 3, InsertBef) {
1351   assert(isValidOperands(Vec, Elt, Index) &&
1352          "Invalid insertelement instruction operands!");
1353   Op<0>() = Vec;
1354   Op<1>() = Elt;
1355   Op<2>() = Index;
1356   setName(Name);
1357 }
1358
1359 InsertElementInst::InsertElementInst(Value *Vec, Value *Elt, Value *Index,
1360                                      const Twine &Name,
1361                                      BasicBlock *InsertAE)
1362   : Instruction(Vec->getType(), InsertElement,
1363                 OperandTraits<InsertElementInst>::op_begin(this),
1364                 3, InsertAE) {
1365   assert(isValidOperands(Vec, Elt, Index) &&
1366          "Invalid insertelement instruction operands!");
1367
1368   Op<0>() = Vec;
1369   Op<1>() = Elt;
1370   Op<2>() = Index;
1371   setName(Name);
1372 }
1373
1374 bool InsertElementInst::isValidOperands(const Value *Vec, const Value *Elt, 
1375                                         const Value *Index) {
1376   if (!Vec->getType()->isVectorTy())
1377     return false;   // First operand of insertelement must be vector type.
1378   
1379   if (Elt->getType() != cast<VectorType>(Vec->getType())->getElementType())
1380     return false;// Second operand of insertelement must be vector element type.
1381     
1382   if (!Index->getType()->isIntegerTy(32))
1383     return false;  // Third operand of insertelement must be i32.
1384   return true;
1385 }
1386
1387
1388 //===----------------------------------------------------------------------===//
1389 //                      ShuffleVectorInst Implementation
1390 //===----------------------------------------------------------------------===//
1391
1392 ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1393                                      const Twine &Name,
1394                                      Instruction *InsertBefore)
1395 : Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1396                 cast<VectorType>(Mask->getType())->getNumElements()),
1397               ShuffleVector,
1398               OperandTraits<ShuffleVectorInst>::op_begin(this),
1399               OperandTraits<ShuffleVectorInst>::operands(this),
1400               InsertBefore) {
1401   assert(isValidOperands(V1, V2, Mask) &&
1402          "Invalid shuffle vector instruction operands!");
1403   Op<0>() = V1;
1404   Op<1>() = V2;
1405   Op<2>() = Mask;
1406   setName(Name);
1407 }
1408
1409 ShuffleVectorInst::ShuffleVectorInst(Value *V1, Value *V2, Value *Mask,
1410                                      const Twine &Name,
1411                                      BasicBlock *InsertAtEnd)
1412 : Instruction(VectorType::get(cast<VectorType>(V1->getType())->getElementType(),
1413                 cast<VectorType>(Mask->getType())->getNumElements()),
1414               ShuffleVector,
1415               OperandTraits<ShuffleVectorInst>::op_begin(this),
1416               OperandTraits<ShuffleVectorInst>::operands(this),
1417               InsertAtEnd) {
1418   assert(isValidOperands(V1, V2, Mask) &&
1419          "Invalid shuffle vector instruction operands!");
1420
1421   Op<0>() = V1;
1422   Op<1>() = V2;
1423   Op<2>() = Mask;
1424   setName(Name);
1425 }
1426
1427 bool ShuffleVectorInst::isValidOperands(const Value *V1, const Value *V2,
1428                                         const Value *Mask) {
1429   if (!V1->getType()->isVectorTy() || V1->getType() != V2->getType())
1430     return false;
1431   
1432   const VectorType *MaskTy = dyn_cast<VectorType>(Mask->getType());
1433   if (MaskTy == 0 || !MaskTy->getElementType()->isIntegerTy(32))
1434     return false;
1435
1436   // Check to see if Mask is valid.
1437   if (const ConstantVector *MV = dyn_cast<ConstantVector>(Mask)) {
1438     const VectorType *VTy = cast<VectorType>(V1->getType());
1439     for (unsigned i = 0, e = MV->getNumOperands(); i != e; ++i) {
1440       if (ConstantInt* CI = dyn_cast<ConstantInt>(MV->getOperand(i))) {
1441         if (CI->uge(VTy->getNumElements()*2))
1442           return false;
1443       } else if (!isa<UndefValue>(MV->getOperand(i))) {
1444         return false;
1445       }
1446     }
1447   }
1448   else if (!isa<UndefValue>(Mask) && !isa<ConstantAggregateZero>(Mask))
1449     return false;
1450   
1451   return true;
1452 }
1453
1454 /// getMaskValue - Return the index from the shuffle mask for the specified
1455 /// output result.  This is either -1 if the element is undef or a number less
1456 /// than 2*numelements.
1457 int ShuffleVectorInst::getMaskValue(unsigned i) const {
1458   const Constant *Mask = cast<Constant>(getOperand(2));
1459   if (isa<UndefValue>(Mask)) return -1;
1460   if (isa<ConstantAggregateZero>(Mask)) return 0;
1461   const ConstantVector *MaskCV = cast<ConstantVector>(Mask);
1462   assert(i < MaskCV->getNumOperands() && "Index out of range");
1463
1464   if (isa<UndefValue>(MaskCV->getOperand(i)))
1465     return -1;
1466   return cast<ConstantInt>(MaskCV->getOperand(i))->getZExtValue();
1467 }
1468
1469 //===----------------------------------------------------------------------===//
1470 //                             InsertValueInst Class
1471 //===----------------------------------------------------------------------===//
1472
1473 void InsertValueInst::init(Value *Agg, Value *Val, const unsigned *Idx, 
1474                            unsigned NumIdx, const Twine &Name) {
1475   assert(NumOperands == 2 && "NumOperands not initialized?");
1476   Op<0>() = Agg;
1477   Op<1>() = Val;
1478
1479   Indices.append(Idx, Idx + NumIdx);
1480   setName(Name);
1481 }
1482
1483 void InsertValueInst::init(Value *Agg, Value *Val, unsigned Idx, 
1484                            const Twine &Name) {
1485   assert(NumOperands == 2 && "NumOperands not initialized?");
1486   Op<0>() = Agg;
1487   Op<1>() = Val;
1488
1489   Indices.push_back(Idx);
1490   setName(Name);
1491 }
1492
1493 InsertValueInst::InsertValueInst(const InsertValueInst &IVI)
1494   : Instruction(IVI.getType(), InsertValue,
1495                 OperandTraits<InsertValueInst>::op_begin(this), 2),
1496     Indices(IVI.Indices) {
1497   Op<0>() = IVI.getOperand(0);
1498   Op<1>() = IVI.getOperand(1);
1499   SubclassOptionalData = IVI.SubclassOptionalData;
1500 }
1501
1502 InsertValueInst::InsertValueInst(Value *Agg,
1503                                  Value *Val,
1504                                  unsigned Idx, 
1505                                  const Twine &Name,
1506                                  Instruction *InsertBefore)
1507   : Instruction(Agg->getType(), InsertValue,
1508                 OperandTraits<InsertValueInst>::op_begin(this),
1509                 2, InsertBefore) {
1510   init(Agg, Val, Idx, Name);
1511 }
1512
1513 InsertValueInst::InsertValueInst(Value *Agg,
1514                                  Value *Val,
1515                                  unsigned Idx, 
1516                                  const Twine &Name,
1517                                  BasicBlock *InsertAtEnd)
1518   : Instruction(Agg->getType(), InsertValue,
1519                 OperandTraits<InsertValueInst>::op_begin(this),
1520                 2, InsertAtEnd) {
1521   init(Agg, Val, Idx, Name);
1522 }
1523
1524 //===----------------------------------------------------------------------===//
1525 //                             ExtractValueInst Class
1526 //===----------------------------------------------------------------------===//
1527
1528 void ExtractValueInst::init(const unsigned *Idx, unsigned NumIdx,
1529                             const Twine &Name) {
1530   assert(NumOperands == 1 && "NumOperands not initialized?");
1531
1532   Indices.append(Idx, Idx + NumIdx);
1533   setName(Name);
1534 }
1535
1536 void ExtractValueInst::init(unsigned Idx, const Twine &Name) {
1537   assert(NumOperands == 1 && "NumOperands not initialized?");
1538
1539   Indices.push_back(Idx);
1540   setName(Name);
1541 }
1542
1543 ExtractValueInst::ExtractValueInst(const ExtractValueInst &EVI)
1544   : UnaryInstruction(EVI.getType(), ExtractValue, EVI.getOperand(0)),
1545     Indices(EVI.Indices) {
1546   SubclassOptionalData = EVI.SubclassOptionalData;
1547 }
1548
1549 // getIndexedType - Returns the type of the element that would be extracted
1550 // with an extractvalue instruction with the specified parameters.
1551 //
1552 // A null type is returned if the indices are invalid for the specified
1553 // pointer type.
1554 //
1555 const Type* ExtractValueInst::getIndexedType(const Type *Agg,
1556                                              const unsigned *Idxs,
1557                                              unsigned NumIdx) {
1558   unsigned CurIdx = 0;
1559   for (; CurIdx != NumIdx; ++CurIdx) {
1560     const CompositeType *CT = dyn_cast<CompositeType>(Agg);
1561     if (!CT || CT->isPointerTy() || CT->isVectorTy()) return 0;
1562     unsigned Index = Idxs[CurIdx];
1563     if (!CT->indexValid(Index)) return 0;
1564     Agg = CT->getTypeAtIndex(Index);
1565
1566     // If the new type forwards to another type, then it is in the middle
1567     // of being refined to another type (and hence, may have dropped all
1568     // references to what it was using before).  So, use the new forwarded
1569     // type.
1570     if (const Type *Ty = Agg->getForwardedType())
1571       Agg = Ty;
1572   }
1573   return CurIdx == NumIdx ? Agg : 0;
1574 }
1575
1576 const Type* ExtractValueInst::getIndexedType(const Type *Agg,
1577                                              unsigned Idx) {
1578   return getIndexedType(Agg, &Idx, 1);
1579 }
1580
1581 //===----------------------------------------------------------------------===//
1582 //                             BinaryOperator Class
1583 //===----------------------------------------------------------------------===//
1584
1585 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2,
1586                                const Type *Ty, const Twine &Name,
1587                                Instruction *InsertBefore)
1588   : Instruction(Ty, iType,
1589                 OperandTraits<BinaryOperator>::op_begin(this),
1590                 OperandTraits<BinaryOperator>::operands(this),
1591                 InsertBefore) {
1592   Op<0>() = S1;
1593   Op<1>() = S2;
1594   init(iType);
1595   setName(Name);
1596 }
1597
1598 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, 
1599                                const Type *Ty, const Twine &Name,
1600                                BasicBlock *InsertAtEnd)
1601   : Instruction(Ty, iType,
1602                 OperandTraits<BinaryOperator>::op_begin(this),
1603                 OperandTraits<BinaryOperator>::operands(this),
1604                 InsertAtEnd) {
1605   Op<0>() = S1;
1606   Op<1>() = S2;
1607   init(iType);
1608   setName(Name);
1609 }
1610
1611
1612 void BinaryOperator::init(BinaryOps iType) {
1613   Value *LHS = getOperand(0), *RHS = getOperand(1);
1614   LHS = LHS; RHS = RHS; // Silence warnings.
1615   assert(LHS->getType() == RHS->getType() &&
1616          "Binary operator operand types must match!");
1617 #ifndef NDEBUG
1618   switch (iType) {
1619   case Add: case Sub:
1620   case Mul:
1621     assert(getType() == LHS->getType() &&
1622            "Arithmetic operation should return same type as operands!");
1623     assert(getType()->isIntOrIntVectorTy() &&
1624            "Tried to create an integer operation on a non-integer type!");
1625     break;
1626   case FAdd: case FSub:
1627   case FMul:
1628     assert(getType() == LHS->getType() &&
1629            "Arithmetic operation should return same type as operands!");
1630     assert(getType()->isFPOrFPVectorTy() &&
1631            "Tried to create a floating-point operation on a "
1632            "non-floating-point type!");
1633     break;
1634   case UDiv: 
1635   case SDiv: 
1636     assert(getType() == LHS->getType() &&
1637            "Arithmetic operation should return same type as operands!");
1638     assert((getType()->isIntegerTy() || (getType()->isVectorTy() && 
1639             cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
1640            "Incorrect operand type (not integer) for S/UDIV");
1641     break;
1642   case FDiv:
1643     assert(getType() == LHS->getType() &&
1644            "Arithmetic operation should return same type as operands!");
1645     assert(getType()->isFPOrFPVectorTy() &&
1646            "Incorrect operand type (not floating point) for FDIV");
1647     break;
1648   case URem: 
1649   case SRem: 
1650     assert(getType() == LHS->getType() &&
1651            "Arithmetic operation should return same type as operands!");
1652     assert((getType()->isIntegerTy() || (getType()->isVectorTy() && 
1653             cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
1654            "Incorrect operand type (not integer) for S/UREM");
1655     break;
1656   case FRem:
1657     assert(getType() == LHS->getType() &&
1658            "Arithmetic operation should return same type as operands!");
1659     assert(getType()->isFPOrFPVectorTy() &&
1660            "Incorrect operand type (not floating point) for FREM");
1661     break;
1662   case Shl:
1663   case LShr:
1664   case AShr:
1665     assert(getType() == LHS->getType() &&
1666            "Shift operation should return same type as operands!");
1667     assert((getType()->isIntegerTy() ||
1668             (getType()->isVectorTy() && 
1669              cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
1670            "Tried to create a shift operation on a non-integral type!");
1671     break;
1672   case And: case Or:
1673   case Xor:
1674     assert(getType() == LHS->getType() &&
1675            "Logical operation should return same type as operands!");
1676     assert((getType()->isIntegerTy() ||
1677             (getType()->isVectorTy() && 
1678              cast<VectorType>(getType())->getElementType()->isIntegerTy())) &&
1679            "Tried to create a logical operation on a non-integral type!");
1680     break;
1681   default:
1682     break;
1683   }
1684 #endif
1685 }
1686
1687 BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
1688                                        const Twine &Name,
1689                                        Instruction *InsertBefore) {
1690   assert(S1->getType() == S2->getType() &&
1691          "Cannot create binary operator with two operands of differing type!");
1692   return new BinaryOperator(Op, S1, S2, S1->getType(), Name, InsertBefore);
1693 }
1694
1695 BinaryOperator *BinaryOperator::Create(BinaryOps Op, Value *S1, Value *S2,
1696                                        const Twine &Name,
1697                                        BasicBlock *InsertAtEnd) {
1698   BinaryOperator *Res = Create(Op, S1, S2, Name);
1699   InsertAtEnd->getInstList().push_back(Res);
1700   return Res;
1701 }
1702
1703 BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
1704                                           Instruction *InsertBefore) {
1705   Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1706   return new BinaryOperator(Instruction::Sub,
1707                             zero, Op,
1708                             Op->getType(), Name, InsertBefore);
1709 }
1710
1711 BinaryOperator *BinaryOperator::CreateNeg(Value *Op, const Twine &Name,
1712                                           BasicBlock *InsertAtEnd) {
1713   Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1714   return new BinaryOperator(Instruction::Sub,
1715                             zero, Op,
1716                             Op->getType(), Name, InsertAtEnd);
1717 }
1718
1719 BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1720                                              Instruction *InsertBefore) {
1721   Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1722   return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertBefore);
1723 }
1724
1725 BinaryOperator *BinaryOperator::CreateNSWNeg(Value *Op, const Twine &Name,
1726                                              BasicBlock *InsertAtEnd) {
1727   Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1728   return BinaryOperator::CreateNSWSub(zero, Op, Name, InsertAtEnd);
1729 }
1730
1731 BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1732                                              Instruction *InsertBefore) {
1733   Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1734   return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertBefore);
1735 }
1736
1737 BinaryOperator *BinaryOperator::CreateNUWNeg(Value *Op, const Twine &Name,
1738                                              BasicBlock *InsertAtEnd) {
1739   Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1740   return BinaryOperator::CreateNUWSub(zero, Op, Name, InsertAtEnd);
1741 }
1742
1743 BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
1744                                            Instruction *InsertBefore) {
1745   Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1746   return new BinaryOperator(Instruction::FSub,
1747                             zero, Op,
1748                             Op->getType(), Name, InsertBefore);
1749 }
1750
1751 BinaryOperator *BinaryOperator::CreateFNeg(Value *Op, const Twine &Name,
1752                                            BasicBlock *InsertAtEnd) {
1753   Value *zero = ConstantFP::getZeroValueForNegation(Op->getType());
1754   return new BinaryOperator(Instruction::FSub,
1755                             zero, Op,
1756                             Op->getType(), Name, InsertAtEnd);
1757 }
1758
1759 BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
1760                                           Instruction *InsertBefore) {
1761   Constant *C;
1762   if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
1763     C = Constant::getAllOnesValue(PTy->getElementType());
1764     C = ConstantVector::get(
1765                               std::vector<Constant*>(PTy->getNumElements(), C));
1766   } else {
1767     C = Constant::getAllOnesValue(Op->getType());
1768   }
1769   
1770   return new BinaryOperator(Instruction::Xor, Op, C,
1771                             Op->getType(), Name, InsertBefore);
1772 }
1773
1774 BinaryOperator *BinaryOperator::CreateNot(Value *Op, const Twine &Name,
1775                                           BasicBlock *InsertAtEnd) {
1776   Constant *AllOnes;
1777   if (const VectorType *PTy = dyn_cast<VectorType>(Op->getType())) {
1778     // Create a vector of all ones values.
1779     Constant *Elt = Constant::getAllOnesValue(PTy->getElementType());
1780     AllOnes = ConstantVector::get(
1781                             std::vector<Constant*>(PTy->getNumElements(), Elt));
1782   } else {
1783     AllOnes = Constant::getAllOnesValue(Op->getType());
1784   }
1785   
1786   return new BinaryOperator(Instruction::Xor, Op, AllOnes,
1787                             Op->getType(), Name, InsertAtEnd);
1788 }
1789
1790
1791 // isConstantAllOnes - Helper function for several functions below
1792 static inline bool isConstantAllOnes(const Value *V) {
1793   if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
1794     return CI->isAllOnesValue();
1795   if (const ConstantVector *CV = dyn_cast<ConstantVector>(V))
1796     return CV->isAllOnesValue();
1797   return false;
1798 }
1799
1800 bool BinaryOperator::isNeg(const Value *V) {
1801   if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1802     if (Bop->getOpcode() == Instruction::Sub)
1803       if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1804         return C->isNegativeZeroValue();
1805   return false;
1806 }
1807
1808 bool BinaryOperator::isFNeg(const Value *V) {
1809   if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1810     if (Bop->getOpcode() == Instruction::FSub)
1811       if (Constant* C = dyn_cast<Constant>(Bop->getOperand(0)))
1812         return C->isNegativeZeroValue();
1813   return false;
1814 }
1815
1816 bool BinaryOperator::isNot(const Value *V) {
1817   if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(V))
1818     return (Bop->getOpcode() == Instruction::Xor &&
1819             (isConstantAllOnes(Bop->getOperand(1)) ||
1820              isConstantAllOnes(Bop->getOperand(0))));
1821   return false;
1822 }
1823
1824 Value *BinaryOperator::getNegArgument(Value *BinOp) {
1825   return cast<BinaryOperator>(BinOp)->getOperand(1);
1826 }
1827
1828 const Value *BinaryOperator::getNegArgument(const Value *BinOp) {
1829   return getNegArgument(const_cast<Value*>(BinOp));
1830 }
1831
1832 Value *BinaryOperator::getFNegArgument(Value *BinOp) {
1833   return cast<BinaryOperator>(BinOp)->getOperand(1);
1834 }
1835
1836 const Value *BinaryOperator::getFNegArgument(const Value *BinOp) {
1837   return getFNegArgument(const_cast<Value*>(BinOp));
1838 }
1839
1840 Value *BinaryOperator::getNotArgument(Value *BinOp) {
1841   assert(isNot(BinOp) && "getNotArgument on non-'not' instruction!");
1842   BinaryOperator *BO = cast<BinaryOperator>(BinOp);
1843   Value *Op0 = BO->getOperand(0);
1844   Value *Op1 = BO->getOperand(1);
1845   if (isConstantAllOnes(Op0)) return Op1;
1846
1847   assert(isConstantAllOnes(Op1));
1848   return Op0;
1849 }
1850
1851 const Value *BinaryOperator::getNotArgument(const Value *BinOp) {
1852   return getNotArgument(const_cast<Value*>(BinOp));
1853 }
1854
1855
1856 // swapOperands - Exchange the two operands to this instruction.  This
1857 // instruction is safe to use on any binary instruction and does not
1858 // modify the semantics of the instruction.  If the instruction is
1859 // order dependent (SetLT f.e.) the opcode is changed.
1860 //
1861 bool BinaryOperator::swapOperands() {
1862   if (!isCommutative())
1863     return true; // Can't commute operands
1864   Op<0>().swap(Op<1>());
1865   return false;
1866 }
1867
1868 void BinaryOperator::setHasNoUnsignedWrap(bool b) {
1869   cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b);
1870 }
1871
1872 void BinaryOperator::setHasNoSignedWrap(bool b) {
1873   cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b);
1874 }
1875
1876 void BinaryOperator::setIsExact(bool b) {
1877   cast<SDivOperator>(this)->setIsExact(b);
1878 }
1879
1880 bool BinaryOperator::hasNoUnsignedWrap() const {
1881   return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap();
1882 }
1883
1884 bool BinaryOperator::hasNoSignedWrap() const {
1885   return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap();
1886 }
1887
1888 bool BinaryOperator::isExact() const {
1889   return cast<SDivOperator>(this)->isExact();
1890 }
1891
1892 //===----------------------------------------------------------------------===//
1893 //                                CastInst Class
1894 //===----------------------------------------------------------------------===//
1895
1896 // Just determine if this cast only deals with integral->integral conversion.
1897 bool CastInst::isIntegerCast() const {
1898   switch (getOpcode()) {
1899     default: return false;
1900     case Instruction::ZExt:
1901     case Instruction::SExt:
1902     case Instruction::Trunc:
1903       return true;
1904     case Instruction::BitCast:
1905       return getOperand(0)->getType()->isIntegerTy() &&
1906         getType()->isIntegerTy();
1907   }
1908 }
1909
1910 bool CastInst::isLosslessCast() const {
1911   // Only BitCast can be lossless, exit fast if we're not BitCast
1912   if (getOpcode() != Instruction::BitCast)
1913     return false;
1914
1915   // Identity cast is always lossless
1916   const Type* SrcTy = getOperand(0)->getType();
1917   const Type* DstTy = getType();
1918   if (SrcTy == DstTy)
1919     return true;
1920   
1921   // Pointer to pointer is always lossless.
1922   if (SrcTy->isPointerTy())
1923     return DstTy->isPointerTy();
1924   return false;  // Other types have no identity values
1925 }
1926
1927 /// This function determines if the CastInst does not require any bits to be
1928 /// changed in order to effect the cast. Essentially, it identifies cases where
1929 /// no code gen is necessary for the cast, hence the name no-op cast.  For 
1930 /// example, the following are all no-op casts:
1931 /// # bitcast i32* %x to i8*
1932 /// # bitcast <2 x i32> %x to <4 x i16> 
1933 /// # ptrtoint i32* %x to i32     ; on 32-bit plaforms only
1934 /// @brief Determine if the described cast is a no-op.
1935 bool CastInst::isNoopCast(Instruction::CastOps Opcode,
1936                           const Type *SrcTy,
1937                           const Type *DestTy,
1938                           const Type *IntPtrTy) {
1939   switch (Opcode) {
1940     default:
1941       assert(!"Invalid CastOp");
1942     case Instruction::Trunc:
1943     case Instruction::ZExt:
1944     case Instruction::SExt: 
1945     case Instruction::FPTrunc:
1946     case Instruction::FPExt:
1947     case Instruction::UIToFP:
1948     case Instruction::SIToFP:
1949     case Instruction::FPToUI:
1950     case Instruction::FPToSI:
1951       return false; // These always modify bits
1952     case Instruction::BitCast:
1953       return true;  // BitCast never modifies bits.
1954     case Instruction::PtrToInt:
1955       return IntPtrTy->getScalarSizeInBits() ==
1956              DestTy->getScalarSizeInBits();
1957     case Instruction::IntToPtr:
1958       return IntPtrTy->getScalarSizeInBits() ==
1959              SrcTy->getScalarSizeInBits();
1960   }
1961 }
1962
1963 /// @brief Determine if a cast is a no-op.
1964 bool CastInst::isNoopCast(const Type *IntPtrTy) const {
1965   return isNoopCast(getOpcode(), getOperand(0)->getType(), getType(), IntPtrTy);
1966 }
1967
1968 /// This function determines if a pair of casts can be eliminated and what 
1969 /// opcode should be used in the elimination. This assumes that there are two 
1970 /// instructions like this:
1971 /// *  %F = firstOpcode SrcTy %x to MidTy
1972 /// *  %S = secondOpcode MidTy %F to DstTy
1973 /// The function returns a resultOpcode so these two casts can be replaced with:
1974 /// *  %Replacement = resultOpcode %SrcTy %x to DstTy
1975 /// If no such cast is permited, the function returns 0.
1976 unsigned CastInst::isEliminableCastPair(
1977   Instruction::CastOps firstOp, Instruction::CastOps secondOp,
1978   const Type *SrcTy, const Type *MidTy, const Type *DstTy, const Type *IntPtrTy)
1979 {
1980   // Define the 144 possibilities for these two cast instructions. The values
1981   // in this matrix determine what to do in a given situation and select the
1982   // case in the switch below.  The rows correspond to firstOp, the columns 
1983   // correspond to secondOp.  In looking at the table below, keep in  mind
1984   // the following cast properties:
1985   //
1986   //          Size Compare       Source               Destination
1987   // Operator  Src ? Size   Type       Sign         Type       Sign
1988   // -------- ------------ -------------------   ---------------------
1989   // TRUNC         >       Integer      Any        Integral     Any
1990   // ZEXT          <       Integral   Unsigned     Integer      Any
1991   // SEXT          <       Integral    Signed      Integer      Any
1992   // FPTOUI       n/a      FloatPt      n/a        Integral   Unsigned
1993   // FPTOSI       n/a      FloatPt      n/a        Integral    Signed 
1994   // UITOFP       n/a      Integral   Unsigned     FloatPt      n/a   
1995   // SITOFP       n/a      Integral    Signed      FloatPt      n/a   
1996   // FPTRUNC       >       FloatPt      n/a        FloatPt      n/a   
1997   // FPEXT         <       FloatPt      n/a        FloatPt      n/a   
1998   // PTRTOINT     n/a      Pointer      n/a        Integral   Unsigned
1999   // INTTOPTR     n/a      Integral   Unsigned     Pointer      n/a
2000   // BITCAST       =       FirstClass   n/a       FirstClass    n/a   
2001   //
2002   // NOTE: some transforms are safe, but we consider them to be non-profitable.
2003   // For example, we could merge "fptoui double to i32" + "zext i32 to i64",
2004   // into "fptoui double to i64", but this loses information about the range
2005   // of the produced value (we no longer know the top-part is all zeros). 
2006   // Further this conversion is often much more expensive for typical hardware,
2007   // and causes issues when building libgcc.  We disallow fptosi+sext for the 
2008   // same reason.
2009   const unsigned numCastOps = 
2010     Instruction::CastOpsEnd - Instruction::CastOpsBegin;
2011   static const uint8_t CastResults[numCastOps][numCastOps] = {
2012     // T        F  F  U  S  F  F  P  I  B   -+
2013     // R  Z  S  P  P  I  I  T  P  2  N  T    |
2014     // U  E  E  2  2  2  2  R  E  I  T  C    +- secondOp
2015     // N  X  X  U  S  F  F  N  X  N  2  V    |
2016     // C  T  T  I  I  P  P  C  T  T  P  T   -+
2017     {  1, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // Trunc      -+
2018     {  8, 1, 9,99,99, 2, 0,99,99,99, 2, 3 }, // ZExt        |
2019     {  8, 0, 1,99,99, 0, 2,99,99,99, 0, 3 }, // SExt        |
2020     {  0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToUI      |
2021     {  0, 0, 0,99,99, 0, 0,99,99,99, 0, 3 }, // FPToSI      |
2022     { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // UIToFP      +- firstOp
2023     { 99,99,99, 0, 0,99,99, 0, 0,99,99, 4 }, // SIToFP      |
2024     { 99,99,99, 0, 0,99,99, 1, 0,99,99, 4 }, // FPTrunc     |
2025     { 99,99,99, 2, 2,99,99,10, 2,99,99, 4 }, // FPExt       |
2026     {  1, 0, 0,99,99, 0, 0,99,99,99, 7, 3 }, // PtrToInt    |
2027     { 99,99,99,99,99,99,99,99,99,13,99,12 }, // IntToPtr    |
2028     {  5, 5, 5, 6, 6, 5, 5, 6, 6,11, 5, 1 }, // BitCast    -+
2029   };
2030   
2031   // If either of the casts are a bitcast from scalar to vector, disallow the
2032   // merging.
2033   if ((firstOp == Instruction::BitCast &&
2034        isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2035       (secondOp == Instruction::BitCast &&
2036        isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2037     return 0; // Disallowed
2038
2039   int ElimCase = CastResults[firstOp-Instruction::CastOpsBegin]
2040                             [secondOp-Instruction::CastOpsBegin];
2041   switch (ElimCase) {
2042     case 0: 
2043       // categorically disallowed
2044       return 0;
2045     case 1: 
2046       // allowed, use first cast's opcode
2047       return firstOp;
2048     case 2: 
2049       // allowed, use second cast's opcode
2050       return secondOp;
2051     case 3: 
2052       // no-op cast in second op implies firstOp as long as the DestTy 
2053       // is integer and we are not converting between a vector and a
2054       // non vector type.
2055       if (!SrcTy->isVectorTy() && DstTy->isIntegerTy())
2056         return firstOp;
2057       return 0;
2058     case 4:
2059       // no-op cast in second op implies firstOp as long as the DestTy
2060       // is floating point.
2061       if (DstTy->isFloatingPointTy())
2062         return firstOp;
2063       return 0;
2064     case 5: 
2065       // no-op cast in first op implies secondOp as long as the SrcTy
2066       // is an integer.
2067       if (SrcTy->isIntegerTy())
2068         return secondOp;
2069       return 0;
2070     case 6:
2071       // no-op cast in first op implies secondOp as long as the SrcTy
2072       // is a floating point.
2073       if (SrcTy->isFloatingPointTy())
2074         return secondOp;
2075       return 0;
2076     case 7: { 
2077       // ptrtoint, inttoptr -> bitcast (ptr -> ptr) if int size is >= ptr size
2078       if (!IntPtrTy)
2079         return 0;
2080       unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2081       unsigned MidSize = MidTy->getScalarSizeInBits();
2082       if (MidSize >= PtrSize)
2083         return Instruction::BitCast;
2084       return 0;
2085     }
2086     case 8: {
2087       // ext, trunc -> bitcast,    if the SrcTy and DstTy are same size
2088       // ext, trunc -> ext,        if sizeof(SrcTy) < sizeof(DstTy)
2089       // ext, trunc -> trunc,      if sizeof(SrcTy) > sizeof(DstTy)
2090       unsigned SrcSize = SrcTy->getScalarSizeInBits();
2091       unsigned DstSize = DstTy->getScalarSizeInBits();
2092       if (SrcSize == DstSize)
2093         return Instruction::BitCast;
2094       else if (SrcSize < DstSize)
2095         return firstOp;
2096       return secondOp;
2097     }
2098     case 9: // zext, sext -> zext, because sext can't sign extend after zext
2099       return Instruction::ZExt;
2100     case 10:
2101       // fpext followed by ftrunc is allowed if the bit size returned to is
2102       // the same as the original, in which case its just a bitcast
2103       if (SrcTy == DstTy)
2104         return Instruction::BitCast;
2105       return 0; // If the types are not the same we can't eliminate it.
2106     case 11:
2107       // bitcast followed by ptrtoint is allowed as long as the bitcast
2108       // is a pointer to pointer cast.
2109       if (SrcTy->isPointerTy() && MidTy->isPointerTy())
2110         return secondOp;
2111       return 0;
2112     case 12:
2113       // inttoptr, bitcast -> intptr  if bitcast is a ptr to ptr cast
2114       if (MidTy->isPointerTy() && DstTy->isPointerTy())
2115         return firstOp;
2116       return 0;
2117     case 13: {
2118       // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
2119       if (!IntPtrTy)
2120         return 0;
2121       unsigned PtrSize = IntPtrTy->getScalarSizeInBits();
2122       unsigned SrcSize = SrcTy->getScalarSizeInBits();
2123       unsigned DstSize = DstTy->getScalarSizeInBits();
2124       if (SrcSize <= PtrSize && SrcSize == DstSize)
2125         return Instruction::BitCast;
2126       return 0;
2127     }
2128     case 99: 
2129       // cast combination can't happen (error in input). This is for all cases
2130       // where the MidTy is not the same for the two cast instructions.
2131       assert(!"Invalid Cast Combination");
2132       return 0;
2133     default:
2134       assert(!"Error in CastResults table!!!");
2135       return 0;
2136   }
2137   return 0;
2138 }
2139
2140 CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty, 
2141   const Twine &Name, Instruction *InsertBefore) {
2142   // Construct and return the appropriate CastInst subclass
2143   switch (op) {
2144     case Trunc:    return new TruncInst    (S, Ty, Name, InsertBefore);
2145     case ZExt:     return new ZExtInst     (S, Ty, Name, InsertBefore);
2146     case SExt:     return new SExtInst     (S, Ty, Name, InsertBefore);
2147     case FPTrunc:  return new FPTruncInst  (S, Ty, Name, InsertBefore);
2148     case FPExt:    return new FPExtInst    (S, Ty, Name, InsertBefore);
2149     case UIToFP:   return new UIToFPInst   (S, Ty, Name, InsertBefore);
2150     case SIToFP:   return new SIToFPInst   (S, Ty, Name, InsertBefore);
2151     case FPToUI:   return new FPToUIInst   (S, Ty, Name, InsertBefore);
2152     case FPToSI:   return new FPToSIInst   (S, Ty, Name, InsertBefore);
2153     case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertBefore);
2154     case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertBefore);
2155     case BitCast:  return new BitCastInst  (S, Ty, Name, InsertBefore);
2156     default:
2157       assert(!"Invalid opcode provided");
2158   }
2159   return 0;
2160 }
2161
2162 CastInst *CastInst::Create(Instruction::CastOps op, Value *S, const Type *Ty,
2163   const Twine &Name, BasicBlock *InsertAtEnd) {
2164   // Construct and return the appropriate CastInst subclass
2165   switch (op) {
2166     case Trunc:    return new TruncInst    (S, Ty, Name, InsertAtEnd);
2167     case ZExt:     return new ZExtInst     (S, Ty, Name, InsertAtEnd);
2168     case SExt:     return new SExtInst     (S, Ty, Name, InsertAtEnd);
2169     case FPTrunc:  return new FPTruncInst  (S, Ty, Name, InsertAtEnd);
2170     case FPExt:    return new FPExtInst    (S, Ty, Name, InsertAtEnd);
2171     case UIToFP:   return new UIToFPInst   (S, Ty, Name, InsertAtEnd);
2172     case SIToFP:   return new SIToFPInst   (S, Ty, Name, InsertAtEnd);
2173     case FPToUI:   return new FPToUIInst   (S, Ty, Name, InsertAtEnd);
2174     case FPToSI:   return new FPToSIInst   (S, Ty, Name, InsertAtEnd);
2175     case PtrToInt: return new PtrToIntInst (S, Ty, Name, InsertAtEnd);
2176     case IntToPtr: return new IntToPtrInst (S, Ty, Name, InsertAtEnd);
2177     case BitCast:  return new BitCastInst  (S, Ty, Name, InsertAtEnd);
2178     default:
2179       assert(!"Invalid opcode provided");
2180   }
2181   return 0;
2182 }
2183
2184 CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty, 
2185                                         const Twine &Name,
2186                                         Instruction *InsertBefore) {
2187   if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
2188     return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2189   return Create(Instruction::ZExt, S, Ty, Name, InsertBefore);
2190 }
2191
2192 CastInst *CastInst::CreateZExtOrBitCast(Value *S, const Type *Ty, 
2193                                         const Twine &Name,
2194                                         BasicBlock *InsertAtEnd) {
2195   if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
2196     return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2197   return Create(Instruction::ZExt, S, Ty, Name, InsertAtEnd);
2198 }
2199
2200 CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty, 
2201                                         const Twine &Name,
2202                                         Instruction *InsertBefore) {
2203   if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
2204     return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2205   return Create(Instruction::SExt, S, Ty, Name, InsertBefore);
2206 }
2207
2208 CastInst *CastInst::CreateSExtOrBitCast(Value *S, const Type *Ty, 
2209                                         const Twine &Name,
2210                                         BasicBlock *InsertAtEnd) {
2211   if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
2212     return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2213   return Create(Instruction::SExt, S, Ty, Name, InsertAtEnd);
2214 }
2215
2216 CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
2217                                          const Twine &Name,
2218                                          Instruction *InsertBefore) {
2219   if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
2220     return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2221   return Create(Instruction::Trunc, S, Ty, Name, InsertBefore);
2222 }
2223
2224 CastInst *CastInst::CreateTruncOrBitCast(Value *S, const Type *Ty,
2225                                          const Twine &Name, 
2226                                          BasicBlock *InsertAtEnd) {
2227   if (S->getType()->getScalarSizeInBits() == Ty->getScalarSizeInBits())
2228     return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2229   return Create(Instruction::Trunc, S, Ty, Name, InsertAtEnd);
2230 }
2231
2232 CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty,
2233                                       const Twine &Name,
2234                                       BasicBlock *InsertAtEnd) {
2235   assert(S->getType()->isPointerTy() && "Invalid cast");
2236   assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
2237          "Invalid cast");
2238
2239   if (Ty->isIntegerTy())
2240     return Create(Instruction::PtrToInt, S, Ty, Name, InsertAtEnd);
2241   return Create(Instruction::BitCast, S, Ty, Name, InsertAtEnd);
2242 }
2243
2244 /// @brief Create a BitCast or a PtrToInt cast instruction
2245 CastInst *CastInst::CreatePointerCast(Value *S, const Type *Ty, 
2246                                       const Twine &Name, 
2247                                       Instruction *InsertBefore) {
2248   assert(S->getType()->isPointerTy() && "Invalid cast");
2249   assert((Ty->isIntegerTy() || Ty->isPointerTy()) &&
2250          "Invalid cast");
2251
2252   if (Ty->isIntegerTy())
2253     return Create(Instruction::PtrToInt, S, Ty, Name, InsertBefore);
2254   return Create(Instruction::BitCast, S, Ty, Name, InsertBefore);
2255 }
2256
2257 CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty, 
2258                                       bool isSigned, const Twine &Name,
2259                                       Instruction *InsertBefore) {
2260   assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
2261          "Invalid integer cast");
2262   unsigned SrcBits = C->getType()->getScalarSizeInBits();
2263   unsigned DstBits = Ty->getScalarSizeInBits();
2264   Instruction::CastOps opcode =
2265     (SrcBits == DstBits ? Instruction::BitCast :
2266      (SrcBits > DstBits ? Instruction::Trunc :
2267       (isSigned ? Instruction::SExt : Instruction::ZExt)));
2268   return Create(opcode, C, Ty, Name, InsertBefore);
2269 }
2270
2271 CastInst *CastInst::CreateIntegerCast(Value *C, const Type *Ty, 
2272                                       bool isSigned, const Twine &Name,
2273                                       BasicBlock *InsertAtEnd) {
2274   assert(C->getType()->isIntOrIntVectorTy() && Ty->isIntOrIntVectorTy() &&
2275          "Invalid cast");
2276   unsigned SrcBits = C->getType()->getScalarSizeInBits();
2277   unsigned DstBits = Ty->getScalarSizeInBits();
2278   Instruction::CastOps opcode =
2279     (SrcBits == DstBits ? Instruction::BitCast :
2280      (SrcBits > DstBits ? Instruction::Trunc :
2281       (isSigned ? Instruction::SExt : Instruction::ZExt)));
2282   return Create(opcode, C, Ty, Name, InsertAtEnd);
2283 }
2284
2285 CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty, 
2286                                  const Twine &Name, 
2287                                  Instruction *InsertBefore) {
2288   assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
2289          "Invalid cast");
2290   unsigned SrcBits = C->getType()->getScalarSizeInBits();
2291   unsigned DstBits = Ty->getScalarSizeInBits();
2292   Instruction::CastOps opcode =
2293     (SrcBits == DstBits ? Instruction::BitCast :
2294      (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
2295   return Create(opcode, C, Ty, Name, InsertBefore);
2296 }
2297
2298 CastInst *CastInst::CreateFPCast(Value *C, const Type *Ty, 
2299                                  const Twine &Name, 
2300                                  BasicBlock *InsertAtEnd) {
2301   assert(C->getType()->isFPOrFPVectorTy() && Ty->isFPOrFPVectorTy() &&
2302          "Invalid cast");
2303   unsigned SrcBits = C->getType()->getScalarSizeInBits();
2304   unsigned DstBits = Ty->getScalarSizeInBits();
2305   Instruction::CastOps opcode =
2306     (SrcBits == DstBits ? Instruction::BitCast :
2307      (SrcBits > DstBits ? Instruction::FPTrunc : Instruction::FPExt));
2308   return Create(opcode, C, Ty, Name, InsertAtEnd);
2309 }
2310
2311 // Check whether it is valid to call getCastOpcode for these types.
2312 // This routine must be kept in sync with getCastOpcode.
2313 bool CastInst::isCastable(const Type *SrcTy, const Type *DestTy) {
2314   if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
2315     return false;
2316
2317   if (SrcTy == DestTy)
2318     return true;
2319
2320   // Get the bit sizes, we'll need these
2321   unsigned SrcBits = SrcTy->getScalarSizeInBits();   // 0 for ptr
2322   unsigned DestBits = DestTy->getScalarSizeInBits(); // 0 for ptr
2323
2324   // Run through the possibilities ...
2325   if (DestTy->isIntegerTy()) {                   // Casting to integral
2326     if (SrcTy->isIntegerTy()) {                  // Casting from integral
2327         return true;
2328     } else if (SrcTy->isFloatingPointTy()) {     // Casting from floating pt
2329       return true;
2330     } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
2331                                                // Casting from vector
2332       return DestBits == PTy->getBitWidth();
2333     } else {                                   // Casting from something else
2334       return SrcTy->isPointerTy();
2335     }
2336   } else if (DestTy->isFloatingPointTy()) {      // Casting to floating pt
2337     if (SrcTy->isIntegerTy()) {                  // Casting from integral
2338       return true;
2339     } else if (SrcTy->isFloatingPointTy()) {     // Casting from floating pt
2340       return true;
2341     } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
2342                                                // Casting from vector
2343       return DestBits == PTy->getBitWidth();
2344     } else {                                   // Casting from something else
2345       return false;
2346     }
2347   } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
2348                                                 // Casting to vector
2349     if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
2350                                                 // Casting from vector
2351       return DestPTy->getBitWidth() == SrcPTy->getBitWidth();
2352     } else {                                    // Casting from something else
2353       return DestPTy->getBitWidth() == SrcBits;
2354     }
2355   } else if (DestTy->isPointerTy()) {        // Casting to pointer
2356     if (SrcTy->isPointerTy()) {              // Casting from pointer
2357       return true;
2358     } else if (SrcTy->isIntegerTy()) {            // Casting from integral
2359       return true;
2360     } else {                                    // Casting from something else
2361       return false;
2362     }
2363   } else if (DestTy->isX86_MMXTy()) {     
2364     return SrcBits == 64;
2365   } else {                                      // Casting to something else
2366     return false;
2367   }
2368 }
2369
2370 // Provide a way to get a "cast" where the cast opcode is inferred from the 
2371 // types and size of the operand. This, basically, is a parallel of the 
2372 // logic in the castIsValid function below.  This axiom should hold:
2373 //   castIsValid( getCastOpcode(Val, Ty), Val, Ty)
2374 // should not assert in castIsValid. In other words, this produces a "correct"
2375 // casting opcode for the arguments passed to it.
2376 // This routine must be kept in sync with isCastable.
2377 Instruction::CastOps
2378 CastInst::getCastOpcode(
2379   const Value *Src, bool SrcIsSigned, const Type *DestTy, bool DestIsSigned) {
2380   // Get the bit sizes, we'll need these
2381   const Type *SrcTy = Src->getType();
2382   unsigned SrcBits = SrcTy->getScalarSizeInBits();   // 0 for ptr
2383   unsigned DestBits = DestTy->getScalarSizeInBits(); // 0 for ptr
2384
2385   assert(SrcTy->isFirstClassType() && DestTy->isFirstClassType() &&
2386          "Only first class types are castable!");
2387
2388   // Run through the possibilities ...
2389   if (DestTy->isIntegerTy()) {                      // Casting to integral
2390     if (SrcTy->isIntegerTy()) {                     // Casting from integral
2391       if (DestBits < SrcBits)
2392         return Trunc;                               // int -> smaller int
2393       else if (DestBits > SrcBits) {                // its an extension
2394         if (SrcIsSigned)
2395           return SExt;                              // signed -> SEXT
2396         else
2397           return ZExt;                              // unsigned -> ZEXT
2398       } else {
2399         return BitCast;                             // Same size, No-op cast
2400       }
2401     } else if (SrcTy->isFloatingPointTy()) {        // Casting from floating pt
2402       if (DestIsSigned) 
2403         return FPToSI;                              // FP -> sint
2404       else
2405         return FPToUI;                              // FP -> uint 
2406     } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
2407       assert(DestBits == PTy->getBitWidth() &&
2408                "Casting vector to integer of different width");
2409       PTy = NULL;
2410       return BitCast;                             // Same size, no-op cast
2411     } else {
2412       assert(SrcTy->isPointerTy() &&
2413              "Casting from a value that is not first-class type");
2414       return PtrToInt;                              // ptr -> int
2415     }
2416   } else if (DestTy->isFloatingPointTy()) {         // Casting to floating pt
2417     if (SrcTy->isIntegerTy()) {                     // Casting from integral
2418       if (SrcIsSigned)
2419         return SIToFP;                              // sint -> FP
2420       else
2421         return UIToFP;                              // uint -> FP
2422     } else if (SrcTy->isFloatingPointTy()) {        // Casting from floating pt
2423       if (DestBits < SrcBits) {
2424         return FPTrunc;                             // FP -> smaller FP
2425       } else if (DestBits > SrcBits) {
2426         return FPExt;                               // FP -> larger FP
2427       } else  {
2428         return BitCast;                             // same size, no-op cast
2429       }
2430     } else if (const VectorType *PTy = dyn_cast<VectorType>(SrcTy)) {
2431       assert(DestBits == PTy->getBitWidth() &&
2432              "Casting vector to floating point of different width");
2433       PTy = NULL;
2434       return BitCast;                             // same size, no-op cast
2435     } else {
2436       llvm_unreachable("Casting pointer or non-first class to float");
2437     }
2438   } else if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
2439     if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
2440       assert(DestPTy->getBitWidth() == SrcPTy->getBitWidth() &&
2441              "Casting vector to vector of different widths");
2442       SrcPTy = NULL;
2443       return BitCast;                             // vector -> vector
2444     } else if (DestPTy->getBitWidth() == SrcBits) {
2445       return BitCast;                               // float/int -> vector
2446     } else if (SrcTy->isX86_MMXTy()) {
2447       assert(DestPTy->getBitWidth()==64 &&
2448              "Casting X86_MMX to vector of wrong width");
2449       return BitCast;                             // MMX to 64-bit vector
2450     } else {
2451       assert(!"Illegal cast to vector (wrong type or size)");
2452     }
2453   } else if (DestTy->isPointerTy()) {
2454     if (SrcTy->isPointerTy()) {
2455       return BitCast;                               // ptr -> ptr
2456     } else if (SrcTy->isIntegerTy()) {
2457       return IntToPtr;                              // int -> ptr
2458     } else {
2459       assert(!"Casting pointer to other than pointer or int");
2460     }
2461   } else if (DestTy->isX86_MMXTy()) {
2462     if (const VectorType *SrcPTy = dyn_cast<VectorType>(SrcTy)) {
2463       assert(SrcPTy->getBitWidth()==64 &&
2464              "Casting vector of wrong width to X86_MMX");
2465       SrcPTy = NULL;      // inhibit compiler warning
2466       return BitCast;                               // 64-bit vector to MMX
2467     } else {
2468       assert(!"Illegal cast to X86_MMX");
2469     }
2470   } else {
2471     assert(!"Casting to type that is not first-class");
2472   }
2473
2474   // If we fall through to here we probably hit an assertion cast above
2475   // and assertions are not turned on. Anything we return is an error, so
2476   // BitCast is as good a choice as any.
2477   return BitCast;
2478 }
2479
2480 //===----------------------------------------------------------------------===//
2481 //                    CastInst SubClass Constructors
2482 //===----------------------------------------------------------------------===//
2483
2484 /// Check that the construction parameters for a CastInst are correct. This
2485 /// could be broken out into the separate constructors but it is useful to have
2486 /// it in one place and to eliminate the redundant code for getting the sizes
2487 /// of the types involved.
2488 bool 
2489 CastInst::castIsValid(Instruction::CastOps op, Value *S, const Type *DstTy) {
2490
2491   // Check for type sanity on the arguments
2492   const Type *SrcTy = S->getType();
2493   if (!SrcTy->isFirstClassType() || !DstTy->isFirstClassType() ||
2494       SrcTy->isAggregateType() || DstTy->isAggregateType())
2495     return false;
2496
2497   // Get the size of the types in bits, we'll need this later
2498   unsigned SrcBitSize = SrcTy->getScalarSizeInBits();
2499   unsigned DstBitSize = DstTy->getScalarSizeInBits();
2500
2501   // Switch on the opcode provided
2502   switch (op) {
2503   default: return false; // This is an input error
2504   case Instruction::Trunc:
2505     return SrcTy->isIntOrIntVectorTy() &&
2506            DstTy->isIntOrIntVectorTy()&& SrcBitSize > DstBitSize;
2507   case Instruction::ZExt:
2508     return SrcTy->isIntOrIntVectorTy() &&
2509            DstTy->isIntOrIntVectorTy()&& SrcBitSize < DstBitSize;
2510   case Instruction::SExt: 
2511     return SrcTy->isIntOrIntVectorTy() &&
2512            DstTy->isIntOrIntVectorTy()&& SrcBitSize < DstBitSize;
2513   case Instruction::FPTrunc:
2514     return SrcTy->isFPOrFPVectorTy() &&
2515            DstTy->isFPOrFPVectorTy() && 
2516            SrcBitSize > DstBitSize;
2517   case Instruction::FPExt:
2518     return SrcTy->isFPOrFPVectorTy() &&
2519            DstTy->isFPOrFPVectorTy() && 
2520            SrcBitSize < DstBitSize;
2521   case Instruction::UIToFP:
2522   case Instruction::SIToFP:
2523     if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2524       if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
2525         return SVTy->getElementType()->isIntOrIntVectorTy() &&
2526                DVTy->getElementType()->isFPOrFPVectorTy() &&
2527                SVTy->getNumElements() == DVTy->getNumElements();
2528       }
2529     }
2530     return SrcTy->isIntOrIntVectorTy() && DstTy->isFPOrFPVectorTy();
2531   case Instruction::FPToUI:
2532   case Instruction::FPToSI:
2533     if (const VectorType *SVTy = dyn_cast<VectorType>(SrcTy)) {
2534       if (const VectorType *DVTy = dyn_cast<VectorType>(DstTy)) {
2535         return SVTy->getElementType()->isFPOrFPVectorTy() &&
2536                DVTy->getElementType()->isIntOrIntVectorTy() &&
2537                SVTy->getNumElements() == DVTy->getNumElements();
2538       }
2539     }
2540     return SrcTy->isFPOrFPVectorTy() && DstTy->isIntOrIntVectorTy();
2541   case Instruction::PtrToInt:
2542     return SrcTy->isPointerTy() && DstTy->isIntegerTy();
2543   case Instruction::IntToPtr:
2544     return SrcTy->isIntegerTy() && DstTy->isPointerTy();
2545   case Instruction::BitCast:
2546     // BitCast implies a no-op cast of type only. No bits change.
2547     // However, you can't cast pointers to anything but pointers.
2548     if (SrcTy->isPointerTy() != DstTy->isPointerTy())
2549       return false;
2550
2551     // Now we know we're not dealing with a pointer/non-pointer mismatch. In all
2552     // these cases, the cast is okay if the source and destination bit widths
2553     // are identical.
2554     return SrcTy->getPrimitiveSizeInBits() == DstTy->getPrimitiveSizeInBits();
2555   }
2556 }
2557
2558 TruncInst::TruncInst(
2559   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2560 ) : CastInst(Ty, Trunc, S, Name, InsertBefore) {
2561   assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
2562 }
2563
2564 TruncInst::TruncInst(
2565   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2566 ) : CastInst(Ty, Trunc, S, Name, InsertAtEnd) { 
2567   assert(castIsValid(getOpcode(), S, Ty) && "Illegal Trunc");
2568 }
2569
2570 ZExtInst::ZExtInst(
2571   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2572 )  : CastInst(Ty, ZExt, S, Name, InsertBefore) { 
2573   assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
2574 }
2575
2576 ZExtInst::ZExtInst(
2577   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2578 )  : CastInst(Ty, ZExt, S, Name, InsertAtEnd) { 
2579   assert(castIsValid(getOpcode(), S, Ty) && "Illegal ZExt");
2580 }
2581 SExtInst::SExtInst(
2582   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2583 ) : CastInst(Ty, SExt, S, Name, InsertBefore) { 
2584   assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
2585 }
2586
2587 SExtInst::SExtInst(
2588   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2589 )  : CastInst(Ty, SExt, S, Name, InsertAtEnd) { 
2590   assert(castIsValid(getOpcode(), S, Ty) && "Illegal SExt");
2591 }
2592
2593 FPTruncInst::FPTruncInst(
2594   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2595 ) : CastInst(Ty, FPTrunc, S, Name, InsertBefore) { 
2596   assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
2597 }
2598
2599 FPTruncInst::FPTruncInst(
2600   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2601 ) : CastInst(Ty, FPTrunc, S, Name, InsertAtEnd) { 
2602   assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPTrunc");
2603 }
2604
2605 FPExtInst::FPExtInst(
2606   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2607 ) : CastInst(Ty, FPExt, S, Name, InsertBefore) { 
2608   assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
2609 }
2610
2611 FPExtInst::FPExtInst(
2612   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2613 ) : CastInst(Ty, FPExt, S, Name, InsertAtEnd) { 
2614   assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPExt");
2615 }
2616
2617 UIToFPInst::UIToFPInst(
2618   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2619 ) : CastInst(Ty, UIToFP, S, Name, InsertBefore) { 
2620   assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
2621 }
2622
2623 UIToFPInst::UIToFPInst(
2624   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2625 ) : CastInst(Ty, UIToFP, S, Name, InsertAtEnd) { 
2626   assert(castIsValid(getOpcode(), S, Ty) && "Illegal UIToFP");
2627 }
2628
2629 SIToFPInst::SIToFPInst(
2630   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2631 ) : CastInst(Ty, SIToFP, S, Name, InsertBefore) { 
2632   assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
2633 }
2634
2635 SIToFPInst::SIToFPInst(
2636   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2637 ) : CastInst(Ty, SIToFP, S, Name, InsertAtEnd) { 
2638   assert(castIsValid(getOpcode(), S, Ty) && "Illegal SIToFP");
2639 }
2640
2641 FPToUIInst::FPToUIInst(
2642   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2643 ) : CastInst(Ty, FPToUI, S, Name, InsertBefore) { 
2644   assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
2645 }
2646
2647 FPToUIInst::FPToUIInst(
2648   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2649 ) : CastInst(Ty, FPToUI, S, Name, InsertAtEnd) { 
2650   assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToUI");
2651 }
2652
2653 FPToSIInst::FPToSIInst(
2654   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2655 ) : CastInst(Ty, FPToSI, S, Name, InsertBefore) { 
2656   assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
2657 }
2658
2659 FPToSIInst::FPToSIInst(
2660   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2661 ) : CastInst(Ty, FPToSI, S, Name, InsertAtEnd) { 
2662   assert(castIsValid(getOpcode(), S, Ty) && "Illegal FPToSI");
2663 }
2664
2665 PtrToIntInst::PtrToIntInst(
2666   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2667 ) : CastInst(Ty, PtrToInt, S, Name, InsertBefore) { 
2668   assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
2669 }
2670
2671 PtrToIntInst::PtrToIntInst(
2672   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2673 ) : CastInst(Ty, PtrToInt, S, Name, InsertAtEnd) { 
2674   assert(castIsValid(getOpcode(), S, Ty) && "Illegal PtrToInt");
2675 }
2676
2677 IntToPtrInst::IntToPtrInst(
2678   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2679 ) : CastInst(Ty, IntToPtr, S, Name, InsertBefore) { 
2680   assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
2681 }
2682
2683 IntToPtrInst::IntToPtrInst(
2684   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2685 ) : CastInst(Ty, IntToPtr, S, Name, InsertAtEnd) { 
2686   assert(castIsValid(getOpcode(), S, Ty) && "Illegal IntToPtr");
2687 }
2688
2689 BitCastInst::BitCastInst(
2690   Value *S, const Type *Ty, const Twine &Name, Instruction *InsertBefore
2691 ) : CastInst(Ty, BitCast, S, Name, InsertBefore) { 
2692   assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
2693 }
2694
2695 BitCastInst::BitCastInst(
2696   Value *S, const Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd
2697 ) : CastInst(Ty, BitCast, S, Name, InsertAtEnd) { 
2698   assert(castIsValid(getOpcode(), S, Ty) && "Illegal BitCast");
2699 }
2700
2701 //===----------------------------------------------------------------------===//
2702 //                               CmpInst Classes
2703 //===----------------------------------------------------------------------===//
2704
2705 void CmpInst::Anchor() const {}
2706
2707 CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
2708                  Value *LHS, Value *RHS, const Twine &Name,
2709                  Instruction *InsertBefore)
2710   : Instruction(ty, op,
2711                 OperandTraits<CmpInst>::op_begin(this),
2712                 OperandTraits<CmpInst>::operands(this),
2713                 InsertBefore) {
2714     Op<0>() = LHS;
2715     Op<1>() = RHS;
2716   setPredicate((Predicate)predicate);
2717   setName(Name);
2718 }
2719
2720 CmpInst::CmpInst(const Type *ty, OtherOps op, unsigned short predicate,
2721                  Value *LHS, Value *RHS, const Twine &Name,
2722                  BasicBlock *InsertAtEnd)
2723   : Instruction(ty, op,
2724                 OperandTraits<CmpInst>::op_begin(this),
2725                 OperandTraits<CmpInst>::operands(this),
2726                 InsertAtEnd) {
2727   Op<0>() = LHS;
2728   Op<1>() = RHS;
2729   setPredicate((Predicate)predicate);
2730   setName(Name);
2731 }
2732
2733 CmpInst *
2734 CmpInst::Create(OtherOps Op, unsigned short predicate,
2735                 Value *S1, Value *S2, 
2736                 const Twine &Name, Instruction *InsertBefore) {
2737   if (Op == Instruction::ICmp) {
2738     if (InsertBefore)
2739       return new ICmpInst(InsertBefore, CmpInst::Predicate(predicate),
2740                           S1, S2, Name);
2741     else
2742       return new ICmpInst(CmpInst::Predicate(predicate),
2743                           S1, S2, Name);
2744   }
2745   
2746   if (InsertBefore)
2747     return new FCmpInst(InsertBefore, CmpInst::Predicate(predicate),
2748                         S1, S2, Name);
2749   else
2750     return new FCmpInst(CmpInst::Predicate(predicate),
2751                         S1, S2, Name);
2752 }
2753
2754 CmpInst *
2755 CmpInst::Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2, 
2756                 const Twine &Name, BasicBlock *InsertAtEnd) {
2757   if (Op == Instruction::ICmp) {
2758     return new ICmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2759                         S1, S2, Name);
2760   }
2761   return new FCmpInst(*InsertAtEnd, CmpInst::Predicate(predicate),
2762                       S1, S2, Name);
2763 }
2764
2765 void CmpInst::swapOperands() {
2766   if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2767     IC->swapOperands();
2768   else
2769     cast<FCmpInst>(this)->swapOperands();
2770 }
2771
2772 bool CmpInst::isCommutative() {
2773   if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2774     return IC->isCommutative();
2775   return cast<FCmpInst>(this)->isCommutative();
2776 }
2777
2778 bool CmpInst::isEquality() {
2779   if (ICmpInst *IC = dyn_cast<ICmpInst>(this))
2780     return IC->isEquality();
2781   return cast<FCmpInst>(this)->isEquality();
2782 }
2783
2784
2785 CmpInst::Predicate CmpInst::getInversePredicate(Predicate pred) {
2786   switch (pred) {
2787     default: assert(!"Unknown cmp predicate!");
2788     case ICMP_EQ: return ICMP_NE;
2789     case ICMP_NE: return ICMP_EQ;
2790     case ICMP_UGT: return ICMP_ULE;
2791     case ICMP_ULT: return ICMP_UGE;
2792     case ICMP_UGE: return ICMP_ULT;
2793     case ICMP_ULE: return ICMP_UGT;
2794     case ICMP_SGT: return ICMP_SLE;
2795     case ICMP_SLT: return ICMP_SGE;
2796     case ICMP_SGE: return ICMP_SLT;
2797     case ICMP_SLE: return ICMP_SGT;
2798
2799     case FCMP_OEQ: return FCMP_UNE;
2800     case FCMP_ONE: return FCMP_UEQ;
2801     case FCMP_OGT: return FCMP_ULE;
2802     case FCMP_OLT: return FCMP_UGE;
2803     case FCMP_OGE: return FCMP_ULT;
2804     case FCMP_OLE: return FCMP_UGT;
2805     case FCMP_UEQ: return FCMP_ONE;
2806     case FCMP_UNE: return FCMP_OEQ;
2807     case FCMP_UGT: return FCMP_OLE;
2808     case FCMP_ULT: return FCMP_OGE;
2809     case FCMP_UGE: return FCMP_OLT;
2810     case FCMP_ULE: return FCMP_OGT;
2811     case FCMP_ORD: return FCMP_UNO;
2812     case FCMP_UNO: return FCMP_ORD;
2813     case FCMP_TRUE: return FCMP_FALSE;
2814     case FCMP_FALSE: return FCMP_TRUE;
2815   }
2816 }
2817
2818 ICmpInst::Predicate ICmpInst::getSignedPredicate(Predicate pred) {
2819   switch (pred) {
2820     default: assert(! "Unknown icmp predicate!");
2821     case ICMP_EQ: case ICMP_NE: 
2822     case ICMP_SGT: case ICMP_SLT: case ICMP_SGE: case ICMP_SLE: 
2823        return pred;
2824     case ICMP_UGT: return ICMP_SGT;
2825     case ICMP_ULT: return ICMP_SLT;
2826     case ICMP_UGE: return ICMP_SGE;
2827     case ICMP_ULE: return ICMP_SLE;
2828   }
2829 }
2830
2831 ICmpInst::Predicate ICmpInst::getUnsignedPredicate(Predicate pred) {
2832   switch (pred) {
2833     default: assert(! "Unknown icmp predicate!");
2834     case ICMP_EQ: case ICMP_NE: 
2835     case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE: 
2836        return pred;
2837     case ICMP_SGT: return ICMP_UGT;
2838     case ICMP_SLT: return ICMP_ULT;
2839     case ICMP_SGE: return ICMP_UGE;
2840     case ICMP_SLE: return ICMP_ULE;
2841   }
2842 }
2843
2844 /// Initialize a set of values that all satisfy the condition with C.
2845 ///
2846 ConstantRange 
2847 ICmpInst::makeConstantRange(Predicate pred, const APInt &C) {
2848   APInt Lower(C);
2849   APInt Upper(C);
2850   uint32_t BitWidth = C.getBitWidth();
2851   switch (pred) {
2852   default: llvm_unreachable("Invalid ICmp opcode to ConstantRange ctor!");
2853   case ICmpInst::ICMP_EQ: Upper++; break;
2854   case ICmpInst::ICMP_NE: Lower++; break;
2855   case ICmpInst::ICMP_ULT:
2856     Lower = APInt::getMinValue(BitWidth);
2857     // Check for an empty-set condition.
2858     if (Lower == Upper)
2859       return ConstantRange(BitWidth, /*isFullSet=*/false);
2860     break;
2861   case ICmpInst::ICMP_SLT:
2862     Lower = APInt::getSignedMinValue(BitWidth);
2863     // Check for an empty-set condition.
2864     if (Lower == Upper)
2865       return ConstantRange(BitWidth, /*isFullSet=*/false);
2866     break;
2867   case ICmpInst::ICMP_UGT: 
2868     Lower++; Upper = APInt::getMinValue(BitWidth);        // Min = Next(Max)
2869     // Check for an empty-set condition.
2870     if (Lower == Upper)
2871       return ConstantRange(BitWidth, /*isFullSet=*/false);
2872     break;
2873   case ICmpInst::ICMP_SGT:
2874     Lower++; Upper = APInt::getSignedMinValue(BitWidth);  // Min = Next(Max)
2875     // Check for an empty-set condition.
2876     if (Lower == Upper)
2877       return ConstantRange(BitWidth, /*isFullSet=*/false);
2878     break;
2879   case ICmpInst::ICMP_ULE: 
2880     Lower = APInt::getMinValue(BitWidth); Upper++; 
2881     // Check for a full-set condition.
2882     if (Lower == Upper)
2883       return ConstantRange(BitWidth, /*isFullSet=*/true);
2884     break;
2885   case ICmpInst::ICMP_SLE: 
2886     Lower = APInt::getSignedMinValue(BitWidth); Upper++; 
2887     // Check for a full-set condition.
2888     if (Lower == Upper)
2889       return ConstantRange(BitWidth, /*isFullSet=*/true);
2890     break;
2891   case ICmpInst::ICMP_UGE:
2892     Upper = APInt::getMinValue(BitWidth);        // Min = Next(Max)
2893     // Check for a full-set condition.
2894     if (Lower == Upper)
2895       return ConstantRange(BitWidth, /*isFullSet=*/true);
2896     break;
2897   case ICmpInst::ICMP_SGE:
2898     Upper = APInt::getSignedMinValue(BitWidth);  // Min = Next(Max)
2899     // Check for a full-set condition.
2900     if (Lower == Upper)
2901       return ConstantRange(BitWidth, /*isFullSet=*/true);
2902     break;
2903   }
2904   return ConstantRange(Lower, Upper);
2905 }
2906
2907 CmpInst::Predicate CmpInst::getSwappedPredicate(Predicate pred) {
2908   switch (pred) {
2909     default: assert(!"Unknown cmp predicate!");
2910     case ICMP_EQ: case ICMP_NE:
2911       return pred;
2912     case ICMP_SGT: return ICMP_SLT;
2913     case ICMP_SLT: return ICMP_SGT;
2914     case ICMP_SGE: return ICMP_SLE;
2915     case ICMP_SLE: return ICMP_SGE;
2916     case ICMP_UGT: return ICMP_ULT;
2917     case ICMP_ULT: return ICMP_UGT;
2918     case ICMP_UGE: return ICMP_ULE;
2919     case ICMP_ULE: return ICMP_UGE;
2920   
2921     case FCMP_FALSE: case FCMP_TRUE:
2922     case FCMP_OEQ: case FCMP_ONE:
2923     case FCMP_UEQ: case FCMP_UNE:
2924     case FCMP_ORD: case FCMP_UNO:
2925       return pred;
2926     case FCMP_OGT: return FCMP_OLT;
2927     case FCMP_OLT: return FCMP_OGT;
2928     case FCMP_OGE: return FCMP_OLE;
2929     case FCMP_OLE: return FCMP_OGE;
2930     case FCMP_UGT: return FCMP_ULT;
2931     case FCMP_ULT: return FCMP_UGT;
2932     case FCMP_UGE: return FCMP_ULE;
2933     case FCMP_ULE: return FCMP_UGE;
2934   }
2935 }
2936
2937 bool CmpInst::isUnsigned(unsigned short predicate) {
2938   switch (predicate) {
2939     default: return false;
2940     case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT: 
2941     case ICmpInst::ICMP_UGE: return true;
2942   }
2943 }
2944
2945 bool CmpInst::isSigned(unsigned short predicate) {
2946   switch (predicate) {
2947     default: return false;
2948     case ICmpInst::ICMP_SLT: case ICmpInst::ICMP_SLE: case ICmpInst::ICMP_SGT: 
2949     case ICmpInst::ICMP_SGE: return true;
2950   }
2951 }
2952
2953 bool CmpInst::isOrdered(unsigned short predicate) {
2954   switch (predicate) {
2955     default: return false;
2956     case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT: 
2957     case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE: 
2958     case FCmpInst::FCMP_ORD: return true;
2959   }
2960 }
2961       
2962 bool CmpInst::isUnordered(unsigned short predicate) {
2963   switch (predicate) {
2964     default: return false;
2965     case FCmpInst::FCMP_UEQ: case FCmpInst::FCMP_UNE: case FCmpInst::FCMP_UGT: 
2966     case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE: 
2967     case FCmpInst::FCMP_UNO: return true;
2968   }
2969 }
2970
2971 bool CmpInst::isTrueWhenEqual(unsigned short predicate) {
2972   switch(predicate) {
2973     default: return false;
2974     case ICMP_EQ:   case ICMP_UGE: case ICMP_ULE: case ICMP_SGE: case ICMP_SLE:
2975     case FCMP_TRUE: case FCMP_UEQ: case FCMP_UGE: case FCMP_ULE: return true;
2976   }
2977 }
2978
2979 bool CmpInst::isFalseWhenEqual(unsigned short predicate) {
2980   switch(predicate) {
2981   case ICMP_NE:    case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT:
2982   case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true;
2983   default: return false;
2984   }
2985 }
2986
2987
2988 //===----------------------------------------------------------------------===//
2989 //                        SwitchInst Implementation
2990 //===----------------------------------------------------------------------===//
2991
2992 void SwitchInst::init(Value *Value, BasicBlock *Default, unsigned NumCases) {
2993   assert(Value && Default);
2994   ReservedSpace = 2+NumCases*2;
2995   NumOperands = 2;
2996   OperandList = allocHungoffUses(ReservedSpace);
2997
2998   OperandList[0] = Value;
2999   OperandList[1] = Default;
3000 }
3001
3002 /// SwitchInst ctor - Create a new switch instruction, specifying a value to
3003 /// switch on and a default destination.  The number of additional cases can
3004 /// be specified here to make memory allocation more efficient.  This
3005 /// constructor can also autoinsert before another instruction.
3006 SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3007                        Instruction *InsertBefore)
3008   : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
3009                    0, 0, InsertBefore) {
3010   init(Value, Default, NumCases);
3011 }
3012
3013 /// SwitchInst ctor - Create a new switch instruction, specifying a value to
3014 /// switch on and a default destination.  The number of additional cases can
3015 /// be specified here to make memory allocation more efficient.  This
3016 /// constructor also autoinserts at the end of the specified BasicBlock.
3017 SwitchInst::SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases,
3018                        BasicBlock *InsertAtEnd)
3019   : TerminatorInst(Type::getVoidTy(Value->getContext()), Instruction::Switch,
3020                    0, 0, InsertAtEnd) {
3021   init(Value, Default, NumCases);
3022 }
3023
3024 SwitchInst::SwitchInst(const SwitchInst &SI)
3025   : TerminatorInst(Type::getVoidTy(SI.getContext()), Instruction::Switch,
3026                    allocHungoffUses(SI.getNumOperands()), SI.getNumOperands()) {
3027   Use *OL = OperandList, *InOL = SI.OperandList;
3028   for (unsigned i = 0, E = SI.getNumOperands(); i != E; i+=2) {
3029     OL[i] = InOL[i];
3030     OL[i+1] = InOL[i+1];
3031   }
3032   SubclassOptionalData = SI.SubclassOptionalData;
3033 }
3034
3035 SwitchInst::~SwitchInst() {
3036   dropHungoffUses(OperandList);
3037 }
3038
3039
3040 /// addCase - Add an entry to the switch instruction...
3041 ///
3042 void SwitchInst::addCase(ConstantInt *OnVal, BasicBlock *Dest) {
3043   unsigned OpNo = NumOperands;
3044   if (OpNo+2 > ReservedSpace)
3045     resizeOperands(0);  // Get more space!
3046   // Initialize some new operands.
3047   assert(OpNo+1 < ReservedSpace && "Growing didn't work!");
3048   NumOperands = OpNo+2;
3049   OperandList[OpNo] = OnVal;
3050   OperandList[OpNo+1] = Dest;
3051 }
3052
3053 /// removeCase - This method removes the specified successor from the switch
3054 /// instruction.  Note that this cannot be used to remove the default
3055 /// destination (successor #0).
3056 ///
3057 void SwitchInst::removeCase(unsigned idx) {
3058   assert(idx != 0 && "Cannot remove the default case!");
3059   assert(idx*2 < getNumOperands() && "Successor index out of range!!!");
3060
3061   unsigned NumOps = getNumOperands();
3062   Use *OL = OperandList;
3063
3064   // Move everything after this operand down.
3065   //
3066   // FIXME: we could just swap with the end of the list, then erase.  However,
3067   // client might not expect this to happen.  The code as it is thrashes the
3068   // use/def lists, which is kinda lame.
3069   for (unsigned i = (idx+1)*2; i != NumOps; i += 2) {
3070     OL[i-2] = OL[i];
3071     OL[i-2+1] = OL[i+1];
3072   }
3073
3074   // Nuke the last value.
3075   OL[NumOps-2].set(0);
3076   OL[NumOps-2+1].set(0);
3077   NumOperands = NumOps-2;
3078 }
3079
3080 /// resizeOperands - resize operands - This adjusts the length of the operands
3081 /// list according to the following behavior:
3082 ///   1. If NumOps == 0, grow the operand list in response to a push_back style
3083 ///      of operation.  This grows the number of ops by 3 times.
3084 ///   2. If NumOps > NumOperands, reserve space for NumOps operands.
3085 ///   3. If NumOps == NumOperands, trim the reserved space.
3086 ///
3087 void SwitchInst::resizeOperands(unsigned NumOps) {
3088   unsigned e = getNumOperands();
3089   if (NumOps == 0) {
3090     NumOps = e*3;
3091   } else if (NumOps*2 > NumOperands) {
3092     // No resize needed.
3093     if (ReservedSpace >= NumOps) return;
3094   } else if (NumOps == NumOperands) {
3095     if (ReservedSpace == NumOps) return;
3096   } else {
3097     return;
3098   }
3099
3100   ReservedSpace = NumOps;
3101   Use *NewOps = allocHungoffUses(NumOps);
3102   Use *OldOps = OperandList;
3103   for (unsigned i = 0; i != e; ++i) {
3104       NewOps[i] = OldOps[i];
3105   }
3106   OperandList = NewOps;
3107   if (OldOps) Use::zap(OldOps, OldOps + e, true);
3108 }
3109
3110
3111 BasicBlock *SwitchInst::getSuccessorV(unsigned idx) const {
3112   return getSuccessor(idx);
3113 }
3114 unsigned SwitchInst::getNumSuccessorsV() const {
3115   return getNumSuccessors();
3116 }
3117 void SwitchInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3118   setSuccessor(idx, B);
3119 }
3120
3121 //===----------------------------------------------------------------------===//
3122 //                        SwitchInst Implementation
3123 //===----------------------------------------------------------------------===//
3124
3125 void IndirectBrInst::init(Value *Address, unsigned NumDests) {
3126   assert(Address && Address->getType()->isPointerTy() &&
3127          "Address of indirectbr must be a pointer");
3128   ReservedSpace = 1+NumDests;
3129   NumOperands = 1;
3130   OperandList = allocHungoffUses(ReservedSpace);
3131   
3132   OperandList[0] = Address;
3133 }
3134
3135
3136 /// resizeOperands - resize operands - This adjusts the length of the operands
3137 /// list according to the following behavior:
3138 ///   1. If NumOps == 0, grow the operand list in response to a push_back style
3139 ///      of operation.  This grows the number of ops by 2 times.
3140 ///   2. If NumOps > NumOperands, reserve space for NumOps operands.
3141 ///   3. If NumOps == NumOperands, trim the reserved space.
3142 ///
3143 void IndirectBrInst::resizeOperands(unsigned NumOps) {
3144   unsigned e = getNumOperands();
3145   if (NumOps == 0) {
3146     NumOps = e*2;
3147   } else if (NumOps*2 > NumOperands) {
3148     // No resize needed.
3149     if (ReservedSpace >= NumOps) return;
3150   } else if (NumOps == NumOperands) {
3151     if (ReservedSpace == NumOps) return;
3152   } else {
3153     return;
3154   }
3155   
3156   ReservedSpace = NumOps;
3157   Use *NewOps = allocHungoffUses(NumOps);
3158   Use *OldOps = OperandList;
3159   for (unsigned i = 0; i != e; ++i)
3160     NewOps[i] = OldOps[i];
3161   OperandList = NewOps;
3162   if (OldOps) Use::zap(OldOps, OldOps + e, true);
3163 }
3164
3165 IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3166                                Instruction *InsertBefore)
3167 : TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
3168                  0, 0, InsertBefore) {
3169   init(Address, NumCases);
3170 }
3171
3172 IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3173                                BasicBlock *InsertAtEnd)
3174 : TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
3175                  0, 0, InsertAtEnd) {
3176   init(Address, NumCases);
3177 }
3178
3179 IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI)
3180   : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
3181                    allocHungoffUses(IBI.getNumOperands()),
3182                    IBI.getNumOperands()) {
3183   Use *OL = OperandList, *InOL = IBI.OperandList;
3184   for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3185     OL[i] = InOL[i];
3186   SubclassOptionalData = IBI.SubclassOptionalData;
3187 }
3188
3189 IndirectBrInst::~IndirectBrInst() {
3190   dropHungoffUses(OperandList);
3191 }
3192
3193 /// addDestination - Add a destination.
3194 ///
3195 void IndirectBrInst::addDestination(BasicBlock *DestBB) {
3196   unsigned OpNo = NumOperands;
3197   if (OpNo+1 > ReservedSpace)
3198     resizeOperands(0);  // Get more space!
3199   // Initialize some new operands.
3200   assert(OpNo < ReservedSpace && "Growing didn't work!");
3201   NumOperands = OpNo+1;
3202   OperandList[OpNo] = DestBB;
3203 }
3204
3205 /// removeDestination - This method removes the specified successor from the
3206 /// indirectbr instruction.
3207 void IndirectBrInst::removeDestination(unsigned idx) {
3208   assert(idx < getNumOperands()-1 && "Successor index out of range!");
3209   
3210   unsigned NumOps = getNumOperands();
3211   Use *OL = OperandList;
3212
3213   // Replace this value with the last one.
3214   OL[idx+1] = OL[NumOps-1];
3215   
3216   // Nuke the last value.
3217   OL[NumOps-1].set(0);
3218   NumOperands = NumOps-1;
3219 }
3220
3221 BasicBlock *IndirectBrInst::getSuccessorV(unsigned idx) const {
3222   return getSuccessor(idx);
3223 }
3224 unsigned IndirectBrInst::getNumSuccessorsV() const {
3225   return getNumSuccessors();
3226 }
3227 void IndirectBrInst::setSuccessorV(unsigned idx, BasicBlock *B) {
3228   setSuccessor(idx, B);
3229 }
3230
3231 //===----------------------------------------------------------------------===//
3232 //                           clone_impl() implementations
3233 //===----------------------------------------------------------------------===//
3234
3235 // Define these methods here so vtables don't get emitted into every translation
3236 // unit that uses these classes.
3237
3238 GetElementPtrInst *GetElementPtrInst::clone_impl() const {
3239   return new (getNumOperands()) GetElementPtrInst(*this);
3240 }
3241
3242 BinaryOperator *BinaryOperator::clone_impl() const {
3243   return Create(getOpcode(), Op<0>(), Op<1>());
3244 }
3245
3246 FCmpInst* FCmpInst::clone_impl() const {
3247   return new FCmpInst(getPredicate(), Op<0>(), Op<1>());
3248 }
3249
3250 ICmpInst* ICmpInst::clone_impl() const {
3251   return new ICmpInst(getPredicate(), Op<0>(), Op<1>());
3252 }
3253
3254 ExtractValueInst *ExtractValueInst::clone_impl() const {
3255   return new ExtractValueInst(*this);
3256 }
3257
3258 InsertValueInst *InsertValueInst::clone_impl() const {
3259   return new InsertValueInst(*this);
3260 }
3261
3262 AllocaInst *AllocaInst::clone_impl() const {
3263   return new AllocaInst(getAllocatedType(),
3264                         (Value*)getOperand(0),
3265                         getAlignment());
3266 }
3267
3268 LoadInst *LoadInst::clone_impl() const {
3269   return new LoadInst(getOperand(0),
3270                       Twine(), isVolatile(),
3271                       getAlignment());
3272 }
3273
3274 StoreInst *StoreInst::clone_impl() const {
3275   return new StoreInst(getOperand(0), getOperand(1),
3276                        isVolatile(), getAlignment());
3277 }
3278
3279 TruncInst *TruncInst::clone_impl() const {
3280   return new TruncInst(getOperand(0), getType());
3281 }
3282
3283 ZExtInst *ZExtInst::clone_impl() const {
3284   return new ZExtInst(getOperand(0), getType());
3285 }
3286
3287 SExtInst *SExtInst::clone_impl() const {
3288   return new SExtInst(getOperand(0), getType());
3289 }
3290
3291 FPTruncInst *FPTruncInst::clone_impl() const {
3292   return new FPTruncInst(getOperand(0), getType());
3293 }
3294
3295 FPExtInst *FPExtInst::clone_impl() const {
3296   return new FPExtInst(getOperand(0), getType());
3297 }
3298
3299 UIToFPInst *UIToFPInst::clone_impl() const {
3300   return new UIToFPInst(getOperand(0), getType());
3301 }
3302
3303 SIToFPInst *SIToFPInst::clone_impl() const {
3304   return new SIToFPInst(getOperand(0), getType());
3305 }
3306
3307 FPToUIInst *FPToUIInst::clone_impl() const {
3308   return new FPToUIInst(getOperand(0), getType());
3309 }
3310
3311 FPToSIInst *FPToSIInst::clone_impl() const {
3312   return new FPToSIInst(getOperand(0), getType());
3313 }
3314
3315 PtrToIntInst *PtrToIntInst::clone_impl() const {
3316   return new PtrToIntInst(getOperand(0), getType());
3317 }
3318
3319 IntToPtrInst *IntToPtrInst::clone_impl() const {
3320   return new IntToPtrInst(getOperand(0), getType());
3321 }
3322
3323 BitCastInst *BitCastInst::clone_impl() const {
3324   return new BitCastInst(getOperand(0), getType());
3325 }
3326
3327 CallInst *CallInst::clone_impl() const {
3328   return  new(getNumOperands()) CallInst(*this);
3329 }
3330
3331 SelectInst *SelectInst::clone_impl() const {
3332   return SelectInst::Create(getOperand(0), getOperand(1), getOperand(2));
3333 }
3334
3335 VAArgInst *VAArgInst::clone_impl() const {
3336   return new VAArgInst(getOperand(0), getType());
3337 }
3338
3339 ExtractElementInst *ExtractElementInst::clone_impl() const {
3340   return ExtractElementInst::Create(getOperand(0), getOperand(1));
3341 }
3342
3343 InsertElementInst *InsertElementInst::clone_impl() const {
3344   return InsertElementInst::Create(getOperand(0),
3345                                    getOperand(1),
3346                                    getOperand(2));
3347 }
3348
3349 ShuffleVectorInst *ShuffleVectorInst::clone_impl() const {
3350   return new ShuffleVectorInst(getOperand(0),
3351                            getOperand(1),
3352                            getOperand(2));
3353 }
3354
3355 PHINode *PHINode::clone_impl() const {
3356   return new PHINode(*this);
3357 }
3358
3359 ReturnInst *ReturnInst::clone_impl() const {
3360   return new(getNumOperands()) ReturnInst(*this);
3361 }
3362
3363 BranchInst *BranchInst::clone_impl() const {
3364   unsigned Ops(getNumOperands());
3365   return new(Ops, Ops == 1) BranchInst(*this);
3366 }
3367
3368 SwitchInst *SwitchInst::clone_impl() const {
3369   return new SwitchInst(*this);
3370 }
3371
3372 IndirectBrInst *IndirectBrInst::clone_impl() const {
3373   return new IndirectBrInst(*this);
3374 }
3375
3376
3377 InvokeInst *InvokeInst::clone_impl() const {
3378   return new(getNumOperands()) InvokeInst(*this);
3379 }
3380
3381 UnwindInst *UnwindInst::clone_impl() const {
3382   LLVMContext &Context = getContext();
3383   return new UnwindInst(Context);
3384 }
3385
3386 UnreachableInst *UnreachableInst::clone_impl() const {
3387   LLVMContext &Context = getContext();
3388   return new UnreachableInst(Context);
3389 }