-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslate.c
1069 lines (890 loc) · 31.7 KB
/
translate.c
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
#include "translate.h"
#include "node.h"
#include "ir.h"
#include "operand.h"
#include "cmm-symtab.h"
#include <assert.h>
#include <stdlib.h>
#include <string.h>
extern Node prog;
extern FILE *asm_file;
TranslateState translate_state = FINE;
// Used when translation meets an unexpected syntax tree (root).
// Such syntax cannot be translated, so we change the global state
// and intterrupt the code generation after translation.
static void trans_default(Node node)
{
translate_state = UNSUPPORT;
}
typedef void (*trans_visitor)(Node);
static trans_visitor trans_visitors[];
#define translate_dispatcher(node) \
((node) ? (trans_visitors[(node)->tag] ? trans_visitors[node->tag](node) : trans_default(node)) : (void)0)
/////////////////////////////////////////////////////////////////////
// Interface
/////////////////////////////////////////////////////////////////////
void translate()
{
translate_dispatcher(prog);
#ifdef DEBUG
FILE *fp = fopen("test.ir", "w");
#else
FILE *fp = stdout;
#endif
if (translate_state == FINE) {
print_instr(fp);
}
else {
fputs("Cannot translate: Code contains variables or parameters of structure type.", stderr);
}
}
/////////////////////////////////////////////////////////////////////
// Program translation
/////////////////////////////////////////////////////////////////////
static void translate_ast(Node ast)
{
Node extdef = ast->child;
push_symtab(ast->sema.symtab);
while (extdef != NULL) {
translate_dispatcher(extdef);
extdef = extdef->sibling;
}
Symbol **symtab = pop_symtab();
assert(symtab == ast->sema.symtab);
}
/////////////////////////////////////////////////////////////////////
// Utility functions
/////////////////////////////////////////////////////////////////////
// TODO 每个 Compst 在跳转指令生成前可以计算所有常量
// TODO 左值解引用只能用在赋值操作中, 不能像 & 和右解引用那样随意嵌入
static void free_ope(Operand *ptr)
{
if (*ptr != NULL) {
free(*ptr);
}
*ptr = NULL;
}
// 如果算出结果是地址, 临时生成变量来接收
static void try_deref(Node exp)
{
if (exp->dst->type == OPE_ADDR) {
Operand tmp = new_operand(OPE_TEMP);
LOG("子表达式返回值为地址, 用临时变量%s接受其解引用值", print_operand(tmp));
new_instr(IR_DEREF_R, exp->dst, NULL, tmp);
exp->dst = tmp;
}
}
/////////////////////////////////////////////////////////////////////
// Expression translation
/////////////////////////////////////////////////////////////////////
//
// [优化策略]
//
// 值类型可以直接返回而不需要进行赋值操作. 常数自不必说, 变量的地址都会在声明语句中分配.
// 但是由于上层不知道表达式的具体产生式, 所以依然会生成目标地址作为继承属性传递给子表达式.
// 但是这个目标地址也是一个操作数, 对于值类型情况, 只需要替换掉就行了, 不需要生成新的赋值指令
// 不过这要求上层在生成指令时, 使用的操作数应该从子结点里获取.
//
//
// 翻译表达式: 变量名
// 变量名的翻译需要注意的是数组类型或结构体类型变量返回的是地址而不是值
// 数组的地址是通过在声明语句中翻译 DEC 获得的, 对应的 Operand 为符号的 address 域所引用
// 函数名和域名是在产生式中直接获取的, 不需要在这里翻译代码, 否则属于非法情况.
//
static void translate_exp_is_id(Node exp)
{
Node id = exp->child;
const Symbol *sym = query(id->val.s);
if (sym == NULL) {
return;
}
// Directly return the id's value
if (exp->dst && exp->dst->type == OPE_TEMP) {
free(exp->dst);
}
if (sym->type->class == CMM_STRUCT) {
if(sym->address->type == OPE_REF){
// The struct is defined in this function.
exp->dst = new_operand(OPE_ADDR);
exp->base = exp->dst;
exp->dst->base_type = sym->type;
new_instr(IR_ADDR, sym->address, NULL, exp->dst);
} else {
// The struct is a parameter of the function.
exp->dst = sym->address;
exp->base = exp->dst;
}
}
else if (sym->type->class == CMM_ARRAY) {
exp->dst = new_operand(OPE_INTEGER);
exp->dst->integer = 0;
exp->base = new_operand(OPE_ADDR);
new_instr(IR_ADDR, sym->address, NULL, exp->base);
}
else {
exp->dst = sym->address;
}
}
//
// 翻译表达式: 字面常量
//
static void translate_exp_is_const(Node nd)
{
assert(nd->tag == EXP_is_INT || nd->tag == EXP_is_FLOAT ||
nd->tag == EXP_is_CHAR);
Operand const_ope;
switch (nd->child->tag) {
case TERM_INT:
const_ope = new_operand(OPE_INTEGER);
const_ope->integer = nd->child->val.i;
break;
case TERM_FLOAT:
const_ope = new_operand(OPE_FLOAT);
const_ope->real = nd->child->val.f;
break;
case TERM_CHAR:
const_ope = new_operand(OPE_CHAR);
const_ope->integer = nd->child->val.i;
break;
default:
return;
}
// 替换不必要的目标地址
// 如果赋值语句结点重复进入, 则被 free 掉的不是无用的 temp,
// 而可能是到处引用的变量!
if (nd->dst != NULL) {
free(nd->dst);
nd->dst = NULL;
}
nd->dst = const_ope;
}
//
// 翻译表达式: 赋值语句
// 对于赋值语句, 如果左边的表达式不是值类型(数组和结构体0偏移的域也可以直接用值类型)
// 那么就是数组或者结构体计算出来的偏移地址, 这时候是需要进行解引用操作
//
// [优化策略]
// 很多指令自带赋值功能, 虽然这些运算指令的左值不能解引用, 但是对于如下表达式:
// a = b + c;
// 我们可以直接生成指令 va := vb + vc
// 我们目前朴素的赋值语句翻译(11月21日)会将上面的 c-- 代码翻译成这样:
// t1 := vb + vc
// va := t1
// 由于我们先分析的左值表达式, 所以可以很明确的知道下面是要赋值给变量还是使用解引用指令,
// 解引用的场合不可避免地要生成中间代码来传值.
// 但是我们不能直接把变量操作数传递给右值表达式, 因为右值表达式在知道自己是常量的情况下会替换掉继承的操作数,
// 所以我们采取的策略是给一个无关紧要的临时变量, 待右值指令生成完毕后, 考察其类型, 如果不是常量,
// 必然会使用继承的操作数, 这时候可以修改该操作数的内容, 将其变换成左值变量. 不能使用直接修改指令的方法,
// 因为像条件表达式这种, 很可能会在多处使用继承的目标操作数.
//
static void translate_exp_is_assign(Node assign_exp)
{
assert(assign_exp && assign_exp->tag == EXP_is_ASSIGN);
Node lexp = assign_exp->child;
Node rexp = lexp->sibling;
// 左值有两种情况:
// 1.变量
// 2.地址
// 其中变量由于是常量, 所以会释放提供的目标操作数并取而代之
// 地址运算应该是完全由下标表达式和成员访问表达式接管的,
// 常规的表达式(注意与指令生成的做区分)不应该遇到地址操作数,
// 如果遇到了, 可以即刻解引用. 由于地址的这种特性, 它也适合
// 直接取代直接提供的目标操作数, 直接返回.
lexp->dst = new_operand(OPE_TEMP);
translate_dispatcher(lexp);
rexp->dst = new_operand(OPE_TEMP);
translate_dispatcher(rexp);
try_deref(rexp); // 如果 rexp 直接是 array[...] 则会直接返回地址
if (assign_exp->dst) {
LOG("表达式连续赋值");
LOG("左边: %s", print_operand(assign_exp->dst));
LOG("右边: %s", print_operand(lexp->dst));
free(assign_exp->dst);
assign_exp->dst = lexp->dst;
}
// [优化] 当左值为变量而右值为运算指令时, 将右值的目标操作数转化为变量
if (lexp->dst->type == OPE_VAR && rexp->dst->type == OPE_TEMP) {
LOG("左值为变量(编号%d), 直接赋值", lexp->dst->index);
replace_operand_global(lexp->dst, rexp->dst);
// 这里实际上保证了不会出现如下的情景:
// t := *a
// v := t
// 这个情景如果不替换, 则会非常危险, 因为 =* 只能和 t 相关联, 这样内联替换才是正确的.
// 因为 t 是数组访问的显式表达式产生的, 这样的显式表达式想怎么依赖就怎么依赖.
// 但是如果一个变量和 t 直接关联, 会后面与该变量相关的指令都会去引用 *a, 则是错误的, 因为 *a
// 可以在未知的情况下被改变.
}
else if (lexp->dst->type == OPE_ADDR) { // 左边是引用
new_instr(IR_DEREF_L, lexp->dst, rexp->dst, NULL);
}
else {
LOG("直接的赋值情况应该不会发生了");
new_instr(IR_ASSIGN, rexp->dst, NULL, lexp->dst);
}
}
//
// 翻译下标表达式
//
static void translate_exp_is_exp_idx(Node exp)
{
if (exp->dst == NULL) {
return;
}
Node base = exp->child;
base->dst = new_operand(OPE_TEMP);
translate_dispatcher(base);
Node idx = base->sibling;
idx->dst = new_operand(OPE_TEMP);
translate_dispatcher(idx);
try_deref(idx); // 如果是数组做下标的话, 则不能忽视解引用
// 现在我们已经准备好了一个基地址和偏移量, 以及"当前"数组的类型
// 为了进一步计算偏移量, 我们需要访问数组的基类型, 获得基类型的大小, 用当前下标去计算
// 新的偏移量, 如果综合来的偏移量和下标有一个为非常量, 则要生成指令并转移操作数
Operand offset = idx->dst;
// 计算本层偏移
int size = exp->sema.type->type_size;
if (offset->type == OPE_INTEGER) {
offset->integer = offset->integer * size;
}
else {
Operand p = new_operand(OPE_ADDR);
Operand array_size = new_operand(OPE_INTEGER);
array_size->integer = size;
new_instr(IR_MUL, offset, array_size, p);
offset = p; // 转移本层偏移量
}
// 如果 base->base 为空, 那么就是在非 id 处获得了数组的地址值,
// 那么 base->dst 才是需要的值.
if (base->base == NULL) {
WARN("Line %d: 没有从 id 获得数组地址", exp->lineno);
base->base = base->dst;
base->dst = new_operand(OPE_INTEGER);
base->dst->integer = 0;
}
Operand addr = base->dst;
// 计算总偏移
if (addr->type == OPE_INTEGER && offset->type == OPE_INTEGER) {
LOG("Line %d: 地址偏移为常数, 直接计算", exp->lineno);
addr->integer += offset->integer;
}
else if (addr->type == OPE_INTEGER && addr->integer == 0) {
LOG("Line %d: 旧偏移量为常数0, 直接更新", exp->lineno);
addr = offset;
}
else if (offset->type == OPE_INTEGER && offset->integer == 0) {
LOG("Line %d: 新增偏移量为常数0, 不更新", exp->lineno);
}
else {
Operand p = new_operand(OPE_ADDR);
new_instr(IR_ADD, addr, offset, p);
addr = p; // 再转移本层偏移量
}
if (exp->dst && exp->dst->type == OPE_TEMP) {
free(exp->dst);
}
else {
WARN("没有来自上层exp(行号: %d)的目标操作数, 这不符合常理", exp->lineno);
}
// 现在我们就有了完整的偏移量
if (exp->sema.type->class == CMM_ARRAY) {
// 说明在下标翻译过程中
exp->dst = addr;
exp->base = base->base;
}
else {
// 进入这里说明是最后一个阶段, 要将地址进行解引用
if (addr->type == OPE_INTEGER && addr->integer == 0) {
LOG("Line %d: 计算出引用偏移量为 0, 不生成加法指令", exp->lineno);
exp->dst = new_operand(OPE_ADDR); // 区分变量数组和参数数组
exp->dst->base_type = exp->sema.type; // 多维数组
new_instr(IR_ASSIGN, (base->base ?: base->dst), NULL, exp->dst);
}
else {
// 要生成加法指令
exp->dst = new_operand(OPE_ADDR);
exp->dst->base_type = exp->sema.type; // 多维数组
new_instr(IR_ADD, (base->base ?: base->dst), addr, exp->dst);
}
}
}
//
// 翻译括号表达式
//
static void translate_exp_is_exp(Node exp)
{
// 需要继承!
exp->child->dst = exp->dst;
translate_dispatcher(exp->child);
// 还需要综合!
exp->dst = exp->child->dst;
}
//
// 翻译一元运算: 只有取负
//
static void translate_unary_operation(Node exp)
{
Node rexp = exp->child;
rexp->dst = new_operand(OPE_TEMP);
translate_dispatcher(rexp);
// 常量计算
Operand const_ope = new_operand(OPE_NOT_USED);
if (rexp->dst->type == OPE_INTEGER) {
const_ope->type = OPE_INTEGER;
const_ope->integer = -rexp->dst->integer;
free_ope(&exp->dst);
exp->dst = const_ope;
}
else if (rexp->dst->type == OPE_FLOAT) {
const_ope->type = OPE_FLOAT;
const_ope->real = -rexp->dst->real;
free_ope(&exp->dst);
exp->dst = const_ope;
}
else {
// 变量情况
free(const_ope);
Operand p = new_operand(OPE_INTEGER);
p->integer = 0;
new_instr(IR_SUB, p, rexp->dst, exp->dst);
}
}
#define CALC(op, rs, rt, rd, type) do {\
switch (op) {\
case '+': rd->type = rs->type + rt->type; break;\
case '-': rd->type = rs->type - rt->type; break;\
case '*': rd->type = rs->type * rt->type; break;\
case '/': rd->type = rs->type / rt->type; break;\
}\
free_ope(&exp->dst);\
exp->dst = rd;\
return;\
} while (0)
static void translate_binary_operation(Node exp)
{
// 没有目标地址, 不需要翻译
if (exp->dst == NULL) {
return;
}
Node lexp = exp->child;
Node rexp = lexp->sibling;
lexp->dst = new_operand(OPE_TEMP);
translate_dispatcher(lexp);
rexp->dst = new_operand(OPE_TEMP);
translate_dispatcher(rexp);
try_deref(lexp);
try_deref(rexp);
// TODO 检查变量是否为常量
// 常量计算
Operand lope = lexp->dst;
Operand rope = rexp->dst;
assert(lope && rope);
if (lope->type == rope->type) {
Operand const_ope = new_operand(OPE_NOT_USED);
switch (lope->type) {
case OPE_INTEGER:
case OPE_CHAR:
const_ope->type = OPE_INTEGER;
CALC(exp->val.operator[0], lope, rope, const_ope, integer);
case OPE_FLOAT:
const_ope->type = OPE_FLOAT;
CALC(exp->val.operator[0], lope, rope, const_ope, real);
default: free(const_ope);
}
}
switch (exp->val.operator[0]) {
case '+': new_instr(IR_ADD, lope, rope, exp->dst); break;
case '-': new_instr(IR_SUB, lope, rope, exp->dst); break;
case '*': new_instr(IR_MUL, lope, rope, exp->dst); break;
case '/': new_instr(IR_DIV, lope, rope, exp->dst); break;
default: assert(0);
}
}
#undef CALC
// Translate exp -> exp.field
// This translation will set exp->dst to an addr operand
// Remember to dereference it
static void translate_exp_is_exp_field(Node exp)
{
Node struc = exp->child;
Node field = struc->sibling;
// Recursive translation of exp.field and array will return address
struc->dst = new_operand(OPE_ADDR);
translate_dispatcher(struc);
// The semantic type of this exp node is set in semantic analysis,
// So we directly use it.
const Symbol *sym = query_without_fallback(field->val.s, struc->sema.type->field_table);
if (sym == NULL) {
PANIC("Unexpected non-exisiting field %s at line %d\n", field->val.s, field->lineno);
}
else {
Operand offset = new_operand(OPE_INTEGER);
offset->integer = sym->offset;
if (exp->dst && exp->dst->type == OPE_TEMP) {
free(exp->dst);
}
exp->dst = new_operand(OPE_ADDR);
new_instr(IR_ADD, struc->dst, offset, exp->dst);
}
}
static void pass_arg(Node arg)
{
if (arg == NULL) {
return;
}
arg->dst = new_operand(OPE_TEMP);
translate_dispatcher(arg);
pass_arg(arg->sibling);
Operand p = arg->dst;
if (p->base_type && (p->base_type->class == CMM_ARRAY || p->base_type->class == CMM_STRUCT)) {
// 按照测试样例, 数组要传地址
LOG("Reference parameter");
assert(p->type == OPE_REF || p->type == OPE_ADDR);
if (p->type == OPE_REF) {
arg->dst = new_operand(OPE_ADDR);
new_instr(IR_ADDR, p, NULL, arg->dst);
}
}
else {
try_deref(arg);
}
new_instr(IR_ARG, arg->dst, NULL, NULL);
}
static void translate_call(Node call)
{
Node func = call->child;
Node arg = func->sibling;
if (call->dst == NULL) {
call->dst = new_operand(OPE_TEMP);
}
if (!strcmp(func->val.s, "read")) {
new_instr(IR_READ, NULL, NULL, call->dst);
}
else if (!strcmp(func->val.s, "write")) {
arg->dst = new_operand(OPE_TEMP);
translate_dispatcher(arg);
try_deref(arg); // 这里的思路和return是类似的
new_instr(IR_WRITE, arg->dst, NULL, NULL);
}
else if (!strcmp(func->val.s, "writec")) {
arg->dst = new_operand(OPE_TEMP);
translate_dispatcher(arg);
try_deref(arg); // 这里的思路和return是类似的
new_instr(IR_WRITEC, arg->dst, NULL, NULL);
}
else { // Common function call
pass_arg(arg);
if (call->dst == NULL) {
call->dst = new_operand(OPE_TEMP);
}
Operand f = new_operand(OPE_FUNC);
f->name = func->val.s;
new_instr(IR_CALL, f, NULL, call->dst);
}
}
// The expression is translated as normal,
// but its value needs to be used to change the control flow.
static void translate_cond_exp(Node exp)
{
exp->dst = new_operand(OPE_TEMP);
translate_dispatcher(exp);
Operand const_zero = new_operand(OPE_INTEGER);
const_zero->integer = 0;
new_instr(IR_BNE, exp->dst, const_zero, exp->label_true);
new_instr(IR_JMP, exp->label_false, NULL, NULL);
}
//
// 在条件判断框架下翻译 NOT
//
static void translate_cond(Node);
// NOT changes the control flow directly,
// which does not need to see expression as data.
// Therefore we use translate_cond, not translate_dispatcher.
static void translate_cond_not(Node exp)
{
Node sub_exp = exp->child;
sub_exp->label_true = exp->label_false;
sub_exp->label_false = exp->label_true;
translate_cond(sub_exp);
}
//
// 在条件判断框架下翻译 RELOP
// TODO 优化重点!
//
static void translate_cond_relop(Node exp)
{
Node left = exp->child;
Node right = left->sibling;
left->dst = new_operand(OPE_TEMP);
right->dst = new_operand(OPE_TEMP);
// 获取结果值
translate_dispatcher(left);
translate_dispatcher(right);
try_deref(left);
try_deref(right);
const char *op = exp->val.operator;
IR_Type relop = get_relop(op);
new_instr(relop, left->dst, right->dst, exp->label_true);
new_instr(IR_JMP, exp->label_false, NULL, NULL);
}
//
// 翻译 与 表达式
//
static void translate_cond_and(Node exp)
{
Node left = exp->child;
Node right = left->sibling;
left->label_true = new_operand(OPE_LABEL);
left->label_false = exp->label_false;
right->label_true = exp->label_true;
right->label_false = exp->label_false;
// 这里产生了 left 相关的代码
translate_cond(left);
// 为真 非短路
new_instr(IR_LABEL, left->label_true, NULL, NULL);
// 继续执行 right 的代码
translate_cond(right);
}
//
// 翻译 或 表达式
//
static void translate_cond_or(Node exp)
{
Node left = exp->child;
Node right = left->sibling;
left->label_true = exp->label_true;
left->label_false = new_operand(OPE_LABEL);
right->label_true = exp->label_true;
right->label_false = exp->label_false;
// 这里产生了 left 相关的代码
translate_cond(left);
// 为假 非短路
new_instr(IR_LABEL, left->label_false, NULL, NULL);
// 继续执行 right 的代码
translate_cond(right);
}
static void translate_cond(Node exp)
{
switch (exp->tag) {
case EXP_is_AND:
translate_cond_and(exp);
break;
case EXP_is_OR:
translate_cond_or(exp);
break;
case EXP_is_RELOP:
translate_cond_relop(exp);
break;
case EXP_is_NOT:
translate_cond_not(exp);
break;
default:
translate_cond_exp(exp);
}
}
// Logic expressions in the 'if' or 'while' statements
// just change the control flow, but if they appear in normal
// expressions, they do return a value. The value's changing
// is like a control flow. Here we prepare such an operand to let
// the logic expression change the flow of its value's changing.
static void translate_cond_prepare(Node node)
{
node->label_true = new_operand(OPE_LABEL);
node->label_false = new_operand(OPE_LABEL);
if (node->dst != NULL) {
if (node->dst->type == OPE_TEMP) {
free(node->dst);
node->dst = new_operand(OPE_BOOL);
}
Operand value_false = new_operand(OPE_INTEGER);
value_false->integer = 0;
new_instr(IR_ASSIGN, value_false, NULL, node->dst);
}
translate_cond(node);
new_instr(IR_LABEL, node->label_true, NULL, NULL);
if (node->dst != NULL) {
Operand value_true = new_operand(OPE_INTEGER);
value_true->integer = 1;
new_instr(IR_ASSIGN, value_true, NULL, node->dst);
}
new_instr(IR_LABEL, node->label_false, NULL, NULL);
}
/////////////////////////////////////////////////////////////////////
// Statements
/////////////////////////////////////////////////////////////////////
static void translate_for(Node stmt)
{
Node init_exp = stmt->child;
Node cond_exp = init_exp->sibling;
Node step_exp = cond_exp->sibling;
Node loop_stmt = step_exp->sibling;
translate_dispatcher(init_exp);
Operand begin = new_operand(OPE_LABEL);
cond_exp->label_true = new_operand(OPE_LABEL);
cond_exp->label_false = new_operand(OPE_LABEL);
loop_stmt->label_true = new_operand(OPE_LABEL); // act as loop_stmt's next label
loop_stmt->label_false = cond_exp->label_false;
// TODO test the case that loop_stmt is immediately the if-statement or relop-exp
new_instr(IR_LABEL, begin, NULL, NULL);
translate_cond(cond_exp); // We are not really need the value of cond_exp
new_instr(IR_LABEL, cond_exp->label_true, NULL, NULL);
translate_dispatcher(loop_stmt);
new_instr(IR_LABEL, loop_stmt->label_true, NULL, NULL);
translate_dispatcher(step_exp);
new_instr(IR_JMP, begin, NULL, NULL);
new_instr(IR_LABEL, cond_exp->label_false, NULL, NULL);
}
static void translate_while(Node stmt)
{
Node cond = stmt->child;
Node loop = cond->sibling;
cond->label_true = new_operand(OPE_LABEL);
cond->label_false = new_operand(OPE_LABEL);
Operand begin = new_operand(OPE_LABEL);
new_instr(IR_LABEL, begin, NULL, NULL);
translate_cond(cond);
new_instr(IR_LABEL, cond->label_true, NULL, NULL);
translate_dispatcher(loop);
new_instr(IR_JMP, begin, NULL, NULL);
new_instr(IR_LABEL, cond->label_false, NULL, NULL);
}
static void translate_if_else(Node exp)
{
Node cond = exp->child;
Node true_stmt = cond->sibling;
Node false_stmt = true_stmt->sibling;
cond->label_true = new_operand(OPE_LABEL);
cond->label_false = new_operand(OPE_LABEL);
Operand next = new_operand(OPE_LABEL);
translate_cond(cond);
new_instr(IR_LABEL, cond->label_true, NULL, NULL);
translate_dispatcher(true_stmt);
new_instr(IR_JMP, next, NULL, NULL);
new_instr(IR_LABEL, cond->label_false, NULL, NULL);
translate_dispatcher(false_stmt);
new_instr(IR_LABEL, next, NULL, NULL);
}
static void translate_if(Node exp)
{
Node cond = exp->child;
Node stmt = cond->sibling;
cond->label_true = new_operand(OPE_LABEL);
cond->label_false = new_operand(OPE_LABEL);
translate_cond(cond);
new_instr(IR_LABEL, cond->label_true, NULL, NULL);
translate_dispatcher(stmt);
new_instr(IR_LABEL, cond->label_false, NULL, NULL);
}
//
// 翻译返回语句
//
static void translate_return(Node exp)
{
Node sub_exp = exp->child;
sub_exp->dst = new_operand(OPE_TEMP);
translate_dispatcher(sub_exp);
try_deref(sub_exp);
new_instr(IR_RET, sub_exp->dst, NULL, NULL);
}
//
// 翻译复合语句: 纯粹的遍历框架
//
static void translate_compst(Node compst)
{
Node child = compst->child;
while (child != NULL) {
translate_dispatcher(child);
child = child->sibling;
}
}
//
// 翻译复合语句
//
static void translate_stmt_is_compst(Node stmt)
{
assert(stmt->sema.symtab != NULL);
push_symtab(stmt->sema.symtab);
translate_dispatcher(stmt->child);
Symbol **symtab = pop_symtab();
assert(symtab == stmt->sema.symtab);
}
//
// 翻译表达式: 如果没有赋值之类的, 这条基本不需要生成指令了
//
static void translate_stmt_is_exp(Node stmt)
{
translate_dispatcher(stmt->child);
}
/////////////////////////////////////////////////////////////////////
// Definition translation
/////////////////////////////////////////////////////////////////////
static void translate_extdef_spec_extdec(Node extdef)
{
Node spec = extdef->child;
Node extdec = spec->sibling;
while (extdec != NULL) {
translate_dispatcher(extdec);
extdec = extdec->sibling;
}
}
static void translate_extdef_spec(Node extdef)
{
}
//
// 翻译函数:全局变量的定义
//
static void translate_extdec_vardec(Node extdec)
{
Node vardec = extdec->child;
Node iterator = vardec->child;
// TODO: 暂时不支持全局数组,除了 int 之外的类型
Symbol *sym = (Symbol *)query(iterator->val.s);
assert(typecmp(sym->type, BASIC_INT));
sym->address = new_operand(OPE_GLOBAL);
sym->address->name = iterator->val.s;
sym->address->base_type = sym->type;
// 将全局变量初始化,默认为 0
Operand const_ope;
const_ope = new_operand(OPE_INTEGER);
if (vardec->sibling != NULL){
const_ope->integer = vardec->sibling->val.i;
LOG("全局变量 %s 被初始化为 %d", sym->address->name, const_ope->integer);
} else {
const_ope->integer = 0;
LOG("全局变量 %s 被默认初始化", sym->address->name);
}
new_instr(IR_GLOBAL, sym->address, const_ope, NULL);
}
static void translate_extdef_func(Node extdef)
{
push_symtab(extdef->sema.symtab);
Node spec = extdef->child;
Node func = spec->sibling;
translate_dispatcher(func);
Node compst = func->sibling;
translate_dispatcher(compst);
Symbol **symtab = pop_symtab();
assert(symtab == extdef->sema.symtab);
}
//
// 翻译函数: 主要是生成参数声明指令 PARAM
//
static void translate_func_head(Node func)
{
Node funcname = func->child;
Node param = funcname->sibling;
// 声明函数头
Operand rs = new_operand(OPE_FUNC);
rs->name = funcname->val.s;
new_instr(IR_FUNC, rs, NULL, NULL);
// 声明变量
while (param != NULL) {
Node spec = param->child;
// 无脑找变量名
Node id = spec->sibling;
while (id->tag != TERM_ID) {
id = id->child;
}
// TODO eliminate coercion
Symbol *sym = (Symbol *)query(id->val.s);
if (sym->type->class == CMM_ARRAY || sym->type->class == CMM_STRUCT) {
sym->address = new_operand(OPE_ADDR);
sym->address->base_type = sym->type;
}
else {
sym->address = new_operand(OPE_VAR);
}
// 实际的大小是在调用者那边说明
new_instr(IR_PARAM, sym->address, NULL, NULL);
param = param->sibling;
}
}
//
// 翻译定义: 找 ID
// dec 可以简单实现, 只要找数组定义就行了
//
static void translate_dec_is_vardec(Node dec)
{
Node vardec = dec->child;
Node iterator = vardec->child;
while (iterator->tag != TERM_ID) {
iterator = iterator->child;
}
// TODO eliminate coercion
Symbol *sym = (Symbol *)query(iterator->val.s);
if (!typecmp(sym->type, BASIC_INT) &&
!typecmp(sym->type, BASIC_FLOAT) &&
!typecmp(sym->type, BASIC_CHAR)) {
sym->address = new_operand(OPE_REF);
sym->address->size = sym->type->type_size;
Operand size = new_operand(OPE_INTEGER);
size->integer = sym->type->type_size;
new_instr(IR_DEC, sym->address, size, NULL);
}
else {
sym->address = new_operand(OPE_VAR);
}
sym->address->base_type = sym->type;