-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodegen.cpp
More file actions
699 lines (658 loc) · 15.1 KB
/
codegen.cpp
File metadata and controls
699 lines (658 loc) · 15.1 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
#include "codegen.h"
#include "codegentools.h"
CodeGen::CodeGen( string filename , bool opt , bool com )
:label( 0 ), optimizing( opt )
{
topop = new vector<int>();
//checking
if ( !opt )
commenting = com;
else
commenting = false;
buffer = new vector<TAsmCommand*>();
continues = new vector< string >();
breaks = new vector< string >();
asm_filename = filename.substr( 0 , filename.size() - 3) + "asm";
ComTable[DD] = "dd";
ComTable[DB] = "db";
ComTable[DUP] = "dup";
ComTable[PUSH] = "push";
ComTable[POP] = "pop";
ComTable[MOV] = "mov";
ComTable[CMOVNZ] = "cmovnz";
ComTable[CMOVNZ] = "cmovz";
ComTable[INC] = "inc";
ComTable[DEC] = "dec";
ComTable[ADD] = "add";
ComTable[ADC] = "adc";
ComTable[SUB] = "sub";
ComTable[SBB] = "sbb";
ComTable[MUL] = "mul";
ComTable[IMUL] = "imul";
ComTable[IDIV] = "idiv";
ComTable[DIV] = "div";
ComTable[NEG] = "neg";
ComTable[XOR] = "xor";
ComTable[OR] = "or";
ComTable[AND] = "and";
ComTable[Com] = ";";
ComTable[JNE] = "jne";
ComTable[JNG] = "jng";
ComTable[JNL] = "jnl";
ComTable[JA] = "ja";
ComTable[JNA] = "jna";
ComTable[JB] = "jb";
ComTable[JG] = "jg";
ComTable[JGE] = "jge";
ComTable[JL] = "jl";
ComTable[JLE] = "jle";
ComTable[JNB] = "jnb";
ComTable[JNC] = "jnc";
ComTable[JE] = "je";
ComTable[JNZ] = "jnz";
ComTable[JZ] = "jz";
ComTable[JC] = "jc";
ComTable[JMP] = "jmp";
ComTable[CMP] = "cmp";
ComTable[TEST] = "test";
ComTable[PROC] = "proc";
ComTable[ENDP] = "endp";
ComTable[CALL] = "call";
ComTable[RET] = "ret";
ComTable[FLDZ] = "fldz";
ComTable[FSUB] = "fsub";
ComTable[FSUBP] = "fsubp";
ComTable[FADD] = "fadd";
ComTable[FADDP] = "faddp";
ComTable[FILD] = "fild";
ComTable[FIST] = "fist";
ComTable[FISTP] = "fistp";
ComTable[FLD] = "fld";
ComTable[FLD1] = "fld1";
ComTable[FST] = "fst";
ComTable[FSTP] = "fstp";
ComTable[FMUL] = "fmul";
ComTable[FMULP] = "fmulp";
ComTable[FDIV] = "fdiv";
ComTable[FDIVP] = "fdivp";
ComTable[FCHS] = "fchs";
ComTable[FCOMI] = "fcomi";
ComTable[FCOMIP] = "fcomip";
ComTable[FINCSTP] = "FINCSTP";
ComTable[FFREE] = "FFREE";
RegTable[eax] = "eax";
RegTable[ebx] = "ebx";
RegTable[ecx] = "ecx";
RegTable[edx] = "edx";
RegTable[st0] = "st(0)";
RegTable[st1] = "st(1)";
RegTable[st] = "st";
RegTable[esp] = "esp";
RegTable[ebp] = "ebp";
//"NO Change with" table - for optimizing
NoChangeWith[PROC] = "proc";
NoChangeWith[ENDP] = "endp";
NoChangeWith[CALL] = "call";
NoChangeWith[RET] = "ret";
NoChangeWith[JNE] = "jne";
NoChangeWith[JNG] = "jng";
NoChangeWith[JNL] = "jnl";
NoChangeWith[JA] = "ja";
NoChangeWith[JNA] = "jna";
NoChangeWith[JB] = "jb";
NoChangeWith[JG] = "jg";
NoChangeWith[JGE] = "jge";
NoChangeWith[JL] = "jl";
NoChangeWith[JLE] = "jle";
NoChangeWith[JNB] = "jnb";
NoChangeWith[JNC] = "jnc";
NoChangeWith[JE] = "je";
NoChangeWith[JNZ] = "jnz";
NoChangeWith[JZ] = "jz";
NoChangeWith[JC] = "jc";
NoChangeWith[JMP] = "jmp";
NoChangeWith[FINCSTP] = "FINCSTP";
NoChangeWith[FFREE] = "FFREE";
// NoChangeWith[MOV] = "mov";
/*NoChangeWith[XOR] = "xor";
NoChangeWith[OR] = "or";
NoChangeWith[AND] = "and";
NoChangeWith[CMP] = "cmp";
NoChangeWith[TEST] = "test";
NoChangeWith[FILD] = "fild";
NoChangeWith[FIST] = "fist";
NoChangeWith[FISTP] = "fistp";
NoChangeWith[FLD] = "fld";
NoChangeWith[FST] = "fst";
NoChangeWith[FSTP] = "fstp";*/
}
void CodeGen::GenStart()
{
asm_file = new ofstream( asm_filename.c_str() );
*asm_file << "include ..\\..\\include\\start.inc\n";
}
void CodeGen::GenMiddle()
{
*asm_file << "\ninclude ..\\..\\include\\code.inc\n";
}
void CodeGen::GenFinish()
{
*asm_file << "\ninclude ..\\..\\include\\end.inc";
asm_file->close();
}
string CodeGen::IntToString( int convert )
{
char *t = new char[5];
itoa( convert , t , 10 );
return string( t );
}
bool CodeGen::ComEnabled()
{
return commenting;
}
string CodeGen::GenLabel()
{
return "label" + IntToString( label++ );
}
void CodeGen::PushContinue( string label )
{
continues->push_back( label );
}
void CodeGen::PopContinue()
{
continues->pop_back();
}
string CodeGen::GetContinueLabel()
{
return (*continues)[continues->size() - 1];
}
string CodeGen::GetBreakLabel()
{
return (*breaks)[breaks->size() - 1];
}
void CodeGen::PushHaltPops()
{
topop->push_back( 0 );
}
void CodeGen::PopHaltPops()
{
topop->pop_back();
}
void CodeGen::PushBreak( string label )
{
breaks->push_back( label );
}
void CodeGen::PopBreak()
{
breaks->pop_back();
}
void CodeGen::AddHaltPops( int a )
{
(*topop)[topop->size()-1] += a;
}
void CodeGen::SubHaltPops( int s )
{
(*topop)[topop->size()-1] -= s;
}
int CodeGen::HaltPops()
{
return (*topop)[topop->size()-1];
}
void CodeGen::FlushOp( Op *op )
{
if ( op->IsReg() )
*asm_file << RegTable[op->GetReg()];
else
if ( op->IsImm() )
FlushConst( op );
else
if ( op->IsMem() )
*asm_file << op->GetMem();
else
if ( op->IsAddr() )
FlushAddr( op );
else
*asm_file << op->GetStr();
}
void CodeGen::FlushOpX( Op *op )
{
if ( op->IsReg() )
cout << RegTable[op->GetReg()];
else
if ( op->IsImm() )
FlushConstX( op );
else
if ( op->IsMem() )
cout << op->GetMem();
else
if ( op->IsAddr() )
FlushAddrX( op );
else
cout << op->GetStr();
}
void CodeGen::FlushConstX( Op *op )
{
float conv;
if ( op->IsInt() )
cout << op->GetInt();
else
{
conv = op->GetFloat();
cout << hex << 0 << *(int*)&conv << "h" << dec;
}
}
void CodeGen::FlushConst( Op *op )
{
float conv;
if ( op->IsInt() )
*asm_file << op->GetInt();
else
{
conv = op->GetFloat();
*asm_file << hex << 0 << *(int*)&conv << "h" << dec;
}
}
void CodeGen::FlushAddrX( Op *op )
{
if ( op->IsDaddr() )
cout << "dword ptr [ ";
else
cout << "qword ptr [ ";
cout << RegTable[ op->GetReg() ];
if ( op->GetOffset() > 0 )
cout << " + " + IntToString( op->GetOffset() );
else
if ( op->GetOffset() < 0 )
cout << " " + IntToString( op->GetOffset() );
cout << " ]";
}
void CodeGen::FlushAddr( Op *op )
{
if ( op->IsDaddr() )
*asm_file << "dword ptr [ ";
else
*asm_file << "qword ptr [ ";
*asm_file << RegTable[ op->GetReg() ];
if ( op->GetOffset() > 0 )
*asm_file << " + " + IntToString( op->GetOffset() );
else
if ( op->GetOffset() < 0 )
*asm_file << " " + IntToString( op->GetOffset() );
*asm_file << " ]";
}
void CodeGen::Flush()
{
*asm_file << "\n";
MnemCom mnem;
TAsmCommand *fl;
Op *op1, *op2, *op3;
while ( buffer->size() )
{
fl = buffer->front();
mnem = fl->GetMnem();
op1 = fl->GetOp1();
op2 = fl->GetOp2();
op3 = fl->GetOp3();
//mnem = (*buffer)[0]->GetMnem();
//var declaration, f.e. "v_a dd 4"
//op1 is memory(f.e. "v_a"), op2 is immediate (value) or string ("?")
if ( mnem < 2 )
{
*asm_file << op1->GetMem() << "\t";
*asm_file << ComTable[ mnem ];
*asm_file << "\t";
if ( op2->IsStr() )
*asm_file << op2->GetStr();
else
FlushConst( op2 );
}
else
if ( mnem == LABEL )
*asm_file << op1->GetStr() << ":";
else
if ( mnem == DUP )
{
*asm_file << op1->GetMem();
*asm_file << "\tdb\t";
*asm_file << op2->GetInt();
*asm_file << " dup (?)";
}
else
if ( ( mnem == PROC ) || ( mnem == ENDP ) )
{
if ( mnem == PROC )
*asm_file << "\n\n";
*asm_file << op1->GetStr();
*asm_file << "\t" << ComTable[mnem];
if ( mnem == ENDP )
*asm_file << "\n\n";
}
else
{
*asm_file << ComTable[mnem] << "\t";
if ( op1 )
{
FlushOp( op1 );
if ( op2 )
{
*asm_file << ",\t";
FlushOp( op2 );
if ( op3 )
{
*asm_file << ",\t";
FlushOp( op3 );
}
}
}
};
buffer->erase( buffer->begin() );
*asm_file << "\n";
}
*asm_file << "\n";
}
//ãåíåðèðóåò 1 êîìàíäó àññåìáëåðà è äîáàâëÿåò å¸ â áóôåð
void CodeGen::Gen( MnemCom mnem , Op *op1 , Op *op2 , Op *op3 )
{
if ( commenting || ( Com != mnem ) )
buffer->push_back( new TAsmCommand( mnem , op1 , op2 , op3 ) );
}
bool CodeGen::NeedOptim()
{
return optimizing;
}
bool CodeGen::EqualOperands( Op *op1 , Op *op2 )
{
if ( op1 && op2 )
{
if ( op1->IsAddr() && op2->IsAddr() )
{
if ( op1->IsDaddr() != op2->IsDaddr() )
return 0;
return ( ( op1->GetReg() == op2->GetReg() )
&& ( op1->GetOffset() == op2->GetOffset() ) );
}
else
if ( op1->IsMem() && op2->IsMem() )
return op1->GetMem() == op2->GetMem();
else
if ( op1->IsReg() && op2->IsReg() )
return op1->GetReg() == op2->GetReg();
}
return 0;
}
Op *CodeGen::CopyOp( Op *op )
{
Op *newop;
if ( op->IsReg() )
newop = new Reg( op->GetReg() );
else
if ( op->IsMem() )
newop = new Mem( op->GetMem() );
else
if ( op->IsImm() )
{
if ( op->IsInt() )
newop = new Imm( op->GetInt() );
else
newop = new Imm( op->GetFloat() );
}
else
if ( op->IsAddr() )
newop = new Addr( op->GetReg() , op->GetOffset() , !op->IsDaddr() );
return newop;
}
//if the command can change stack in some way
//throught this operand
bool CodeGen::StackOp( Op *op )
{
if ( op )
{
if ( op->IsReg() )
if ( op->GetReg() == esp )
return 1;
if ( op->IsAddr() )
return 1;
if ( op->IsStr() )
return 1;
}
return 0;
}
bool CodeGen::SameRegOp( MnemReg reg , Op *tocheck )
{
if ( tocheck )
if ( tocheck->IsReg() )
if ( tocheck->GetReg() == reg )
return 1;
return 0;
}
bool CodeGen::SameMemOp( string mem , Op *tocheck )
{
if ( tocheck )
if ( tocheck->IsMem() )
if ( tocheck->GetMem() == mem )
return 1;
return 0;
}
bool CodeGen::AllowedToExchange( TAsmCommand *p , TAsmCommand *com )
{
MnemCom mcom = com->GetMnem();
if ( NoChangeWith[mcom] != "" )
return 0;
if ( StackOp( p->GetOp1() ) ||
StackOp( com->GetOp1() ) ||
StackOp( com->GetOp2() ) ||
StackOp( com->GetOp3() ) )
return 0;
if ( p->GetOp1()->IsReg() )
{
MnemReg reg = p->GetOp1()->GetReg();
if ( SameRegOp( reg , com->GetOp1() ) ||
SameRegOp( reg , com->GetOp2() ) ||
SameRegOp( reg , com->GetOp3() ) )
return 0;
}
//if mem
else
if ( p->GetOp1()->IsMem() )
{
string mem = p->GetOp1()->GetMem();
if ( SameMemOp( mem , com->GetOp1() ) ||
SameMemOp( mem , com->GetOp2() ) ||
SameMemOp( mem , com->GetOp3() ) )
return 0;
}
return 1;
}
void CodeGen::ReplaceCom( TAsmCommand *newcom )
{
iter = buffer->begin() + opt1;
delete( *iter );
*iter = newcom;
}
void CodeGen::Exchange()
{
TAsmCommand *temp = (*buffer)[opt1];
(*buffer)[opt1] = (*buffer)[opt2];
(*buffer)[opt2] = temp;
}
//deletes the opt1
void CodeGen::DelCom()
{
buffer->erase( buffer->begin() + opt1 );
}
void CodeGen::CreateOptPointers()
{
opt1 = 0;
opt2 = 1;
}
void CodeGen::NextOptPointers()
{
++opt1;
++opt2;
}
bool CodeGen::Finished()
{
return opt2 >= buffer->size();
}
void CodeGen::WatchPeepHole()
{
bool optim_done = false;
TAsmCommand *a, *b, *temp;
for ( int i = 0 ; ( i < 500 ) && !optim_done ; ++i )
{
CreateOptPointers();
optim_done = true;
while ( !Finished() )
{
a = (*buffer)[opt1];
b = (*buffer)[opt2];
Op *aop1 = a->GetOp1(), *aop2 = a->GetOp2(),
*bop1 = b->GetOp1(), *bop2 = b->GetOp2();
//push eax, pop eax; pop eax, push eax
if ( a->IsPush() && b->IsPop() &&
EqualOperands( aop1 , bop1 ) )
{
optim_done = false;
DelCom();
DelCom();
continue;
}
if ( a->IsPush() && ( b->GetMnem() == ADD ) )
if ( bop1->GetReg() == esp )
{
optim_done = false;
if ( bop2->GetInt() == 4 )
{
DelCom();
DelCom();
}
if ( bop2->GetInt() > 4 )
{
temp = new TAsmCommand( ADD , reg( esp ) , imm( bop2->GetInt() - 4 ) );
DelCom();
ReplaceCom( temp );
}
continue;
};
//push x, pop y, x or y is register
if ( a->IsPush() && b->IsPop() &&
( aop1->IsReg() || bop1->IsReg() ) )
{
optim_done = false;
temp = new TAsmCommand( MOV , CopyOp( bop1 ) , CopyOp( aop1 ) );
DelCom();
ReplaceCom( temp );
continue;
}
///grouping togehter such adds and subs:
//add reg, imm; sub reg, imm
//add mem, imm; sub mem, imm
if ( ( ( a->GetMnem() == ADD ) || ( a->GetMnem() == SUB ) ) && ( ( b->GetMnem() == ADD ) || ( b->GetMnem() == SUB ) ) )
{
if ( aop2->IsImm() && bop2->IsImm() )
{
if ( ( aop1->IsReg() && bop1->IsReg() && ( aop1->GetReg() == bop1->GetReg() ) ) ||
( aop1->IsMem() && bop1->IsMem() && ( aop1->GetMem() == bop1->GetMem() ) ) )
{
optim_done = false;
int toadd = 0;
if ( a->GetMnem() == ADD )
toadd += aop2->GetInt();
else
toadd -= aop2->GetInt();
if ( b->GetMnem() == ADD )
toadd += bop2->GetInt();
else
toadd -= bop2->GetInt();
if ( toadd < 0 )
temp = new TAsmCommand( SUB , CopyOp( aop1 ) , imm( -toadd ) );
else
if ( toadd > 0 )
temp = new TAsmCommand( ADD , CopyOp( aop1 ) , imm( toadd ) );
else
DelCom();
DelCom();
if ( toadd )
ReplaceCom( temp );
continue;
}
}
}
//add smth, 0
if ( a->GetMnem() == ADD )
if ( aop2->IsImm() )
if ( !aop2->GetInt() )
{
DelCom();
continue;
}
//cmp smth, 0
if ( a->GetMnem() == CMP )
if ( aop2->IsImm() )
if ( !aop2->GetInt() )
{
temp = new TAsmCommand( TEST , CopyOp( a->GetOp1() ) , CopyOp( a->GetOp1() ) );
ReplaceCom( temp );
continue;
}
//mov smth, 0
if ( a->GetMnem() == MOV )
if ( aop2->IsImm() && !aop2->GetInt() )
if ( aop1->IsReg() || aop1->IsMem() )
{
temp = new TAsmCommand( XOR , CopyOp( a->GetOp1() ) , CopyOp( a->GetOp1() ) );
ReplaceCom( temp );
continue;
}
//try to exchange
if ( i < 250 )
{
if ( ( a->IsPop() && !b->IsPush() && !b->IsPop() ) ||
( b->IsPush() && !a->IsPush() && !a->IsPop() ) )
{
optim_done = false;
//optim_done = false;
if ( a->IsPop() )
{
if ( AllowedToExchange( a , b ) )
{
Exchange();
continue;
}
}
else
if ( AllowedToExchange( b , a ) )
{
Exchange();
continue;
}
}
}
else
{
if ( ( a->IsPush() && !b->IsPush() && !b->IsPop() ) ||
( b->IsPop() && !a->IsPush() && !a->IsPop() ) )
{
optim_done = false;
//optim_done = false;
if ( a->IsPush() )
{
if ( AllowedToExchange( a , b ) )
{
Exchange();
continue;
}
}
else
if ( AllowedToExchange( b , a ) )
{
Exchange();
continue;
}
}
}
NextOptPointers();
//see if not shorted
}
}
}