-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsyntobj.cpp
More file actions
2010 lines (1923 loc) · 47.8 KB
/
tsyntobj.cpp
File metadata and controls
2010 lines (1923 loc) · 47.8 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
#include "tsyntobj.h"
#include "tsymbol.h"
#include "tsymtable.h"
#include "scantools.h"
#include "error.h"
#include "codegen.h"
bool TExpr::IsExpr()
{
return 1;
}
TSymbol *TExpr::GetType()
{
return exprtype;
}
TSymbol *TExpr::GetRealType()
{
return exprtype->GetRealType();
}
TSymbol *TExpr::GetRefdObjType()
{
return exprtype->GetRealType();
}
TConstExpr::TConstExpr( const string &s , float v , TSymbol *t )
:f_value( v )
{
source = s;
type = cfloat;
exprtype = t;
islvalue = false;
}
TConstExpr::TConstExpr( const string &s , int v , TSymbol *t )
:i_value( v )
{
source = s;
type = cint;
exprtype = t;
islvalue = false;
}
TConstExpr::TConstExpr( const string &s , string v , TSymbol *t )
:s_value( v )
{
exprtype = NULL;
source = s;
type = cstr;
exprtype = t;
islvalue = false;
}
int TConstExpr::GetInt()
{
return i_value;
}
float TConstExpr::GetFloat()
{
return f_value;
}
string *TConstExpr::GetString()
{
return &s_value;
}
bool TConstExpr::IsStringConst()
{
return s_value != "";
}
void TConstExpr::PutStringNum( int num )
{
i_value = num;
}
void TConstExpr::Gen( CodeGen *cg )
{
cg->Gen( Com , Begin( Comment() ) );
if ( type == cint )
cg->Gen( PUSH, imm( i_value ) );
else
cg->Gen( PUSH , imm( f_value ) );
cg->Gen( Com , End( Comment() ) );
}
string TConstExpr::Comment()
{
return source;
}
void TConstExpr::Print( int level )
{
Tab( level );
cout << "````";
/*if ( type == cstr )
cout << s_value;
else
if ( type == cint )
cout << i_value;
else
cout << f_value;*/
cout << source;
cout << '\n';
}
bool TConstExpr::IsConstExpr()
{
return 1;
}
TVarExpr::TVarExpr( string s , TSymbol *t )
{
source = s;
type = name;
exprtype = t;
islvalue = true;
}
void TVarExpr::Print( int level )
{
Tab( level );
cout << "````";
cout << source << '\n';
}
void TVarExpr::Gen( CodeGen *cg )
{
if ( exprtype->IsGlobal() )
cg->Gen( PUSH , strv_( source ) );
else
if ( exprtype->IsLocal() )
{
cg->Gen( Com , Begin( source ) );
cg->Gen( PUSH , addr( ebp , -exprtype->GetFullOffset() ) );
cg->Gen( Com , End( source ) );
}
else
{
if ( exprtype->GetType()->IsReference() )
{
cg->Gen( MOV , reg( eax ) , addr( ebp , exprtype->GetFullOffset() ) );
cg->Gen( MOV , reg( eax ) , addr( eax ) );
cg->Gen( PUSH , reg( eax ) );
}
else
{
cg->Gen( MOV , reg( eax ) , reg( ebp ) );
cg->Gen( ADD , reg( eax ) , imm( exprtype->GetRelOffset() ) );
cg->Gen( PUSH , addr( eax ) );
}
}
}
void TVarExpr::GenAddr( CodeGen *cg )
{
if ( exprtype->IsGlobal() )
cg->Gen( PUSH , str( "offset data:" + v_( source ) ) );
else
if ( exprtype->IsLocal() )
{
cg->Gen( MOV , reg( eax ) , reg( ebp ) );
cg->Gen( SUB , reg( eax ) , imm( exprtype->GetFullOffset() ) );
cg->Gen( PUSH , reg( eax ) );
}
else
{
if ( exprtype->GetType()->IsReference() )
{
cg->Gen( MOV , reg( eax ) , reg( ebp ) );
cg->Gen( ADD , reg( eax ) , imm( exprtype->GetRelOffset() ) );
cg->Gen( PUSH , addr( eax ) );
}
else
{
cg->Gen( MOV , reg( eax ) , reg( ebp ) );
cg->Gen( ADD , reg( eax ) , imm( exprtype->GetRelOffset() ) );
cg->Gen( PUSH , reg( eax ) );
}
}
}
string TVarExpr::Comment()
{
return source;
}
TTypeCast::TTypeCast( TSymbol *to , TExpr *s )
:expression( s )
{
exprtype = to;
}
void TTypeCast::TypeCheck( TSymTable *GlobSymTable , Position pos , bool opt )
{
TSymbol *typ;
if( expression->IsFunccallOp() )
typ = expression->GetFuncType();
else
typ = expression->GetRealType();
if ( !typ->IsSimpleType() )
throw TypeCastNotAvail( pos );
islvalue = false;
}
bool TTypeCast::CastNeeded()
{
return expression->GetType() != exprtype;
}
bool TTypeCast::IsAlive()
{
return expression->IsAlive();
}
int TTypeCast::GetInt()
{
return expression->GetInt();
}
float TTypeCast::GetFloat()
{
return expression->GetFloat();
}
void TTypeCast::Print( int level )
{
expression->Print( level+1 );
Tab( level );
cout << "````";
exprtype->FullPrint();
cout << "()\n";
}
void TTypeCast::Gen( CodeGen *cg )
{
TSymbol *typ = exprtype->GetRealType();
cg->Gen( Com , Begin( Comment() ) );
expression->Gen( cg );
if ( typ->IsInt() && expression->GetRefdObjType()->IsFloat() )
{
cg->Gen( FLD , addr( esp ) );
cg->Gen( FISTP , addr( esp ) );
}
else
if ( typ->IsFloat() && expression->GetRefdObjType()->IsInt() )
{
cg->Gen( FILD , addr( esp ) );
cg->Gen( FSTP , addr( esp ) );
}
cg->Gen( Com , End( Comment() ) );
}
string TTypeCast::Comment()
{
return exprtype->simpletypename + "(" + expression->Comment() + ")";
}
TEmptyExpr::TEmptyExpr()
{
source = "?";
exprtype = NULL;
}
void TEmptyExpr::Gen( CodeGen *cg )
{
if ( cg->ComEnabled() )
cg->Gen( LABEL , str( ";WARNING: TEmptyExpr has been generated; possibly mistake" ) );
}
void TEmptyExpr::Print( int )
{}
bool TEmptyExpr::IsEmptyExpr()
{
return 1;
}
bool TFunccallOp::IsAlive()
{
return true;
}
TFunccallOp::TFunccallOp( TExpr *name , TExpr *list )
:funcname( name ), arglist( list )
{
source = "()";
ListExpr = new vector< TExpr * >();
islvalue = false;
}
string TFunccallOp::Comment()
{
return funcname->source + "()";
}
void TFunccallOp::GenPrintf( CodeGen *cg )
{
vector< TExpr * > *list = arglist->ListExpr;
int size = list->size();
int floats = 0;
for ( int i = size - 1 ; i > 0 ; --i )
{
(*list)[i]->Gen( cg );
if ( (*list)[i]->GetRefdObjType()->GetRealType()->IsFloat() )
{
++floats;
cg->Gen( FLD , addr( esp ) );
cg->Gen( SUB , reg( esp ) , imm( 4 ) );
cg->Gen( FSTP , addr( esp , 0 , 1 ) );
}
}
cg->Gen( PUSH , str( "offset data:str" + cg->IntToString( (*list)[0]->GetInt() ) ) );
cg->Gen( CALL , str( "_printf" ) );
cg->Gen( ADD , reg( esp ) , imm( ( size + floats )* 4 ) );
cg->Gen( PUSH , reg( eax ) );
}
void TFunccallOp::GenScanf( CodeGen *cg )
{
vector< TExpr * > *list = arglist->ListExpr;
int size = list->size();
for ( int i = size - 1 ; i > 0 ; --i )
(*list)[i]->GenAddr( cg );
cg->Gen( PUSH , str( "offset data:str" + cg->IntToString( (*list)[0]->GetInt() ) ) );
cg->Gen( CALL , str( "_scanf" ) );
cg->Gen( ADD , reg( esp ) , imm( size * 4 ) );
cg->Gen( PUSH , reg( eax ) );
}
void TFunccallOp::Gen( CodeGen *cg )
{
cg->Gen( Com , Begin( "call " + Comment() ) );
if ( funcname->source == "printf" )
{
GenPrintf( cg );
cg->Gen( Com , End( "call " + Comment() ) );
return;
}
if ( funcname->source == "scanf" )
{
GenScanf( cg );
cg->Gen( Com , End( "call " + Comment() ) );
return;
}
//push all arguments
PushArgs( cg );
//call function ;)
cg->Gen( CALL , strf_( funcname->source ) );
PopArgs( cg );
cg->Gen( PUSH , reg( eax ) );
cg->Gen( Com , End( "call " + Comment() ) );
}
void TFunccallOp::PushArgs( CodeGen *cg )
{
cg->Gen( Com , Begin( "PUSHing arguments" ) );
vector< TExpr * > *list = arglist->ListExpr;
vector< TSymbol * > *argtable = funcname->exprtype->argtable->ShowTable();
for ( int i = 0 ; i < list->size() ; ++i )
{
if ( (*argtable)[i]->GetType()->IsReference() )
(*list)[i]->GenAddr( cg );
else
(*list)[i]->Gen( cg );
}
cg->Gen( Com , End( "PUSHing arguments" ) );
}
void TFunccallOp::PopArgs( CodeGen *cg )
{
cg->Gen( Com , Begin( "POPing arguments" ) );
int size = arglist->ListExpr->size();
if ( size )
cg->Gen( ADD , reg( esp ) , imm( size * 4 ) );
cg->Gen( Com , End( "POPing arguments" ) );
}
void TFunccallOp::CheckPrintf( TSymTable *GlobSymTable , Position pos )
{
vector< TExpr * > *list = arglist->ListExpr;
if ( (*list)[0]->IsStringConst() )
(*list)[0]->PutStringNum( GlobSymTable->AddString( (*list)[0]->GetString() ) );
else
throw StringConstExp( pos );
TSymbol *type;
for ( int i = 1 ; i < list->size() ; ++i )
{
if ( (*list)[i]->IsStringConst() )
throw ArgMismatch( pos );
type = (*list)[i]->GetRefdObjType();
if ( !type->IsSimpleType() )
throw ArgMismatch( pos );
}
}
void TFunccallOp::CheckScanf( TSymTable *GlobSymTable , Position pos )
{
vector< TExpr * > *list = arglist->ListExpr;
if ( (*list)[0]->IsStringConst() )
(*list)[0]->PutStringNum( GlobSymTable->AddString( (*list)[0]->GetString() ) );
else
throw StringConstExp( pos );
TSymbol *type;
for ( int i = 1 ; i < list->size() ; ++i )
{
if ( (*list)[i]->IsStringConst() )
throw ArgMismatch( pos );
type = (*list)[i]->GetRefdObjType();
if ( !type->IsSimpleType() )
throw ArgMismatch( pos );
}
}
void TFunccallOp::TypeCheck( TSymTable *GlobSymTable , Position pos , bool opt )
{
if ( funcname->source == "printf" )
{
CheckPrintf( GlobSymTable , pos );
return;
}
if ( funcname->source == "scanf" )
{
CheckScanf( GlobSymTable , pos );
return;
}
//funcname's type contains nothing - identifier was left for structs fields
if ( !funcname->exprtype )
throw FuncNameExp( pos );
//funcnames's type doesn't contain pointer to TSymFunc in the GlobSymTable that is it's var
if ( !funcname->exprtype->IsFunc( ) )
throw FuncNameExp( pos );
exprtype = funcname->exprtype;
//forbidden to call main()
if ( funcname->exprtype->funcname == "main" )
throw MainCall( pos );
if ( arglist->ListExpr->size() != funcname->exprtype->argtable->GetNumElems() )
throw ArgNumMismatch( pos );
vector< TExpr* > *l1;
TSymTable *l2;
l1 = arglist->ListExpr;
l2 = funcname->exprtype->argtable;
TSymbol *a1, *a2;
bool lval;
for ( int i = 0 ; i < l1->size() ; ++i )
{
lval = (*l1)[i]->islvalue;
if ( (*l1)[i]->IsFunccallOp() )
{
//lval = false;
a1 = (*l1)[i]->GetFuncType();
}
else
a1 = (*l1)[i]->GetRealType();
/*if ( (*l1)[i]->IsConstExpr() )
lval = false;*/
a2 = l2->GetElemN( i )->GetRealType();
if ( a1->IsArray() && a2->IsArray() )
{
if ( !EqualArrays( a1 , a2 ) )
throw ArgMismatch( pos );
}
else
if ( !a1->IsArray() && !a2->IsArray() )
{
if ( !lval && l2->GetElemN( i )->GetType()->IsReference() )
throw ConstNLval( pos );
if ( a1 != a2 )
throw ArgMismatch( pos );
}
else
throw ArgMismatch( pos );
}
}
bool TFunccallOp::IsFunccallOp()
{
return 1;
}
TSymbol *TFunccallOp::GetFuncType()
{
return funcname->exprtype->type;
}
string TFunccallOp::GetFuncName()
{
return funcname->source;
}
void TFunccallOp::Print( int level )
{
arglist->Print( level + 1 );
Tab( level );
cout << "````" << source << '\n';
funcname->Print( level + 1 );
}
TExtractOp::TExtractOp( TExpr *left , TExpr *i )
:leftpart( left ), index( i )
{}
bool TExtractOp::IsExtractOp()
{
return 1;
}
void TExtractOp::Gen( CodeGen *cg )
{
GenAddr( cg );
cg->Gen( POP , reg( eax ) );
cg->Gen( MOV , reg( eax ) , addr( eax ) );
cg->Gen( PUSH , reg( eax) );
}
//!!adds the address of extracting element to the top double word of the stack
//hence zero value at the stack's top is needed when begining computation
void TExtractStructOp::GenAddr( CodeGen *cg )
{
cg->Gen( PUSH , imm( 0 ) );
GenAddrHelper( cg );
}
bool TExtractArrayOp::IsAlive()
{
return leftpart->IsAlive() || index->IsAlive();
}
bool TExtractStructOp::IsAlive()
{
return leftpart->IsAlive();
}
void TExtractStructOp::GenAddrHelper( CodeGen *cg )
{
//generate offset of the member in the struct
cg->Gen( MOV , reg( eax ) , imm( leftpart->GetRefdObjType()->FindMember( index->source )->GetRelOffset() ) );
//adding previous value of offset from stack
cg->Gen( POP , reg( ebx ) );
cg->Gen( ADD , reg( eax ) , reg( ebx ) );
//put new offset back to stack
cg->Gen( PUSH , reg( eax ) );
if ( leftpart->IsExtractStructOp() )
leftpart->GenAddrHelper( cg );
else
{
leftpart->GenAddr( cg );
cg->Gen( POP , reg( eax ) );
cg->Gen( POP , reg( ebx ) );
cg->Gen( SUB , reg( eax ) , reg( ebx ) );
cg->Gen( PUSH , reg( eax ) );
}
}
void TExtractArrayOp::GenAddr( CodeGen *cg )
{
cg->Gen( PUSH , imm( 0 ) );
GenAddrHelper( cg );
}
void TExtractArrayOp::GenAddrHelper( CodeGen *cg )
{
//generate value of index
index->Gen( cg );
cg->Gen( POP , reg( eax ) );
//generate value of size of embbded array
cg->Gen( MOV , reg( ebx ) , imm( GetType()->GetSize() ) );
//getting offset
cg->Gen( MUL , reg( ebx ) );
//adding previous value from stack
cg->Gen( POP , reg( ebx ) );
cg->Gen( ADD , reg( eax ) , reg( ebx ) );
//put new offset back to stack
cg->Gen( PUSH , reg( eax ) );
//if next level is struct or array extracting
//then gen its offset like above,
//but if it is the name of some object (array or struct), then generate it's base address
if ( leftpart->IsExtractArrayOp() )
leftpart->GenAddrHelper( cg );
else
{
leftpart->GenAddr( cg );
cg->Gen( POP , reg( eax ) );
cg->Gen( POP , reg( ebx ) );
cg->Gen( SUB , reg( eax ) , reg( ebx ) );
cg->Gen( PUSH , reg( eax ) );
}
}
/*EXTRACTING OPERATION*/
TExtractArrayOp::TExtractArrayOp( TExpr *left , TExpr *i )
:TExtractOp( left , i )
{}
TExtractStructOp::TExtractStructOp( TExpr *left , TExpr *i )
:TExtractOp( left , i )
{}
void TExtractArrayOp::TypeCheck( TSymTable *GlobSymTable , Position pos , bool opt )
{
if ( !leftpart->exprtype )
throw StructArrayExp( pos );
if ( !index->exprtype )
throw IllegIndex( pos );
if ( !leftpart->GetRefdObjType() )
throw StructArrayExp( pos );
TSymbol *l = leftpart->GetRealType();
if ( !l->IsArray() )
throw ArrayExp( pos );
TSymbol *i;
if ( index->IsFunccallOp() )
i = index->GetFuncType();
else
i = index->GetRealType();
if ( !i->IsInt() )
throw NonIntIndex( pos );
exprtype = l->type;
if ( exprtype->IsSimpleType() )
islvalue = true;
else
islvalue = false;
exprtype = leftpart->GetRefdObjType()->GetArrayElemType();
}
void TExtractStructOp::TypeCheck( TSymTable *GlobSymTable , Position pos , bool opt )
{
if ( !leftpart->exprtype )
throw StructArrayExp( pos );
if ( !leftpart->GetRefdObjType()->IsStrucType() )
throw StructArrayExp( pos );
TSymbol *l = leftpart->GetRealType();
if ( !l->IsStrucType() )
throw StructExp( pos );
if ( index->type != name )
throw IdStructExp( pos );
if ( l->FindMember( index->source ) == NULL )
throw NonStructField( pos );
exprtype = l->FindMember( index->source )->GetRealType();
if ( exprtype->IsSimpleType() )
islvalue = true;
else
islvalue = false;
exprtype = leftpart->GetRefdObjType()->FindMember( index->source );
}
TExpr *TExtractOp::GetIndex()
{
return index;
}
TExpr *TExtractOp::GetLeftPart()
{
return leftpart;
}
bool TExtractStructOp::IsExtractStructOp()
{
return 1;
}
bool TExtractArrayOp::IsExtractArrayOp()
{
return 1;
}
string TExtractArrayOp::Comment()
{
return leftpart->Comment() + '[' + index->Comment() + ']';
}
string TExtractStructOp::Comment()
{
return leftpart->Comment() + '.' + index->source;
}
/*extract op generation*/
void TExtractOp::Print( int level )
{
index->Print( level+1 );
Tab( level );
cout << "````" << ( IsExtractStructOp() ? "." : "[]" ) << source << '\n';
leftpart->Print( level+1 );
}
TAssignOp::TAssignOp ( Type t , string s , TExpr *l , TExpr *r )
:left( l ), right( r )
{
type = t;
source = s;
}
bool TAssignOp::IsAlive()
{
return true;
}
void TAssignOp::Gen( CodeGen *cg )
{
cg->Gen( Com , Begin( Comment() ) );
right->Gen( cg );
left->GenAddr( cg );
if ( oassign == type )
{
cg->Gen( POP , reg( eax ) );
cg->Gen( POP , reg( ebx ) );
cg->Gen( MOV , addr( eax ) , reg( ebx ) );
cg->Gen( PUSH , reg( ebx ) );
cg->Gen( Com , End( Comment() ) );
return;
}
TSymbol *typ = exprtype->GetRealType();
if ( typ->IsInt() )
{
if ( oassignplus == type )
{
cg->Gen( POP , reg( eax ) );
cg->Gen( POP , reg( ebx ) );
cg->Gen( ADD , addr( eax ) , reg( ebx ) );
cg->Gen( PUSH , addr( eax ) );
}
else
if ( oassignmin == type )
{
cg->Gen( POP , reg( eax ) );
cg->Gen( POP , reg( ebx ) );
cg->Gen( SUB , addr( eax ) , reg( ebx ) );
cg->Gen( PUSH , addr( eax ) );
}
else
if ( oassignmul == type )
{
cg->Gen( POP , reg( ebx ) );
cg->Gen( POP , reg( eax ) );
cg->Gen( MUL , addr( ebx ) );
cg->Gen( PUSH , reg( eax ) );
cg->Gen( MOV , addr( ebx ) , reg( eax ) );
}
else
if ( oassigndiv == type )
{
cg->Gen( POP , reg( ecx ) );
cg->Gen( POP , reg( ebx ) );
cg->Gen( MOV , reg( eax ) , addr( ecx ) );
cg->Gen( XOR , reg( edx ) , reg( edx ) );
cg->Gen( IDIV , reg( ebx ) );
cg->Gen( MOV , addr( ecx ) , reg( eax ) );
cg->Gen( PUSH , reg( eax ) );
};
}
else
{
cg->Gen( POP , reg( eax ) );
cg->Gen( FLD , addr( eax ) );
cg->Gen( FLD , addr( esp ) );
if ( oassignplus == type )
cg->Gen( FADDP , reg( st1 ) , reg( st0 ) );
else
if ( oassignmin == type )
cg->Gen( FSUBP , reg( st1 ) , reg( st0 ) );
else
if ( oassignmul == type )
cg->Gen( FMULP , reg( st1 ) , reg( st0 ) );
else
if ( oassigndiv == type )
cg->Gen( FDIVP , reg( st1 ) , reg( st0 ) );
cg->Gen( FST , addr( eax ) );
cg->Gen( FSTP , addr( esp ) );
}
cg->Gen( Com , End( Comment() ) );
return;
}
string TAssignOp::Comment()
{
return "(" + left->Comment() + ")" + source + "(" + right->Comment() + ")";
}
void TAssignOp::TypeCheck( TSymTable *GlobSymTable , Position pos , bool opt )
{
if ( !left->exprtype || !right->exprtype )
throw LeftAssignUnknown( pos );
if ( left->GetType()->IsFunc() )
throw NoFuncExp( pos );
if ( !left->islvalue )
throw LeftAssignMustBeLvalue( pos );
islvalue = false;
TSymbol *l = left->GetRealType();
TSymbol *r;
if ( right->IsFunccallOp() )
r = right->GetFuncType();
else
r = right->GetRealType();
if ( !l->IsSimpleType() || !r->IsSimpleType() )
throw AssignNonSimple( pos );
if ( l != r )
CreateTypeCast( right , l , opt );
exprtype = l;
}
void TAssignOp::Print( int level )
{
if ( right != NULL )
right->Print( level+1 );
Tab( level );
cout << "````" << source << '\n';
if ( left != NULL )
left->Print( level+1 );
}
TBinaryOp::TBinaryOp( Type t , string s , TExpr *l , TExpr *r )
:left( l ) , right( r )
{
type = t;
source = s;
}
bool TBinaryOp::IsAlive()
{
return left->IsAlive() || right->IsAlive();
}
TExpr *TBinaryOp::GetRightPart()
{
return right;
}
TExpr *TBinaryOp::GetLeftPart()
{
return left;
}
void TBinaryOp::TypeCheck( TSymTable *GlobSymTable , Position pos , bool opt )
{
//unknwon type
if ( !left->exprtype || !right->exprtype )
throw BinOpersUnknown( pos );
//binary operation is not lvalue
islvalue = false;
//if Op - ident and names a function
//take types of Ops
TSymbol *l, *r;
if ( left->IsFunccallOp() )
l = left->GetFuncType();
else
l = left->GetType()->GetRealType();
if ( right->IsFunccallOp() )
r = right->GetFuncType();
else
r = right->GetRealType();
//Ops must be int or float
if ( !l->IsSimpleType() || !r->IsSimpleType() )
throw BinOpSimpType( pos );
//if logical operations or comparsion
if ( ( type > 26 ) && ( type < 37 ) )
{
exprtype = GlobSymTable->GetElemN( 0 );
TSymbol *flt = GlobSymTable->GetElemN( 1 );
if ( l != r )
{
if ( l->IsFloat() )
CreateTypeCast( right , flt , opt );
if ( r->IsFloat() )
CreateTypeCast( left , flt , opt );
}
}
else
if ( l != r )
{
if ( r->IsFloat() )
{
exprtype = r;
CreateTypeCast( left , r , opt );
}
else
{
exprtype = l;
CreateTypeCast( right , l , opt );
}
}
else
exprtype = l;
//type of expression matches the type of each argument
}
string TBinaryOp::Comment()
{
return "(" + left->Comment() + ")" + source + "(" + right->Comment() + ")";
}
// <<<<<<< <<<<<<< CODE GENERATION >>>>>>> >>>>>>>
void TBinaryOp::Gen( CodeGen *cg )
{
TSymbol *typ = exprtype->GetRealType();
cg->Gen( Com , Begin( Comment() ) );
//together: + - / *
if ( ( type > 19 ) && ( type < 24 ) )
{
left->Gen( cg );
right->Gen( cg );
if ( typ->IsInt() )
{
cg->Gen( POP , reg( ebx ) );
cg->Gen( POP , reg( eax ) );
if ( oplus == type )
cg->Gen( ADD , reg( eax ) , reg( ebx ) );
else
if ( ominus == type )
cg->Gen( SUB , reg( eax ) , reg( ebx ) );
else
if ( omul == type )
cg->Gen( IMUL , reg( ebx ) );
else
if ( odiv == type )
{
cg->Gen( XOR , reg( edx ) , reg( edx ) );
cg->Gen( DIV , reg( ebx ) );
}
cg->Gen( PUSH , reg( eax ) );
}
//the same fo floats
else
{
cg->Gen( FLD , addr( esp , 4 ) );
cg->Gen( FLD , addr( esp ) );
if ( oplus == type )
cg->Gen( FADDP , reg( st1 ) , reg( st0 ) );
else
if ( ominus == type )
cg->Gen( FSUBP , reg( st1 ) , reg( st0 ) );
else
if ( omul == type )
cg->Gen( FMULP , reg( st1 ) , reg( st0 ) );
else
if ( odiv == type )
cg->Gen( FDIVP , reg( st1 ) , reg( st0 ) );
cg->Gen( ADD , reg( esp ) , imm( 4 ) );
cg->Gen( FSTP , addr( esp ) );
}
cg->Gen( Com , End( Comment() ) );
return;
}
TSymbol *argstype = left->GetRealType();
//together: == != >= <= > <
if ( ( type > 28 ) && ( type < 35 ) )
{
string label = cg->GenLabel();
left->Gen( cg );
right->Gen( cg );
if ( argstype->IsInt() )
{
cg->Gen( POP , reg( ebx ) );
cg->Gen( POP , reg( eax ) );
cg->Gen( XOR , reg( edx ) , reg( edx ) );
cg->Gen( CMP , reg( eax ) , reg( ebx ) );
if ( oequal == type )
cg->Gen( JNE , str( label ) );
else
if ( onequal == type )
cg->Gen( JE , str( label ) );
else
if ( oegreat == type )
cg->Gen( JL , str( label ) );
else
if ( oeless == type )
cg->Gen( JG , str( label ) );
else
if ( ogreat == type )
cg->Gen( JNG , str( label ) );
else
if ( oless == type )
cg->Gen( JNL , str( label ) );
cg->Gen( MOV , reg( edx ) , imm( 1 ) );
cg->Gen( LABEL , str( label ) );
cg->Gen( PUSH , reg( edx ) );
}
else
{
cg->Gen( FLD , addr( esp ) );
cg->Gen( FLD , addr( esp , 4 ) );
cg->Gen( ADD , reg( esp ) , imm( 8 ) );
cg->Gen( XOR , reg( eax ) , reg( eax ) );
cg->Gen( FCOMIP , reg( st ) , reg( st1 ) );
if ( oequal == type )
cg->Gen( JNZ , str( label ) );
else
if ( onequal == type )
cg->Gen( JZ , str( label ) );
else
if ( oegreat == type )
cg->Gen( JC , str( label ) );
else
if ( oeless == type )
cg->Gen( JA , str( label ) );
else
if ( ogreat == type )
{
cg->Gen( JZ , str( label ) );
cg->Gen( JC , str( label ) );
}
else
if ( oless == type )
{
cg->Gen( JZ , str( label ) );
cg->Gen( JNC , str( label ) );
};
cg->Gen( MOV , reg( eax ) , imm( 1 ) );
cg->Gen( LABEL , str( label ) );
cg->Gen( FFREE , reg ( st0 ) );
cg->Gen( FINCSTP );
cg->Gen( PUSH , reg( eax ) );
}
cg->Gen( Com , End( Comment() ) );
return;
}
//&& and ||, couldn't group the code...
if ( oand == type )
{
string label = cg->GenLabel();
left->Gen( cg );
if ( argstype->IsInt() )
{
cg->Gen( POP , reg( eax ) );
cg->Gen( CMP , reg( eax ) , imm( 0 ) );
cg->Gen( JE , str( label ) );
right->Gen( cg );