Work around apparent Apple compiler bug which was making all mangled
[oota-llvm.git] / lib / VMCore / iSwitch.cpp
1 //===-- iSwitch.cpp - Implement the Switch instruction --------------------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the Switch instruction...
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/iTerminators.h"
15 #include "llvm/BasicBlock.h"
16 using namespace llvm;
17
18 void SwitchInst::init(Value *Value, BasicBlock *Default)
19 {
20   assert(Value && Default);
21   Operands.push_back(Use(Value, this));
22   Operands.push_back(Use(Default, this));
23 }
24
25 SwitchInst::SwitchInst(const SwitchInst &SI) 
26   : TerminatorInst(Instruction::Switch) {
27   Operands.reserve(SI.Operands.size());
28
29   for (unsigned i = 0, E = SI.Operands.size(); i != E; i+=2) {
30     Operands.push_back(Use(SI.Operands[i], this));
31     Operands.push_back(Use(SI.Operands[i+1], this));
32   }
33 }
34
35 /// addCase - Add an entry to the switch instruction...
36 ///
37 void SwitchInst::addCase(Constant *OnVal, BasicBlock *Dest) {
38   Operands.push_back(Use((Value*)OnVal, this));
39   Operands.push_back(Use((Value*)Dest, this));
40 }
41
42 /// removeCase - This method removes the specified successor from the switch
43 /// instruction.  Note that this cannot be used to remove the default
44 /// destination (successor #0).
45 ///
46 void SwitchInst::removeCase(unsigned idx) {
47   assert(idx != 0 && "Cannot remove the default case!");
48   assert(idx*2 < Operands.size() && "Successor index out of range!!!");
49   Operands.erase(Operands.begin()+idx*2, Operands.begin()+(idx+1)*2);  
50 }