-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTypeChecker.java
310 lines (275 loc) · 11.3 KB
/
TypeChecker.java
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
/**************************************************************************
* Typechecking all the identifiers and their operations *
*************************************************************************/
import analysis.DepthFirstAdapter;
import node.*;
import java.util.HashMap;
public class TypeChecker extends DepthFirstAdapter {
private HashMap<String, String> symbolTable = new HashMap<String, String>();
private HashMap<String, Boolean> varInitialized = new HashMap<String, Boolean>();
private String result;
/**
* Check if break is only used in a while context
*/
public void caseABreakExpr(ABreakExpr node) {
Node parent = node.parent();
String parentName;
do {
parent = parent.parent();
parentName = parent.getClass().getSimpleName().replaceAll(" ","");
if (parentName.equals("AWhileExpr")) break;
} while (!parentName.equals("AStartExpr"));
if (parentName.equals("AStartExpr")) {
System.out.println("# Error: User 'break' only in a 'while' context!\n");
System.exit(1);
}
}
/**
* Look up all the declarations and put it into the HashMap
*/
@Override
public void caseADeclarationExpr(ADeclarationExpr node) {
String type = node.getRight().toString().toLowerCase().replaceAll(" ","");
String[] var = node.getLeft().toString().toLowerCase().split(" ");
for (String aVar : var) {
if (!symbolTable.containsKey(aVar)) {
symbolTable.put(aVar, type);
varInitialized.put(aVar, false);
} else {
System.out.println("# Error: Already specified '" + aVar + "' as '" + symbolTable.get(aVar) + "'. Terminating...\n");
System.exit(1);
}
}
}
/**
* Look up the := operator and it's correct syntax...
*/
@Override
public void caseAAssignmentExpr(AAssignmentExpr node) {
String identifier = node.getIdentifier().toString().toLowerCase().replaceAll(" ","");
checkDeclared(identifier);
String type = symbolTable.get(identifier);
varInitialized.put(identifier, true);
String expr = node.getExpr().getClass().getSimpleName();
node.getExpr().apply(this); // Going through the AST
// Check if arithmetic expressions are
if (expr.equals("APlusExpr") || expr.equals("AMinusExpr") || expr.equals("AMultExpr") || expr.equals("ADivExpr") || expr.equals("AModExpr") || expr.equals("AUnaryMinusExpr") || expr.equals("AUnaryPlusExpr")) {
if (!type.equals("integer")) {
System.out.println("# Error: Wrong type of '"+identifier+"'. Expected 'integer'.\n");
System.exit(1);
}
}
// Check if those comparisons and boolean arithmetic are assigned to booleans
if (expr.equals("AOrExpr") || expr.equals("AXorExpr") || expr.equals("AAndExpr") || expr.equals("ANotExpr") || expr.equals("AComparisonExpr") ) {
if (!type.equals("boolean")) {
System.out.println("# Error: Wrong type of '"+identifier+"'. Expected 'boolean'.\n");
System.exit(1);
}
}
// If on the right side of := is only a number, check the type of the identifier
if (expr.equals("ANumberExpr")) {
if (!type.equals("integer")) {
System.out.println("# Error: Syntax of a simple assignment is: 'integer' ':=' 'integer';\n");
System.exit(1);
}
}
// If there was only true or false found
if (expr.equals("ATrueExpr") || expr.equals("AFalseExpr")) {
if (!type.equals("boolean")) {
System.out.println("# Error: '"+identifier+"' has type '"+symbolTable.get(identifier)+"'. Can't assign a boolean to an integer.\n");
System.exit(1);
}
}
// If on the right side of := is only an identifier, check both types
if (expr.equals("AIdentifierExpr")) {
String matchIdentifier = node.getIdentifier().toString().toLowerCase().replaceAll(" ","");
checkDeclared(matchIdentifier);
if (!symbolTable.get(identifier).equals(symbolTable.get(identifier)))
System.out.println("# Error: Wrong types. '" + identifier + "' has type '" + symbolTable.get(identifier) + "' and '" + matchIdentifier + "' is type '" + symbolTable.get(matchIdentifier) + "'.\n");
}
}
/**************************************************************************************************
* Typechecking of all the boolean operations or, xor, and, not and comparisons <, <=, >, ...
*/
@Override
public void caseAComparisonExpr(AComparisonExpr node) {
String operation = "comparison";
node.getLeft().apply(this);
String left = this.result;
node.getRight().apply(this);
String right = this.result;
result = "boolean"; // Result of an
if (!left.equals(right))
printErrorBooleanOperation(operation);
}
@Override
public void caseAOrExpr(AOrExpr node) {
String operation = "or";
node.getLeft().apply(this);
String left = this.result;
String right = this.result;
if (!left.equals(right))
printErrorBooleanOperation(operation);
}
@Override
public void caseAXorExpr(AXorExpr node) {
String operation = "xor";
node.getLeft().apply(this);
String left = this.result;
node.getRight().apply(this);
String right = this.result;
if (!left.equals(right))
printErrorBooleanOperation(operation);
}
@Override
public void caseAAndExpr(AAndExpr node) {
String operation = "and";
node.getLeft().apply(this);
String left = this.result;
node.getRight().apply(this);
String right = this.result;
if (!left.equals(right))
printErrorBooleanOperation(operation);
}
@Override
public void caseANotExpr(ANotExpr node) {
String operation = "not";
node.getExpr().apply(this);
if (!result.equals("boolean")) {
System.out.println("# Error: Syntax of '" + operation + "' is: '"+operation+"' 'boolean'.\n");
System.exit(1);
}
}
/**************************************************************************************************
* Typechecking of all the arithmetic operations +, -, *, /, mod
*/
@Override
public void caseAPlusExpr(APlusExpr node) {
String operation = "+";
node.getLeft().apply(this);
String left = this.result;
node.getRight().apply(this);
String right = this.result;
if (!left.equals(right))
printErrorArithmeticOperation(operation);
}
@Override
public void caseAMinusExpr(AMinusExpr node) {
String operation = "-";
node.getLeft().apply(this);
String left = this.result;
node.getRight().apply(this);
String right = this.result;
if (!left.equals(right))
printErrorArithmeticOperation(operation);
}
@Override
public void caseAUnaryMinusExpr(AUnaryMinusExpr node) {
String operation = "unary -";
node.getExpr().apply(this);
if (!result.equals("integer") && !node.getExpr().getClass().getSimpleName().equals("AIdentifierExpr") && !node.getExpr().getClass().getSimpleName().equals("ANumberExpr")) {
System.out.println("# Error: Syntax of '"+operation+"' is: '"+operation+"' 'integer'.\n");
System.exit(1);
}
}
@Override
public void caseAUnaryPlusExpr(AUnaryPlusExpr node) {
String operation = "unary +";
node.getExpr().apply(this);
if (!result.equals("integer") && !node.getExpr().getClass().getSimpleName().equals("AIdentifierExpr") && !node.getExpr().getClass().getSimpleName().equals("ANumberExpr")) {
System.out.println("# Error: Syntax of '"+operation+"' is: '"+operation+"' 'integer'.\n");
System.exit(1);
}
}
@Override
public void caseAModExpr(AModExpr node) {
String operation = "mod";
node.getLeft().apply(this);
String left = this.result;
node.getRight().apply(this);
String right = this.result;
if (!left.equals(right))
printErrorArithmeticOperation(operation);
}
@Override
public void caseAMultExpr(AMultExpr node) {
String operation = "*";
node.getLeft().apply(this);
String left = this.result;
node.getRight().apply(this);
String right = this.result;
if (!left.equals(right))
printErrorArithmeticOperation(operation);
}
@Override
public void caseADivExpr(ADivExpr node) {
String operation = "div";
node.getLeft().apply(this);
String left = this.result;
node.getRight().apply(this);
String right = this.result;
if (!left.equals(right))
printErrorArithmeticOperation(operation);
}
/**
* If a number has been found, write it into result
*/
@Override
public void caseANumberExpr(ANumberExpr node) {
this.result = "integer";
}
/**
* If a boolean has been found, write it into result
*/
@Override
public void caseATrueExpr(ATrueExpr node) {
this.result = "boolean";
}
@Override
public void caseAFalseExpr(AFalseExpr node) {
this.result = "boolean";
}
/**
* If an identifier has been found, check if it has been declared,
* look up the entry in the symbolTable and save it in result. Throw an
* error, if the variable has not been assigned yet.
*/
@Override
public void caseAIdentifierExpr(AIdentifierExpr node) {
String identifier = node.getIdentifier().toString().toLowerCase().replaceAll(" ","");
checkDeclared(identifier);
if (!varInitialized.get(identifier)) {
System.out.println("# Error: Identifier '"+identifier+"' has been declared, but not initialized. Terminating...");
System.exit(1);
}
this.result = symbolTable.get(identifier);
}
/************************************************ Own stuff ************************************************/
/**
* Check if the variable has been declared
*/
private void checkDeclared(String identifier) {
if (!symbolTable.containsKey(identifier)) {
System.out.println("# Error: Undeclared variable '"+identifier+"' found. Terminating.\n");
System.exit(1);
}
}
/**
* Prepare output for arithmetic operations
*/
private void printErrorArithmeticOperation(String operation) {
System.out.println("# Error: Syntax of '"+operation+"' is: 'integer' '"+operation+"' 'integer'.\n");
System.exit(1);
}
/**
* The same for boolean expressions
*/
private void printErrorBooleanOperation(String operation) {
System.out.println("# Error: Syntax of '"+operation+"' is: 'boolean' '"+operation+"' 'boolean'.\n");
System.exit(1);
}
/********************************************* Getter *********************************************/
public HashMap<String, String> getSymbolTable() {
return symbolTable;
}
}