-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCodeGen.java
More file actions
305 lines (250 loc) · 8.26 KB
/
CodeGen.java
File metadata and controls
305 lines (250 loc) · 8.26 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
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
import pascal.analysis.DepthFirstAdapter;
import pascal.node.*;
import java.util.HashMap;
/**
* Created by maximilian on 17.01.14.
* Creates Code for Yasmin, Yasmin loves code, like all bitches
*/
public class CodeGen extends DepthFirstAdapter{
private String code = "";
private int comparePointer = 0;
private int breakPointer = 0;
private int stackpointer = 1;
private String type;
private HashMap<String, Integer> symbols = new HashMap<String, Integer>(); // saves the number for the variable
private HashMap<String,String> types = new HashMap<String, String>();
private int labelCounter;
public CodeGen(HashMap<String,String> symbols){
types = symbols; // works, not sure why, but idea told me so, i ll figure out after a good sleep
}
public HashMap<String,Integer> getSymbols(){
return symbols;
}
public String getCode(){
return code;
}
public int getStackpointer() {
return stackpointer;
}
//lets print some things
public void caseAWritelnAst(AWritelnAst node){
code += "\tgetstatic java/lang/System/out Ljava/io/PrintStream; \n";
node.getAst().apply(this);
String flag = "";
if(type.equals("I")) flag ="I";
else if (type.equals("Z")) flag = "Z";
code += "\tinvokevirtual java/io/PrintStream/println("+flag+")V\n";
stackpointer++;
}
//lets calculate some things
@Override
public void outAPlusAst(APlusAst node){
code += "\tiadd\n";
stackpointer--;
type = "I";
}
@Override
public void outAMinusAst(AMinusAst node){
code += "\tisub\n";
stackpointer--;
type = "I";
}
@Override
public void outAMultAst(AMultAst node){
code += "\timul\n";
stackpointer--;
type = "I";
}
@Override
public void outADivAst(ADivAst node){
code += "\tidiv\n";
stackpointer--;
type = "I";
}
@Override
public void outAModAst(AModAst node){
code += "\tirem\n";
type = "I";
}
@Override
public void outAUnMinusAst(AUnMinusAst node){
code += "\tineg\n";
type = "I";
}
//lets compare some things
@Override
public void outAAndAst(AAndAst node){
code += "\tiand\n";
stackpointer--;
type = "Z";
}
@Override
public void outAOrAst(AOrAst node){
code += "\tior\n";
stackpointer--;
type = "Z";
}
@Override
public void outAXorAst(AXorAst node){
code += "\tixor\n";
stackpointer--;
type = "Z";
}
@Override
public void outANotAst(ANotAst node){
//crap... i need to put up a hell of a work for just this easy thing
int actualLabel = labelCounter++;
code += "\tifeq LabelNot"+actualLabel+"\n\tbipush 0\n\tgoto LabelNotEnd"+actualLabel+"\nLabelNot"+actualLabel+":\nbipush 1\nLabelNotEnd"+actualLabel+":\n";
type = "Z";
}
//lets read a number
@Override
public void caseANumberAst(ANumberAst node){
int number = Integer.parseInt(node.getNumber().toString().trim());
code += "\tldc "+number+"\n";
stackpointer++;
type = "I";
}
//lets read a boolean
@Override
public void caseATrueAst(ATrueAst node){
code += "\tbipush 1\n";
stackpointer++;
type = "Z";
}
@Override
public void caseAFalseAst(AFalseAst node){
code += "\tbipush 0\n";
stackpointer++;
type = "Z";
}
//lets compare some thing
@Override
public void outAGreaterAst(AGreaterAst node){
code += "\tifgt LabelTrue"+(comparePointer++)+"\n";
stackpointer--;
type = "Z";
}
@Override
public void outAGreaterEqAst(AGreaterEqAst node){
code += "\tifge LabelTrue"+(comparePointer++)+"\n";
stackpointer--;
type = "Z";
}
@Override
public void outALessAst(ALessAst node){
code += "\tiflt LabelTrue"+(comparePointer++)+"\n";
stackpointer--;
type = "Z";
}
@Override
public void outALessEqAst(ALessEqAst node){
code += "\tifle LabelTrue"+(comparePointer++)+"\n";
stackpointer--;
type = "Z";
}
@Override
public void outAEqualAst(AEqualAst node){
code += "\tifeq LabelTrue" +(comparePointer++)+"\n";
stackpointer--;
type = "Z";
}
@Override
public void outAUnequalAst(AUnequalAst node){
code += "\tifne LabelTrue"+(comparePointer++)+"\n";
stackpointer--;
type = "Z";
}
//more difficult stuff now
@Override
public void caseAAssignmentAst(AAssignmentAst node){
node.getAst().apply(this);
code += "\tistore "+symbols.get(node.getIdentifier().toString().toLowerCase().replaceAll("\\s+",""))+"\n";
stackpointer--;
}
@Override
public void outAIdentifierAst(AIdentifierAst node){
String identifier = node.getIdentifier().toString().toLowerCase().replaceAll("\\s+","");
Node parent = node.parent();
String name = parent.getClass().getSimpleName().replaceAll("\\s+", "");
boolean flag =true;
while (!name.equals("AProgramStartAst")){
if(name.equals("ADeclarationsAst")) //if variable is declared i will not load it
flag = false;
parent = parent.parent();
name = parent.getClass().getSimpleName().replaceAll("\\s+","");
}
if(flag){
code +="\tiload "+symbols.get(identifier)+"\n";
stackpointer++;
}
}
@Override
public void caseABreakAst(ABreakAst node){
code += "\tgoto LabelBreakEnd"+breakPointer+"\n";
}
//thanks to my stupidity, i may now use a new variable to save the right labelcounter, because i was not aware how
//the tree is traversed
@Override
public void caseAOpenWhileStatementAst(AOpenWhileStatementAst node){
int actualLabel = labelCounter++;
code += "LabelWhile"+actualLabel+":\n";
node.getLeft().apply(this);
code += "\tifeq LabelWhileControl"+actualLabel+"\n";
node.getRight().apply(this);
code += "\tgoto LabelWhile"+actualLabel+"\nLabelWhileControl"+actualLabel+":\nLabelWhileEnd"+breakPointer+":\n";
breakPointer++;
stackpointer--;
}
@Override
public void caseAClosedWhileStatementAst(AClosedWhileStatementAst node){
int actualLabel = labelCounter++;
code += "LabelWhile"+actualLabel+":\n";
node.getLeft().apply(this);
code += "\tifeq LabelWhileEnd"+actualLabel+"\n";
node.getRight().apply(this);
code += "\tgoto LabelWhile"+actualLabel+"\nLabelWhileEnd"+breakPointer+":\n";
breakPointer++;
stackpointer--;
}
@Override
public void caseAOpenIfStatementAst (AOpenIfStatementAst node){
int actualLabel = labelCounter++;
node.getLeft().apply(this);
code += "\tifeq LabelOpenIf"+actualLabel+"\n";
node.getRight().apply(this);
code += "LabelOpenIf"+actualLabel+":\n";
stackpointer--;
}
@Override
public void caseAClosedIfStatementAst(AClosedIfStatementAst node){
int actualLabel = labelCounter++;
node.getLeft().apply(this);
code += "\tifeq LabelClosedIf"+actualLabel+"\n";
node.getRight().apply(this);
code += "LabelClosedIf"+actualLabel+":\n";
stackpointer--;
}
@Override
public void caseAOpenIfElseStatementAst(AOpenIfElseStatementAst node){
int actualLabel = labelCounter++;
node.getLeft().apply(this);
code += "\tifeq LabelIfElse"+actualLabel+"\n";
node.getMid().apply(this);
code += "\tgoto LabelIfElseEnd"+actualLabel+"\nLabelIfElse"+actualLabel+":\n";
node.getRight().apply(this);
code += "LabelIfElseEnd"+actualLabel+":\n";
stackpointer--;
}
@Override
public void caseAComparisonAst (AComparisonAst node){
int temp = 0;
node.getLeft().apply(this);
node.getRight().apply(this);
code += "\tisub\n";
temp = comparePointer;
node.getMid().apply(this);
code += "\tbipush 0\n\tgoto LabelCompareEnd"+temp+"\nLabelTrue"+temp+":\n\tbipush 1\nLabelCompareEnd"+temp+":\n";
stackpointer+=2;
}
}