-
Notifications
You must be signed in to change notification settings - Fork 1
/
cap05-control.c
373 lines (314 loc) · 6.2 KB
/
cap05-control.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
/*
Estruturas de controle
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) */
int LabelCount; /* Contador usado pelo gerador de rótulos */
/* Protótipos */
void Init();
void NextChar();
void Error(char *fmt, ...);
void Abort(char *fmt, ...);
void Expected(char *fmt, ...);
void Match(char c);
char GetName();
char GetNum();
void EmitLn(char *fmt, ...);
int NewLabel();
void PostLabel(int lbl);
void Condition();
void Expression();
void Other();
void DoIf(int exitLabel);
void DoWhile();
void DoLoop();
void DoRepeat();
void DoFor();
void DoDo();
void DoBreak(int exitLabel);
void Block(int exitLabel);
void Program();
/* Programa principal */
int main()
{
Init();
Program();
return 0;
}
/* Inicialização do compilador */
void Init()
{
LabelCount = 0;
NextChar();
}
/* Lê próximo caractere da entrada */
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);
}
/* Verifica se entrada combina com o esperado */
void Match(char c)
{
if (Look != c)
Expected("'%c'", c);
NextChar();
}
/* Recebe o nome de um identificador */
char GetName()
{
char name;
if (!isupper(Look))
Expected("Name");
name = Look;
NextChar();
return name;
}
/* Recebe um número inteiro */
char GetNum()
{
char num;
if (!isdigit(Look))
Expected("Integer");
num = Look;
NextChar();
return num;
}
/* 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');
}
/* Gera um novo rótulo único */
int NewLabel()
{
return LabelCount++;
}
/* Emite um rótulo */
void PostLabel(int lbl)
{
printf("L%d:\n", lbl);
}
/* Analisa e traduz uma condição */
void Condition()
{
EmitLn("; condition");
}
/* Analisa e traduz uma expressão */
void Expression()
{
EmitLn("; expression");
}
/* Reconhece e traduz um comando qualquer */
void Other()
{
EmitLn("; %c", GetName());
}
/* Analisa e traduz um comando IF */
void DoIf(int exitLabel)
{
int l1, l2;
Match('i');
Condition();
l1 = NewLabel();
l2 = l1;
EmitLn("JZ L%d", l1);
Block(exitLabel);
if (Look == 'l') {
Match('l');
l2 = NewLabel();
EmitLn("JMP L%d", l2);
PostLabel(l1);
Block(exitLabel);
}
Match('e');
PostLabel(l2);
}
/* Analisa e traduz um comando WHILE */
void DoWhile()
{
int l1, l2;
Match('w');
l1 = NewLabel();
l2 = NewLabel();
PostLabel(l1);
Condition();
EmitLn("JZ L%d", l2);
Block(l2);
Match('e');
EmitLn("JMP L%d", l1);
PostLabel(l2);
}
/* Analisa e traduz um comando LOOP*/
void DoLoop()
{
int l1, l2;
Match('p');
l1 = NewLabel();
l2 = NewLabel();
PostLabel(l1);
Block(l2);
Match('e');
EmitLn("JMP L%d", l1);
PostLabel(l2);
}
/* Analisa e traduz um REPEAT-UNTIL*/
void DoRepeat()
{
int l1, l2;
Match('r');
l1 = NewLabel();
l2 = NewLabel();
PostLabel(l1);
Block(l2);
Match('u');
Condition();
EmitLn("JZ L%d", l1);
PostLabel(l2);
}
/* Analisa e traduz um comando FOR*/
void DoFor()
{
int l1, l2;
char name;
Match('f');
l1 = NewLabel();
l2 = NewLabel();
name = GetName();
Match('=');
Expression();
EmitLn("DEC AX");
EmitLn("MOV [%c], AX", name);
Expression();
EmitLn("PUSH AX");
PostLabel(l1);
EmitLn("MOV AX, [%c]", name);
EmitLn("INC AX");
EmitLn("MOV [%c], AX", name);
EmitLn("POP BX");
EmitLn("PUSH BX");
EmitLn("CMP AX, BX");
EmitLn("JG L%d", l2);
Block(l2);
Match('e');
EmitLn("JMP L%d", l1);
PostLabel(l2);
EmitLn("POP AX");
}
/* Analisa e traduz um comando DO */
void DoDo()
{
int l1, l2;
Match('d');
l1 = NewLabel();
l2 = NewLabel();
Expression();
EmitLn("MOV CX, AX");
PostLabel(l1);
EmitLn("PUSH CX");
Block(l2);
Match('e');
EmitLn("POP CX");
EmitLn("LOOP L%d", l1);
EmitLn("PUSH CX");
PostLabel(l2);
EmitLn("POP CX");
}
/* Analisa e traduz um comando BREAK */
void DoBreak(int exitLabel)
{
Match('b');
if (exitLabel == -1)
Abort("No loop to break from.");
EmitLn("JMP L%d", exitLabel);
}
/* Analisa e traduz um bloco de comandos */
void Block(int exitLabel)
{
int follow;
follow = 0;
while (!follow) {
switch (Look) {
case 'i':
DoIf(exitLabel);
break;
case 'w':
DoWhile();
break;
case 'p':
DoLoop();
break;
case 'r':
DoRepeat();
break;
case 'f':
DoFor();
break;
case 'd':
DoDo();
break;
case 'b':
DoBreak(exitLabel);
break;
case 'e':
case 'l':
case 'u':
follow = 1;
break;
default:
Other();
break;
}
}
}
/* Analisa e traduz um programa completo */
void Program()
{
Block(-1);
if (Look != 'e')
Expected("End");
EmitLn("; END");
}