-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrees.h
380 lines (321 loc) · 6.69 KB
/
trees.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
#ifndef _TREES_H_
#define _TREES_H_
struct Tree {
struct Program* program;
};
struct StringNode {
char* string;
struct StringNode* nextString;
};
struct StringList {
struct StringNode* firstNode;
struct StringNode* lastNode;
};
struct Identifier {
char* name;
struct Identifier* nextId;
int idNum;
};
struct Program {
struct DeclarationList *declList;
};
struct DeclarationList {
struct Declaration *firstDecl;
struct Declaration *lastDecl;
int size;
};
enum DeclType {
CONST_DECL,
VAR_DECL,
FUNC_DECL
};
struct Declaration {
enum DeclType declType;
struct VarDecl *varDecl;
struct ConstDecl *constDecl;
struct FunctionDecl *funcDecl;
struct Declaration* nextDecl;
};
struct VarDecl {
struct VarSpec *varSpec;
struct VarSpecList *varSpecList;
};
struct VarSpec {
struct IdentifierListType *idListType;
struct IdentifierList *idList;
struct ExpressionList *exprList;
struct VarSpec* nextVarSpec;
};
struct VarSpecList {
struct VarSpec *firstVarSpec;
struct VarSpec *lastVarSpec;
int size;
};
struct ConstDecl {
struct ConstSpec *constSpec;
struct ConstSpecList *constSpecList;
};
struct ConstSpec {
struct IdentifierListType *idListType;
struct IdentifierList *idList;
struct ExpressionList *exprList;
struct ConstSpec* nextConstSpec;
};
struct ConstSpecList {
struct ConstSpec *firstConstSpec;
struct ConstSpec *lastConstSpec;
int size;
};
struct FunctionDecl {
char *identifier;
struct Signature *signature;
struct Block *block;
};
struct IdentifierList {
struct Identifier* firstId;
struct Identifier* lastId;
int size;
};
struct IdentifierListType {
struct Type *type;
struct IdentifierList *identifierList;
};
struct ExpressionList {
struct Expression *firstExpression;
struct Expression *lastExpression;
int size;
};
enum TypeNames {
IDENTIFIER_TYPE_NAME,
FLOAT32_TYPE_NAME,
INT_TYPE_NAME,
STRING_TYPE_NAME,
BOOL_TYPE_NAME,
VOID_TYPE_NAME,
UNKNOWN_TYPE
};
struct Type {
enum TypeNames typeName;
struct Expression *expr;
};
enum ExpressionType {
DECIMAL_EXPR,
FLOAT_EXPR,
STRING_EXPR,
ID_EXPRESSION,
PE_COMPOSITE,
FUNCTION_CALL,
NOT_UNARY_EXPR,
PLUS_UNARY_EXPR,
MINUS_UNARY_EXPR,
AND_EXPRESSION,
OR_EXPRESSION,
EQU_EXPRESSION,
NE_EXPRESSION,
GT_EXPRESSION,
GTE_EXPRESSION,
LT_EXPRESSION,
LTE_EXPRESSION,
PLUS_EXPRESSION,
MINUS_EXPRESSION,
MUL_EXPRESSION,
DIV_EXPRESSION,
MOD_EXPRESSION,
EXPRESSION,
PRIMARY,
BOOL_TRUE_EXPRESSION,
BOOL_FALSE_EXPRESSION
};
struct Expression {
enum ExpressionType exprType;
struct PrimaryExpression *primaryExpr;
struct Expression *leftExpr;
struct Expression *rightExpr;
struct Expression* nextExpr;
struct SemanticType* semanticType;
};
enum ArrayType {
NONE_ARRAY,
ARRAY
};
struct SemanticType {
enum TypeNames typeName;
int idNum; //index of variable in local variable table or in fields table
enum ArrayType arrayType;
int arraySize;
int constantExpressionNum; //index of constant types integer, float, string in constants table
};
struct PrimaryExpression
{
enum ExpressionType exprType;
int decNumber;
float floatNumber;
char* stringLiteral;
char* identifier;
int boolValue;
struct PrimaryExpression *primaryExpr;
struct Expression *expr;
struct FunctionCall *funcCall;
struct SemanticType* semanticType;
};
struct FunctionCall {
struct PrimaryExpression *primaryExpr;
struct ExpressionList *exprList;
};
enum StatementType {
SIMPLE_STMT,
EXPR_SIMPLE_STMT,
INC_SIMPLE_STMT,
DEC_SIMPLE_STMT,
ASSIGN_STMT,
PLUS_ASSIGN_STMT,
MINUS_ASSIGN_STMT,
MUL_ASSIGN_STMT,
DIV_ASSIGN_STMT,
VAR_DECL_STMT,
CONST_DECL_STMT,
BREAK_STMT,
CONTINUE_STMT,
RETURN_STMT,
IF_STMT,
IF_ELSE_STMT,
FOR_STMT,
BLOCK,
SWITCH_STMT,
PRINT_STMT,
SCAN_STMT
};
struct Statement {
enum StatementType stmtType;
struct SimpleStmt *simpleStmt;
struct VarDecl *varDecl;
struct ConstDecl *constDecl;
struct ReturnStmt *returnStmt;
struct Block *block;
struct IfStmt *ifStmt;
struct SwitchStmt *switchStmt;
struct ForStmt *forStmt;
struct ScanStatement *scanStatement;
struct PrintStatement *printStatement;
struct Statement* nextStatement;
struct BreakStmt* breakStmt;
struct ContinueStmt* continueStmt;
};
struct BreakStmt{
int gotoPosition;
};
struct ContinueStmt {
int gotoPosition;
};
struct StatementList {
struct Statement *firstStmt;
struct Statement *lastStmt;
int size;
};
struct CaseStmtList {
struct StatementList* stmtList;
};
struct SimpleStmt {
enum StatementType stmtType;
struct Expression *expr;
struct ExpressionList *exprListLeft;
struct ExpressionList *exprListRight;
};
struct ReturnStmt {
struct ExpressionList *exprList;
};
struct Block {
struct StatementList *stmtList;
};
struct IfStmt {
struct IfStmtExpression *ifStmtExpr;
struct Block *block;
struct ElseBlock *elseBlock;
};
struct IfStmtExpression {
struct Expression *expr;
struct SimpleStmt *simpleStmt;
};
struct ElseBlock {
struct IfStmt *ifStmt;
struct Block *block;
};
enum SwitchInitialExpressionType {
ALWAYS_TRUE,
WITH_INITIAL_STMT,
WITH_EXPRESSION,
WITH_INITIAL_AND_EXPRESSION
};
struct SwitchStmt {
struct SwitchInitialAndExpression* initialAndExpression;
struct SwitchBody *switchBody;
};
struct SwitchInitialAndExpression {
enum SwitchInitialExpressionType switchType;
struct SimpleStmt *initialStmt;
struct Expression *expression;
};
struct SwitchBody {
struct ExpressionCaseClauseList *eccl;
};
struct ExpressionCaseClauseList {
struct ExpressionCaseClause *firstExprCaseClause;
struct ExpressionCaseClause *lastExprCaseClause;
int caseCount;
int defaultCount;
};
struct ExpressionCaseClause {
struct ExpressionSwitchCase *expreSwitchCase;
struct StatementList *stmtList;
struct ExpressionCaseClause* nextExprCaseClause;
};
struct ExpressionSwitchCase {
struct ExpressionList *exprList;
};
struct ForStmt {
struct Block *block;
struct Expression *expr;
struct ForClause *forClause;
};
struct ForClause {
struct ForInitStmt *forInitStmt;
struct ForCondition *forCondition;
struct ForPostStmt *forPostStmt;
};
struct Signature {
struct ParamInParen *paramInParen;
struct Result *result;
};
struct ParamInParen {
struct ParameterList *paramList;
};
struct ParameterList {
struct ParameterDeclare *firstParamDecl;
struct ParameterDeclare *lastParamDecl;
int size;
};
struct ParameterDeclare {
struct Type *type;
char* identifier;
struct ParameterDeclare* nextParamDecl;
};
struct Result {
struct ParamInParen *paramInParen;
struct Type *type;
};
struct ForInitStmt {
struct SimpleStmt *initStmt;
};
struct ForCondition {
struct Expression *expression;
};
struct ForPostStmt {
struct SimpleStmt *postStmt;
};
struct PrintStatement {
struct ExpressionList * expressionList;
};
struct ScanStatement {
struct ExpressionList *expressionList;
};
#endif// _TREES_H_