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