Implement support for inserting an instruction into a basic block right when it
[oota-llvm.git] / include / llvm / iPHINode.h
1 //===-- llvm/iPHINode.h - PHI instruction definition -------------*- C++ -*--=//
2 //
3 // This file defines the PHINode class.
4 //
5 //===----------------------------------------------------------------------===//
6
7 #ifndef LLVM_IPHINODE_H
8 #define LLVM_IPHINODE_H
9
10 #include "llvm/Instruction.h"
11 class BasicBlock;
12
13 //===----------------------------------------------------------------------===//
14 //                               PHINode Class
15 //===----------------------------------------------------------------------===//
16
17 // PHINode - The PHINode class is used to represent the magical mystical PHI
18 // node, that can not exist in nature, but can be synthesized in a computer
19 // scientist's overactive imagination.
20 //
21 class PHINode : public Instruction {
22   PHINode(const PHINode &PN);
23 public:
24   PHINode(const Type *Ty, const std::string &Name = "",
25           Instruction *InsertBefore = 0)
26     : Instruction(Ty, Instruction::PHINode, Name, InsertBefore) {
27   }
28
29   virtual Instruction *clone() const { return new PHINode(*this); }
30
31   /// getNumIncomingValues - Return the number of incoming edges the PHI node
32   /// has
33   unsigned getNumIncomingValues() const { return Operands.size()/2; }
34
35   /// getIncomingValue - Return incoming value #x
36   const Value *getIncomingValue(unsigned i) const {
37     return Operands[i*2];
38   }
39   Value *getIncomingValue(unsigned i) {
40     return Operands[i*2];
41   }
42   void setIncomingValue(unsigned i, Value *V) {
43     Operands[i*2] = V;
44   }
45
46   /// getIncomingBlock - Return incoming basic block #x
47   const BasicBlock *getIncomingBlock(unsigned i) const { 
48     return (const BasicBlock*)Operands[i*2+1].get();
49   }
50   inline BasicBlock *getIncomingBlock(unsigned i) { 
51     return (BasicBlock*)Operands[i*2+1].get();
52   }
53   inline void setIncomingBlock(unsigned i, BasicBlock *BB) {
54     Operands[i*2+1] = (Value*)BB;
55   }
56
57   /// addIncoming - Add an incoming value to the end of the PHI list
58   void addIncoming(Value *D, BasicBlock *BB);
59   
60   /// removeIncomingValue - Remove an incoming value.  This is useful if a
61   /// predecessor basic block is deleted.  The value removed is returned.
62   Value *removeIncomingValue(const BasicBlock *BB);
63
64   /// getBasicBlockIndex - Return the first index of the specified basic 
65   /// block in the value list for this PHI.  Returns -1 if no instance.
66   ///
67   int getBasicBlockIndex(const BasicBlock *BB) const {
68     for (unsigned i = 0; i < Operands.size()/2; ++i) 
69       if (getIncomingBlock(i) == BB) return i;
70     return -1;
71   }
72
73   /// Methods for support type inquiry through isa, cast, and dyn_cast:
74   static inline bool classof(const PHINode *) { return true; }
75   static inline bool classof(const Instruction *I) {
76     return I->getOpcode() == Instruction::PHINode; 
77   }
78   static inline bool classof(const Value *V) {
79     return isa<Instruction>(V) && classof(cast<Instruction>(V));
80   }
81 };
82
83 #endif