-
Notifications
You must be signed in to change notification settings - Fork 0
/
Calc.y
669 lines (644 loc) · 14 KB
/
Calc.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
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
/* This Bison file was machine-generated by BNFC */
%{
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include "Absyn.H"
typedef struct yy_buffer_state *YY_BUFFER_STATE;
int yyparse(void);
int yylex(void);
YY_BUFFER_STATE yy_scan_string(const char *str);
void yy_delete_buffer(YY_BUFFER_STATE buf);
int yy_mylinenumber;
int initialize_lexer(FILE * inp);
int yywrap(void)
{
return 1;
}
void yyerror(const char *str)
{
extern char *yytext;
fprintf(stderr,"error: line %d: %s at %s\n",
yy_mylinenumber, str, yytext);
}
static Program* YY_RESULT_Program_ = 0;
Program* pProgram(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Program_;
}
}
Program* pProgram(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Program_;
}
}
static Dfn* YY_RESULT_Dfn_ = 0;
Dfn* pDfn(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Dfn_;
}
}
Dfn* pDfn(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Dfn_;
}
}
static Dmem* YY_RESULT_Dmem_ = 0;
Dmem* pDmem(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Dmem_;
}
}
Dmem* pDmem(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Dmem_;
}
}
static Def* YY_RESULT_Def_ = 0;
Def* pDef(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Def_;
}
}
Def* pDef(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Def_;
}
}
static ListDef* YY_RESULT_ListDef_ = 0;
ListDef* pListDef(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListDef_;
}
}
ListDef* pListDef(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListDef_;
}
}
static ListDfn* YY_RESULT_ListDfn_ = 0;
ListDfn* pListDfn(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListDfn_;
}
}
ListDfn* pListDfn(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListDfn_;
}
}
static ListDmem* YY_RESULT_ListDmem_ = 0;
ListDmem* pListDmem(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListDmem_;
}
}
ListDmem* pListDmem(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListDmem_;
}
}
static Arg* YY_RESULT_Arg_ = 0;
Arg* pArg(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Arg_;
}
}
Arg* pArg(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Arg_;
}
}
static ListArg* YY_RESULT_ListArg_ = 0;
ListArg* pListArg(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListArg_;
}
}
ListArg* pListArg(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListArg_;
}
}
static Stm* YY_RESULT_Stm_ = 0;
Stm* pStm(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Stm_;
}
}
Stm* pStm(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Stm_;
}
}
static ListStm* YY_RESULT_ListStm_ = 0;
ListStm* pListStm(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListStm_;
}
}
ListStm* pListStm(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListStm_;
}
}
static Exp* YY_RESULT_Exp_ = 0;
Exp* pExp(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Exp_;
}
}
Exp* pExp(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_Exp_;
}
}
static ListExp* YY_RESULT_ListExp_ = 0;
ListExp* pListExp(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListExp_;
}
}
ListExp* pListExp(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListExp_;
}
}
static ListId* YY_RESULT_ListId_ = 0;
ListId* pListId(FILE *inp)
{
yy_mylinenumber = 1;
initialize_lexer(inp);
if (yyparse())
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListId_;
}
}
ListId* pListId(const char *str)
{
YY_BUFFER_STATE buf;
int result;
yy_mylinenumber = 1;
initialize_lexer(0);
buf = yy_scan_string(str);
result = yyparse();
yy_delete_buffer(buf);
if (result)
{ /* Failure */
return 0;
}
else
{ /* Success */
return YY_RESULT_ListId_;
}
}
%}
%union
{
int int_;
char char_;
double double_;
char* string_;
Program* program_;
Dfn* dfn_;
Dmem* dmem_;
Def* def_;
ListDef* listdef_;
ListDfn* listdfn_;
ListDmem* listdmem_;
Arg* arg_;
ListArg* listarg_;
Stm* stm_;
ListStm* liststm_;
Exp* exp_;
ListExp* listexp_;
ListId* listid_;
}
%token _ERROR_
%token _SYMB_0 // (
%token _SYMB_1 // )
%token _SYMB_2 // {
%token _SYMB_3 // }
%token _SYMB_4 // :
%token _SYMB_5 // ;
%token _SYMB_6 // ,
%token _SYMB_7 // =
%token _SYMB_8 // .
%token _SYMB_9 // this.
%token _SYMB_10 // *
%token _SYMB_11 // /
%token _SYMB_12 // +
%token _SYMB_13 // -
%token _SYMB_14 // <
%token _SYMB_15 // >
%token _SYMB_16 // ==
%token _SYMB_17 // !=
%token _SYMB_18 // catch
%token _SYMB_19 // class
%token _SYMB_20 // else
%token _SYMB_21 // function
%token _SYMB_22 // if
%token _SYMB_23 // new
%token _SYMB_24 // return
%token _SYMB_25 // throw
%token _SYMB_26 // try
%token _SYMB_27 // while
%token<string_> _SYMB_28 // Id
%type <program_> Program
%type <dfn_> Dfn
%type <dmem_> Dmem
%type <def_> Def
%type <listdef_> ListDef
%type <listdfn_> ListDfn
%type <listdmem_> ListDmem
%type <arg_> Arg
%type <listarg_> ListArg
%type <stm_> Stm
%type <liststm_> ListStm
%type <exp_> Exp13
%type <exp_> Exp12
%type <exp_> Exp11
%type <exp_> Exp9
%type <exp_> Exp8
%type <exp_> Exp2
%type <exp_> Exp
%type <exp_> Exp1
%type <exp_> Exp3
%type <exp_> Exp4
%type <exp_> Exp5
%type <exp_> Exp6
%type <exp_> Exp7
%type <exp_> Exp10
%type <listexp_> ListExp
%type <listid_> ListId
%start Program
%token<string_> _STRING_
%token<int_> _INTEGER_
%token<double_> _DOUBLE_
%%
Program : ListDef { $$ = new PDefs($1); YY_RESULT_Program_= $$; }
;
Dfn : _SYMB_21 _SYMB_28 _SYMB_0 ListArg _SYMB_1 _SYMB_2 ListStm _SYMB_3 { std::reverse($4->begin(),$4->end()) ;$$ = new DFun($2, $4, $7); YY_RESULT_Dfn_= $$; }
;
Dmem : _SYMB_28 { $$ = new DMember($1); YY_RESULT_Dmem_= $$; }
;
Def : _SYMB_19 _SYMB_28 _SYMB_4 _SYMB_28 _SYMB_2 ListDmem ListDfn _SYMB_3 { $$ = new DClass($2, $4, $6, $7); YY_RESULT_Def_= $$; }
;
ListDef : /* empty */ { $$ = new ListDef(); YY_RESULT_ListDef_= $$; }
| ListDef Def { $1->push_back($2) ; $$ = $1 ; YY_RESULT_ListDef_= $$; }
;
ListDfn : /* empty */ { $$ = new ListDfn(); YY_RESULT_ListDfn_= $$; }
| ListDfn Dfn { $1->push_back($2) ; $$ = $1 ; YY_RESULT_ListDfn_= $$; }
;
ListDmem : /* empty */ { $$ = new ListDmem(); YY_RESULT_ListDmem_= $$; }
| ListDmem Dmem _SYMB_5 { $1->push_back($2) ; $$ = $1 ; YY_RESULT_ListDmem_= $$; }
;
Arg : _SYMB_28 { $$ = new ADecl($1); YY_RESULT_Arg_= $$; }
;
ListArg : /* empty */ { $$ = new ListArg(); YY_RESULT_ListArg_= $$; }
| Arg { $$ = new ListArg() ; $$->push_back($1); YY_RESULT_ListArg_= $$; }
| Arg _SYMB_6 ListArg { $3->push_back($1) ; $$ = $3 ; YY_RESULT_ListArg_= $$; }
;
Stm : Exp _SYMB_5 { $$ = new SExp($1); YY_RESULT_Stm_= $$; }
| _SYMB_28 _SYMB_7 Exp _SYMB_5 { $$ = new SInit($1, $3); YY_RESULT_Stm_= $$; }
| _SYMB_28 _SYMB_8 _SYMB_28 _SYMB_7 Exp _SYMB_5 { $$ = new SMemInit($1, $3, $5); YY_RESULT_Stm_= $$; }
| _SYMB_24 Exp _SYMB_5 { $$ = new SReturn($2); YY_RESULT_Stm_= $$; }
| _SYMB_27 _SYMB_0 Exp _SYMB_1 _SYMB_2 ListStm _SYMB_3 { $$ = new SWhile($3, $6); YY_RESULT_Stm_= $$; }
| _SYMB_22 _SYMB_0 Exp _SYMB_1 _SYMB_2 ListStm _SYMB_3 _SYMB_20 _SYMB_2 ListStm _SYMB_3 { $$ = new SIfElse($3, $6, $10); YY_RESULT_Stm_= $$; }
| _SYMB_26 _SYMB_2 ListStm _SYMB_3 _SYMB_18 _SYMB_2 ListStm _SYMB_3 { $$ = new SException($3, $7); YY_RESULT_Stm_= $$; }
| _SYMB_25 _STRING_ _SYMB_5 { $$ = new SThrow($2); YY_RESULT_Stm_= $$; }
;
ListStm : /* empty */ { $$ = new ListStm(); YY_RESULT_ListStm_= $$; }
| ListStm Stm { $1->push_back($2) ; $$ = $1 ; YY_RESULT_ListStm_= $$; }
;
Exp13 : _INTEGER_ { $$ = new EInt($1); YY_RESULT_Exp_= $$; }
| _DOUBLE_ { $$ = new EDouble($1); YY_RESULT_Exp_= $$; }
| _STRING_ { $$ = new EString($1); YY_RESULT_Exp_= $$; }
| _SYMB_28 { $$ = new EId($1); YY_RESULT_Exp_= $$; }
| _SYMB_9 _SYMB_28 _SYMB_0 ListExp _SYMB_1 { std::reverse($4->begin(),$4->end()) ;$$ = new EApp($2, $4); YY_RESULT_Exp_= $$; }
| _SYMB_23 _SYMB_28 { $$ = new SNewClass($2); YY_RESULT_Exp_= $$; }
| _SYMB_28 _SYMB_8 _SYMB_28 _SYMB_0 ListExp _SYMB_1 { std::reverse($5->begin(),$5->end()) ;$$ = new SClassMember($1, $3, $5); YY_RESULT_Exp_= $$; }
| _SYMB_28 _SYMB_8 _SYMB_28 { $$ = new SClassMemberVar($1, $3); YY_RESULT_Exp_= $$; }
| _SYMB_0 Exp _SYMB_1 { $$ = $2; YY_RESULT_Exp_= $$; }
;
Exp12 : Exp12 _SYMB_10 Exp13 { $$ = new ETimes($1, $3); YY_RESULT_Exp_= $$; }
| Exp12 _SYMB_11 Exp13 { $$ = new EDiv($1, $3); YY_RESULT_Exp_= $$; }
| Exp13 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp11 : Exp11 _SYMB_12 Exp12 { $$ = new EPlus($1, $3); YY_RESULT_Exp_= $$; }
| Exp11 _SYMB_13 Exp12 { $$ = new EMinus($1, $3); YY_RESULT_Exp_= $$; }
| Exp12 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp9 : Exp9 _SYMB_14 Exp10 { $$ = new ELt($1, $3); YY_RESULT_Exp_= $$; }
| Exp9 _SYMB_15 Exp10 { $$ = new EGt($1, $3); YY_RESULT_Exp_= $$; }
| Exp10 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp8 : Exp8 _SYMB_16 Exp9 { $$ = new EEq($1, $3); YY_RESULT_Exp_= $$; }
| Exp8 _SYMB_17 Exp9 { $$ = new ENEq($1, $3); YY_RESULT_Exp_= $$; }
| Exp9 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp2 : Exp8 _SYMB_7 Exp2 { $$ = new EAss($1, $3); YY_RESULT_Exp_= $$; }
| Exp3 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp : Exp1 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp1 : Exp2 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp3 : Exp4 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp4 : Exp5 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp5 : Exp6 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp6 : Exp7 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp7 : Exp8 { $$ = $1; YY_RESULT_Exp_= $$; }
;
Exp10 : Exp11 { $$ = $1; YY_RESULT_Exp_= $$; }
;
ListExp : /* empty */ { $$ = new ListExp(); YY_RESULT_ListExp_= $$; }
| Exp { $$ = new ListExp() ; $$->push_back($1); YY_RESULT_ListExp_= $$; }
| Exp _SYMB_6 ListExp { $3->push_back($1) ; $$ = $3 ; YY_RESULT_ListExp_= $$; }
;
ListId : _SYMB_28 { $$ = new ListId() ; $$->push_back($1); YY_RESULT_ListId_= $$; }
| _SYMB_28 _SYMB_6 ListId { $3->push_back($1) ; $$ = $3 ; YY_RESULT_ListId_= $$; }
;