-
Notifications
You must be signed in to change notification settings - Fork 2
/
calc.output
457 lines (264 loc) · 7.86 KB
/
calc.output
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
Terminals unused in grammar
TOK_EXIT
Grammar
0 $accept: prog $end
1 prog: TOK_MAIN TOK_OPENCURLY vardefs stmts TOK_CLOSECURLY
2 | %empty
3 vardefs: %empty
4 | vardef TOK_SEMICOLON vardefs
5 vardef: TOK_INT TOK_IDENT
6 | TOK_INT TOK_IDENT_ERR
7 | TOK_FLOAT TOK_IDENT
8 | TOK_FLOAT TOK_IDENT_ERR
9 stmts: %empty
10 | stmt TOK_SEMICOLON stmts
11 stmt: TOK_IDENT TOK_EQ expr
12 | TOK_PRINTID TOK_IDENT
13 | TOK_PRINTEX expr
14 expr: expr TOK_ADD expr
15 | expr TOK_DIV expr
16 | expr TOK_SUB expr
17 | expr TOK_MUL expr
18 | TOK_IDENT
19 | RAW
20 RAW: TOK_NUM
21 | TOK_FNUM
Terminals, with rules where they appear
$end (0) 0
error (256)
TOK_SEMICOLON (258) 4 10
TOK_ADD (259) 14
TOK_SUB (260) 16
TOK_MUL (261) 17
TOK_DIV (262) 15
TOK_EQ (263) 11
TOK_INT (264) 5 6
TOK_FLOAT (265) 7 8
TOK_IDENT (266) 5 7 11 12 18
TOK_PRINTID (267) 12
TOK_PRINTEX (268) 13
TOK_EXIT (269)
TOK_MAIN (270) 1
TOK_OPENCURLY (271) 1
TOK_CLOSECURLY (272) 1
TOK_IDENT_ERR (273) 6 8
TOK_NUM (274) 20
TOK_FNUM (275) 21
Nonterminals, with rules where they appear
$accept (21)
on left: 0
prog (22)
on left: 1 2, on right: 0
vardefs (23)
on left: 3 4, on right: 1 4
vardef (24)
on left: 5 6 7 8, on right: 4
stmts (25)
on left: 9 10, on right: 1 10
stmt (26)
on left: 11 12 13, on right: 10
expr (27)
on left: 14 15 16 17 18 19, on right: 11 13 14 15 16 17
RAW (28)
on left: 20 21, on right: 19
State 0
0 $accept: . prog $end
TOK_MAIN shift, and go to state 1
$default reduce using rule 2 (prog)
prog go to state 2
State 1
1 prog: TOK_MAIN . TOK_OPENCURLY vardefs stmts TOK_CLOSECURLY
TOK_OPENCURLY shift, and go to state 3
State 2
0 $accept: prog . $end
$end shift, and go to state 4
State 3
1 prog: TOK_MAIN TOK_OPENCURLY . vardefs stmts TOK_CLOSECURLY
TOK_INT shift, and go to state 5
TOK_FLOAT shift, and go to state 6
$default reduce using rule 3 (vardefs)
vardefs go to state 7
vardef go to state 8
State 4
0 $accept: prog $end .
$default accept
State 5
5 vardef: TOK_INT . TOK_IDENT
6 | TOK_INT . TOK_IDENT_ERR
TOK_IDENT shift, and go to state 9
TOK_IDENT_ERR shift, and go to state 10
State 6
7 vardef: TOK_FLOAT . TOK_IDENT
8 | TOK_FLOAT . TOK_IDENT_ERR
TOK_IDENT shift, and go to state 11
TOK_IDENT_ERR shift, and go to state 12
State 7
1 prog: TOK_MAIN TOK_OPENCURLY vardefs . stmts TOK_CLOSECURLY
TOK_IDENT shift, and go to state 13
TOK_PRINTID shift, and go to state 14
TOK_PRINTEX shift, and go to state 15
$default reduce using rule 9 (stmts)
stmts go to state 16
stmt go to state 17
State 8
4 vardefs: vardef . TOK_SEMICOLON vardefs
TOK_SEMICOLON shift, and go to state 18
State 9
5 vardef: TOK_INT TOK_IDENT .
$default reduce using rule 5 (vardef)
State 10
6 vardef: TOK_INT TOK_IDENT_ERR .
$default reduce using rule 6 (vardef)
State 11
7 vardef: TOK_FLOAT TOK_IDENT .
$default reduce using rule 7 (vardef)
State 12
8 vardef: TOK_FLOAT TOK_IDENT_ERR .
$default reduce using rule 8 (vardef)
State 13
11 stmt: TOK_IDENT . TOK_EQ expr
TOK_EQ shift, and go to state 19
State 14
12 stmt: TOK_PRINTID . TOK_IDENT
TOK_IDENT shift, and go to state 20
State 15
13 stmt: TOK_PRINTEX . expr
TOK_IDENT shift, and go to state 21
TOK_NUM shift, and go to state 22
TOK_FNUM shift, and go to state 23
expr go to state 24
RAW go to state 25
State 16
1 prog: TOK_MAIN TOK_OPENCURLY vardefs stmts . TOK_CLOSECURLY
TOK_CLOSECURLY shift, and go to state 26
State 17
10 stmts: stmt . TOK_SEMICOLON stmts
TOK_SEMICOLON shift, and go to state 27
State 18
4 vardefs: vardef TOK_SEMICOLON . vardefs
TOK_INT shift, and go to state 5
TOK_FLOAT shift, and go to state 6
$default reduce using rule 3 (vardefs)
vardefs go to state 28
vardef go to state 8
State 19
11 stmt: TOK_IDENT TOK_EQ . expr
TOK_IDENT shift, and go to state 21
TOK_NUM shift, and go to state 22
TOK_FNUM shift, and go to state 23
expr go to state 29
RAW go to state 25
State 20
12 stmt: TOK_PRINTID TOK_IDENT .
$default reduce using rule 12 (stmt)
State 21
18 expr: TOK_IDENT .
$default reduce using rule 18 (expr)
State 22
20 RAW: TOK_NUM .
$default reduce using rule 20 (RAW)
State 23
21 RAW: TOK_FNUM .
$default reduce using rule 21 (RAW)
State 24
13 stmt: TOK_PRINTEX expr .
14 expr: expr . TOK_ADD expr
15 | expr . TOK_DIV expr
16 | expr . TOK_SUB expr
17 | expr . TOK_MUL expr
TOK_ADD shift, and go to state 30
TOK_SUB shift, and go to state 31
TOK_MUL shift, and go to state 32
TOK_DIV shift, and go to state 33
$default reduce using rule 13 (stmt)
State 25
19 expr: RAW .
$default reduce using rule 19 (expr)
State 26
1 prog: TOK_MAIN TOK_OPENCURLY vardefs stmts TOK_CLOSECURLY .
$default reduce using rule 1 (prog)
State 27
10 stmts: stmt TOK_SEMICOLON . stmts
TOK_IDENT shift, and go to state 13
TOK_PRINTID shift, and go to state 14
TOK_PRINTEX shift, and go to state 15
$default reduce using rule 9 (stmts)
stmts go to state 34
stmt go to state 17
State 28
4 vardefs: vardef TOK_SEMICOLON vardefs .
$default reduce using rule 4 (vardefs)
State 29
11 stmt: TOK_IDENT TOK_EQ expr .
14 expr: expr . TOK_ADD expr
15 | expr . TOK_DIV expr
16 | expr . TOK_SUB expr
17 | expr . TOK_MUL expr
TOK_ADD shift, and go to state 30
TOK_SUB shift, and go to state 31
TOK_MUL shift, and go to state 32
TOK_DIV shift, and go to state 33
$default reduce using rule 11 (stmt)
State 30
14 expr: expr TOK_ADD . expr
TOK_IDENT shift, and go to state 21
TOK_NUM shift, and go to state 22
TOK_FNUM shift, and go to state 23
expr go to state 35
RAW go to state 25
State 31
16 expr: expr TOK_SUB . expr
TOK_IDENT shift, and go to state 21
TOK_NUM shift, and go to state 22
TOK_FNUM shift, and go to state 23
expr go to state 36
RAW go to state 25
State 32
17 expr: expr TOK_MUL . expr
TOK_IDENT shift, and go to state 21
TOK_NUM shift, and go to state 22
TOK_FNUM shift, and go to state 23
expr go to state 37
RAW go to state 25
State 33
15 expr: expr TOK_DIV . expr
TOK_IDENT shift, and go to state 21
TOK_NUM shift, and go to state 22
TOK_FNUM shift, and go to state 23
expr go to state 38
RAW go to state 25
State 34
10 stmts: stmt TOK_SEMICOLON stmts .
$default reduce using rule 10 (stmts)
State 35
14 expr: expr . TOK_ADD expr
14 | expr TOK_ADD expr .
15 | expr . TOK_DIV expr
16 | expr . TOK_SUB expr
17 | expr . TOK_MUL expr
TOK_MUL shift, and go to state 32
TOK_DIV shift, and go to state 33
$default reduce using rule 14 (expr)
State 36
14 expr: expr . TOK_ADD expr
15 | expr . TOK_DIV expr
16 | expr . TOK_SUB expr
16 | expr TOK_SUB expr .
17 | expr . TOK_MUL expr
TOK_MUL shift, and go to state 32
TOK_DIV shift, and go to state 33
$default reduce using rule 16 (expr)
State 37
14 expr: expr . TOK_ADD expr
15 | expr . TOK_DIV expr
16 | expr . TOK_SUB expr
17 | expr . TOK_MUL expr
17 | expr TOK_MUL expr .
$default reduce using rule 17 (expr)
State 38
14 expr: expr . TOK_ADD expr
15 | expr . TOK_DIV expr
15 | expr TOK_DIV expr .
16 | expr . TOK_SUB expr
17 | expr . TOK_MUL expr
$default reduce using rule 15 (expr)