-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhoc.y
More file actions
404 lines (369 loc) · 10.8 KB
/
hoc.y
File metadata and controls
404 lines (369 loc) · 10.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
%{
#include "hoc.h"
#include <stdio.h>
#include <string.h>
//#include <gperftools/profiler.h>
#define code2(c1, c2) code(c1);code(c2);
#define code3(c1, c2, c3) code(c1);code(c2);code(c3);
void execerror(char* s, char* t);
void yyerror(char* s);
void defonly(const char* s);
int indef; // if is in function/procedure definition
%}
%union {
Symbol* sym; // symbol table pointer
Inst* inst; // machine instruction
int narg; // number of arguments
}
%token <sym> NUMBER STRING PRINT VAR CONST BLTIN UNDEF WHILE IF ELSE
%token <sym> FUNCTION PROCEDURE RETURN FUNC PROC READ
%token <narg> ARG
%type <inst> stmt asgn expr stmtlist prlist
%type <inst> cond while if begin end
%type <sym> procname
%type <sym> paramlist
%type <narg> arglist
%right '='
%left OR
%left AND
%left GT GE LT LE EQ NE
%left '+' '-' // left associative, same precedence
%left '*' '/'
%left UNARYMINUS NOT
%right '^' // exponentiation
%%
list: // nothing
| list '\n'
| list defn '\n'
| list asgn '\n' { code2(pop, STOP); return 1;}
| list stmt '\n' { code(STOP); return 1;}
| list expr '\n' { code2(print, STOP); return 1;}
| list error '\n' { yyerrok; }
;
asgn: VAR '=' expr { $$=$3; code3(varpush, (Inst)$1, assign); }
| CONST '=' expr { execerror("cannot assign to const value", $1->name); }
| ARG '=' expr { defnonly("$"); code2(argassign,(Inst)$1); $$=$3; }
;
stmt: ';'
| expr ';' { code(pop); }
| RETURN ';' { defnonly("return"); code(procret); }
| RETURN expr ';' { defnonly("return"); $$=$2; code(funcret); }
| PROCEDURE begin '(' arglist ')' ';'
{ $$=$2; code3(call, (Inst)$1, (Inst)$4); }
| PRINT '(' prlist ')' ';' { $$=$3; }
| while cond stmt end {
($1)[1] = (Inst)$3; // body of loop
($1)[2] = (Inst)$4; // end, if cond fails
}
| if cond stmt end { // else-less if
($1)[1] = (Inst)$3; // then part
($1)[3] = (Inst)$4; // end, if cond fails
}
| if cond stmt end ELSE stmt end { // if with else
($1)[1] = (Inst)$3; // then part
($1)[2] = (Inst)$6; // else part
($1)[3] = (Inst)$7; // end, if cond fails
}
| '{' stmtlist '}' { $$ = $2; }
;
cond: '(' expr ')' { code(STOP); $$ = $2; }
;
while: WHILE { $$=code3(whilecode, STOP, STOP); }
;
if: IF { $$=code(ifcode); code3(STOP, STOP, STOP); }
;
end: /*nothing*/ { code(STOP); $$=progp; }
;
stmtlist: /*nothing*/ { $$=progp; }
| stmtlist '\n'
| stmtlist stmt
;
expr: NUMBER { $$ = code2(constpush, (Inst)$1); }
| VAR { // do NOT check type, because the var defined sub-procedure is not
// assigned when parse, it's type is still UNDEF before proc is called.
$$ = code3(varpush, (Inst)$1, eval); }
| CONST { $$ = code3(varpush, (Inst)$1, eval); }
| ARG { defnonly("$"); $$ = code2(arg, (Inst)$1); }
| asgn
| FUNCTION begin '(' arglist ')'
{ $$ = $2; code3(call, (Inst)$1, (Inst)$4); }
| READ '(' VAR ')' { $$ = code2(varread, (Inst)$3); }
| BLTIN '(' arglist ')' { $$ = $3; code3(bltin, (Inst)$1->u.ptr, (Inst)$3); }
| '(' expr ')' { $$ = $2; }
| expr '+' expr { code(add); }
| expr '-' expr { code(sub); }
| expr '*' expr { code(mul); }
| expr '/' expr { code(hocDiv); }
| expr '^' expr { code(power); }
| '-' expr %prec UNARYMINUS { $$ = $2; code(negate); } // unary minus
| expr GT expr { code(gt); }
| expr GE expr { code(ge); }
| expr LT expr { code(lt); }
| expr LE expr { code(le); }
| expr EQ expr { code(eq); }
| expr NE expr { code(ne); }
| expr AND expr { code(hocAnd); }
| expr OR expr { code(hocOr); }
| NOT expr { $$ = $2; code(hocNot); }
;
begin: /*nothing*/ { $$ = progp; }
;
prlist: expr { code(printexpr); }
| STRING { $$ = code2(printstr, (Inst)$1); }
| prlist ',' expr { code(printexpr); }
| prlist ',' STRING { code2(printstr, (Inst)$3); }
;
// [oak] why also insert code(procret), and both proc and func insert the same code(procret)?
// [oak] to handle the case that user does NOT 'return' in func?
// TODO: use a flag to indicate if is declaring parameter.
defn: FUNC procname { $2->type=FUNCTION; pushLocalEnv($2); indef=1; }
'(' paramlist ')' stmt { code(procret); define($2, $5); popEnv(); indef=0; }
| PROC procname { $2->type=PROCEDURE; indef=1; }
'(' ')' stmt { code(procret); define($2, NULL); indef=0; }
;
procname: VAR
| FUNCTION
| PROCEDURE
;
arglist: /*nothing*/ { $$ = 0; }
| expr { $$ = 1; }
| arglist ',' expr { $$ = $1 + 1; }
;
paramlist: /*nothing*/ { $$ = NULL; }
| VAR { $$ = $1; }
| paramlist ',' VAR { $$ = $3; }
;
%%
/* end of grammer */
#include <stdio.h>
#include <ctype.h>
#include <signal.h>
#include <setjmp.h>
char *progname; // for error messages
int lineno = 1;
jmp_buf begin;
static int s_argc; // argument number (except the program itself)
static char** s_argv;
static char* s_infile; // input file name
FILE* fin; // input file pointer
char c; // global, for use in warning()
void fprecatch(int signum);
/**
* return 1 if has more, otherwise 0.
*/
int moreinput()
{
if (s_argc-- <= 0) {
return 0;
}
if (fin && fin != stdin) {
fclose(fin);
fin = NULL;
}
s_infile = *s_argv++;
lineno = 1;
if (strcmp(s_infile, "-") == 0) {
fin = stdin;
s_infile = NULL;
} else if ((fin = fopen(s_infile, "r")) == NULL) {
fprintf(stderr, "%s: can't open %s\n", progname, s_infile);
return moreinput();
}
return 1;
}
/**
* execute until EOF
* TODO: move this function to code.c?
*/
static void execute_until_eof()
{
setjmp(begin);
signal(SIGFPE, fprecatch);
for (initcode(); yyparse(); initcode()) {
// BAI: attention, here use progbase rather than prog in hoc6.
printf("execute_until_eof(), progbase = %p\n", progbase);
execute(progbase);
}
}
static int follow(char expect, int ifyes, int ifno)
{
int c = getc(fin);
if (c == expect) {
return ifyes;
}
ungetc(c, fin);
return ifno;
}
static int look_ahead()
{
int c = getc(fin);
ungetc(c, fin);
return c;
}
int main(int argc, char** argv)
{
//ProfilerStart("my.prof");
progname = argv[0];
if (argc == 1) {
static char* stdinonly[] = {"-"};
s_argv = stdinonly;
s_argc = 1;
} else {
s_argc = argc - 1;
s_argv = argv + 1;
}
init();
while (moreinput()) {
execute_until_eof();
}
return 0;
//ProfilerStop();
}
static int mygetc(FILE* stream) {
int c = getc(stream);
printf("##%c\n", c);
return c;
}
int yylex()
{
while ((c = mygetc(fin)) == ' ' || c == '\t')
;
if (c == EOF) {
return 0;
}
// handle comment '//'
if (c == '/') {
if (look_ahead() == '/') {
while ((c = mygetc(fin)) != '\n' && c != EOF) {
;
}
if (c == '\n') {
lineno++;
}
return c;
}
}
if (c == '.' || isdigit(c)) {
double d;
ungetc(c, fin);
fscanf(fin, "%lf", &d);
yylval.sym = install("", NUMBER, d);
return NUMBER;
}
if (isalpha(c)) {
Symbol* s;
char sbuf[100];
char* p = sbuf;
do {
*p++ = c;
} while ((c = mygetc(fin)) != EOF && isalnum(c));
ungetc(c, fin);
*p = '\0';
s = lookup(sbuf);
if (strcmp(sbuf, "arg1") == 0 || strcmp(sbuf, "arg2") == 0) {
printf("lookup %s, result = %p\n", sbuf, s);
}
if (s == NULL) {
s = install(sbuf, UNDEF, 0.0);
}
printf("sbuf = %s, type = %d\n", sbuf, s->type);
yylval.sym = s;
return s->type == UNDEF ? VAR : s->type;
}
if (c == '$') {
// argument?
int n = 0;
while (isdigit(c=mygetc(fin))) {
n = 10 * n + c - '0';
}
ungetc(c, fin);
if (n == 0) {
execerror("strange $...", NULL);
}
yylval.narg = n;
return ARG;
}
if (c == '"') {
// quoted string
char sbuf[100];
char* p;
for (p = sbuf; (c=mygetc(fin)) != '"'; p++) {
if (c == '\n' || c == EOF) {
execerror("missing quote", "");
}
if (p >= sbuf + sizeof(sbuf) - 1) {
*p = '\0';
execerror("string too long", sbuf);
}
*p = backslash(c);
}
*p = '\0';
yylval.sym = (Symbol*)emalloc(strlen(sbuf)+1);
strcpy((char*)yylval.sym, sbuf);
return STRING;
}
switch (c) {
case '>': return follow('=', GE, GT);
case '<': return follow('=', LE, LT);
case '=': return follow('=', EQ, '=');
case '!': return follow('=', NE, NOT);
case '|': return follow('|', OR, '|');
case '&': return follow('&', AND, '&');
case '\n': printf("lineno = %d\n", lineno); lineno++; return '\n';
default: return c;
}
}
/**
* get next char with \ interpreted
*/
int backslash(int c)
{
static char transTable[] = "b\bf\fn\nr\rt\t";
if (c != '\\') {
return c;
}
c = mygetc(fin);
if (islower(c) && strchr(transTable, c) != NULL) {
return strchr(transTable, c)[1];
}
return c;
}
void warning(char* s, char* t)
{
fprintf(stderr, "%s: %s", progname, s);
if (t) {
fprintf(stderr, " %s", t);
}
if (s_infile) {
fprintf(stderr, " in %s", s_infile);
}
fprintf(stderr, " near line: %d\n", lineno);
while (c != '\n' && c != EOF) {
c = getc(fin);
}
if (c == '\n') {
lineno++;
}
}
void yyerror(char* s)
{
warning(s, (char*)0);
}
void execerror(char* s, char* t)
{
warning(s, t);
longjmp(begin, 0);
}
void fprecatch(int signum) // catch floating point exceptions
{
execerror("floating point exception", (char*)0);
}
/**
* warn if illegal definition
*/
void defnonly(const char* s)
{
if (!indef) {
execerror("s", "used outside definition");
}
}