-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyntax.cpp
947 lines (819 loc) · 20.3 KB
/
syntax.cpp
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
#include"stdafx.h"
map<int, int> token_to_type;
void syx_out(string msg);
void syx_init();
void nvtype(int &type);
void integer(int &val);
void constant(int &consttyp, int &val);
void program();
void constdef();
void declheader(bool allowfunc, int &step);
void vardeftail(int type, string &idt);
void funcdeftail(int type, string &idt);
void nfuncdef();
void paralist(int ¶amt);
void cmpdstmts();
qoperand expression();
qoperand term();
qoperand factor();
qoperand funccall();
void arglist(int argn);
void statement();
void if_stmt();
void while_stmt();
void condition(qoperand lblend);
void switch_stmt();
void return_stmt();
void printf_stmt();
void scanf_stmt();
void assign_stmt();
inline bool istype()
{
return (token_to_type.find(tkntyp) != token_to_type.end());
}
void syx_out(string msg)
{
if(flg_syxonly)
*syx_output << "SYNTAX: [Near line " << lc << ", col " << cc << "] " << msg << endl;
}
void syx_init()
{
token_to_type[void_tk] = void_t;
token_to_type[int_tk] = int_t;
token_to_type[char_tk] = char_t;
gettoken();
}
//read a non-void type token and output type_t, assuming that tkntyp==char_tk||int_tk
void nvtype(int &type)
{
type = token_to_type[tkntyp];
gettoken();
}
//read a signed integer. assuming that tkntyp == addsub_tk||intlit_tk
void integer(int &val)
{
if(tkntyp == intlit_tk)//no leading +|-
val = tknval;
else
{
assert(tkntyp == addsub_tk);
bool sign = (tknval == addop);
gettoken();
if(tkntyp != intlit_tk)
{
ERROR("expected integer literal.");
val = 0;
gettoken();
return;
}
val = sign? tknval: -tknval;
if(!sign && tknval == 0)// -0
WARNING("-0 is not a good style.");
}
gettoken();
}
//read an integer or charlit. NO assuming the correctness
void constant(int &consttyp, int &val)
{
switch(tkntyp)
{
//integer
case addsub_tk:
case intlit_tk:
consttyp = int_t;
integer(val);
return;
//charlit
case chrlit_tk:
consttyp = char_t;
val = (int)tknchar;
break;
default:
ERROR("Expected a constant.");
val = 0;
}
gettoken();
}
//read whole program, stoped with main. assuming one token is read
void program()
{
int step=0;//0-const 1-var 2-func
while(tkntyp != eof_tk)
{
switch(tkntyp)
{
case const_tk:
if(step>0)
WARNING("Constant declaration after other declaration.");
constdef();
break;
case void_tk:
step = 2;
nfuncdef();
break;
default:
if(istype())//begins with type
declheader(true, step);
else
{
ERROR("Expected declaration.");
do{ gettoken(); }while(!(tkntyp==const_tk || tkntyp==void_tk || istype()));
}
}
}
checkmain();
syx_out("Program read finished.");
if(errcnt!=0)
{
cerr << "hcc terminated due to the error(s) before." << endl;
exit(EXIT_FAILURE);
}
}
//read constant definition. assuming tkntyp == const_tk
void constdef()
{
string idt;
int type = int_t;
int consttype = int_t;
int value = 0;
syx_out("Constant definition begin.");
gettoken();
if(!istype() || tkntyp == void_tk)// tkntyp is not a non-void type
{
ERROR("Expected a non-void type.");
gettoken();
}
else
nvtype(type);//read a non-void type
syx_out("type_t: " + tostr(type));
while(true)//read all const
{
if(tkntyp != id_tk)
{
ERROR("Expected an identifier.");
}
else
idt = tknstr;
syx_out("name: " + idt);//TODO
gettoken();
if(tkntyp != assign_tk)
{
ERROR("Expected assignment operator '='.");
}
gettoken();
constant(consttype, value);
if(consttype != type)
WARNING("The type of initial value mismatches with the const declaring.");
insertobj(tblitem::CONST, idt, type, false, value);//SMT
syx_out("init: " + tostr(value));
if(tkntyp == comma_tk)
{
gettoken();
continue;
}
else if(tkntyp == semicln_tk)
{
gettoken();
break;
}
else
{
ERROR("Expected comma or semicolon.");
while(tkntyp != semicln_tk)
gettoken();
gettoken();
break;
}
}
syx_out("Constant definition end.");
}
//read declaration of variable or function. allowfunc=allow function? step will be update
//to indicate the order of const, variable, function declaration
//assuming that sym is a type
void declheader(bool allowfunc, int &step)
{
int type = int_t;
string idt;
syx_out("Function/variable definition begin.");
nvtype(type);
syx_out("type_t: " + tostr(type));
if(tkntyp != id_tk)
ERROR("Expected identifier.");
else
idt = tknstr;//saving id
syx_out("name: " + idt);
gettoken();
//time to determine variable or function
if(tkntyp == lprt_tk)//function
{
if(!allowfunc)
{
ERROR("Function cannot be defined here.");
do { gettoken(); } while (tkntyp != rprt_tk); //jump paralist
//gettoken();
if(tkntyp == lbrc_tk)
do { gettoken(); } while (tkntyp != rbrc_tk); //jump function body
gettoken();
return;
}
step = 2;
buildcontext(type, idt);//SMT
funcdeftail(type, idt);
exitcontext();//SMT
}
else if(tkntyp == lbrkt_tk || tkntyp == comma_tk || tkntyp == semicln_tk)
{
if(step>1)
WARNING("Variable declaring after function declaring / statement.");
if(step<1)
step = 1;
vardeftail(type, idt); //TODO: call with type and identifier
}
else
{
ERROR("Unfinished declaration.");
do { gettoken(); } while (tkntyp != semicln_tk);gettoken();
}
}
//read var defs. assuming that tkntyp == lbrkt|comma|semicolon
void vardeftail(int type, string &firstidt)
{
string idt(firstidt);
int sz = 0;//size of an array
syx_out("Variable declaration go on.");
if(tkntyp == lbrkt_tk)//array
{
gettoken();
sz = tknval;
if(tkntyp != intlit_tk || tknval <=0)
{
ERROR("Expected a positive int literal as size of array.");
sz = 1;
do { gettoken(); } while (tkntyp != rbrkt_tk);
}
else
{
//TODO
syx_out("array, size: " + tostr(sz));
gettoken();// get ]
}
insertobj(tblitem::VAR, idt, type, true, sz);//SMT
gettoken();
}
else
insertobj(tblitem::VAR, idt, type, false, tblitem::NOUSE);//SMT
while(tkntyp == comma_tk)
{
gettoken();
if(tkntyp != id_tk)
ERROR("Expected an identifier.");
idt = tknstr;//SMT
syx_out("name: " + tostr(tknstr));
gettoken();
if(tkntyp == lbrkt_tk)
{
gettoken();
sz = tknval;
if(tkntyp != intlit_tk || tknval <=0)
{
ERROR("Expected a positive int literal as size of array.");
sz = 1;
do { gettoken(); } while (tkntyp != rbrkt_tk);
}
else
{
//TODO
syx_out("array, size: " + tostr(sz));
gettoken();// get ]
}
insertobj(tblitem::VAR, idt, type, true, sz);//SMT
gettoken();
}
else
insertobj(tblitem::VAR, idt, type, false, tblitem::NOUSE);//SMT
}
if(tkntyp != semicln_tk)
{
ERROR("Expected a semicolon or a comma.");
do { gettoken(); } while (tkntyp != semicln_tk);
}
gettoken();//pre read
syx_out("Variable declaration end.");
}
//read func defs. assuming that tkntyp == lprt_tk
void funcdeftail(int type, string &idt)
{
int paraamt = 0;
syx_out("Function declaration go on.");
paralist(paraamt);
cmpdstmts();
syx_out("Function declaration end.");
}
//AT: tkntype = void_t
void nfuncdef()
{
string idt;
syx_out("Void function definition begin.");
gettoken();//skip void
if(tkntyp != id_tk)
ERROR("Expected identifier.");
idt = tknstr;
syx_out("name: " + idt);
gettoken();
if(tkntyp != lprt_tk)
ERROR("Void function needs parameter list.");
buildcontext(void_t, idt);//SMT
funcdeftail(void_t, idt);
exitcontext();//SMT
}
//output the para amount
void paralist(int ¶amt)
{
int type = int_t;
string idt;
paraamt = 0;
if(tkntyp != lprt_tk)
ERROR("Expected left parenthesis.");
gettoken();
while(tkntyp != rprt_tk)
{
++paraamt;
if(!istype() || tkntyp == void_tk)// tkntyp is not a non-void type
{
ERROR("Expected a non-void type.");
type = int_t;
gettoken();
}
else
nvtype(type);//read a non-void type
syx_out("para"+tostr(paraamt)+" type_t: "+tostr(type));
if(tkntyp != id_tk)
ERROR("Expected identifier.");
idt = tknstr;
insertpara(type, idt);//SMT
syx_out("name: "+idt);
//...
gettoken();
if(tkntyp == comma_tk)
gettoken();
else if(tkntyp != rprt_tk)
WARNING("Expected comma.");
}
gettoken();
}
void cmpdstmts()
{
int step=0;//0-const 1-var
if(tkntyp != lbrc_tk)
ERROR("Expected left brace.");
gettoken();
while(tkntyp != rbrc_tk)
{
switch(tkntyp)
{
case const_tk:
if(step>0)
WARNING("Constant declaration after other declaration.");
constdef();
break;
default:
if(istype())//begins with type
declheader(false, step);
else
{
step = 2;
statement();
}
}
}
gettoken();
}
qoperand expression()
{
bool isneg = false;
if(tkntyp == addsub_tk)
{
if(tknval == subop)
isneg = true;
gettoken();
}
qoperand t1 = term();
if(isneg)
t1 = neg(t1);
while(tkntyp == addsub_tk)
{
int op = tknval;
gettoken();
qoperand t2 = term();
t1 = addsub(op, t1, t2);
}
return t1;
}
qoperand term()
{
qoperand f1 = factor();
while(tkntyp == multdiv_tk)
{
int op = tknval;
gettoken();
qoperand f2 = factor();
f1 = muldiv(op, f1, f2);
}
return f1;
}
qoperand factor()
{
string idt;
int type = int_t;
int value = 0;
if(tkntyp == id_tk && isfunction(tknstr))//is a function TODO
{
type = getitem(foundopr).datatype;
if(type == void_t)
ERROR("Function call in a expression cannot return void value.");
qoperand retval = funccall();
return retval;
}
switch(tkntyp)
{
case id_tk://variable
idt = tknstr;
gettoken();
if(tkntyp != lbrkt_tk)//simple variable
{
findidt(idt);
qoperand f = foundopr;
if(getitem(f).isarray)//SMT
ERROR("Factor cannot be an array.");
return foundopr;
}
else
{
gettoken();
qoperand index = expression();
findidt(idt);
qoperand arrayopr = foundopr;
qoperand elem = arrayload(arrayopr, index);
if(tkntyp != rbrkt_tk)
{
ERROR("Expected a right bracket.");
do { gettoken(); } while (tkntyp != rbrkt_tk);
}
gettoken();
return elem;
}
case lprt_tk://(expr)
{
gettoken();
qoperand result = expression();
if(tkntyp != rprt_tk)
{
ERROR("Expected a right parenthesis.");
do { gettoken(); } while (tkntyp != rprt_tk);
}
gettoken();
return result;
}
//constant
case chrlit_tk:
case addsub_tk:
case intlit_tk:
{
constant(type, value);
if(type == char_t)
return qoperand{qoperand::IMD, value, char_t};
else
return qoperand{qoperand::IMD, value, int_t};
}
default:
ERROR("Not a valid factor.");
}
return BLANKOP;
}
//return the type of function. AT: tkntyp == id_t(function)
qoperand funccall()
{
string idt=tknstr;
findidt(idt);
qoperand func = foundopr;
int argn = functbl[getitem(foundopr).value].argnum;
gettoken();
arglist(argn);
return call(func);
}
void arglist(int argn)
{
if(tkntyp != lprt_tk)
ERROR("Expected argument list.");
gettoken();
vector<qoperand> args;
int argc = 0;
while(tkntyp != rprt_tk)
{
qoperand arg = expression();
++argc;
if(argc > argn)
{
ERROR("Arguments are too many compared with the declaration: "+tostr(argn));
break;//TODO: jumps to post ) or ;
}
args.push_back(arg);
if(tkntyp == comma_tk)
gettoken();
else if(tkntyp != rprt_tk)
WARNING("Expected comma.");
}
if(argc < argn)
ERROR("Arguments less than declaration: "+tostr(argn));
while(!args.empty())
{
push(args.back());
args.pop_back();
}
gettoken();
}
void statement()
{
if(tkntyp == id_tk && isfunction(tknstr))//function call
{
/*int rettyp = getitem(foundopr).datatype; TODO*/
funccall();
if(tkntyp != semicln_tk)
{
ERROR("Expected semicolon."+tostr(tkntyp));
do { gettoken(); } while (tkntyp != semicln_tk);
}
gettoken();
return;
}
switch(tkntyp)
{
case if_tk:
if_stmt();
break;
case while_tk:
while_stmt();
break;
case return_tk:
return_stmt();
break;
case switch_tk:
switch_stmt();
break;
case semicln_tk:
gettoken();
break;
case lbrc_tk:
gettoken();
while(tkntyp != rbrc_tk)
statement();
gettoken();
break;
default:
if(tkntyp != id_tk)
{
ERROR("Not a valid statement.");
do{ gettoken(); }while(!(tkntyp==id_tk || tkntyp==if_tk || tkntyp==while_tk ||
tkntyp==return_tk || tkntyp==switch_tk || tkntyp==semicln_tk ||
tkntyp==lbrc_tk || tkntyp==rbrc_tk));
return;
}
if(tknstr == "printf")
printf_stmt();
else if(tknstr == "scanf")
scanf_stmt();
else
assign_stmt();
}
}
//AT: tkntyp == if
void if_stmt()
{
gettoken();
if(tkntyp != lprt_tk)
ERROR("Expected left parenthesis.");
gettoken();
if(tkntyp == rprt_tk)
{
ERROR("Condition cannot be empty.");
}
qoperand lblend = newlabel();
condition(lblend);
if(tkntyp != rprt_tk)
ERROR("Expected right parenthesis.");
gettoken();
statement();
setlabel(lblend);
}
//AT: tkntyp == if
void while_stmt()
{
gettoken();
if(tkntyp != lprt_tk)
ERROR("Expected left parenthesis.");
gettoken();
if(tkntyp == rprt_tk)
{
ERROR("Condition cannot be empty.");
}
qoperand lblbegin = newlabel();
setlabel(lblbegin);
qoperand lblend = newlabel();
condition(lblend);
if(tkntyp != rprt_tk)
ERROR("Expected right parenthesis.");
gettoken();
statement();
jmp(lblbegin);
setlabel(lblend);
}
void condition(qoperand lblend)
{
qoperand e1 = expression();
if(tkntyp != rltop_tk)
{
jz(e1, lblend);
return;
}
int op = tknval;
gettoken();
qoperand e2 = expression();
jifnot(op, e1, e2, lblend);
return;
}
void switch_stmt()
{
gettoken();
if(tkntyp != lprt_tk)
ERROR("Expected left parenthesis.");
gettoken();
if(tkntyp == rprt_tk)
{
ERROR("Expected expression.");
}
qoperand e = expression();
if(tkntyp != rprt_tk)
ERROR("Expected right parenthesis.");
gettoken();
qoperand lblend = newlabel();//SMT
qoperand lblnext = newlabel();//SMT
if(tkntyp != lbrc_tk)
ERROR("Expected left brace.");
gettoken();
if(tkntyp != case_tk)
ERROR("Expected keyword: case");
do
{
gettoken();
int type = int_t, value = 0;
constant(type,value);
//SMT
qoperand v;
if(type == char_t)
v = qoperand{qoperand::IMD, value, char_t};
else
v = qoperand{qoperand::IMD, value, int_t};
setlabel(lblnext); lblnext = newlabel();
jifnot(eqlop, e, v, lblnext);
if(tkntyp != cln_tk)
ERROR("Expected colon.");
gettoken();
statement();
jmp(lblend);//SMT
}while(tkntyp == case_tk);
if(tkntyp == default_tk)
{
gettoken();
if(tkntyp != cln_tk)
ERROR("Expected colon.");
gettoken();
setlabel(lblnext);
statement();
jmp(lblend);
}
else
{
setlabel(lblnext);
jmp(lblend);
}
setlabel(lblend);
gettoken();
}
void return_stmt()
{
bool ret_with_value = false;
qoperand retval;
gettoken();
if(tkntyp != semicln_tk)
{
if(tkntyp!=lprt_tk)
WARNING("Return value not in parentheses.");
retval = expression();
ret_with_value = true;
}
if(tkntyp != semicln_tk)
ERROR("Expected semicolon.");
gettoken();
ret(ret_with_value, retval);//SMT
syx_out("Return statement.");
}
void printf_stmt()
{
gettoken();
if(tkntyp != lprt_tk)
ERROR("Expected left parenthesis.");
gettoken();
int argcnt = 0;
bool strexp[2];
while(tkntyp !=rprt_tk)
{
if(tkntyp == strlit_tk)
{
strexp[argcnt%2] = true;
qoperand str = insertstr(tknstr);
wr(str);//SMT
gettoken();
}
else
{
strexp[argcnt%2] = false;
qoperand e = expression();
wr(e);//SMT
}
++argcnt;
if(tkntyp == comma_tk)
gettoken();
else if(tkntyp != rprt_tk)
WARNING("Expected comma.");
}
if(argcnt <1 || argcnt>2)
WARNING("Non-standard use of printf()");
if(argcnt == 2 && !(strexp[0] && !strexp[1]))
WARNING("Non-standard use of printf()");
gettoken();
if(tkntyp != semicln_tk)
ERROR("Expected semicolon.");
gettoken();
}
void scanf_stmt()
{
gettoken();
if(tkntyp != lprt_tk)
ERROR("Expected left parenthesis.");
gettoken();
do
{
if(tkntyp != id_tk)
ERROR("Expected identifier.");
string idt = tknstr;
findidt(idt);
qoperand opr = foundopr;
rd(opr);//SMT
gettoken();
if(tkntyp == comma_tk)
gettoken();
else if(tkntyp != rprt_tk)
WARNING("Expected comma.");
}while(tkntyp == id_tk);
if(tkntyp != rprt_tk)
ERROR("Expected right parenthesis.");
gettoken();
if(tkntyp != semicln_tk)
ERROR("Expected semicolon.");
gettoken();
}
//identifier must be non-function, it may be array
void assign_stmt() //TODO: disallow constant assignment
{
bool isarray = false;
qoperand index;
qoperand value;
string idt = tknstr;
gettoken();
if(tkntyp == lbrkt_tk)//array
{
isarray = true;
gettoken();
index = expression();
if(tkntyp != rbrkt_tk)
ERROR("Expected a right bracket.");
gettoken();
}
if(tkntyp != assign_tk)
ERROR("Expected assignment sign.");
gettoken();
value = expression();
findidt(idt);
qoperand opr = foundopr;
if(isarray)
{
arrayass(opr, index, value);
}
else
{
assign(opr, value);
}
if(tkntyp != semicln_tk)
ERROR("Expected semicolon.");
gettoken();
}