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