Changed the fundemental architecture of Operands for Instructions. Now
[oota-llvm.git] / include / llvm / InstrTypes.h
1 //===-- llvm/InstrTypes.h - Important Instruction subclasses -----*- C++ -*--=//
2 //
3 // This file defines various meta classes of instructions that exist in the VM
4 // representation.  Specific concrete subclasses of these may be found in the 
5 // i*.h files...
6 //
7 //===----------------------------------------------------------------------===//
8
9 #ifndef LLVM_INSTRUCTION_TYPES_H
10 #define LLVM_INSTRUCTION_TYPES_H
11
12 #include "llvm/Instruction.h"
13 #include <list>
14 #include <vector>
15
16 class Method;
17 class SymTabValue;
18
19 //===----------------------------------------------------------------------===//
20 //                            TerminatorInst Class
21 //===----------------------------------------------------------------------===//
22
23 // TerminatorInst - Subclasses of this class are all able to terminate a basic 
24 // block.  Thus, these are all the flow control type of operations.
25 //
26 class TerminatorInst : public Instruction {
27 public:
28   TerminatorInst(unsigned iType);
29   inline ~TerminatorInst() {}
30
31   // Terminators must implement the methods required by Instruction...
32   virtual Instruction *clone() const = 0;
33   virtual string getOpcode() const = 0;
34
35   // Additionally, they must provide a method to get at the successors of this
36   // terminator instruction.  If 'idx' is out of range, a null pointer shall be
37   // returned.
38   //
39   virtual const BasicBlock *getSuccessor(unsigned idx) const = 0;
40   virtual unsigned getNumSuccessors() const = 0;
41
42   inline BasicBlock *getSuccessor(unsigned idx) {
43     return (BasicBlock*)((const TerminatorInst *)this)->getSuccessor(idx);
44   }
45 };
46
47
48 //===----------------------------------------------------------------------===//
49 //                            UnaryOperator Class
50 //===----------------------------------------------------------------------===//
51
52 class UnaryOperator : public Instruction {
53 public:
54
55   // create() - Construct a unary instruction, given the opcode
56   // and its operand.
57   //
58   static UnaryOperator *create(unsigned Op, Value *Source);
59
60   UnaryOperator(Value *S, unsigned iType, const string &Name = "")
61       : Instruction(S->getType(), iType, Name) {
62     Operands.reserve(1);
63     Operands.push_back(Use(S, this));
64   }
65   inline ~UnaryOperator() { dropAllReferences(); }
66
67   virtual Instruction *clone() const { 
68     return create(getInstType(), Operands[0]);
69   }
70
71   virtual string getOpcode() const = 0;
72 };
73
74
75
76 //===----------------------------------------------------------------------===//
77 //                           BinaryOperator Class
78 //===----------------------------------------------------------------------===//
79
80 class BinaryOperator : public Instruction {
81 public:
82
83   // create() - Construct a binary instruction, given the opcode
84   // and the two operands.
85   //
86   static BinaryOperator *create(unsigned Op, Value *S1, Value *S2,
87                                 const string &Name = "");
88
89   BinaryOperator(unsigned iType, Value *S1, Value *S2, 
90                  const string &Name = "") 
91     : Instruction(S1->getType(), iType, Name) {
92     Operands.reserve(2);
93     Operands.push_back(Use(S1, this));
94     Operands.push_back(Use(S2, this));
95     assert(Operands[0] && Operands[1] && 
96            Operands[0]->getType() == Operands[1]->getType());
97   }
98   inline ~BinaryOperator() { dropAllReferences(); }
99
100   virtual Instruction *clone() const {
101     return create(getInstType(), Operands[0], Operands[1]);
102   }
103
104   virtual string getOpcode() const = 0;
105 };
106
107 #endif