-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTranslate.java
More file actions
1206 lines (1095 loc) · 42.3 KB
/
Copy pathTranslate.java
File metadata and controls
1206 lines (1095 loc) · 42.3 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
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package FinalProject;
import FinalProject.analysis.*;
import FinalProject.node.*;
import java.util.*;
class Translate extends DepthFirstAdapter
{
public static boolean[] registers = {true, true, true, true, true, true, true, true, true, true};
public static int offset;
public static Stack<Integer> exprstack;
public static String lastnum;
public static String lastid;
public static Variable[] globalvars;
Variable[] localparams;
Variable[] localvars;
public static int arrayoffset;
int stacksize = 0;
Method curmeth = null;
String laststring = null;
public static int ifcount = 0;
public static int whilecount = 0;
int numargs;
Stack<Integer> argcount;
public Translate() {
//System.out.println("Start of the Translating Action");
argcount = new Stack<Integer>();
arrayoffset = -1;
exprstack = new Stack<Integer>();
System.out.println("\t.data");
globalvars = SymbolTraverse.st.globalvars.values().toArray(new Variable[0]);
for (int i = 0; i < globalvars.length;i++){
System.out.println(globalvars[i].name + ":");
switch(globalvars[i].type)
{
case "INT":
System.out.println("\t.space 4");
break;
case "STRING":
System.out.println("\t.space 4");
break;
case "REAL":
System.out.println("\t.space 4");
break;
case "BOOLEAN":
System.out.println("\t.space 4");
break;
default:
System.out.println("Mission failed");
break;
}
}
System.out.println("\t.text");
System.out.println("\tjal main");
}
//this gets called if the production is prog --> id digit
public void caseAProg(AProg node){
//System.out.println("\tGot a first prog!");
node.getBegin().apply(this);
node.getClassmethodstmts().apply(this);
node.getEnd().apply(this);
}
//Type --> {first} intdecl
public void caseAFirstType(AFirstType node){
//System.out.println("\tGot a First Type!");
node.getIntdecl().apply(this);
}
//Type --> {second} realdecl
public void caseASecondType(ASecondType node){
//System.out.println("\tGot a Second Type!");
node.getRealdecl().apply(this);
}
//Type --> {third} voiddecl
public void caseAThirdType(AThirdType node){
//System.out.println("\tGot a third Type!");
node.getVoiddecl().apply(this);
}
//Type --> {fourth} booleandecl
public void caseAFourthType(AFourthType node){
//System.out.println("\tGot a fourth Type!");
node.getBooleandecl().apply(this);
}
//Type --> {fifth} stringdecl
public void caseAFifthType(AFifthType node){
//System.out.println("\tGot a fifth Type!");
node.getStringdecl().apply(this);
}
//Type --> {sixth} iddecl
public void caseASixthType(ASixthType node){
//System.out.println("\tGot a sixth Type!");
node.getId().apply(this);
}
//multop --> {first} times
public void caseAFirstMultop(AFirstMultop node){
//System.out.println("\tGot a first Multop!");
node.getTimes().apply(this);
int second = exprstack.pop();
int first = exprstack.pop();
System.out.println("\tmul $t" + first + ", $t" + first + ", $t" + second);
registers[second] = true;
exprstack.push(first);
}
public void caseASecondMultop(ASecondMultop node){
//System.out.println("\tGot a second Multop!");
node.getDivide().apply(this);
int second = exprstack.pop();
int first = exprstack.pop();
System.out.println("\tdiv $t" + first + ", $t" + first + ", $t" + second);
registers[second] = true;
exprstack.push(first);
}
//addop --> {first} plus
public void caseAFirstAddop(AFirstAddop node){
//System.out.println("\tGot a first Addop!");
node.getPlus().apply(this);
int second = exprstack.pop();
int first = exprstack.pop();
System.out.println("\tadd $t" + first + ", $t" + first + ", $t" + second);
registers[second] = true;
exprstack.push(first);
}
public void caseASecondAddop(ASecondAddop node){
//System.out.println("\tGot a second Addop!");
node.getMinus().apply(this);
int second = exprstack.pop();
int first = exprstack.pop();
System.out.println("\tsub $t" + first + ", $t" + first + ", $t" + second);
registers[second] = true;
exprstack.push(first);
}
//cond --> {first} equalequal
public void caseAFirstCond(AFirstCond node){
//System.out.println("\tGot a First Cond!");
node.getEqualequal().apply(this);
int second = exprstack.pop();
int first = exprstack.pop();
System.out.println("\tslt $t2, $t1, $t0");
System.out.println("\tslt $t3, $t0, $t1");
System.out.println("\tor $t0, $t2, $t3");
System.out.println("\tslti $t0, $t0, 1");
registers[1] = true;
exprstack.push(0);
}
//{second} notequal
public void caseASecondCond(ASecondCond node){
//System.out.println("\tGot a Second Cond!");
node.getNotequal().apply(this);
int second = exprstack.pop();
int first = exprstack.pop();
System.out.println("\tslt $t2, $t1, $t0");
System.out.println("\tslt $t3, $t0, $t1");
System.out.println("\tor $t0, $t2, $t3");
registers[1] = true;
exprstack.push(0);
}
//{third} leq
public void caseAThirdCond(AThirdCond node){
//System.out.println("\tGot a Third Cond!");
node.getLeq().apply(this);
int second = exprstack.pop();
int first = exprstack.pop();
System.out.println("\tslt $t0, $t1, $t0");
System.out.println("\tslti $t0, $t0, 1");
registers[1] = true;
exprstack.push(0);
}
//{fourth} geq
public void caseAFourthCond(AFourthCond node){
//System.out.println("\tGot a Fourth Cond!");
node.getGeq().apply(this);
System.out.println("\tslt $t0, $t0, $t1");
System.out.println("\tslt $t0, $t0, 1");
registers[1] = true;
exprstack.pop();
}
//{fifth} lt
public void caseAFifthCond(AFifthCond node){
//System.out.println("\tGot a Fifth Cond!");
node.getLt().apply(this);
System.out.println("\tslt $t0, $t0, $t1");
registers[1] = true;
exprstack.pop();
}
//{sixth} gt
public void caseASixthCond(ASixthCond node){
//System.out.println("\tGot a Sixth Cond!");
node.getGt().apply(this);
System.out.println("\tslt $t0, $t1, $t0");
registers[1] = true;
exprstack.pop();
}
public void caseAFirstFactor(AFirstFactor node){
//System.out.println("\tGet a first factor!");
node.getMinus().apply(this);
node.getFactor().apply(this);
}
public void caseASecondFactor(ASecondFactor node){
//System.out.println("\tGet a second factor!");
node.getInt().apply(this);
int reg = -1;
for (int i = 0; i < registers.length;i++){
if (registers[i] == true && reg == -1){
reg = i;
registers[i] = false;
System.out.println("\tli $t" + i + ", " + lastnum);
exprstack.push(i);
}
}
}
public void caseAThirdFactor(AThirdFactor node){
//System.out.println("\tGet a Third factor!");
node.getReal().apply(this);
}
public void caseAFourthFactor(AFourthFactor node){
//System.out.println("\tGet a fourth factor!");
node.getId().apply(this);
getIdValue();
}
public void caseAFifthFactor(AFifthFactor node){
//System.out.println("\tGet a fifth factor!");
node.getId().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
arrayoffset = Integer.parseInt(lastnum);
node.getRbracket().apply(this);
getIdValue();
int reg = exprstack.pop();
System.out.println("\tlw $t" + reg + ", " + (4 * arrayoffset) + "($t" + reg + ")");
exprstack.push(reg);
}
public void caseASixthFactor(ASixthFactor node){
//System.out.println("\tGet a sixth factor!");
node.getId().apply(this);
String methodname = lastid;
argcount.push(0);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
System.out.println("\tjal " + methodname);
node.getRparen().apply(this);
argcount.pop();
int reg = -1;
for (int i = 0; i < registers.length;i++){
if (registers[i] == true && reg == -1){
reg = i;
registers[i] = false;
exprstack.push(i);
}
}
System.out.println("\tmove $t" + reg + ", $v0");
}
public void caseASeventhFactor(ASeventhFactor node){
//System.out.println("\tGet a seventh factor!");
node.getObject().apply(this);
node.getDot().apply(this);
node.getField().apply(this);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
node.getRparen().apply(this);
}
public void caseAEighthFactor(AEighthFactor node){
//System.out.println("\tGet an Eighth factor!");
node.getObject().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
node.getDot().apply(this);
node.getField().apply(this);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
node.getRparen().apply(this);
}
public void caseANinthFactor(ANinthFactor node){
//System.out.println("\tGet a Ninth factor!");
node.getObject().apply(this);
node.getDot().apply(this);
node.getField().apply(this);
}
public void caseATenthFactor(ATenthFactor node){
//System.out.println("\tGet a Tenth factor!");
node.getLparen().apply(this);
node.getExpr().apply(this);
node.getRparen().apply(this);
}
public void caseAFirstBoolean(AFirstBoolean node){
//System.out.println("\tGot a First Boolean!");
node.getTrue().apply(this);
int reg = -1;
for (int i = 0; i < registers.length;i++){
if (registers[i] == true && reg == -1){
reg = i;
registers[i] = false;
exprstack.push(i);
}
}
System.out.println("\tli $t" + reg + ", 1");
}
public void caseASecondBoolean(ASecondBoolean node){
//System.out.println("\tGot a Second Boolean!");
node.getFalse().apply(this);
int reg = -1;
for (int i = 0; i < registers.length;i++){
if (registers[i] == true && reg == -1){
reg = i;
registers[i] = false;
exprstack.push(i);
}
}
System.out.println("\tli $t" + reg + ", 0");
}
public void caseAThirdBoolean(AThirdBoolean node){
//System.out.println("\tGot a Third Boolean!");
node.getId().apply(this);
getIdValue();
}
public void caseAFourthBoolean(AFourthBoolean node){
//System.out.println("\tGot a Fourth Boolean!");
node.getOne().apply(this);
node.getTwo().apply(this);
node.getCond().apply(this);
}
public void caseAFifthBoolean(AFifthBoolean node){
//System.out.println("\tGot a Fifth Boolean!");
node.getObject().apply(this);
node.getDot().apply(this);
node.getField().apply(this);
}
public void caseASixthBoolean(ASixthBoolean node){
//System.out.println("\tGot a Sixth Boolean!");
node.getObject().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
node.getDot().apply(this);
node.getField().apply(this);
}
//term --> {first} term multop factor
public void caseAFirstTerm(AFirstTerm node){
//System.out.println("\tGot a first term!");
node.getTerm().apply(this);
node.getFactor().apply(this);
node.getMultop().apply(this);
}
//term --> {second} factor
public void caseASecondTerm(ASecondTerm node){
//System.out.println("\tGot a second term!");
node.getFactor().apply(this);
}
//expr --> {first} expr addop term
public void caseAFirstExpr(AFirstExpr node){
//System.out.println("\tGot a first expr!");
node.getExpr().apply(this);
node.getTerm().apply(this);
node.getAddop().apply(this);
}
//expr --> {second} term
public void caseASecondExpr(ASecondExpr node){
//System.out.println("\tGot a second expr!");
node.getTerm().apply(this);
}
//varlisttwo --> {first}
public void caseAFirstVarlisttwo(AFirstVarlisttwo node){
//System.out.println("\tGot a first varlisttwo!");
}
//varlisttwo --> {second} expr
public void caseASecondVarlisttwo(ASecondVarlisttwo node){
//System.out.println("\tGot a second varlisttwo!");
node.getExpr().apply(this);
int reg = exprstack.pop();//get the register of the expression's value
registers[reg] = true;
int argnum = argcount.pop();
argcount.push(argnum + 1);//set the current stack's value equal to the next argument ($a0 -> $a1)
System.out.println("\tmove $a" + argnum + ", $t" + reg);
}
//varlisttwo --> {third} expr comma varlisttwo
public void caseAThirdVarlisttwo(AThirdVarlisttwo node){
//System.out.println("\tGot a third varlisttwo!");
node.getExpr().apply(this);
int reg = exprstack.pop();//get the register of the expression's value
registers[reg] = true;
int argnum = argcount.pop();
argcount.push(argnum + 1);//set the current stack's value equal to the next argument ($a0 -> $a1)
System.out.println("\tmove $a" + argnum + ", $t" + reg);
node.getComma().apply(this);
node.getVarlisttwo().apply(this);
}
//varlist --> {first}
public void caseAFirstVarlist(AFirstVarlist node){
//System.out.println("\tGot a first varlist!");
}
//varlist --> {second} id colon type
public void caseASecondVarlist(ASecondVarlist node){
//System.out.println("\tGot a second varlist!");
node.getId().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
}
//varlist --> {third} id colon type lbracket int rbracket
public void caseAThirdVarlist(AThirdVarlist node){
//System.out.println("\tGot a third varlist!");
node.getId().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
}
//varlist --> {fourth} id colon type comma varlist
public void caseAFourthVarlist(AFourthVarlist node){
//System.out.println("\tGot a fourth varlist!");
node.getId().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getComma().apply(this);
node.getVarlist().apply(this);
}
//varlist --> {fifth} id colon type lbracket int rbracket comma varlist
public void caseAFifthVarlist(AFifthVarlist node){
//System.out.println("\tGot a fifth varlist!");
node.getId().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
node.getComma().apply(this);
node.getVarlist().apply(this);
}
//idlist --> {first} id
public void caseAFirstIdlist(AFirstIdlist node){
//System.out.println("\tGot a first idlist!");
node.getId().apply(this);
}
//idlist --> {second} id comma idlist
public void caseASecondIdlist(ASecondIdlist node){
//System.out.println("\tGot a first idlist!");
node.getId().apply(this);
node.getComma().apply(this);
node.getIdlist().apply(this);
}
//stmtseq --> {first}
public void caseAFirstStmtseq(AFirstStmtseq node){
//System.out.println("\tGot a first stmtseq!");
}
//stmtseq --> {second} stmt stmtseq
public void caseASecondStmtseq(ASecondStmtseq node){
//System.out.println("\tGot a second stmtseq!");
node.getStmt().apply(this);
node.getStmtseq().apply(this);
}
//idorarray --> {first} id
public void caseAFirstIdorarray(AFirstIdorarray node){
//System.out.println("\tGot a first idorarray!");
node.getId().apply(this);
}
//idorarray --> {second} id lbracket int rbracket
public void caseASecondIdorarray(ASecondIdorarray node){
//System.out.println("\tGot a second idorarray!");
node.getId().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
node.getRbracket().apply(this);
arrayoffset = Integer.parseInt(lastnum);
}
//stmt --> {first} idorarray assign expr semicolon
public void caseAFirstStmt(AFirstStmt node){
//System.out.println("\tGot a first stmt!");
node.getExpr().apply(this);
node.getIdorarray().apply(this);
assign();
node.getAssign().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {third} idorarray assign anychars semicolon
public void caseAThirdStmt(AThirdStmt node){
//System.out.println("\tGot a third stmt!");
node.getAssign().apply(this);
node.getAnychars().apply(this);
node.getIdorarray().apply(this);
int stringlength = laststring.length();
System.out.println("\tli $a0, " + (stringlength + 4));
System.out.println("\tli $v0, 9\n\tsyscall");
String str = laststring + " ";
int i;
for (i = 0; i < stringlength; i+= 4){
int ascii1 = str.charAt(i);
int ascii2 = str.charAt(i + 1);
int ascii3 = str.charAt(i + 2);
int ascii4 = str.charAt(i + 3);
int ascii = ascii1 + ascii2 * 256 + ascii3 * 256 * 256 + ascii4 * 256 * 256 * 256;
System.out.println("\tli $t0, " + ascii);
System.out.println("\tsw $t0, " + i + "($v0)");
}
int ascii = '\0';
System.out.println("\tli $t0, " + ascii);
System.out.println("\tsw $t0, " + i + "($v0)");
System.out.println("\tmove $t0, $v0");
assign();
node.getSemicolon().apply(this);
}
//stmt --> {fifth} idlist colon type semicolon
public void caseAFifthStmt(AFifthStmt node){
//System.out.println("\tGot a fifth stmt!");
node.getIdlist().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {sixth} idlist colon type lbracket int rbracket semicolon
public void caseASixthStmt(ASixthStmt node){
//System.out.println("\tGot a sixth stmt!");
node.getIdlist().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getLbracket().apply(this);
node.getInt().apply(this);
System.out.println("\tli $a0, " + (Integer.parseInt(lastnum) * 4));
System.out.println("\tli $v0, 9\n\tsyscall");
System.out.println("\tmove $t0, $v0");
System.out.println("\tsw $t0, " + curmeth.getVar(lastid).stack_offset + "($sp)");
node.getRbracket().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {seventh} if lparen boolean rparen then lbrace stmtseq rbrace
public void caseASeventhStmt(ASeventhStmt node){
//System.out.println("\tGot a seventh stmt!");
node.getIf().apply(this);
node.getLparen().apply(this);
node.getBoolean().apply(this);
node.getRparen().apply(this);
ifcount++;
int count = ifcount;//make sure they match
System.out.println("\tbeq $t0, $zero, after" + count);
registers[0] = true;
exprstack.pop();
node.getThen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
System.out.println("after" + count + ":");
}
//stmt --> {eighth} if lparen boolean rparen then [one]:lbrace [five]:stmtseq [three]:rbrace else [two]:lbrace [six]:stmtseq [four]:rbrace
public void caseAEighthStmt(AEighthStmt node){
//System.out.println("\tGot a eighth stmt!");
node.getIf().apply(this);
node.getLparen().apply(this);
node.getBoolean().apply(this);
ifcount++;
int count = ifcount;
registers[0] = true;
exprstack.pop();
System.out.println("\tbeq $t0, $zero, else" + count);
node.getRparen().apply(this);
node.getThen().apply(this);
node.getOne().apply(this);
node.getFive().apply(this);
node.getThree().apply(this);
System.out.println("\tj after" + count);
System.out.println("else" + count + ":");
node.getElse().apply(this);
node.getTwo().apply(this);
node.getSix().apply(this);
node.getFour().apply(this);
System.out.println("after" + count + ":");
}
//stmt --> {ninth} while lparen boolean rparen lbrace stmtseq rbrace
public void caseANinthStmt(ANinthStmt node){
//System.out.println("\tGot a ninth stmt!");
node.getWhile().apply(this);
whilecount++;
int count = whilecount;
System.out.println("while" + count + ":");
node.getLparen().apply(this);
node.getBoolean().apply(this);
registers[0] = true;
exprstack.pop();
System.out.println("\tbeq $t0, $zero, done" + count);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
System.out.println("\tj while" + count);
System.out.println("done" + count + ":");
node.getRbrace().apply(this);
}
//stmt --> {tenth} for lparen [five]:id assign expr [one]:semicolon boolean [two]:semicolon [six]:id [three]:plus [four]:plus rparen lbrace stmtseq rbrace
public void caseATenthStmt(ATenthStmt node){
//System.out.println("\tGot a tenth stmt!");
node.getFor().apply(this);
node.getLparen().apply(this);
node.getExpr().apply(this);
node.getFive().apply(this);
node.getAssign().apply(this);
assign();
node.getOne().apply(this);
whilecount++;
int count = whilecount;
System.out.println("while" + count + ":");
node.getBoolean().apply(this);
registers[0] = true;
exprstack.pop();
System.out.println("\tbeq $t0, $zero, done" + count);
node.getTwo().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
node.getSix().apply(this);
node.getThree().apply(this);
node.getFour().apply(this);
idplusplus();
System.out.println("\tj while" + count);
System.out.println("done" + count + ":");
}
//stmt --> {eleventh} for lparen type [five]:id assign expr [one]:semicolon boolean [two]:semicolon [six]:id [three]:plus [four]:plus rparen lbrace stmtseq rbrace
public void caseAEleventhStmt(AEleventhStmt node){
// System.out.println("\tGot a eleventh stmt!");
node.getFor().apply(this);
node.getLparen().apply(this);
node.getExpr().apply(this);
node.getFive().apply(this);
node.getAssign().apply(this);
assign();
node.getOne().apply(this);
whilecount++;
int count = whilecount;
System.out.println("while" + count + ":");
node.getBoolean().apply(this);
registers[0] = true;
exprstack.pop();
System.out.println("\tbeq $t0, $zero, done" + count);
node.getTwo().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
node.getSix().apply(this);
node.getThree().apply(this);
node.getFour().apply(this);
idplusplus();
System.out.println("\tj while" + count);
System.out.println("done" + count + ":");
}
//stmt --> {twelveth} for lparen [five]:id assign expr [one]:semicolon boolean [two]:semicolon [six]:id [three]:minus [four]:minus rparen lbrace stmtseq rbrace
public void caseATwelvethStmt(ATwelvethStmt node){
//System.out.println("\tGot a twelveth stmt!");
node.getFor().apply(this);
node.getLparen().apply(this);
node.getExpr().apply(this);
node.getFive().apply(this);
node.getAssign().apply(this);
assign();
node.getOne().apply(this);
whilecount++;
int count = whilecount;
System.out.println("while" + count + ":");
node.getBoolean().apply(this);
registers[0] = true;
exprstack.pop();
System.out.println("\tbeq $t0, $zero, done" + count);
node.getTwo().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
node.getSix().apply(this);
node.getThree().apply(this);
node.getFour().apply(this);
idminusminus();
System.out.println("\tj while" + count);
System.out.println("done" + count + ":");
}
//stmt --> {thirteenth} for lparen type [five]:id assign expr [one]:semicolon boolean [two]:semicolon [six]:id [three]:minus [four]:minus rparen lbrace stmtseq rbrace
public void caseAThirteenthStmt(AThirteenthStmt node){
//System.out.println("\tGot a thirteenth stmt!");
node.getFor().apply(this);
node.getLparen().apply(this);
node.getExpr().apply(this);
node.getFive().apply(this);
node.getAssign().apply(this);
assign();
node.getOne().apply(this);
whilecount++;
int count = whilecount;
System.out.println("while" + count + ":");
node.getBoolean().apply(this);
registers[0] = true;
exprstack.pop();
System.out.println("\tbeq $t0, $zero, done" + count);
node.getTwo().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
node.getSix().apply(this);
node.getThree().apply(this);
node.getFour().apply(this);
idminusminus();
System.out.println("\tj while" + count);
System.out.println("done" + count + ":");
}
//stmt --> {fourteenth} for lparen [five]:id [aba]:assign [aca]:expr [one]:semicolon boolean [two]:semicolon [six]:id [gay]:assign [aaa]:expr rparen lbrace stmtseq rbrace
public void caseAFourteenthStmt(AFourteenthStmt node){
//System.out.println("\tGot a fourteenth stmt!");
node.getFor().apply(this);
node.getLparen().apply(this);
node.getAca().apply(this);
node.getFive().apply(this);
node.getAba().apply(this);
assign();
node.getOne().apply(this);
whilecount++;
int count = whilecount;
System.out.println("while" + count + ":");
node.getBoolean().apply(this);
registers[0] = true;
exprstack.pop();
System.out.println("\tbeq $t0, $zero, done" + count);
node.getTwo().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
node.getAaa().apply(this);
node.getSix().apply(this);
assign();
System.out.println("\tj while" + count);
System.out.println("done" + count + ":");
}
//stmt --> {fifteenth} for type lparen [five]:id [aba]:assign [aca]:expr [one]:semicolon boolean [two]:semicolon [six]:id [gay]:assign [aaa]:expr rparen lbrace stmtseq rbrace
public void caseAFifteenthStmt(AFifteenthStmt node){
//System.out.println("\tGot a fifteenth stmt!");
node.getFor().apply(this);
node.getLparen().apply(this);
node.getAca().apply(this);
node.getFive().apply(this);
node.getAba().apply(this);
assign();
node.getOne().apply(this);
whilecount++;
int count = whilecount;
System.out.println("while" + count + ":");
node.getBoolean().apply(this);
registers[0] = true;
exprstack.pop();
System.out.println("\tbeq $t0, $zero, done" + count);
node.getTwo().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
node.getAaa().apply(this);
node.getSix().apply(this);
assign();
System.out.println("\tj while" + count);
System.out.println("done" + count + ":");
}
//stmt --> {sixteenth} idorarray assign get lparen rparen semicolon
public void caseASixteenthStmt(ASixteenthStmt node){
//System.out.println("\tGot a sixteenth stmt!");
node.getAssign().apply(this);
node.getGet().apply(this);
System.out.println("\tli $v0, 5");
System.out.println("\tsyscall");
System.out.println("\tmove $t0, $v0");
node.getIdorarray().apply(this);
assign();
node.getLparen().apply(this);
node.getRparen().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {seventeenth} put lparen idorarray rparen semicolon
public void caseASeventeenthStmt(ASeventeenthStmt node){
//System.out.println("\tGot a seventeenth stmt!");
node.getPut().apply(this);
node.getLparen().apply(this);
node.getIdorarray().apply(this);
if (arrayoffset != -1){//if its to an array index
System.out.println("\tlw $t0, " + curmeth.getVar(lastid).stack_offset + "($sp)");
System.out.println("\tlw $a0, " + (arrayoffset * 4) + "($t0)");
System.out.println("\tli $v0, 1\n\tsyscall");
} else if (curmeth.containsParam(lastid)){//if its a parameter
if (curmeth.getParam(lastid).type.equals("STRING")){
System.out.println("\tlw $a0, " + curmeth.getParam(lastid).stack_offset + "($sp)");
System.out.println("\tli $v0, 4\n\tsyscall");
}else if (curmeth.getParam(lastid).type.equals("INT")){
System.out.println("\tlw $a0, " + curmeth.getParam(lastid).stack_offset + "($sp)");
System.out.println("\tli $v0, 1\n\tsyscall");
}
} else if (curmeth.containsVar(lastid)){ //if it's a local variable
if (curmeth.getVar(lastid).type.equals("STRING")){
System.out.println("\tlw $a0, " + curmeth.getVar(lastid).stack_offset + "($sp)");
System.out.println("\tli $v0, 4\n\tsyscall");
}else if (curmeth.getVar(lastid).type.equals("INT")){
System.out.println("\tlw $a0, " + curmeth.getVar(lastid).stack_offset + "($sp)");
System.out.println("\tli $v0, 1\n\tsyscall");
}
} else { //if its a global variable
if (SymbolTraverse.st.getVar(lastid).type.equals("STRING")){
System.out.println("\tlw $a0, " + SymbolTraverse.st.getVar(lastid).name);
System.out.println("\tli $v0, 4\n\tsyscall");
}else if (SymbolTraverse.st.getVar(lastid).type.equals("INT")){
System.out.println("\tlw $a0, " + lastid);
System.out.println("\tli $v0, 1\n\tsyscall");
}
}
node.getRparen().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {eighteenth} idorarray [first]:plus [second]:plus semicolon
public void caseAEighteenthStmt(AEighteenthStmt node){
//System.out.println("\tGot a eightteenth stmt!");
node.getIdorarray().apply(this);
idplusplus();
node.getFirst().apply(this);
node.getSecond().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {nineteenth} idorarray [first]:minus [second]:minus semicolon
public void caseANineteenthStmt(ANineteenthStmt node){
//System.out.println("\tGot a nineteenth stmt!");
node.getIdorarray().apply(this);
idminusminus();
node.getFirst().apply(this);
node.getSecond().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {twenty} idorarray assign new id lparen rparen semicolon
public void caseATwentyStmt(ATwentyStmt node){
//System.out.println("\tGot a twenty stmt!");
node.getIdorarray().apply(this);
node.getAssign().apply(this);
node.getNew().apply(this);
node.getId().apply(this);
node.getLparen().apply(this);
node.getRparen().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {twentyone} id lparen varlisttwo rparen semicolon |
public void caseATwentyoneStmt(ATwentyoneStmt node){
//System.out.println("\tGot a twentyone stmt!");
node.getId().apply(this);
String methodname = lastid;
argcount.push(0);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
System.out.println("\tjal " + methodname);
node.getRparen().apply(this);
argcount.pop();
node.getSemicolon().apply(this);
}
//stmt --> {twentytwo} idorarray dot id lparen varlisttwo rparen dotmethod semicolon
public void caseATwentytwoStmt(ATwentytwoStmt node){
// System.out.println("\tGot a twentytwo stmt!");
node.getIdorarray().apply(this);
node.getDot().apply(this);
node.getId().apply(this);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
node.getRparen().apply(this);
node.getDotmethod().apply(this);
node.getSemicolon().apply(this);
}
//stmt --> {twentythree} return expr semicolon
public void caseATwentythreeStmt(ATwentythreeStmt node){
//System.out.println("\tGot a twentythree stmt!");
node.getReturn().apply(this);
node.getExpr().apply(this);
System.out.println("\tmove $v0, $t0");
if (curmeth.name.equals("main")){
System.out.println("\tli $v0, 10 \n\tsyscall");
} else {
System.out.println("\tlw $t0, 0($sp)");
System.out.println("\tlw $ra, 4($sp)");
System.out.println("\taddi $sp, $sp, " + stacksize);
System.out.println("\tjr $ra");
}
node.getSemicolon().apply(this);
}
public void caseAFirstDotmethod(AFirstDotmethod node){
//System.out.println("\tGot a first Dotmethod!");
node.getDot().apply(this);
node.getId().apply(this);
node.getLparen().apply(this);
node.getVarlisttwo().apply(this);
node.getRparen().apply(this);
node.getDotmethod().apply(this);
}
public void caseASecondDotmethod(ASecondDotmethod node){
//System.out.println("\tGot a second Dotmethod!");
}
public void caseAFirstMethodstmtseq(AFirstMethodstmtseq node){
//System.out.println("\tGot a first Methodstmtseq!");
node.getType().apply(this);
node.getId().apply(this);
methodIn();
node.getLparen().apply(this);
node.getVarlist().apply(this);
node.getRparen().apply(this);
node.getLbrace().apply(this);
node.getStmtseq().apply(this);
node.getRbrace().apply(this);
methodOut();
}
public void caseASecondMethodstmtseq(ASecondMethodstmtseq node){
//System.out.println("\tGot a Second Methodstmtseq!");
node.getIdlist().apply(this);
node.getColon().apply(this);
node.getType().apply(this);
node.getSemicolon().apply(this);
}
public void caseAFirstMethodstmtseqs(AFirstMethodstmtseqs node){
//System.out.println("\tGot a First methodstmtseqs!");
node.getMethodstmtseq().apply(this);