-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSymTableVisitor.java
More file actions
272 lines (214 loc) · 6.79 KB
/
Copy pathSymTableVisitor.java
File metadata and controls
272 lines (214 loc) · 6.79 KB
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
import java.util.LinkedHashMap;
import java.util.List;
import java.util.ArrayList;
import syntaxtree.*;
import visitor.GJDepthFirst;
/*This visitor is called first to add all identifiers to a symbol table*/
/*AND also checks for duplicated CLASSES and VARIABLES(in the same scope)*/
public class SymTableVisitor extends GJDepthFirst<String, Argu> {
public LinkedHashMap<String,ClassInfo> symbolTable= new LinkedHashMap<>();
/*Helper Methods */
//returns the current method from the MethodInfo list
MethodInfo getCurrentMethod(String className, String methodName){
List<MethodInfo> list = symbolTable.get(className).methods.get(methodName);
return list.get(list.size() - 1); // last added is the current one
}
/*MAIN CLASS */
/**
* Grammar production:
* f0 -> "class"
* f1 -> Identifier()
* f2 -> "{"
* f3 -> "public"
* f4 -> "static"
* f5 -> "void"
* f6 -> "main"
* f7 -> "("
* f8 -> "String"
* f9 -> "["
* f10 -> "]"
* f11 -> Identifier()
* f12 -> ")"
* f13 -> "{"
* f14 -> ( VarDeclaration() )*
* f15 -> ( Statement() )*
* f16 -> "}"
* f17 -> "}"
*/
@Override
public String visit(MainClass mc, Argu argu){
String classname=mc.f1.accept(this,null);
ClassInfo cInfo= new ClassInfo(null);
Argu argu2= new Argu(classname,"main");
symbolTable.put(classname, cInfo);
MethodInfo mainInfo=new MethodInfo("main", "void");
List<MethodInfo> mainList=new ArrayList<>();
mainList.add(mainInfo);
cInfo.methods.put("main", mainList);
mc.f14.accept(this,argu2);
return null;
}
/*Class Declaration */
/**
* Grammar production:
* f0 -> "class"
* f1 -> Identifier()
* f2 -> "{"
* f3 -> ( VarDeclaration() )*
* f4 -> ( MethodDeclaration() )*
* f5 -> "}"
*/
@Override
public String visit(ClassDeclaration cd, Argu argu){
String classname=cd.f1.accept(this,null);
// tries creates class with existing name
if(symbolTable.containsKey(classname)){
throw new RuntimeException("Class "+classname+" already exists");
}
ClassInfo cInfo = new ClassInfo(null);
symbolTable.put(classname, cInfo);
Argu argu2=new Argu(classname,null) ;
cd.f3.accept(this,argu2);
cd.f4.accept(this,argu2);
return null;
}
/*CLASS EXTENDS DECLARATION */
/**
* Grammar production:
* f0 -> "class"
* f1 -> Identifier()
* f2 -> "extends"
* f3 -> Identifier()
* f4 -> "{"
* f5 -> ( VarDeclaration() )*
* f6 -> ( MethodDeclaration() )*
* f7 -> "}"
*/
@Override
public String visit(ClassExtendsDeclaration ced, Argu argu){
String classname=ced.f1.accept(this, null);
String parentclassname=ced.f3.accept(this,null);
// creates class with existing name
if( symbolTable.containsKey(classname)){
throw new RuntimeException("Class "+classname+" already exists");
}
ClassInfo cInfo=new ClassInfo(parentclassname);
Argu argu2=new Argu(classname,null);
symbolTable.put(classname, cInfo);
ced.f5.accept(this,argu2);
ced.f6.accept(this,argu2);
return null;
}
/*VAR DECLARATION */
/**
* Grammar production:
* f0 -> Type()
* f1 -> Identifier()
* f2 -> ";"
*/
@Override
public String visit(VarDeclaration vd, Argu argu){
String vartype=vd.f0.accept(this,null);
String varname=vd.f1.accept(this,null);
//so its just a class field
if(argu.methodName==null){
//already existing variable
if (symbolTable.get(argu.className).vars.containsKey(varname)){
throw new RuntimeException("Variable "+varname+" already exists");
}
symbolTable.get(argu.className).vars.put(varname, vartype);
}
//its in the method scope
else{
MethodInfo current= getCurrentMethod(argu.className,argu.methodName);
if(current.vars.containsKey(varname)){
throw new RuntimeException("Variable "+varname+" already exists");
}
//check formal params too( DoubleDeclaration1.java )
if(current.formalParams.containsKey(varname)){
throw new RuntimeException("Variable " + varname + " already exists as a parameter");
}
current.vars.put(varname,vartype);
}
return null;
}
/*METHOD DECLARATION */
/**
* Grammar production:
* f0 -> "public"
* f1 -> Type()
* f2 -> Identifier()
* f3 -> "("
* f4 -> ( FormalParameterList() )?
* f5 -> ")"
* f6 -> "{"
* f7 -> ( VarDeclaration() )*
* f8 -> ( Statement() )*
* f9 -> "return"
* f10 -> Expression()
* f11 -> ";"
* f12 -> "}"
*/
@Override
public String visit(MethodDeclaration md,Argu argu){
String methodtype=md.f1.accept(this,null);
String methodname=md.f2.accept(this,null);
Argu argu2= new Argu(argu.className, methodname);
MethodInfo mi= new MethodInfo(methodname, methodtype);
if(!symbolTable.get(argu.className).methods.containsKey(methodname)){
symbolTable.get(argu.className).methods.put(methodname, new ArrayList<>());
}
symbolTable.get(argu.className).methods.get(methodname).add(mi);
md.f4.accept(this,argu2);
md.f7.accept(this,argu2);
return null;
}
/*FORMAL PARAMETER */
/**
* Grammar production:
* f0 -> Type()
* f1 -> Identifier()
*/
@Override
public String visit(FormalParameter fp,Argu argu){
String formalparametertype=fp.f0.accept(this,null);
String formalparametername=fp.f1.accept(this,null);
if(getCurrentMethod(argu.className,argu.methodName).formalParams.containsKey(formalparametername)){
throw new RuntimeException("Formal parameter "+formalparametername+ " already exists");
}
getCurrentMethod(argu.className, argu.methodName).formalParams.put(formalparametername, formalparametertype);
return null;
}
/*TYPE */
/**
* Grammar production:
* f0 -> ArrayType()
* | BooleanType()
* | IntegerType()
* | Identifier()
*/
@Override
public String visit(Type t, Argu argu){
return t.f0.accept(this,null);
}
/*ARRAY TYPE */
@Override
public String visit(ArrayType at, Argu argu){
return "int[]";
}
/*BOOLEAN TYPE */
@Override
public String visit(BooleanType bt, Argu argu){
return "boolean";
}
/*INTEGER TYPE */
@Override
public String visit(IntegerType it, Argu argu){
return "int";
}
/*IDENTIFIER */
@Override
public String visit(Identifier i, Argu argu){
return i.f0.toString();
}
}