-
Notifications
You must be signed in to change notification settings - Fork 1
/
cap14-types.c
757 lines (644 loc) · 14.6 KB
/
cap14-types.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
/*
Tipos de variáveis
O código abaixo foi escrito por Felipo Soranz e é uma adaptação
do código original em Pascal escrito por Jack W. Crenshaw em sua
série "Let's Build a Compiler".
Este código é de livre distribuição e uso.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
char Look; /* O caractere lido "antecipadamente" (lookahead) */
#define SYMBOLTABLE_SIZE 26
char SymbolTable[SYMBOLTABLE_SIZE]; /* Tabela de símbolos */
/* Rotinas utilitárias */
void Init();
void NextChar();
void Error(char *fmt, ...);
void Abort(char *fmt, ...);
void Expected(char *fmt, ...);
void Unrecognized(char name);
void EmitLn(char *fmt, ...);
/* Tratamento da tabela de símbolos */
void DumpTable();
char SymbolType(char name);
char InTable(char name);
void Duplicate(char name);
void CheckDuplicate(char name);
void AddEntry(char name, char type);
/* Geração de código */
void AsmAllocVar(char name, char type);
void AsmLoadVar(char name, char type);
void AsmStoreVar(char name, char type);
void AsmConvert(char src, char dst);
void AsmLoadConst(long val, char type);
void AsmClear();
void AsmPush(char type);
void AsmPop(char type);
void AsmSwap(char type);
char AsmSameType(char t1, char t2, int ordMatters);
char AsmPopAdd(char t1, char t2);
char AsmPopSub(char t1, char t2);
char AsmPopMul(char t1, char t2);
char AsmPopDiv(char t1, char t2);
/* Analisador léxico */
int IsAddOp(char c);
int IsMulOp(char c);
int IsOrOp(char c);
int IsRelOp(char c);
int IsVarType(char c);
void SkipWhite();
void NewLine();
void Match(char c);
char GetName();
long GetNum();
/* Analisador sintático */
void AllocVar(char name, char type);
char LoadVar(char name);
char LoadNum(long val);
void StoreVar(char name, char type);
void NotVar(char name);
char VarType(char name);
void Declaration();
void TopDeclarations();
char UnaryOp();
char Factor();
char Multiply(char type);
char Divide(char type);
char Term();
char Add(char type);
char Subtract(char type);
char Expression();
void Assignment();
void Block();
/* Programa principal */
int main()
{
Init();
TopDeclarations();
Match('B');
NewLine();
Block();
DumpTable();
return 0;
}
/* Inicialização do compilador */
void Init()
{
int i;
for (i = 0; i < SYMBOLTABLE_SIZE; i++)
SymbolTable[i] = '?';
NextChar();
SkipWhite();
}
/* Lê próximo caractere da entrada em lookahead */
void NextChar()
{
Look = getchar();
}
/* Exibe uma mensagem de erro formatada */
void Error(char *fmt, ...)
{
va_list args;
fputs("Error: ", stderr);
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
fputc('\n', stderr);
}
/* Exibe uma mensagem de erro formatada e sai */
void Abort(char *fmt, ...)
{
va_list args;
fputs("Error: ", stderr);
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
fputc('\n', stderr);
exit(1);
}
/* Alerta sobre alguma entrada esperada */
void Expected(char *fmt, ...)
{
va_list args;
fputs("Error: ", stderr);
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
fputs(" expected!\n", stderr);
exit(1);
}
/* Avisa a respeito de uma palavra-chave desconhecida */
void Unrecognized(char name)
{
Abort("Unrecognized keyword %c", name);
}
/* Emite uma instrução seguida por uma nova linha */
void EmitLn(char *fmt, ...)
{
va_list args;
putchar('\t');
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
putchar('\n');
}
/* Exibe a tabela de símbolos */
void DumpTable()
{
int i;
printf("Symbol table dump:\n");
for (i = 0; i < SYMBOLTABLE_SIZE; i++)
if (SymbolTable[i] != '?')
printf("%c = %c\n", i + 'A', SymbolTable[i]);
}
/* Retorna o tipo de um identificador */
char SymbolType(char name)
{
return SymbolTable[name - 'A'];
}
/* Verifica se "name" consta na tabela de símbolos */
char InTable(char name)
{
return (SymbolTable[name - 'A'] != '?');
}
/* Avisa a respeito de um identificador desconhecido */
void Duplicate(char name)
{
fprintf(stderr, "Error: Duplicated identifier %c\n", name);
exit(1);
}
/* Verifica se um identificador já foi declarado */
void CheckDuplicate(char name)
{
if (InTable(name))
Duplicate(name);
}
/* Adiciona nova entrada à tabela de símbolos */
void AddEntry(char name, char type)
{
CheckDuplicate(name);
SymbolTable[name - 'A'] = type;
}
/* Gera código para armazenamento de variável */
void AsmAllocVar(char name, char type)
{
int btype; /* Tamanho em bytes */
switch (type) {
case 'b':
case 'w':
btype = type;
break;
case 'l':
btype = 'd';
break;
}
printf("%c d%c 0\n", name, btype);
}
/* Gera código para carregar variável de acordo com o tipo */
void AsmLoadVar(char name, char type)
{
switch (type) {
case 'b':
EmitLn("MOV AL, [%c]", name);
break;
case 'w':
EmitLn("MOV AX, [%c]", name);
break;
case 'l':
EmitLn("MOV DX, [%c+2]", name);
EmitLn("MOV AX, [%c]", name);
}
}
/* Gera código para armazenar variável de acordo com o tipo */
void AsmStoreVar(char name, char type)
{
switch (type) {
case 'b':
EmitLn("MOV [%c], AL", name);
break;
case 'w':
EmitLn("MOV [%c], AX", name);
break;
case 'l':
EmitLn("MOV [%c+2], DX", name);
EmitLn("MOV [%c], AX", name);
}
}
/* Converte tipo origem para destino */
void AsmConvert(char src, char dst)
{
if (src == dst)
return;
if (src == 'b')
EmitLn("CBW");
if (dst == 'l')
EmitLn("CWD");
}
/* Gera código para carregar uma constante de acordo com o tipo */
void AsmLoadConst(long val, char type)
{
switch (type) {
case 'b':
EmitLn("MOV AL, %d", (int) val);
break;
case 'w':
EmitLn("MOV AX, %d", (int) val);
break;
case 'l':
EmitLn("MOV DX, %u", val >> 16);
EmitLn("MOV AX, %u", val & 0xFFFF);
break;
}
}
/* Zera o registrador primário */
void AsmClear()
{
EmitLn("XOR AX, AX");
}
/* Coloca valor na pilha */
void AsmPush(char type)
{
if (type == 'b')
EmitLn("CBW"); /* Só é possível empilhar "word"s */
if (type == 'l')
EmitLn("PUSH DX");
EmitLn("PUSH AX");
}
/* Coloca em registrador(es) secundário(s) valor da pilha */
void AsmPop(char type)
{
EmitLn("POP BX");
if (type == 'l')
EmitLn("POP CX");
}
/* Gera código para trocar registradores primário e secundário */
void AsmSwap(char type)
{
switch (type) {
case 'b':
EmitLn("XCHG AL, BL");
break;
case 'w':
EmitLn("XCHG AX, BX");
break;
case 'l':
EmitLn("XCHG AX, BX");
EmitLn("XCHG DX, CX");
break;
}
}
/* Faz a promoção dos tipos dos operandos e inverte a ordem dos mesmos se necessário */
char AsmSameType(char t1, char t2, int ordMatters)
{
int swaped = 0;
int type = t1;
if (t1 != t2) {
if ((t1 == 'b') || (t1 == 'w' && t2 == 'l')) {
type = t2;
AsmSwap(type);
AsmConvert(t1, t2);
swaped = 1;
} else {
type = t1;
AsmConvert(t2, t1);
}
}
if (!swaped && ordMatters)
AsmSwap(type);
return type;
}
/* Soma valor na pilha com valor no registrador primário */
char AsmPopAdd(char t1, char t2)
{
char type;
AsmPop(t1);
type = AsmSameType(t1, t2, 0);
switch (type) {
case 'b':
EmitLn("ADD AL, BL");
break;
case 'w':
EmitLn("ADD AX, BX");
break;
case 'l':
EmitLn("ADD AX, BX");
EmitLn("ADC DX, CX");
break;
}
return type;
}
/* Subtrai do valor da pilha o valor no registrador primário */
char AsmPopSub(char t1, char t2)
{
char type;
AsmPop(t1);
type = AsmSameType(t1, t2, 1);
switch (type) {
case 'b':
EmitLn("SUB AL, BL");
break;
case 'w':
EmitLn("SUB AX, BX");
break;
case 'l':
EmitLn("SUB AX, BX");
EmitLn("SBB DX, CX");
break;
}
return type;
}
/* Multiplica valor na pilha com valor no registrador primário */
char AsmPopMul(char t1, char t2)
{
char type, mulType;
AsmPop(t1);
type = AsmSameType(t1, t2, 0);
mulType = 'l';
switch (type) {
case 'b':
EmitLn("IMUL BL");
mulType = 'w';
break;
case 'w':
EmitLn("IMUL BX");
break;
case 'l':
EmitLn("CALL MUL32");
break;
}
return mulType;
}
/* Divide valor na pilha por valor do registrador primário */
char AsmPopDiv(char t1, char t2)
{
AsmPop(t1);
/* Se dividendo for 32-bits divisor deve ser também */
if (t1 == 'l')
AsmConvert(t2, 'l');
/* Coloca operandos na ordem certa conforme o tipo */
if (t1 == 'l' || t2 == 'l')
AsmSwap('l');
else if (t1 == 'w' || t2 == 'w')
AsmSwap('w');
else
AsmSwap('b');
/* Dividendo _REAL_ sempre será LONG...
mas WORD se divisor for BYTE */
if (t2 == 'b')
AsmConvert(t1, 'w');
else
AsmConvert(t1, 'l');
/* Se um dos operandos for LONG, divisão de 32-bits */
if (t1 == 'l' || t2 == 'l')
EmitLn("CALL DIV32");
else if (t2 == 'w') /* 32 / 16 */
EmitLn("IDIV BX");
else if (t2 == 'b') /* 16 / 8 */
EmitLn("IDIV BL");
/* Tipo do quociente é sempre igual ao do dividendo */
return t1;
}
/* Testa operadores de adição */
int IsAddOp(char c)
{
return (c == '+' || c == '-');
}
/* Testa operadores de multiplicação */
int IsMulOp(char c)
{
return (c == '*' || c == '/');
}
/* Testa operadores OU */
int IsOrOp(char c)
{
return (c == '|' || c == '~');
}
/* Testa operadores relacionais */
int IsRelOp(char c)
{
return (c == '=' || c == '#' || c == '<' || c == '>');
}
/* Reconhece um tipo de variável válido */
int IsVarType(char c)
{
return (c == 'b' || c == 'w' || c == 'l');
}
/* Pula caracteres em branco */
void SkipWhite()
{
while (Look == ' ' || Look == '\t')
NextChar();
}
/* Reconhece uma quebra de linha */
void NewLine()
{
if (Look == '\n')
NextChar();
}
/* Verifica se Look combina com caractere esperado */
void Match(char c)
{
if (Look != c)
Expected("'%c'", c);
NextChar();
SkipWhite();
}
/* Analisa e traduz um nome (identificador ou palavra-chave) */
char GetName()
{
char name;
if (!isalpha(Look))
Expected("Name");
name = toupper(Look);
NextChar();
SkipWhite();
return name;
}
/* Analisa e traduz um número inteiro longo */
long GetNum()
{
long num;
if (!isdigit(Look))
Expected("Integer");
num = 0;
while (isdigit(Look)) {
num *= 10;
num += Look - '0';
NextChar();
}
SkipWhite();
return num;
}
/* Aloca espaço de armazenamento para variável */
void AllocVar(char name, char type)
{
AddEntry(name, type);
AsmAllocVar(name, type);
}
/* Carrega variável */
char LoadVar(char name)
{
char type = VarType(name);
AsmLoadVar(name, type);
return type;
}
/* Carrega uma constante no registrador primário */
char LoadNum(long val)
{
char type;
if (val >= -128 && val <= 127)
type = 'b';
else if (val >= -32768 && val <= 32767)
type = 'w';
else
type = 'l';
AsmLoadConst(val, type);
return type;
}
/* Armazena variável */
void StoreVar(char name, char srcType)
{
char dstType = VarType(name);
AsmConvert(srcType, dstType);
AsmStoreVar(name, dstType);
}
/* Avisa a respeito de um identificador que não é uma variável */
void NotVar(char name)
{
Abort("'%c' is not a variable", name);
}
/* Pega o tipo da variável da tabela de símbolos */
char VarType(char name)
{
char type;
type = SymbolType(name);
if (!IsVarType(type))
NotVar(name);
return type;
}
/* Analisa e traduz uma declaração de variável */
void Declaration()
{
char type = Look;
NextChar();
AllocVar(GetName(), type);
}
/* Analisa e traduz as declarações globais */
void TopDeclarations()
{
while (Look != 'B') {
switch (Look) {
case 'b':
case 'w':
case 'l':
Declaration();
break;
default:
Unrecognized(Look);
break;
}
NewLine();
}
}
/* Tratamento de operador unário */
char UnaryOp()
{
AsmClear();
return 'w';
}
/* Analisa e traduz um fator matemático */
char Factor()
{
char type;
if (Look == '(') {
Match('(');
type = Expression();
Match(')');
} else if (isalpha(Look))
type = LoadVar(GetName());
else
type = LoadNum(GetNum());
return type;
}
/* Reconhece e traduz uma multiplicação */
char Multiply(char type)
{
Match('*');
return AsmPopMul(type, Factor());
}
/* Reconhece e traduz uma multiplicação */
char Divide(char type)
{
Match('/');
return AsmPopDiv(type, Factor());
}
/* Analisa e traduz um termo matemático */
char Term()
{
char type;
type = Factor();
while (IsMulOp(Look)) {
AsmPush(type);
switch (Look) {
case '*':
type = Multiply(type);
break;
case '/':
type = Divide(type);
break;
}
}
return type;
}
/* Reconhece e traduz uma soma */
char Add(char type)
{
Match('+');
return AsmPopAdd(type, Term());
}
/* Reconhece e traduz uma subtração */
char Subtract(char type)
{
Match('-');
return AsmPopSub(type, Term());
}
/* Analisa e traduz uma expressão */
char Expression()
{
char type;
if (IsAddOp(Look))
type = UnaryOp();
else
type = Term();
while (IsAddOp(Look)) {
AsmPush(type);
switch (Look) {
case '+':
type = Add(type);
break;
case '-':
type = Subtract(type);
break;
}
}
return type;
}
/* Analisa e traduz uma atribuição */
void Assignment()
{
char name, type;
name = GetName();
Match('=');
type = Expression();
StoreVar(name, type);
}
/* Analisa e traduz um bloco de comandos */
void Block()
{
while (Look != '.') {
Assignment();
NewLine();
}
}