forked from DoctorWkt/acwj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstmt.c
237 lines (197 loc) · 6.3 KB
/
stmt.c
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
#include "defs.h"
#include "data.h"
#include "decl.h"
// Parsing of statements
// Copyright (c) 2019 Warren Toomey, GPL3
// Prototypes
static struct ASTnode *single_statement(void);
// compound_statement: // empty, i.e. no statement
// | statement
// | statement statements
// ;
//
// statement: declaration
// | expression_statement
// | function_call
// | if_statement
// | while_statement
// | for_statement
// | return_statement
// ;
// if_statement: if_head
// | if_head 'else' compound_statement
// ;
//
// if_head: 'if' '(' true_false_expression ')' compound_statement ;
//
// Parse an IF statement including any
// optional ELSE clause and return its AST
static struct ASTnode *if_statement(void) {
struct ASTnode *condAST, *trueAST, *falseAST = NULL;
// Ensure we have 'if' '('
match(T_IF, "if");
lparen();
// Parse the following expression
// and the ')' following. Force a
// non-comparison to be boolean
// the tree's operation is a comparison.
condAST = binexpr(0);
if (condAST->op < A_EQ || condAST->op > A_GE)
condAST = mkastunary(A_TOBOOL, condAST->type, condAST, 0);
rparen();
// Get the AST for the compound statement
trueAST = compound_statement();
// If we have an 'else', skip it
// and get the AST for the compound statement
if (Token.token == T_ELSE) {
scan(&Token);
falseAST = compound_statement();
}
// Build and return the AST for this statement
return (mkastnode(A_IF, P_NONE, condAST, trueAST, falseAST, 0));
}
// while_statement: 'while' '(' true_false_expression ')' compound_statement ;
//
// Parse a WHILE statement and return its AST
static struct ASTnode *while_statement(void) {
struct ASTnode *condAST, *bodyAST;
// Ensure we have 'while' '('
match(T_WHILE, "while");
lparen();
// Parse the following expression
// and the ')' following. Force a
// non-comparison to be boolean
// the tree's operation is a comparison.
condAST = binexpr(0);
if (condAST->op < A_EQ || condAST->op > A_GE)
condAST = mkastunary(A_TOBOOL, condAST->type, condAST, 0);
rparen();
// Get the AST for the compound statement
bodyAST = compound_statement();
// Build and return the AST for this statement
return (mkastnode(A_WHILE, P_NONE, condAST, NULL, bodyAST, 0));
}
// for_statement: 'for' '(' preop_statement ';'
// true_false_expression ';'
// postop_statement ')' compound_statement ;
//
// preop_statement: statement (for now)
// postop_statement: statement (for now)
//
// Parse a FOR statement and return its AST
static struct ASTnode *for_statement(void) {
struct ASTnode *condAST, *bodyAST;
struct ASTnode *preopAST, *postopAST;
struct ASTnode *tree;
// Ensure we have 'for' '('
match(T_FOR, "for");
lparen();
// Get the pre_op statement and the ';'
preopAST = single_statement();
semi();
// Get the condition and the ';'.
// Force a non-comparison to be boolean
// the tree's operation is a comparison.
condAST = binexpr(0);
if (condAST->op < A_EQ || condAST->op > A_GE)
condAST = mkastunary(A_TOBOOL, condAST->type, condAST, 0);
semi();
// Get the post_op statement and the ')'
postopAST = single_statement();
rparen();
// Get the compound statement which is the body
bodyAST = compound_statement();
// For now, all four sub-trees have to be non-NULL.
// Later on, we'll change the semantics for when some are missing
// Glue the compound statement and the postop tree
tree = mkastnode(A_GLUE, P_NONE, bodyAST, NULL, postopAST, 0);
// Make a WHILE loop with the condition and this new body
tree = mkastnode(A_WHILE, P_NONE, condAST, NULL, tree, 0);
// And glue the preop tree to the A_WHILE tree
return (mkastnode(A_GLUE, P_NONE, preopAST, NULL, tree, 0));
}
// return_statement: 'return' '(' expression ')' ;
//
// Parse a return statement and return its AST
static struct ASTnode *return_statement(void) {
struct ASTnode *tree;
// Can't return a value if function returns P_VOID
if (Symtable[Functionid].type == P_VOID)
fatal("Can't return from a void function");
// Ensure we have 'return' '('
match(T_RETURN, "return");
lparen();
// Parse the following expression
tree = binexpr(0);
// Ensure this is compatible with the function's type
tree = modify_type(tree, Symtable[Functionid].type, 0);
if (tree == NULL)
fatal("Incompatible type to return");
// Add on the A_RETURN node
tree = mkastunary(A_RETURN, P_NONE, tree, 0);
// Get the ')'
rparen();
return (tree);
}
// Parse a single statement and return its AST
static struct ASTnode *single_statement(void) {
int type;
switch (Token.token) {
case T_CHAR:
case T_INT:
case T_LONG:
// The beginning of a variable declaration.
// Parse the type and get the identifier.
// Then parse the rest of the declaration
// and skip over the semicolon
type = parse_type();
ident();
var_declaration(type, 1, 0);
semi();
return (NULL); // No AST generated here
case T_IF:
return (if_statement());
case T_WHILE:
return (while_statement());
case T_FOR:
return (for_statement());
case T_RETURN:
return (return_statement());
default:
// For now, see if this is an expression.
// This catches assignment statements.
return (binexpr(0));
}
return (NULL); // Keep -Wall happy
}
// Parse a compound statement
// and return its AST
struct ASTnode *compound_statement(void) {
struct ASTnode *left = NULL;
struct ASTnode *tree;
// Require a left curly bracket
lbrace();
while (1) {
// Parse a single statement
tree = single_statement();
// Some statements must be followed by a semicolon
if (tree != NULL && (tree->op == A_ASSIGN ||
tree->op == A_RETURN || tree->op == A_FUNCCALL))
semi();
// For each new tree, either save it in left
// if left is empty, or glue the left and the
// new tree together
if (tree != NULL) {
if (left == NULL)
left = tree;
else
left = mkastnode(A_GLUE, P_NONE, left, NULL, tree, 0);
}
// When we hit a right curly bracket,
// skip past it and return the AST
if (Token.token == T_RBRACE) {
rbrace();
return (left);
}
}
}