blob: c4cffc22d7d111d967f849bd316dfcaa02374091 [file] [log] [blame]
Chris Lattnercf3056d2003-10-13 03:32:08 +00001//===-- iSwitch.cpp - Implement the Switch instruction --------------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner00950542001-06-06 20:29:01 +00009//
10// This file implements the Switch instruction...
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/iTerminators.h"
15#include "llvm/BasicBlock.h"
Chris Lattner4b74c832003-11-20 17:45:12 +000016using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000017
Chris Lattner2aa83112002-09-10 15:45:53 +000018SwitchInst::SwitchInst(Value *V, BasicBlock *DefaultDest,
19 Instruction *InsertBefore)
20 : TerminatorInst(Instruction::Switch, InsertBefore) {
21 assert(V && DefaultDest);
Chris Lattnerc8b25d42001-07-07 08:36:50 +000022 Operands.push_back(Use(V, this));
Chris Lattner2aa83112002-09-10 15:45:53 +000023 Operands.push_back(Use(DefaultDest, this));
Chris Lattner00950542001-06-06 20:29:01 +000024}
25
Chris Lattner4b74c832003-11-20 17:45:12 +000026SwitchInst::SwitchInst(Value *V, BasicBlock *DefaultDest,
27 BasicBlock *InsertAtEnd)
28 : TerminatorInst(Instruction::Switch, InsertAtEnd) {
29 assert(V && DefaultDest);
30 Operands.push_back(Use(V, this));
31 Operands.push_back(Use(DefaultDest, this));
32}
33
Chris Lattner00950542001-06-06 20:29:01 +000034SwitchInst::SwitchInst(const SwitchInst &SI)
Chris Lattnerc8b25d42001-07-07 08:36:50 +000035 : TerminatorInst(Instruction::Switch) {
36 Operands.reserve(SI.Operands.size());
Chris Lattner00950542001-06-06 20:29:01 +000037
Chris Lattnerc8b25d42001-07-07 08:36:50 +000038 for (unsigned i = 0, E = SI.Operands.size(); i != E; i+=2) {
39 Operands.push_back(Use(SI.Operands[i], this));
40 Operands.push_back(Use(SI.Operands[i+1], this));
41 }
Chris Lattner00950542001-06-06 20:29:01 +000042}
43
Chris Lattner131d19f2003-08-23 23:14:37 +000044/// addCase - Add an entry to the switch instruction...
45///
46void SwitchInst::addCase(Constant *OnVal, BasicBlock *Dest) {
Chris Lattner991bc4e2002-04-09 18:37:08 +000047 Operands.push_back(Use((Value*)OnVal, this));
48 Operands.push_back(Use((Value*)Dest, this));
Chris Lattner00950542001-06-06 20:29:01 +000049}
Chris Lattner131d19f2003-08-23 23:14:37 +000050
51/// removeCase - This method removes the specified successor from the switch
52/// instruction. Note that this cannot be used to remove the default
53/// destination (successor #0).
54///
55void SwitchInst::removeCase(unsigned idx) {
56 assert(idx != 0 && "Cannot remove the default case!");
57 assert(idx*2 < Operands.size() && "Successor index out of range!!!");
58 Operands.erase(Operands.begin()+idx*2, Operands.begin()+(idx+1)*2);
59}