This repository has been archived by the owner on May 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Translator.java
375 lines (347 loc) · 13.4 KB
/
Translator.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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
import java.io.*;
public class Translator
{
private Lexer lex;
private BufferedReader pbr;
private Token look;
SymbolTable st = new SymbolTable();
CodeGenerator code = new CodeGenerator();
private int count = 0;
private int i = 0;
public Translator(Lexer l, BufferedReader br)
{
lex = l;
pbr = br;
move();
}
void move()
{
look = lex.lexical_scan(pbr);
System.err.println("token = " + look);
}
void error(String s)
{
throw new Error("near line " + lex.line + ": " + s);
}
void match(int t)
{
if (look.tag == t)
{
if (look.tag != Tag.EOF) move();
}
else error("syntax error");
}
public void prog()
{
if(look.tag=='='||look.tag=='{'||look.tag==Tag.PRINT||look.tag==Tag.READ||look.tag==Tag.COND||look.tag==Tag.WHILE)
{
statlist();
match(Tag.EOF);
try
{
code.toJasmin();
}
catch(java.io.IOException e)
{
System.out.println("IO error\n");
};
}
else if (look.tag==Tag.EOF)
{
System.out.println("Il file non contiene elementi!");
}
else error("prog");
}
public void stat()
{
switch(look.tag)
{
case '=': // = ID <expr>
match('=');
int id_addr_eq = st.lookupAddress(((Word)look).lexeme);
if(look.tag == Tag.ID)
{
if(id_addr_eq == -1)
{
count++;
id_addr_eq = count;
st.insert(((Word)look).lexeme,count);
}
match(Tag.ID);
expr();
code.emit(OpCode.istore,id_addr_eq);
}
else
{
error("Errore nella grammatica dopo = ");
}
break;
case Tag.PRINT: // print (<exprlist>)
match(Tag.PRINT);
match('(');
exprlist(OpCode.invokestatic);
match(')');
break;
case Tag.READ: // read (ID)
match(Tag.READ);
match('(');
if (look.tag==Tag.ID)
{
int id_addr_read = st.lookupAddress(((Word)look).lexeme);
if(id_addr_read == -1)
{
count++;
id_addr_read = count;
st.insert(((Word)look).lexeme,count);
}
match(Tag.ID);
match(')');
code.emit(OpCode.invokestatic,0);
code.emit(OpCode.istore,id_addr_read);
}
else error("Errore nella grammatica all'interno di print(ID)");
break;
case Tag.COND: // cond <whenlist> else <stat>
String str = "s" + i;
int id_addr_COND = st.lookupAddress(str);
if(id_addr_COND == -1)
{
count++;
id_addr_COND = count;
st.insert(str,count);
i++;
}
code.emit(OpCode.ldc,0);
code.emit(OpCode.istore, id_addr_COND);
match(Tag.COND);
whenlist(str);
int ltrue = code.newLabel();
int lfalse = code.newLabel();
match(Tag.ELSE);
code.emit(OpCode.ldc,0);
code.emit(OpCode.iload, st.lookupAddress(str));
code.emit(OpCode.if_icmpeq, ltrue);
code.emit(OpCode.GOto, lfalse);
code.emitLabel(ltrue);
stat();
code.emitLabel(lfalse);
break;
case Tag.WHILE: // while (<bexpr>) <stat>
match(Tag.WHILE);
match('(');
int lhere = code.newLabel();
int lnext = code.newLabel();
int lciclo = code.newLabel();
code.emitLabel(lciclo);
bexpr(lhere);
match(')');
code.emit(OpCode.GOto,lnext);
code.emitLabel(lhere);
stat();
code.emit(OpCode.GOto, lciclo);
code.emitLabel(lnext);
break;
case '{': // {<statlist>}
move();
statlist();
match('}');
break;
default:
error("errore in stat()");
}
}
private void expr()
{
switch(look.tag)
{
case '-': // - <expr> <expr>
match('-');
expr();
expr();
code.emit(OpCode.isub);
break;
case '/': // / <expr> <expr>
match('/');
expr();
expr();
code.emit(OpCode.idiv);
break;
case '+': // + (exprlist)
match('+');
match('(');
exprlist(OpCode.iadd);
match(')');
break;
case '*': // * (exprlist)
match('*');
match('(');
exprlist(OpCode.imul);
match(')');
break;
case Tag.NUM : // NUM
code.emit(OpCode.ldc, ((NumberTok)look).numero);
match(Tag.NUM);
break;
case Tag.ID : // ID
int id_addr_ID = st.lookupAddress(((Word)look).lexeme);
if(id_addr_ID == -1)
{
count++;
id_addr_ID = count;
st.insert(((Word)look).lexeme,count);
}
code.emit(OpCode.iload, id_addr_ID);
match(Tag.ID);
break;
}
}
private void whenlist(String str) // <whenitem> <whenlistp>
{
if(look.tag==Tag.WHEN)
{
whenitem(str);
whenlistp(str);
}
else error("Errore in whenlist");
}
private void whenlistp(String str) // <whenitem> <whenlistp> | NULL
{
if(look.tag==Tag.WHEN)
{
whenitem(str);
whenlistp(str);
}
else if(look.tag==Tag.ELSE||look.tag=='}'){}
else error("Errore in whenlistp");
}
private void whenitem(String str) // when (bexpr) do stat
{
match(Tag.WHEN);
match('(');
int ltrue = code.newLabel();
int lnext = code.newLabel();
bexpr(ltrue);
match(')');
code.emit(OpCode.GOto,lnext);
match(Tag.DO);
code.emitLabel(ltrue);
code.emit(OpCode.ldc,1);
code.emit(OpCode.istore, st.lookupAddress(str));
stat();
code.emitLabel(lnext);
}
private void bexpr(int ltrue_prog) // RELOP <expr> <expr>
{
if(look.tag == Tag.RELOP)
{
if (look == Word.ne)
{
move();
expr();
expr();
code.emit(OpCode.if_icmpne, ltrue_prog);
}
else if (look == Word.eq)
{
move();
expr();
expr();
code.emit(OpCode.if_icmpeq, ltrue_prog);
}
else if (look == Word.ge)
{
move();
expr();
expr();
code.emit(OpCode.if_icmpge, ltrue_prog);
}
else if (look == Word.le)
{
move();
expr();
expr();
code.emit(OpCode.if_icmple, ltrue_prog);
}
else if (look == Word.gt)
{
move();
expr();
expr();
code.emit(OpCode.if_icmpgt, ltrue_prog);
}
else if (look == Word.lt)
{
move();
expr();
expr();
code.emit(OpCode.if_icmplt, ltrue_prog);
}
}
}
private void statlist() // <statlist> <statlistp>
{
if(look.tag==Tag.PRINT||look.tag=='='||look.tag==Tag.READ||look.tag==Tag.COND||look.tag==Tag.WHILE||look.tag=='{')
{
stat();
statlist_p();
}
else error("Errore in statlist");
}
private void statlist_p() // ; <statlist> <statlistp> | NULL
{
if (look.tag == ';')
{
match(';');
stat();
statlist_p();
}
else if(look.tag=='='||look.tag=='}'||look.tag=='{'||look.tag==Tag.PRINT||look.tag==Tag.READ||look.tag==Tag.COND||look.tag==Tag.WHILE||look.tag==Tag.EOF){}
else error("Errore in statlist_p");
}
private void exprlist(OpCode Opcode) // <expr> <exprlistp>
{
if(look.tag==Tag.NUM||look.tag==Tag.ID||look.tag=='+'||look.tag=='/'||look.tag=='*'||look.tag=='-')
{
expr();
if (Opcode == OpCode.invokestatic)
{
code.emit(Opcode,1);
}
exprlistp(Opcode);
}
else error("Errore in exprlist");
}
private void exprlistp(OpCode Opcode) // <expr> <exprlistp> | NULL
{
if(look.tag==Tag.NUM||look.tag==Tag.ID||look.tag=='+'||look.tag=='/'||look.tag=='*'||look.tag=='-')
{
expr();
if (Opcode == OpCode.invokestatic)
{
code.emit(Opcode,1);
}
else
{
code.emit(Opcode);
}
exprlistp(Opcode);
}
else if(look.tag==')'){}
else error("Errore in exprlistp");
}
public static void main(String[] args)
{
Lexer lex = new Lexer();
String path = "Prova.txt"; // il percorso del file da leggere
try
{
BufferedReader br = new BufferedReader(new FileReader(path));
Translator translator = new Translator(lex, br);
translator.prog();
br.close();
} catch (IOException e)
{
e.printStackTrace();
}
}
}