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