Lexer doesn't create typehandle gross stuff now, parser does.
[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
26   virtual Instruction *clone() const { return new PHINode(*this); }
27   virtual const char *getOpcodeName() const { return "phi"; }
28
29   // getNumIncomingValues - Return the number of incoming edges the PHI node has
30   inline unsigned getNumIncomingValues() const { return Operands.size()/2; }
31
32   // getIncomingValue - Return incoming value #x
33   inline const Value *getIncomingValue(unsigned i) const {
34     return Operands[i*2];
35   }
36   inline Value *getIncomingValue(unsigned i) {
37     return Operands[i*2];
38   }
39   inline void setIncomingValue(unsigned i, Value *V) {
40     Operands[i*2] = V;
41   }
42
43   // getIncomingBlock - Return incoming basic block #x
44   inline const BasicBlock *getIncomingBlock(unsigned i) const { 
45     return (const BasicBlock*)Operands[i*2+1].get();
46   }
47   inline BasicBlock *getIncomingBlock(unsigned i) { 
48     return (BasicBlock*)Operands[i*2+1].get();
49   }
50   inline void setIncomingBlock(unsigned i, BasicBlock *BB) {
51     Operands[i*2+1] = (Value*)BB;
52   }
53
54   // addIncoming - Add an incoming value to the end of the PHI list
55   void addIncoming(Value *D, BasicBlock *BB);
56
57   // removeIncomingValue - Remove an incoming value.  This is useful if a
58   // predecessor basic block is deleted.  The value removed is returned.
59   Value *removeIncomingValue(const BasicBlock *BB);
60
61   // getBasicBlockIndex - Return the first index of the specified basic 
62   // block in the value list for this PHI.  Returns -1 if no instance.
63   //
64   int getBasicBlockIndex(const BasicBlock *BB) const {
65     for (unsigned i = 0; i < Operands.size()/2; ++i) 
66       if (getIncomingBlock(i) == BB) return i;
67     return -1;
68   }
69
70   // Methods for support type inquiry through isa, cast, and dyn_cast:
71   static inline bool classof(const PHINode *) { return true; }
72   static inline bool classof(const Instruction *I) {
73     return I->getOpcode() == Instruction::PHINode; 
74   }
75   static inline bool classof(const Value *V) {
76     return isa<Instruction>(V) && classof(cast<Instruction>(V));
77   }
78 };
79
80 #endif