-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOperator.h
178 lines (145 loc) · 4.68 KB
/
Operator.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/**
* Copyright 2010 by Benjamin J. Land (a.k.a. BenLand100)
*
* This file is part of CPascal.
*
* CPascal is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* CPascal is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with CPascal. If not, see <http://www.gnu.org/licenses/>.
*/
class Operator;
class Symbol;
class Size;
class Resize;
class ArrayDef;
class ArraySet;
class ArrayGet;
class FieldGet;
class FieldSet;
#ifndef _OPERATOR_H
#define _OPERATOR_H
#include "Expression.h"
#include "Interpreter.h"
#include "Value.h"
#include "Element.h"
#include <stack>
#include <list>
class Operator : public Element {
public:
static Operator* get(int type);
const int type;
virtual void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*) = 0;
//virtual void native(std::stack<Value*> &stack, std::vector<std::string> &native) throw(int,InterpEx*) = 0;
protected:
Operator(int op);
virtual ~Operator();
};
class Throw : public Operator {
public:
Throw(int number);
~Throw();
const int number;
void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*);
};
class Asgn : public Operator {
public:
Asgn(int name);
~Asgn();
const int name;
void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*);
//void native(std::stack<Value*> &stack, std::vector<std::string> &native) throw(int,InterpEx*);
};
class Invoke : public Operator {
public:
Invoke(std::list<Expression*> args);
~Invoke();
const int numArgs;
Expression** args;
void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*);
//void native(std::stack<Value*> &stack, std::vector<std::string> &native) throw(int,InterpEx*);
};
class Symbol : public Operator {
public:
Symbol(int name);
~Symbol();
const int name;
void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*);
//void native(std::stack<Value*> &stack, std::vector<std::string> &native) throw(int,InterpEx*);
};
class Size : public Operator {
public:
Size(Expression* array);
~Size();
void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*);
//void native(std::stack<Value*> &stack, std::vector<std::string> &native) throw(int,InterpEx*);
private:
Expression* array;
};
class ArrayDef : public Operator {
public:
ArrayDef(std::list<Expression*> elems);
~ArrayDef();
void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*);
//void native(std::stack<Value*> &stack, std::vector<std::string> &native) throw(int,InterpEx*);
private:
Expression** elems;
int numElems;
};
class Resize : public Operator {
public:
Resize(Expression* array, Expression* dim);
~Resize();
void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*);
//void native(std::stack<Value*> &stack, std::vector<std::string> &native) throw(int,InterpEx*);
private:
Expression* array;
Expression* dim;
};
class ArrayGet : public Operator {
public:
ArrayGet(std::list<Expression*> indexes);
~ArrayGet();
void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*);
//void native(std::stack<Value*> &stack, std::vector<std::string> &native) throw(int,InterpEx*);
private:
Expression** indexes;
int numIndexes;
};
class ArraySet : public Operator {
public:
ArraySet(std::list<Expression*> indexes);
~ArraySet();
void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*);
//void native(std::stack<Value*> &stack, std::vector<std::string> &native) throw(int,InterpEx*);
private:
Expression** indexes;
int numIndexes;
};
class FieldGet : public Operator {
public:
FieldGet(int name);
~FieldGet();
void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*);
//void native(std::stack<Value*> &stack, std::vector<std::string> &native) throw(int,InterpEx*);
private:
int name;
};
class FieldSet : public Operator {
public:
FieldSet(int name);
~FieldSet();
void preform(std::stack<Value*> &stack, Frame* frame) throw(int,InterpEx*);
//void native(std::stack<Value*> &stack, std::vector<std::string> &native) throw(int,InterpEx*);
private:
int name;
};
#endif /* _OPERATOR_H */