-
Notifications
You must be signed in to change notification settings - Fork 0
/
sprola.y
453 lines (397 loc) · 8.58 KB
/
sprola.y
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
/* Signal PROcessing LAnguage */
%{
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
// use GNU version
#define _GNU_SOURCE
#include <libgen.h>
#include <string.h>
#include "ast.h"
#include "codegen.h"
#include "sprola.h"
#include "utils.h"
char current_filename[MAX_FILENAME_SIZE]; // read source from here
int verbose_flag = 0;
int ll_flag = 0;
void printrefs();
void emit_code(struct ast *a);
struct symbol *lookup(char* sym);
/* Forward declaration for routines defined below in code section */
void yyerror(char const*);
%}
/* These are the possible value types returned by the lexer for tokens */
%union {
int ival;
float fval;
char* sval;
struct ast *a;
struct symbol *sym;
}
/* -------- declare tokens ----------------------------------*/
%token KW_For "for"
%token KW_If "if"
%token KW_Else "else"
%token T_Option
%token T_Id
%token T_Type
%token T_Audio_In
%token T_Audio_Out
%token T_Control_In
%token T_URI
%token T_OpenP "("
%token T_CloseP ")"
%token T_OpenCB "{"
%token T_CloseCB "}"
%token T_Equal "="
%token T_OpenBr "["
%token T_CloseBR "]"
%token T_Plus "+"
%token T_Minus "-"
%token T_LessThan "<"
%token T_GreaterThan ">"
%token T_Semicolon ";"
%token <ival> T_Integer
%token <fval> T_Float
%token T_String
%type <sval> T_Type
%type <a> statements statement assignment options option
%type <a> factor term expr expra function code_block
%type <a> functions variable_declaration variable_declarations
%type <a> array_reference condition for_statement program
%type <a> if_statement
%type <sym> T_Id T_String
%debug
%start program
%%
/*----------------------------------------------------------------------------*/
/* Start of rules section */
/*----------------------------------------------------------------------------*/
program
: options variable_declarations functions
{
$$ = newprogram($1, $2, $3);
if (verbose_flag) {
printrefs();
printf(">>>\nDump AST\n");
dumpast($$, 1);
printf(">>>\n");
}
emit_code($$);
}
| options functions
{
$$ = newprogram($1, NULL, $2);
if (verbose_flag) {
printrefs();
printf(">>>\nDump AST\n");
dumpast($$, 1);
printf(">>>\n");
}
emit_code($$);
}
| variable_declarations functions
{
$$ = newprogram(NULL, $1, $2);
if (verbose_flag) {
printrefs();
printf(">>>\nDump AST\n");
dumpast($$, 1);
printf(">>>\n");
}
emit_code($$);
}
| functions
{
$$ = newprogram(NULL, NULL, $1);
if (verbose_flag) {
printrefs();
printf(">>>\nDump AST\n");
dumpast($$, 1);
printf(">>>\n");
}
emit_code($<a>1);
}
;
options
: options option
{
$$ = newast(N_options, $1, $2);
}
| option
{
$$ = newast(N_options, NULL, $1);
}
;
option
: T_Option T_Audio_In T_Id T_Float
{
$$ = newoption(OPT_audio_input, newsymref($3), newfloat($4), NULL, NULL);
}
| T_Option T_Audio_Out T_Id
{
$$ = newoption(OPT_audio_output, newsymref($3), NULL, NULL, NULL);
}
| T_Option T_Control_In T_Id
{
$$ = newoption(OPT_control_in, newsymref($3), newfloat(0.5), newfloat(0.0), newfloat(1.0));
}
| T_Option T_Control_In T_Id T_Float
{
$$ = newoption(OPT_control_in, newsymref($3), newfloat($4), newfloat(0.0), newfloat(1.0));
}
| T_Option T_Control_In T_Id T_Float T_Float
{
$$ = newoption(OPT_control_in, newsymref($3), newfloat($4), newfloat($5), newfloat(1.0));
}
| T_Option T_Control_In T_Id T_Float T_Float T_Float
{
$$ = newoption(OPT_control_in, newsymref($3), newfloat($4), newfloat($5), newfloat($6));
}
| T_Option T_URI T_String
{
$$ = newoption(OPT_uri, newsymref($3), newfloat(0.0), newfloat(0.0), newfloat(0.0));
}
;
variable_declarations
: variable_declarations variable_declaration
{
$$ = newast(N_var_declarations, $1, $2);
}
| variable_declaration
{
$$ = $1;
}
;
variable_declaration
: T_Type T_Id T_Semicolon
{
$$ = newvardecl($1, newsymref($2));
}
;
functions
: functions function
{
$$ = newast(N_functions, $1, $2);
}
| function
{
$$ = $1;
}
;
function
: T_Type T_Id T_OpenP T_CloseP code_block
{
$$ = newfunction(TY_void, newsymref($2), $5);
}
;
code_block
: T_OpenCB variable_declarations statements T_CloseCB
{
$$ = newast(N_scope, $2, $3);
}
| T_OpenCB statements T_CloseCB
{
$$ = $2;
}
| T_OpenCB T_CloseCB { $$ = NULL; }
;
statements
: statements statement
{
$$ = newast(N_statement_list, $1, $2);
}
| statement
{
$$ = $1;
}
;
statement
: assignment T_Semicolon
{
$$ = $1;
}
| for_statement
{
$$ = $1;
}
| if_statement
{
$$ = $1;
}
;
assignment
: T_Id T_Equal expr
{
$$ = newasgn(newsymref($1), $3);
}
| array_reference T_Equal expr
{
$$ = newasgn($1, $3);
}
;
array_reference
: T_Id T_OpenBr expr T_CloseBR
{
$$ = newarrayref($1, $3);
}
;
condition
: expr T_LessThan expr
{
$$ = newlessthan($1, $3);
}
| expr T_GreaterThan expr
{
$$ = newgreaterthan($1, $3);
}
| expr T_Equal expr
{
$$ = newequals($1, $3);
}
;
for_statement
: KW_For T_OpenP assignment T_Semicolon
condition T_Semicolon
assignment T_CloseP code_block
{
$$ = newforloop($3, $5, $7, $9);
}
;
if_statement
: KW_If T_OpenP condition T_CloseP code_block
{
$$ = newifelse($3, $5, NULL);
}
| KW_If T_OpenP condition T_CloseP code_block KW_Else code_block
{
$$ = newifelse($3, $5, $7);
}
;
expr
: expra
{
$$ = $1;
}
;
expra
: expra T_Plus term
{
$$ = newast(N_add, $1, $3);
}
| expra T_Minus term
{
$$ = newast(N_subtract, $1, $3);
}
| term
{
$$ = $1;
}
;
term
: term '*' factor
{
$$ = newast(N_multiply, $1, $3);
}
| term '/' factor
{
$$ = newast(N_divide, $1, $3);
}
| factor
{
$$ = $1;
}
;
factor
: T_OpenP expr T_CloseP
{
$$ = $2;
}
| T_Minus factor
{
$$ = newast(N_negate, $2, NULL);
}
| T_Integer
{
$$ = newint($1);
}
| T_Float
{
$$ = newfloat($1);
}
| T_Id
{
$$ = newsymref($1);
}
| array_reference
{
$$ = (struct ast *)$1;
}
;
%%
/*----------------------------------------------------------------------------*/
/* Start of code section */
/*----------------------------------------------------------------------------*/
int main(int argc, char **argv)
{
int index;
int c;
verbose_flag = 0;
while ((c = getopt (argc, argv, "vhl")) != -1) {
switch (c) {
case 'v':
verbose_flag = 1;
break;
case 'h':
printf("usage: sprola [-v] [-h] source\n");
printf("-v turn on verbose output messages\n");
printf("-h print this message\n");
printf("-l generate human readable llvm code for inspection in <source>.ll\n");
break;
case 'l':
ll_flag = 1;
break;
case '?':
if (isprint(optopt)) {
fprintf(stderr, "Unknown option -%c\n", optopt);
fprintf(stderr, "use sprola -h for help\n");
} else {
fprintf(stderr, "Unknown option character `\\x%x'.\n", optopt);
fprintf(stderr, "use sprola -h for help\n");
}
return 1;
default:
abort();
}
}
memset(current_filename, 0, MAX_FILENAME_SIZE);
for (index = optind; index < argc; index++) {
if (current_filename[0] == 0) {
strncpy(current_filename, argv[index], MAX_FILENAME_SIZE);
} else {
fprintf(stderr, "Too many arguements\n");
fprintf(stderr, "use sprola -h for help\n");
}
}
if (current_filename[0] == 0) {
strncpy(current_filename, "stdin", MAX_FILENAME_SIZE);
} else {
if (!(yyin = fopen(current_filename, "r"))) {
perror(current_filename);
return (1);
}
}
build_names(current_filename, &names);
trace_file = fopen(names.trace_filename, "w");
fprintf(trace_file,"trace filename %s\n\n", names.trace_filename);
trace_flag = 1;
if (trace_file == NULL) {
fprintf(stderr, "error opening trace_file '%s'\n" , names.trace_filename);
}
yyparse();
}
void yyerror(char const* s)
{
fprintf(stderr, "error: %s on line %d token %s\n", s, yylineno, yytext);
}