-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathholeyc.yy
457 lines (422 loc) · 10.3 KB
/
holeyc.yy
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
%skeleton "lalr1.cc"
%require "3.0"
%debug
%defines
%define api.namespace{holeyc}
%define parser_class_name {Parser} /* parser_class_name */
%define parse.error verbose
%output "parser.cc"
%token-table
%code requires{
#include <list>
#include "tokens.hpp"
#include "ast.hpp"
namespace holeyc {
class Scanner;
}
//The following definition is required when
// we don't have the %locations directive
# ifndef YY_NULLPTR
# if defined __cplusplus && 201103L <= __cplusplus
# define YY_NULLPTR nullptr
# else
# define YY_NULLPTR 0
# endif
# endif
//End "requires" code
}
%parse-param { holeyc::Scanner &scanner }
%parse-param { holeyc::ProgramNode** root }
%code{
// C std code for utility functions
#include <iostream>
#include <cstdlib>
#include <fstream>
// Our code for interoperation between scanner/parser
#include "scanner.hpp"
#include "ast.hpp"
#include "tokens.hpp"
//Request tokens from our scanner member, not
// from a global function
#undef yylex
#define yylex scanner.yylex
}
%union {
bool transBool;
holeyc::Token* transToken;
holeyc::IDToken* transIDToken;
holeyc::IntLitToken* transIntToken;
holeyc::StrToken* transStrToken;
holeyc::CharLitToken* transCharToken;
holeyc::ProgramNode* transProgram;
std::list<holeyc::DeclNode *> * transDeclList;
holeyc::DeclNode * transDecl;
holeyc::VarDeclNode * transVarDecl;
std::list<holeyc::FormalDeclNode *> * transFormals;
holeyc::FormalDeclNode * transFormal;
holeyc::TypeNode * transType;
holeyc::LValNode * transLVal;
holeyc::IDNode * transID;
holeyc::FnDeclNode * transFn;
std::list<holeyc::VarDeclNode *> * transVarDecls;
std::list<holeyc::StmtNode *> * transStmts;
holeyc::StmtNode * transStmt;
holeyc::ExpNode * transExp;
holeyc::AssignExpNode * transAssignExp;
holeyc::CallExpNode * transCallExp;
std::list<holeyc::ExpNode *> * transActuals;
}
%define parse.assert
%token END 0 "end file"
%token <transToken> AND
%token <transToken> AT
%token <transToken> ASSIGN
%token <transToken> BOOL
%token <transToken> BOOLPTR
%token <transToken> CARAT
%token <transToken> CHAR
%token <transCharToken> CHARLIT
%token <transToken> CHARPTR
%token <transToken> COMMA
%token <transToken> CROSS
%token <transToken> CROSSCROSS
%token <transToken> DASH
%token <transToken> DASHDASH
%token <transToken> ELSE
%token <transToken> EQUALS
%token <transToken> FALSE
%token <transToken> FROMCONSOLE
%token <transIDToken> ID
%token <transToken> IF
%token <transToken> INT
%token <transIntToken> INTLITERAL
%token <transToken> INTPTR
%token <transToken> GREATER
%token <transToken> GREATEREQ
%token <transToken> LBRACE
%token <transToken> LCURLY
%token <transToken> LESS
%token <transToken> LESSEQ
%token <transToken> LPAREN
%token <transToken> NOT
%token <transToken> NOTEQUALS
%token <transToken> NULLPTR
%token <transToken> OR
%token <transToken> RBRACE
%token <transToken> RCURLY
%token <transToken> RETURN
%token <transToken> RPAREN
%token <transToken> SEMICOLON
%token <transToken> SLASH
%token <transToken> STAR
%token <transStrToken> STRLITERAL
%token <transToken> TOCONSOLE
%token <transToken> TRUE
%token <transToken> VOID
%token <transToken> WHILE
%type <transProgram> program
%type <transDeclList> globals
%type <transDecl> decl
%type <transVarDecl> varDecl
%type <transType> type
%type <transLVal> lval
%type <transID> id
%type <transFn> fnDecl
%type <transFormals> formals
%type <transFormals> formalsList
%type <transFormal> formalDecl
%type <transStmts> fnBody
%type <transStmts> stmtList
%type <transStmt> stmt
%type <transAssignExp> assignExp
%type <transExp> exp
%type <transExp> term
%type <transCallExp> callExp
%type <transActuals> actualsList
/* NOTE: Make sure to add precedence and associativity
* declarations
*/
%right ASSIGN
%left OR
%left AND
%nonassoc LESS GREATER LESSEQ GREATEREQ EQUALS NOTEQUALS
%left DASH CROSS
%left STAR SLASH
%left NOT
%left AT CARAT
%%
program : globals
{
$$ = new ProgramNode($1);
*root = $$;
}
globals : globals decl
{
$$ = $1;
DeclNode * declNode = $2;
$$->push_back(declNode);
}
| /* epsilon */
{
$$ = new std::list<DeclNode * >();
}
decl : varDecl SEMICOLON
{ $$ = $1; }
| fnDecl
{ $$ = $1; }
varDecl : type id
{
size_t line = $1->line();
size_t col = $1->col();
$$ = new VarDeclNode(line, col, $1, $2);
}
type : INT
{
$$ = new IntTypeNode($1->line(), $1->col(), false);
}
| INTPTR
{
$$ = new IntTypeNode($1->line(), $1->col(), true);
}
| BOOL
{
$$ = new BoolTypeNode($1->line(), $1->col(), false);
}
| BOOLPTR
{
$$ = new BoolTypeNode($1->line(), $1->col(), true);
}
| CHAR
{
$$ = new CharTypeNode($1->line(), $1->col(), false);
}
| CHARPTR
{
$$ = new CharTypeNode($1->line(), $1->col(), true);
}
| VOID
{
$$ = new VoidTypeNode($1->line(), $1->col());
}
fnDecl : type id formals fnBody
{
$$ = new FnDeclNode($1->line(), $1->col(),
$1, $2, $3, $4);
}
formals : LPAREN RPAREN
{
$$ = new std::list<FormalDeclNode *>();
}
| LPAREN formalsList RPAREN
{
$$ = $2;
}
formalsList : formalDecl
{
$$ = new std::list<FormalDeclNode *>();
$$->push_back($1);
}
| formalDecl COMMA formalsList
{
$$ = $3;
$$->push_front($1);
}
formalDecl : type id
{
$$ = new FormalDeclNode($1->line(), $1->col(),
$1, $2);
}
fnBody : LCURLY stmtList RCURLY
{
$$ = $2;
}
stmtList : /* epsilon */
{
$$ = new std::list<StmtNode *>();
//$$->push_back($1);
}
| stmtList stmt
{
$$ = $1;
$$->push_back($2);
}
stmt : varDecl SEMICOLON
{
$$ = $1;
}
| assignExp SEMICOLON
{
$$ = new AssignStmtNode($1->line(), $1->col(), $1);
}
| lval DASHDASH SEMICOLON
{
$$ = new PostDecStmtNode($2->line(), $2->col(), $1);
}
| lval CROSSCROSS SEMICOLON
{
$$ = new PostIncStmtNode($2->line(), $2->col(), $1);
}
| FROMCONSOLE lval SEMICOLON
{
$$ = new FromConsoleStmtNode($1->line(), $1->col(), $2);
}
| TOCONSOLE exp SEMICOLON
{
$$ = new ToConsoleStmtNode($1->line(), $1->col(), $2);
}
| IF LPAREN exp RPAREN LCURLY stmtList RCURLY
{
$$ = new IfStmtNode($1->line(), $1->col(), $3, $6);
}
| IF LPAREN exp RPAREN LCURLY stmtList RCURLY ELSE LCURLY stmtList RCURLY
{
$$ = new IfElseStmtNode($1->line(), $1->col(), $3,
$6, $10);
}
| WHILE LPAREN exp RPAREN LCURLY stmtList RCURLY
{
$$ = new WhileStmtNode($1->line(), $1->col(), $3, $6);
}
| RETURN exp SEMICOLON
{
$$ = new ReturnStmtNode($1->line(), $1->col(), $2);
}
| RETURN SEMICOLON
{
$$ = new ReturnStmtNode($1->line(), $1->col(), nullptr);
}
| callExp SEMICOLON
{ $$ = new CallStmtNode($1->line(), $1->col(), $1); }
exp : assignExp
{ $$ = $1; }
| exp DASH exp
{
$$ = new MinusNode($2->line(), $2->col(), $1, $3);
}
| exp CROSS exp
{
$$ = new PlusNode($2->line(), $2->col(), $1, $3);
}
| exp STAR exp
{
$$ = new TimesNode($2->line(), $2->col(), $1, $3);
}
| exp SLASH exp
{
$$ = new DivideNode($2->line(), $2->col(), $1, $3);
}
| exp AND exp
{
$$ = new AndNode($2->line(), $2->col(), $1, $3);
}
| exp OR exp
{
$$ = new OrNode($2->line(), $2->col(), $1, $3);
}
| exp EQUALS exp
{
$$ = new EqualsNode($2->line(), $2->col(), $1, $3);
}
| exp NOTEQUALS exp
{
$$ = new NotEqualsNode($2->line(), $2->col(), $1, $3);
}
| exp GREATER exp
{
$$ = new GreaterNode($2->line(), $2->col(), $1, $3);
}
| exp GREATEREQ exp
{
$$ = new GreaterEqNode($2->line(), $2->col(), $1, $3);
}
| exp LESS exp
{
$$ = new LessNode($2->line(), $2->col(), $1, $3);
}
| exp LESSEQ exp
{
$$ = new LessEqNode($2->line(), $2->col(), $1, $3);
}
| NOT exp
{
$$ = new NotNode($1->line(), $1->col(), $2);
}
| DASH term
{
$$ = new NegNode($1->line(), $1->col(), $2);
}
| term
{ $$ = $1; }
assignExp : lval ASSIGN exp
{
$$ = new AssignExpNode($2->line(), $2->col(), $1, $3);
}
callExp : id LPAREN RPAREN
{
std::list<ExpNode *> * noargs =
new std::list<ExpNode *>();
$$ = new CallExpNode($1->line(), $1->col(), $1, noargs);
}
| id LPAREN actualsList RPAREN
{
$$ = new CallExpNode($1->line(), $1->col(), $1, $3);
}
actualsList : exp
{
std::list<ExpNode *> * list =
new std::list<ExpNode *>();
list->push_back($1);
$$ = list;
}
| actualsList COMMA exp
{
$$ = $1;
$$->push_back($3);
}
term : lval
{ $$ = $1; }
| callExp
{
$$ = $1;
}
| NULLPTR
{
$$ = new NullPtrNode($1->line(), $1->col());
}
| INTLITERAL
{ $$ = new IntLitNode($1->line(), $1->col(), $1->num()); }
| STRLITERAL
{ $$ = new StrLitNode($1->line(), $1->col(), $1->str()); }
| CHARLIT
{ $$ = new CharLitNode($1->line(), $1->col(), $1->val()); }
| TRUE
{ $$ = new TrueNode($1->line(), $1->col()); }
| FALSE
{ $$ = new FalseNode($1->line(), $1->col()); }
| LPAREN exp RPAREN
{ $$ = $2; }
lval : id
{
$$ = $1;
}
| id LBRACE exp RBRACE
{
$$ = new IndexNode($1->line(), $1->col(), $1, $3);
}
| AT id
{
$$ = new DerefNode($1->line(), $1->col(), $2);
}
| CARAT id
{
$$ = new RefNode($1->line(), $1->col(), $2);
}
id : ID
{
$$ = new IDNode($1->line(), $1->col(), $1->value());
}
%%
void holeyc::Parser::error(const std::string& msg){
std::cout << msg << std::endl;
std::cerr << "syntax error" << std::endl;
}