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