-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSymbolTableVisitor.java
More file actions
200 lines (185 loc) · 5.91 KB
/
Copy pathSymbolTableVisitor.java
File metadata and controls
200 lines (185 loc) · 5.91 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
import SymbolTables.ClassSymbolTable;
import SymbolTables.GlobalSymbolTable;
import SymbolTables.MethodSymbolTable;
import syntaxtree.*;
import visitor.*;
public class SymbolTableVisitor extends GJDepthFirst<String, Void>{
GlobalSymbolTable symbolTable;
ClassSymbolTable curClassSymbolTable;
MethodSymbolTable curMethodSymbolTable;
String scope;
SymbolTableVisitor(GlobalSymbolTable globalSymbolTable){
this.symbolTable = globalSymbolTable;
}
/**
* 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 -> "}"
*/
public String visit(MainClass n, Void argu) throws Exception {
n.f0.accept(this, argu);
String className = n.f1.accept(this, argu);
symbolTable.addMainClass(className);
this.curClassSymbolTable = this.symbolTable.getClassSymbolTable(className);
n.f2.accept(this, argu);
scope = "class";
n.f3.accept(this, argu);
n.f4.accept(this, argu);
n.f5.accept(this, argu);
n.f6.accept(this, argu);
n.f7.accept(this, argu);
n.f8.accept(this, argu);
n.f9.accept(this, argu);
n.f10.accept(this, argu);
String argsIdentifier = n.f11.accept(this, argu);
n.f12.accept(this, argu);
n.f13.accept(this, argu);
this.curClassSymbolTable.addMethod("main", "");
this.curMethodSymbolTable = this.curClassSymbolTable.getMethodSymbolTable("main");
this.curMethodSymbolTable.addArgument(argsIdentifier, "String[]");
scope = "method";
n.f14.accept(this, argu);
n.f15.accept(this, argu);
n.f16.accept(this, argu);
n.f17.accept(this, argu);
return null;
}
/**
* f0 -> "class"
* f1 -> Identifier()
* f2 -> "{"
* f3 -> ( VarDeclaration() )*
* f4 -> ( MethodDeclaration() )*
* f5 -> "}"
*/
public String visit(ClassDeclaration n, Void argu) throws Exception {
n.f0.accept(this, argu);
String className = n.f1.accept(this, argu);
symbolTable.addClass(className);
this.curClassSymbolTable = this.symbolTable.getClassSymbolTable(className);
n.f2.accept(this, argu);
scope = "class";
n.f3.accept(this, argu);
n.f4.accept(this, argu);
n.f5.accept(this, argu);
return null;
}
/**
* f0 -> "class"
* f1 -> Identifier()
* f2 -> "extends"
* f3 -> Identifier()
* f4 -> "{"
* f5 -> ( VarDeclaration() )*
* f6 -> ( MethodDeclaration() )*
* f7 -> "}"
*/
public String visit(ClassExtendsDeclaration n, Void argu) throws Exception {
n.f0.accept(this, argu);
String className = n.f1.accept(this, argu);
n.f2.accept(this, argu);
String parentName = n.f3.accept(this, argu);
symbolTable.addClass(className, parentName);
this.curClassSymbolTable = this.symbolTable.getClassSymbolTable(className);
n.f4.accept(this, argu);
scope = "class";
n.f5.accept(this, argu);
n.f6.accept(this, argu);
n.f7.accept(this, argu);
return null;
}
/**
* f0 -> Type()
* f1 -> Identifier()
* f2 -> ";"
*/
public String visit(VarDeclaration n, Void argu) throws Exception {
String type = n.f0.accept(this, argu);
String name = n.f1.accept(this, argu);
if (this.scope == "class")
this.curClassSymbolTable.addField(name, type);
else if (this.scope == "method")
this.curMethodSymbolTable.addLocalVariable(name, type);
n.f2.accept(this, argu);
return null;
}
/**
* f0 -> "public"
* f1 -> Type()
* f2 -> Identifier()
* f3 -> "("
* f4 -> ( FormalParameterList() )?
* f5 -> ")"
* f6 -> "{"
* f7 -> ( VarDeclaration() )*
* f8 -> ( Statement() )*
* f9 -> "return"
* f10 -> Expression()
* f11 -> ";"
* f12 -> "}"
*/
public String visit(MethodDeclaration n, Void argu) throws Exception {
n.f0.accept(this, argu);
String returnType = n.f1.accept(this, argu);
String methodName = n.f2.accept(this, argu);
this.curClassSymbolTable.addMethod(methodName, returnType);
this.curMethodSymbolTable = this.curClassSymbolTable.getMethodSymbolTable(methodName);
n.f3.accept(this, argu);
n.f4.accept(this, argu); //-->Populates the argument map of the method
curClassSymbolTable.checkMethodOverwrite(curMethodSymbolTable, symbolTable);
n.f5.accept(this, argu);
n.f6.accept(this, argu);
scope = "method";
n.f7.accept(this, argu);
n.f8.accept(this, argu);
n.f9.accept(this, argu);
n.f10.accept(this, argu);
n.f11.accept(this, argu);
n.f12.accept(this, argu);
return null;
}
/**
* f0 -> Type()
* f1 -> Identifier()
*/
public String visit(FormalParameter n, Void argu) throws Exception {
String type = n.f0.accept(this, argu);
String ident = n.f1.accept(this, argu);
this.curMethodSymbolTable.addArgument(ident, type);
this.curMethodSymbolTable.addLocalVariable(ident, type);
return null;
}
public String visit(IntegerArrayType n, Void argu) throws Exception {
return "int[]";
}
public String visit(BooleanArrayType n, Void argu) throws Exception {
return "boolean[]";
}
public String visit(BooleanType n, Void argu) {
return "boolean";
}
public String visit(IntegerType n, Void argu) {
return "int";
}
/**
* f0 -> <IDENTIFIER>
*/
public String visit(Identifier n, Void argu) throws Exception {
return n.f0.toString();
}
}