]>
Commit | Line | Data |
---|---|---|
342b8b6e | 1 | # Bison Regressions. -*- Autotest -*- |
d42cf844 | 2 | |
575619af | 3 | # Copyright (C) 2001-2011 Free Software Foundation, Inc. |
c95f2d78 | 4 | |
f16b0819 | 5 | # This program is free software: you can redistribute it and/or modify |
342b8b6e | 6 | # it under the terms of the GNU General Public License as published by |
f16b0819 PE |
7 | # the Free Software Foundation, either version 3 of the License, or |
8 | # (at your option) any later version. | |
9 | # | |
342b8b6e AD |
10 | # This program is distributed in the hope that it will be useful, |
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | # GNU General Public License for more details. | |
f16b0819 | 14 | # |
342b8b6e | 15 | # You should have received a copy of the GNU General Public License |
f16b0819 | 16 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
c95f2d78 | 17 | |
342b8b6e | 18 | AT_BANNER([[Regression tests.]]) |
c95f2d78 | 19 | |
2b25d624 | 20 | |
276f48df PE |
21 | ## ------------------ ## |
22 | ## Trivial grammars. ## | |
23 | ## ------------------ ## | |
24 | ||
25 | AT_SETUP([Trivial grammars]) | |
26 | ||
27 | AT_DATA_GRAMMAR([input.y], | |
28 | [[%{ | |
29 | void yyerror (char const *); | |
30 | int yylex (void); | |
50cce58e | 31 | #define YYSTYPE int * |
276f48df PE |
32 | %} |
33 | ||
34 | %error-verbose | |
35 | ||
36 | %% | |
37 | ||
38 | program: 'x'; | |
39 | ]]) | |
40 | ||
da730230 | 41 | AT_BISON_CHECK([-o input.c input.y]) |
276f48df | 42 | AT_COMPILE([input.o], [-c input.c]) |
50cce58e | 43 | AT_COMPILE([input.o], [-DYYDEBUG -c input.c]) |
276f48df PE |
44 | |
45 | AT_CLEANUP | |
46 | ||
47 | ||
48 | ||
ddc8ede1 PE |
49 | ## ----------------- ## |
50 | ## YYSTYPE typedef. ## | |
51 | ## ----------------- ## | |
52 | ||
53 | AT_SETUP([YYSTYPE typedef]) | |
54 | ||
55 | AT_DATA_GRAMMAR([input.y], | |
56 | [[%{ | |
57 | void yyerror (char const *); | |
58 | int yylex (void); | |
59 | typedef union { char const *val; } YYSTYPE; | |
60 | %} | |
61 | ||
62 | %type <val> program | |
63 | ||
64 | %% | |
65 | ||
66 | program: { $$ = ""; }; | |
67 | ]]) | |
68 | ||
da730230 | 69 | AT_BISON_CHECK([-o input.c input.y]) |
ddc8ede1 PE |
70 | AT_COMPILE([input.o], [-c input.c]) |
71 | ||
72 | AT_CLEANUP | |
73 | ||
74 | ||
75 | ||
b931235e JD |
76 | ## ------------------------------------- ## |
77 | ## Early token definitions with --yacc. ## | |
78 | ## ------------------------------------- ## | |
69078d4b AD |
79 | |
80 | ||
b931235e | 81 | AT_SETUP([Early token definitions with --yacc]) |
69078d4b AD |
82 | |
83 | # Found in GCJ: they expect the tokens to be defined before the user | |
84 | # prologue, so that they can use the token definitions in it. | |
85 | ||
9501dc6e | 86 | AT_DATA_GRAMMAR([input.y], |
69078d4b AD |
87 | [[%{ |
88 | void yyerror (const char *s); | |
89 | int yylex (void); | |
90 | %} | |
91 | ||
92 | %union | |
93 | { | |
94 | int val; | |
95 | }; | |
9bc0dd67 JD |
96 | %{ |
97 | #ifndef MY_TOKEN | |
98 | # error "MY_TOKEN not defined." | |
99 | #endif | |
100 | %} | |
b931235e JD |
101 | %token MY_TOKEN |
102 | %% | |
103 | exp: MY_TOKEN; | |
104 | %% | |
105 | ]]) | |
106 | ||
da730230 | 107 | AT_BISON_CHECK([-y -o input.c input.y]) |
b931235e JD |
108 | AT_COMPILE([input.o], [-c input.c]) |
109 | ||
110 | AT_CLEANUP | |
111 | ||
112 | ||
113 | ||
114 | ## ---------------------------------------- ## | |
115 | ## Early token definitions without --yacc. ## | |
116 | ## ---------------------------------------- ## | |
117 | ||
118 | ||
119 | AT_SETUP([Early token definitions without --yacc]) | |
120 | ||
121 | # Found in GCJ: they expect the tokens to be defined before the user | |
122 | # prologue, so that they can use the token definitions in it. | |
123 | ||
124 | AT_DATA_GRAMMAR([input.y], | |
125 | [[%{ | |
126 | #include <stdio.h> | |
127 | void yyerror (const char *s); | |
128 | int yylex (void); | |
129 | void print_my_token (void); | |
9bc0dd67 JD |
130 | %} |
131 | ||
132 | %union | |
133 | { | |
134 | int val; | |
135 | }; | |
136 | %{ | |
b931235e JD |
137 | void |
138 | print_my_token (void) | |
139 | { | |
140 | enum yytokentype my_token = MY_TOKEN; | |
141 | printf ("%d\n", my_token); | |
142 | } | |
69078d4b AD |
143 | %} |
144 | %token MY_TOKEN | |
145 | %% | |
146 | exp: MY_TOKEN; | |
147 | %% | |
148 | ]]) | |
149 | ||
da730230 | 150 | AT_BISON_CHECK([-o input.c input.y]) |
002b9b7d | 151 | AT_COMPILE([input.o], [-c input.c]) |
69078d4b AD |
152 | |
153 | AT_CLEANUP | |
154 | ||
155 | ||
156 | ||
2b25d624 AD |
157 | ## ---------------- ## |
158 | ## Braces parsing. ## | |
159 | ## ---------------- ## | |
160 | ||
161 | ||
69078d4b | 162 | AT_SETUP([Braces parsing]) |
2b25d624 AD |
163 | |
164 | AT_DATA([input.y], | |
165 | [[/* Bison used to swallow the character after `}'. */ | |
166 | ||
167 | %% | |
bfcf1f3a | 168 | exp: { tests = {{{{{{{{{{}}}}}}}}}}; }; |
2b25d624 AD |
169 | %% |
170 | ]]) | |
171 | ||
da730230 | 172 | AT_BISON_CHECK([-v -o input.c input.y]) |
2b25d624 | 173 | |
a4bf0390 | 174 | AT_CHECK([grep 'tests = {{{{{{{{{{}}}}}}}}}};' input.c], 0, [ignore]) |
2b25d624 AD |
175 | |
176 | AT_CLEANUP | |
177 | ||
178 | ||
c95f2d78 AD |
179 | ## ------------------ ## |
180 | ## Duplicate string. ## | |
181 | ## ------------------ ## | |
182 | ||
183 | ||
184 | AT_SETUP([Duplicate string]) | |
185 | ||
f499b062 | 186 | AT_DATA([input.y], |
c95f2d78 AD |
187 | [[/* `Bison -v' used to dump core when two tokens are defined with the same |
188 | string, as LE and GE below. */ | |
189 | ||
190 | %token NUM | |
191 | %token LE "<=" | |
192 | %token GE "<=" | |
193 | ||
194 | %% | |
195 | exp: '(' exp ')' | NUM ; | |
196 | %% | |
197 | ]]) | |
198 | ||
da730230 | 199 | AT_BISON_CHECK([-v -o input.c input.y], 0, [], |
a5d50994 | 200 | [[input.y:6.8-14: warning: symbol `"<="' used more than once as a literal string |
69078d4b | 201 | ]]) |
c95f2d78 | 202 | |
d803322e | 203 | AT_CLEANUP |
c95f2d78 AD |
204 | |
205 | ||
2ca209c1 AD |
206 | ## ------------------- ## |
207 | ## Rule Line Numbers. ## | |
208 | ## ------------------- ## | |
209 | ||
210 | AT_SETUP([Rule Line Numbers]) | |
211 | ||
6b98e4b5 AD |
212 | AT_KEYWORDS([report]) |
213 | ||
2ca209c1 AD |
214 | AT_DATA([input.y], |
215 | [[%% | |
216 | expr: | |
217 | 'a' | |
218 | ||
219 | { | |
220 | ||
221 | } | |
222 | ||
223 | 'b' | |
224 | ||
225 | { | |
226 | ||
227 | } | |
228 | ||
229 | | | |
230 | ||
231 | ||
232 | { | |
233 | ||
234 | ||
235 | } | |
236 | ||
237 | 'c' | |
238 | ||
239 | { | |
240 | ||
bfcf1f3a | 241 | }; |
2ca209c1 AD |
242 | ]]) |
243 | ||
da730230 | 244 | AT_BISON_CHECK([-o input.c -v input.y]) |
2ca209c1 AD |
245 | |
246 | # Check the contents of the report. | |
247 | AT_CHECK([cat input.output], [], | |
d2d1b42b | 248 | [[Grammar |
2ca209c1 | 249 | |
88bce5a2 | 250 | 0 $accept: expr $end |
6b98e4b5 | 251 | |
f91b1629 | 252 | 1 $@1: /* empty */ |
6b98e4b5 | 253 | |
f91b1629 | 254 | 2 expr: 'a' $@1 'b' |
6b98e4b5 | 255 | |
f91b1629 | 256 | 3 $@2: /* empty */ |
6b98e4b5 | 257 | |
f91b1629 | 258 | 4 expr: $@2 'c' |
2ca209c1 | 259 | |
d2d1b42b | 260 | |
2ca209c1 AD |
261 | Terminals, with rules where they appear |
262 | ||
88bce5a2 | 263 | $end (0) 0 |
2ca209c1 AD |
264 | 'a' (97) 2 |
265 | 'b' (98) 2 | |
266 | 'c' (99) 4 | |
267 | error (256) | |
268 | ||
d2d1b42b | 269 | |
2ca209c1 AD |
270 | Nonterminals, with rules where they appear |
271 | ||
88bce5a2 | 272 | $accept (6) |
b365aa05 AD |
273 | on left: 0 |
274 | expr (7) | |
275 | on left: 2 4, on right: 0 | |
f91b1629 | 276 | $@1 (8) |
2ca209c1 | 277 | on left: 1, on right: 2 |
f91b1629 | 278 | $@2 (9) |
2ca209c1 AD |
279 | on left: 3, on right: 4 |
280 | ||
281 | ||
282 | state 0 | |
283 | ||
88bce5a2 | 284 | 0 $accept: . expr $end |
643a5994 | 285 | |
87675353 | 286 | 'a' shift, and go to state 1 |
2ca209c1 | 287 | |
f91b1629 | 288 | $default reduce using rule 3 ($@2) |
2ca209c1 | 289 | |
87675353 | 290 | expr go to state 2 |
f91b1629 | 291 | $@2 go to state 3 |
2ca209c1 AD |
292 | |
293 | ||
294 | state 1 | |
295 | ||
f91b1629 | 296 | 2 expr: 'a' . $@1 'b' |
2ca209c1 | 297 | |
f91b1629 | 298 | $default reduce using rule 1 ($@1) |
2ca209c1 | 299 | |
f91b1629 | 300 | $@1 go to state 4 |
2ca209c1 AD |
301 | |
302 | ||
303 | state 2 | |
304 | ||
88bce5a2 | 305 | 0 $accept: expr . $end |
2ca209c1 | 306 | |
88bce5a2 | 307 | $end shift, and go to state 5 |
2ca209c1 AD |
308 | |
309 | ||
310 | state 3 | |
311 | ||
f91b1629 | 312 | 4 expr: $@2 . 'c' |
2ca209c1 | 313 | |
87675353 | 314 | 'c' shift, and go to state 6 |
2ca209c1 AD |
315 | |
316 | ||
317 | state 4 | |
318 | ||
f91b1629 | 319 | 2 expr: 'a' $@1 . 'b' |
2ca209c1 | 320 | |
87675353 | 321 | 'b' shift, and go to state 7 |
2ca209c1 AD |
322 | |
323 | ||
324 | state 5 | |
325 | ||
88bce5a2 | 326 | 0 $accept: expr $end . |
2ca209c1 | 327 | |
e8832397 | 328 | $default accept |
2ca209c1 AD |
329 | |
330 | ||
331 | state 6 | |
332 | ||
f91b1629 | 333 | 4 expr: $@2 'c' . |
b365aa05 | 334 | |
87675353 | 335 | $default reduce using rule 4 (expr) |
2ca209c1 AD |
336 | |
337 | ||
338 | state 7 | |
339 | ||
f91b1629 | 340 | 2 expr: 'a' $@1 'b' . |
b365aa05 | 341 | |
87675353 | 342 | $default reduce using rule 2 (expr) |
2ca209c1 AD |
343 | ]]) |
344 | ||
345 | AT_CLEANUP | |
346 | ||
347 | ||
348 | ||
cd5aafcf AD |
349 | ## ---------------------- ## |
350 | ## Mixing %token styles. ## | |
351 | ## ---------------------- ## | |
352 | ||
353 | ||
354 | AT_SETUP([Mixing %token styles]) | |
355 | ||
356 | # Taken from the documentation. | |
357 | AT_DATA([input.y], | |
358 | [[%token <operator> OR "||" | |
359 | %token <operator> LE 134 "<=" | |
360 | %left OR "<=" | |
361 | %% | |
362 | exp: ; | |
363 | %% | |
364 | ]]) | |
365 | ||
da730230 | 366 | AT_BISON_CHECK([-v -o input.c input.y]) |
cd5aafcf | 367 | |
d803322e | 368 | AT_CLEANUP |
cd5aafcf AD |
369 | |
370 | ||
371 | ||
29ae55f1 AD |
372 | ## ---------------- ## |
373 | ## Invalid inputs. ## | |
374 | ## ---------------- ## | |
561f9a30 AD |
375 | |
376 | ||
29ae55f1 | 377 | AT_SETUP([Invalid inputs]) |
561f9a30 AD |
378 | |
379 | AT_DATA([input.y], | |
380 | [[%% | |
381 | ? | |
561f9a30 | 382 | default: 'a' } |
29ae55f1 | 383 | %& |
2dfbfc12 | 384 | %a-does-not-exist |
29ae55f1 | 385 | %- |
e9955c83 | 386 | %{ |
561f9a30 AD |
387 | ]]) |
388 | ||
da730230 | 389 | AT_BISON_CHECK([input.y], [1], [], |
e9955c83 AD |
390 | [[input.y:2.1: invalid character: `?' |
391 | input.y:3.14: invalid character: `}' | |
392 | input.y:4.1: invalid character: `%' | |
393 | input.y:4.2: invalid character: `&' | |
2dfbfc12 | 394 | input.y:5.1-17: invalid directive: `%a-does-not-exist' |
82f3355e JD |
395 | input.y:6.1: invalid character: `%' |
396 | input.y:6.2: invalid character: `-' | |
2115939b | 397 | input.y:7.1-8.0: missing `%}' at end of file |
47aee066 | 398 | input.y:7.1-8.0: syntax error, unexpected %{...%} |
e0c40012 | 399 | ]]) |
561f9a30 AD |
400 | |
401 | AT_CLEANUP | |
402 | ||
403 | ||
fc01665e PE |
404 | AT_SETUP([Invalid inputs with {}]) |
405 | ||
406 | AT_DATA([input.y], | |
407 | [[ | |
408 | %destructor | |
409 | %initial-action | |
410 | %lex-param | |
411 | %parse-param | |
412 | %printer | |
413 | %union | |
414 | ]]) | |
415 | ||
da730230 | 416 | AT_BISON_CHECK([input.y], [1], [], |
e9071366 | 417 | [[input.y:3.1-15: syntax error, unexpected %initial-action, expecting {...} |
fc01665e PE |
418 | ]]) |
419 | ||
420 | AT_CLEANUP | |
421 | ||
422 | ||
270a173c | 423 | |
b87f8b21 AD |
424 | ## ------------------- ## |
425 | ## Token definitions. ## | |
426 | ## ------------------- ## | |
427 | ||
428 | ||
429 | AT_SETUP([Token definitions]) | |
430 | ||
431 | # Bison managed, when fed with `%token 'f' "f"' to #define 'f'! | |
9501dc6e | 432 | AT_DATA_GRAMMAR([input.y], |
db7c8e9a | 433 | [%{ |
cf806753 | 434 | #include <stdlib.h> |
ca407bdf | 435 | #include <stdio.h> |
db7c8e9a AD |
436 | void yyerror (const char *s); |
437 | int yylex (void); | |
438 | %} | |
ca407bdf PE |
439 | [%error-verbose |
440 | %token MYEOF 0 "end of file" | |
b87f8b21 | 441 | %token 'a' "a" |
4f136612 PE |
442 | %token B_TOKEN "b" |
443 | %token C_TOKEN 'c' | |
444 | %token 'd' D_TOKEN | |
3d54b576 | 445 | %token SPECIAL "\\\'\?\"\a\b\f\n\r\t\v\001\201\x001\x000081??!" |
1cfe6375 | 446 | %token SPECIAL "\\\'\?\"\a\b\f\n\r\t\v\001\201\x001\x000081??!" |
b87f8b21 | 447 | %% |
3d54b576 | 448 | exp: "a" "\\\'\?\"\a\b\f\n\r\t\v\001\201\x001\x000081??!"; |
ca407bdf PE |
449 | %% |
450 | void | |
451 | yyerror (char const *s) | |
452 | { | |
453 | fprintf (stderr, "%s\n", s); | |
454 | } | |
455 | ||
456 | int | |
457 | yylex (void) | |
458 | { | |
cf806753 PE |
459 | static int called; |
460 | if (called++) | |
461 | abort (); | |
ca407bdf PE |
462 | return SPECIAL; |
463 | } | |
464 | ||
465 | int | |
466 | main (void) | |
467 | { | |
468 | return yyparse (); | |
469 | } | |
b87f8b21 AD |
470 | ]]) |
471 | ||
1cfe6375 JD |
472 | # Checking the warning message guarantees that the trigraph "??!" isn't |
473 | # unnecessarily escaped here even though it would need to be if encoded in a | |
474 | # C-string literal. Also notice that unnecessary escaping, such as "\?", from | |
475 | # the user specification is eliminated. | |
476 | AT_BISON_CHECK([-o input.c input.y], [[0]], [[]], | |
477 | [[input.y:22.8-14: warning: symbol SPECIAL redeclared | |
478 | input.y:22.8-63: warning: symbol `"\\'?\"\a\b\f\n\r\t\v\001\201\001\201??!"' used more than once as a literal string | |
479 | ]]) | |
ca407bdf | 480 | AT_COMPILE([input]) |
1cfe6375 JD |
481 | |
482 | # Checking the error message here guarantees that yytname, which does contain | |
483 | # C-string literals, does have the trigraph escaped correctly. Thus, the | |
484 | # symbol name reported by the parser is exactly the same as that reported by | |
485 | # Bison itself. | |
3d54b576 | 486 | AT_DATA([experr], |
1cfe6375 | 487 | [[syntax error, unexpected "\\'?\"\a\b\f\n\r\t\v\001\201\001\201??!", expecting a |
3d54b576 PE |
488 | ]]) |
489 | AT_PARSER_CHECK([./input], 1, [], [experr]) | |
b87f8b21 AD |
490 | AT_CLEANUP |
491 | ||
492 | ||
493 | ||
eb714592 AD |
494 | ## -------------------- ## |
495 | ## Characters Escapes. ## | |
496 | ## -------------------- ## | |
497 | ||
498 | ||
499 | AT_SETUP([Characters Escapes]) | |
500 | ||
9501dc6e | 501 | AT_DATA_GRAMMAR([input.y], |
eb714592 AD |
502 | [%{ |
503 | void yyerror (const char *s); | |
504 | int yylex (void); | |
505 | %} | |
6d0ef4ec | 506 | [%% |
eb714592 AD |
507 | exp: |
508 | '\'' "\'" | |
509 | | '\"' "\"" | |
510 | | '"' "'" | |
511 | ; | |
512 | ]]) | |
9501dc6e | 513 | # Pacify font-lock-mode: " |
eb714592 | 514 | |
da730230 | 515 | AT_BISON_CHECK([-o input.c input.y]) |
eb714592 AD |
516 | AT_COMPILE([input.o], [-c input.c]) |
517 | AT_CLEANUP | |
518 | ||
519 | ||
520 | ||
b9752825 AD |
521 | ## -------------- ## |
522 | ## Web2c Report. ## | |
523 | ## -------------- ## | |
776209d6 AD |
524 | |
525 | # The generation of the reduction was once wrong in Bison, and made it | |
526 | # miss some reductions. In the following test case, the reduction on | |
527 | # `undef_id_tok' in state 1 was missing. This is stripped down from | |
528 | # the actual web2c.y. | |
529 | ||
b9752825 | 530 | AT_SETUP([Web2c Report]) |
776209d6 | 531 | |
6b98e4b5 AD |
532 | AT_KEYWORDS([report]) |
533 | ||
776209d6 | 534 | AT_DATA([input.y], |
e9690142 | 535 | [[%token undef_id_tok const_id_tok |
776209d6 AD |
536 | |
537 | %start CONST_DEC_PART | |
538 | \f | |
539 | %% | |
540 | CONST_DEC_PART: | |
541 | CONST_DEC_LIST | |
542 | ; | |
543 | ||
544 | CONST_DEC_LIST: | |
e9690142 | 545 | CONST_DEC |
776209d6 AD |
546 | | CONST_DEC_LIST CONST_DEC |
547 | ; | |
548 | ||
549 | CONST_DEC: | |
e9690142 | 550 | { } undef_id_tok '=' const_id_tok ';' |
776209d6 AD |
551 | ; |
552 | %% | |
776209d6 AD |
553 | ]]) |
554 | ||
da730230 | 555 | AT_BISON_CHECK([-v input.y]) |
87675353 | 556 | AT_CHECK([cat input.output], 0, |
776209d6 | 557 | [[Grammar |
87675353 | 558 | |
88bce5a2 | 559 | 0 $accept: CONST_DEC_PART $end |
87675353 | 560 | |
6b98e4b5 | 561 | 1 CONST_DEC_PART: CONST_DEC_LIST |
87675353 | 562 | |
6b98e4b5 AD |
563 | 2 CONST_DEC_LIST: CONST_DEC |
564 | 3 | CONST_DEC_LIST CONST_DEC | |
87675353 | 565 | |
f91b1629 | 566 | 4 $@1: /* empty */ |
87675353 | 567 | |
f91b1629 | 568 | 5 CONST_DEC: $@1 undef_id_tok '=' const_id_tok ';' |
87675353 AD |
569 | |
570 | ||
776209d6 | 571 | Terminals, with rules where they appear |
87675353 | 572 | |
88bce5a2 | 573 | $end (0) 0 |
776209d6 AD |
574 | ';' (59) 5 |
575 | '=' (61) 5 | |
576 | error (256) | |
007a50a4 AD |
577 | undef_id_tok (258) 5 |
578 | const_id_tok (259) 5 | |
87675353 AD |
579 | |
580 | ||
776209d6 | 581 | Nonterminals, with rules where they appear |
87675353 | 582 | |
88bce5a2 | 583 | $accept (7) |
78d5bae9 AD |
584 | on left: 0 |
585 | CONST_DEC_PART (8) | |
586 | on left: 1, on right: 0 | |
587 | CONST_DEC_LIST (9) | |
776209d6 | 588 | on left: 2 3, on right: 1 3 |
78d5bae9 | 589 | CONST_DEC (10) |
776209d6 | 590 | on left: 5, on right: 2 3 |
f91b1629 | 591 | $@1 (11) |
776209d6 | 592 | on left: 4, on right: 5 |
87675353 AD |
593 | |
594 | ||
776209d6 | 595 | state 0 |
87675353 | 596 | |
88bce5a2 | 597 | 0 $accept: . CONST_DEC_PART $end |
87675353 | 598 | |
f91b1629 | 599 | $default reduce using rule 4 ($@1) |
87675353 AD |
600 | |
601 | CONST_DEC_PART go to state 1 | |
602 | CONST_DEC_LIST go to state 2 | |
603 | CONST_DEC go to state 3 | |
f91b1629 | 604 | $@1 go to state 4 |
87675353 AD |
605 | |
606 | ||
776209d6 | 607 | state 1 |
87675353 | 608 | |
88bce5a2 | 609 | 0 $accept: CONST_DEC_PART . $end |
87675353 | 610 | |
88bce5a2 | 611 | $end shift, and go to state 5 |
87675353 AD |
612 | |
613 | ||
78d5bae9 | 614 | state 2 |
87675353 | 615 | |
ce4ccb4b AD |
616 | 1 CONST_DEC_PART: CONST_DEC_LIST . |
617 | 3 CONST_DEC_LIST: CONST_DEC_LIST . CONST_DEC | |
87675353 | 618 | |
f91b1629 | 619 | undef_id_tok reduce using rule 4 ($@1) |
87675353 AD |
620 | $default reduce using rule 1 (CONST_DEC_PART) |
621 | ||
622 | CONST_DEC go to state 6 | |
f91b1629 | 623 | $@1 go to state 4 |
87675353 AD |
624 | |
625 | ||
78d5bae9 | 626 | state 3 |
87675353 | 627 | |
ce4ccb4b | 628 | 2 CONST_DEC_LIST: CONST_DEC . |
87675353 AD |
629 | |
630 | $default reduce using rule 2 (CONST_DEC_LIST) | |
631 | ||
632 | ||
776209d6 | 633 | state 4 |
87675353 | 634 | |
f91b1629 | 635 | 5 CONST_DEC: $@1 . undef_id_tok '=' const_id_tok ';' |
87675353 AD |
636 | |
637 | undef_id_tok shift, and go to state 7 | |
638 | ||
639 | ||
78d5bae9 | 640 | state 5 |
87675353 | 641 | |
88bce5a2 | 642 | 0 $accept: CONST_DEC_PART $end . |
87675353 | 643 | |
e8832397 | 644 | $default accept |
87675353 AD |
645 | |
646 | ||
78d5bae9 | 647 | state 6 |
87675353 | 648 | |
ce4ccb4b | 649 | 3 CONST_DEC_LIST: CONST_DEC_LIST CONST_DEC . |
87675353 AD |
650 | |
651 | $default reduce using rule 3 (CONST_DEC_LIST) | |
652 | ||
653 | ||
78d5bae9 | 654 | state 7 |
87675353 | 655 | |
f91b1629 | 656 | 5 CONST_DEC: $@1 undef_id_tok . '=' const_id_tok ';' |
87675353 AD |
657 | |
658 | '=' shift, and go to state 8 | |
659 | ||
660 | ||
78d5bae9 | 661 | state 8 |
87675353 | 662 | |
f91b1629 | 663 | 5 CONST_DEC: $@1 undef_id_tok '=' . const_id_tok ';' |
87675353 AD |
664 | |
665 | const_id_tok shift, and go to state 9 | |
666 | ||
667 | ||
78d5bae9 | 668 | state 9 |
87675353 | 669 | |
f91b1629 | 670 | 5 CONST_DEC: $@1 undef_id_tok '=' const_id_tok . ';' |
87675353 AD |
671 | |
672 | ';' shift, and go to state 10 | |
673 | ||
674 | ||
78d5bae9 | 675 | state 10 |
87675353 | 676 | |
f91b1629 | 677 | 5 CONST_DEC: $@1 undef_id_tok '=' const_id_tok ';' . |
87675353 AD |
678 | |
679 | $default reduce using rule 5 (CONST_DEC) | |
776209d6 AD |
680 | ]]) |
681 | ||
682 | AT_CLEANUP | |
b9752825 AD |
683 | |
684 | ||
685 | ## --------------- ## | |
686 | ## Web2c Actions. ## | |
687 | ## --------------- ## | |
688 | ||
689 | # The generation of the mapping `state -> action' was once wrong in | |
690 | # extremely specific situations. web2c.y exhibits this situation. | |
691 | # Below is a stripped version of the grammar. It looks like one can | |
692 | # simplify it further, but just don't: it is tuned to exhibit a bug, | |
693 | # which disapears when applying sane grammar transformations. | |
694 | # | |
695 | # It used to be wrong on yydefact only: | |
696 | # | |
d42cf844 | 697 | # static const yytype_uint8 yydefact[] = |
b9752825 AD |
698 | # { |
699 | # - 2, 0, 1, 0, 0, 2, 3, 2, 5, 4, | |
700 | # + 2, 0, 1, 0, 0, 0, 3, 2, 5, 4, | |
701 | # 0, 0 | |
702 | # }; | |
703 | # | |
704 | # but let's check all the tables. | |
705 | ||
706 | ||
707 | AT_SETUP([Web2c Actions]) | |
708 | ||
6b98e4b5 AD |
709 | AT_KEYWORDS([report]) |
710 | ||
b9752825 AD |
711 | AT_DATA([input.y], |
712 | [[%% | |
713 | statement: struct_stat; | |
714 | struct_stat: /* empty. */ | if else; | |
715 | if: "if" "const" "then" statement; | |
716 | else: "else" statement; | |
717 | %% | |
718 | ]]) | |
719 | ||
da730230 | 720 | AT_BISON_CHECK([-v -o input.c input.y]) |
b9752825 | 721 | |
728c4be2 | 722 | # Check only the tables. |
ce4ccb4b AD |
723 | [sed -n 's/ *$//;/^static const.*\[\] =/,/^}/p' input.c >tables.c] |
724 | ||
725 | AT_CHECK([[cat tables.c]], 0, | |
d42cf844 | 726 | [[static const yytype_uint8 yytranslate[] = |
b9752825 AD |
727 | { |
728 | 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
729 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
730 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
731 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
732 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
733 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
734 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
735 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
736 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
737 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
738 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
739 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
740 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
741 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
742 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
743 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
744 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
745 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
746 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
747 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
748 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
749 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
750 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
751 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
752 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, | |
007a50a4 AD |
753 | 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, |
754 | 5, 6 | |
b9752825 | 755 | }; |
d42cf844 | 756 | static const yytype_uint8 yyrline[] = |
b9752825 | 757 | { |
e7b8bef1 | 758 | 0, 2, 2, 3, 3, 4, 5 |
b9752825 AD |
759 | }; |
760 | static const char *const yytname[] = | |
761 | { | |
9e0876fb PE |
762 | "$end", "error", "$undefined", "\"if\"", "\"const\"", "\"then\"", |
763 | "\"else\"", "$accept", "statement", "struct_stat", "if", "else", 0 | |
b9752825 | 764 | }; |
d42cf844 | 765 | static const yytype_uint16 yytoknum[] = |
b9752825 | 766 | { |
3650b4b8 | 767 | 0, 256, 257, 258, 259, 260, 261 |
b9752825 | 768 | }; |
0991e29b | 769 | static const yytype_int8 yypact[] = |
b9752825 | 770 | { |
0991e29b AD |
771 | -2, -1, 4, -8, 0, 2, -8, -2, -8, -2, |
772 | -8, -8 | |
b9752825 | 773 | }; |
d42cf844 | 774 | static const yytype_uint8 yydefact[] = |
b9752825 | 775 | { |
e8832397 | 776 | 3, 0, 0, 2, 0, 0, 1, 3, 4, 3, |
e7b8bef1 | 777 | 6, 5 |
b9752825 | 778 | }; |
d42cf844 | 779 | static const yytype_int8 yypgoto[] = |
b9752825 | 780 | { |
12b0043a | 781 | -8, -7, -8, -8, -8 |
b9752825 | 782 | }; |
0991e29b AD |
783 | static const yytype_int8 yydefgoto[] = |
784 | { | |
785 | -1, 2, 3, 4, 8 | |
786 | }; | |
d42cf844 | 787 | static const yytype_uint8 yytable[] = |
b9752825 | 788 | { |
e7b8bef1 | 789 | 10, 1, 11, 5, 6, 0, 7, 9 |
b9752825 | 790 | }; |
d42cf844 | 791 | static const yytype_int8 yycheck[] = |
b9752825 | 792 | { |
e7b8bef1 | 793 | 7, 3, 9, 4, 0, -1, 6, 5 |
b9752825 | 794 | }; |
d42cf844 | 795 | static const yytype_uint8 yystos[] = |
5504898e AD |
796 | { |
797 | 0, 3, 8, 9, 10, 4, 0, 6, 11, 5, | |
798 | 8, 8 | |
799 | }; | |
0991e29b AD |
800 | static const yytype_uint8 yyr1[] = |
801 | { | |
802 | 0, 7, 8, 9, 9, 10, 11 | |
803 | }; | |
804 | static const yytype_uint8 yyr2[] = | |
805 | { | |
806 | 0, 2, 1, 0, 2, 4, 2 | |
807 | }; | |
b9752825 AD |
808 | ]]) |
809 | ||
810 | AT_CLEANUP | |
22e304a6 AD |
811 | |
812 | ||
813 | ## ------------------------- ## | |
814 | ## yycheck Bound Violation. ## | |
815 | ## ------------------------- ## | |
816 | ||
817 | ||
818 | # _AT_DATA_DANCER_Y(BISON-OPTIONS) | |
819 | # -------------------------------- | |
820 | # The following grammar, taken from Andrew Suffield's GPL'd implementation | |
821 | # of DGMTP, the Dancer Generic Message Transport Protocol, used to violate | |
822 | # yycheck's bounds where issuing a verbose error message. Keep this test | |
823 | # so that possible bound checking compilers could check all the skeletons. | |
824 | m4_define([_AT_DATA_DANCER_Y], | |
825 | [AT_DATA_GRAMMAR([dancer.y], | |
826 | [%{ | |
848dc439 | 827 | static int yylex (AT_LALR1_CC_IF([int *], [void])); |
95611b56 | 828 | AT_LALR1_CC_IF([#include <cstdlib>], |
cf806753 PE |
829 | [#include <stdlib.h> |
830 | #include <stdio.h> | |
848dc439 | 831 | static void yyerror (const char *);]) |
22e304a6 AD |
832 | %} |
833 | $1 | |
834 | %token ARROW INVALID NUMBER STRING DATA | |
835 | %defines | |
836 | %verbose | |
837 | %error-verbose | |
838 | /* Grammar follows */ | |
839 | %% | |
840 | line: header body | |
841 | ; | |
842 | ||
843 | header: '<' from ARROW to '>' type ':' | |
844 | | '<' ARROW to '>' type ':' | |
845 | | ARROW to type ':' | |
846 | | type ':' | |
847 | | '<' '>' | |
848 | ; | |
849 | ||
850 | from: DATA | |
851 | | STRING | |
852 | | INVALID | |
853 | ; | |
854 | ||
855 | to: DATA | |
856 | | STRING | |
857 | | INVALID | |
858 | ; | |
859 | ||
860 | type: DATA | |
861 | | STRING | |
862 | | INVALID | |
863 | ; | |
864 | ||
865 | body: /* empty */ | |
866 | | body member | |
867 | ; | |
868 | ||
869 | member: STRING | |
870 | | DATA | |
871 | | '+' NUMBER | |
872 | | '-' NUMBER | |
873 | | NUMBER | |
874 | | INVALID | |
875 | ; | |
876 | %% | |
877 | AT_LALR1_CC_IF( | |
68e11668 | 878 | [/* A C++ error reporting function. */ |
22e304a6 | 879 | void |
2ea7730c | 880 | yy::parser::error (const std::string& m) |
22e304a6 | 881 | { |
efeed023 | 882 | std::cerr << m << std::endl; |
22e304a6 AD |
883 | } |
884 | ||
885 | int | |
99880de5 | 886 | yyparse () |
22e304a6 | 887 | { |
99880de5 | 888 | yy::parser parser; |
fa7b79c0 PE |
889 | #if YYDEBUG |
890 | parser.set_debug_level (YYDEBUG); | |
891 | #endif | |
22e304a6 AD |
892 | return parser.parse (); |
893 | } | |
894 | ], | |
895 | [static void | |
896 | yyerror (const char *s) | |
897 | { | |
898 | fprintf (stderr, "%s\n", s); | |
899 | }]) | |
900 | ||
901 | static int | |
848dc439 | 902 | yylex (AT_LALR1_CC_IF([int *lval], [void])) |
22e304a6 | 903 | [{ |
cf806753 | 904 | static int const tokens[] = |
22e304a6 AD |
905 | { |
906 | ':', -1 | |
907 | }; | |
cf806753 | 908 | static size_t toknum; |
848dc439 | 909 | ]AT_LALR1_CC_IF([*lval = 0; /* Pacify GCC. */])[ |
cf806753 PE |
910 | if (! (toknum < sizeof tokens / sizeof *tokens)) |
911 | abort (); | |
22e304a6 AD |
912 | return tokens[toknum++]; |
913 | }] | |
914 | ||
915 | int | |
916 | main (void) | |
917 | { | |
918 | return yyparse (); | |
919 | } | |
920 | ]) | |
921 | ])# _AT_DATA_DANCER_Y | |
922 | ||
923 | ||
924 | # AT_CHECK_DANCER(BISON-OPTIONS) | |
925 | # ------------------------------ | |
926 | # Generate the grammar, compile it, run it. | |
927 | m4_define([AT_CHECK_DANCER], | |
928 | [AT_SETUP([Dancer $1]) | |
929 | AT_BISON_OPTION_PUSHDEFS([$1]) | |
930 | _AT_DATA_DANCER_Y([$1]) | |
da730230 | 931 | AT_BISON_CHECK([-o dancer.c dancer.y]) |
7ca2266a | 932 | AT_FULL_COMPILE([dancer]) |
22e304a6 | 933 | AT_PARSER_CHECK([./dancer], 1, [], |
d5286af1 | 934 | [syntax error, unexpected ':' |
22e304a6 AD |
935 | ]) |
936 | AT_BISON_OPTION_POPDEFS | |
937 | AT_CLEANUP | |
938 | ]) | |
939 | ||
940 | AT_CHECK_DANCER() | |
941 | AT_CHECK_DANCER([%glr-parser]) | |
942 | AT_CHECK_DANCER([%skeleton "lalr1.cc"]) | |
d6645148 PE |
943 | |
944 | ||
945 | ## ------------------------------------------ ## | |
946 | ## Diagnostic that expects two alternatives. ## | |
947 | ## ------------------------------------------ ## | |
948 | ||
949 | ||
950 | # _AT_DATA_EXPECT2_Y(BISON-OPTIONS) | |
951 | # -------------------------------- | |
952 | m4_define([_AT_DATA_EXPECT2_Y], | |
953 | [AT_DATA_GRAMMAR([expect2.y], | |
954 | [%{ | |
955 | static int yylex (AT_LALR1_CC_IF([int *], [void])); | |
95611b56 | 956 | AT_LALR1_CC_IF([#include <cstdlib>], |
d6645148 | 957 | [#include <stdio.h> |
c4bd5bf7 | 958 | #include <stdlib.h> |
d6645148 PE |
959 | static void yyerror (const char *);]) |
960 | %} | |
961 | $1 | |
962 | %defines | |
963 | %error-verbose | |
964 | %token A 1000 | |
965 | %token B | |
966 | ||
967 | %% | |
968 | program: /* empty */ | |
969 | | program e ';' | |
970 | | program error ';'; | |
971 | ||
972 | e: e '+' t | t; | |
973 | t: A | B; | |
974 | ||
975 | %% | |
976 | AT_LALR1_CC_IF( | |
977 | [/* A C++ error reporting function. */ | |
978 | void | |
2ea7730c | 979 | yy::parser::error (const std::string& m) |
d6645148 PE |
980 | { |
981 | std::cerr << m << std::endl; | |
982 | } | |
983 | ||
984 | int | |
985 | yyparse () | |
986 | { | |
987 | yy::parser parser; | |
988 | return parser.parse (); | |
989 | } | |
990 | ], | |
991 | [static void | |
992 | yyerror (const char *s) | |
993 | { | |
994 | fprintf (stderr, "%s\n", s); | |
995 | }]) | |
996 | ||
997 | static int | |
998 | yylex (AT_LALR1_CC_IF([int *lval], [void])) | |
999 | [{ | |
cf806753 | 1000 | static int const tokens[] = |
d6645148 PE |
1001 | { |
1002 | 1000, '+', '+', -1 | |
1003 | }; | |
cf806753 | 1004 | static size_t toknum; |
d6645148 | 1005 | ]AT_LALR1_CC_IF([*lval = 0; /* Pacify GCC. */])[ |
cf806753 PE |
1006 | if (! (toknum < sizeof tokens / sizeof *tokens)) |
1007 | abort (); | |
d6645148 PE |
1008 | return tokens[toknum++]; |
1009 | }] | |
1010 | ||
1011 | int | |
1012 | main (void) | |
1013 | { | |
1014 | return yyparse (); | |
1015 | } | |
1016 | ]) | |
1017 | ])# _AT_DATA_EXPECT2_Y | |
1018 | ||
1019 | ||
1020 | # AT_CHECK_EXPECT2(BISON-OPTIONS) | |
1021 | # ------------------------------ | |
1022 | # Generate the grammar, compile it, run it. | |
1023 | m4_define([AT_CHECK_EXPECT2], | |
1024 | [AT_SETUP([Expecting two tokens $1]) | |
1025 | AT_BISON_OPTION_PUSHDEFS([$1]) | |
1026 | _AT_DATA_EXPECT2_Y([$1]) | |
da730230 | 1027 | AT_BISON_CHECK([-o expect2.c expect2.y]) |
7ca2266a | 1028 | AT_FULL_COMPILE([expect2]) |
d6645148 PE |
1029 | AT_PARSER_CHECK([./expect2], 1, [], |
1030 | [syntax error, unexpected '+', expecting A or B | |
1031 | ]) | |
1032 | AT_BISON_OPTION_POPDEFS | |
1033 | AT_CLEANUP | |
1034 | ]) | |
1035 | ||
1036 | AT_CHECK_EXPECT2() | |
1037 | AT_CHECK_EXPECT2([%glr-parser]) | |
1038 | AT_CHECK_EXPECT2([%skeleton "lalr1.cc"]) | |
4210cd0b JD |
1039 | |
1040 | ||
1041 | ||
1042 | ## --------------------------------------------- ## | |
1043 | ## Braced code in declaration in rules section. ## | |
1044 | ## --------------------------------------------- ## | |
1045 | ||
1046 | AT_SETUP([Braced code in declaration in rules section]) | |
1047 | ||
1048 | # Bison once mistook braced code in a declaration in the rules section to be a | |
1049 | # rule action. | |
1050 | ||
1051 | AT_DATA_GRAMMAR([input.y], | |
1052 | [[%{ | |
1053 | #include <stdio.h> | |
381ecb06 JD |
1054 | static void yyerror (char const *msg); |
1055 | static int yylex (void); | |
4210cd0b JD |
1056 | %} |
1057 | ||
1058 | %error-verbose | |
1059 | ||
1060 | %% | |
1061 | ||
1062 | start: | |
1063 | { | |
1064 | printf ("Bison would once convert this action to a midrule because of the" | |
e9690142 | 1065 | " subsequent braced code.\n"); |
4210cd0b JD |
1066 | } |
1067 | ; | |
1068 | ||
1069 | %destructor { fprintf (stderr, "DESTRUCTOR\n"); } 'a'; | |
1070 | %printer { fprintf (yyoutput, "PRINTER"); } 'a'; | |
1071 | ||
1072 | %% | |
1073 | ||
381ecb06 | 1074 | static void |
4210cd0b JD |
1075 | yyerror (char const *msg) |
1076 | { | |
1077 | fprintf (stderr, "%s\n", msg); | |
1078 | } | |
1079 | ||
381ecb06 | 1080 | static int |
4210cd0b JD |
1081 | yylex (void) |
1082 | { | |
1083 | return 'a'; | |
1084 | } | |
1085 | ||
1086 | int | |
1087 | main (void) | |
1088 | { | |
1089 | yydebug = 1; | |
1090 | return !yyparse (); | |
1091 | } | |
1092 | ]]) | |
1093 | ||
da730230 | 1094 | AT_BISON_CHECK([-t -o input.c input.y]) |
4210cd0b JD |
1095 | AT_COMPILE([input]) |
1096 | AT_PARSER_CHECK([./input], 0, | |
1097 | [[Bison would once convert this action to a midrule because of the subsequent braced code. | |
1098 | ]], | |
1099 | [[Starting parse | |
1100 | Entering state 0 | |
231ed89a | 1101 | Reducing stack by rule 1 (line 20): |
4210cd0b JD |
1102 | -> $$ = nterm start () |
1103 | Stack now 0 | |
1104 | Entering state 1 | |
1105 | Reading a token: Next token is token 'a' (PRINTER) | |
1106 | syntax error, unexpected 'a', expecting $end | |
1107 | Error: popping nterm start () | |
1108 | Stack now 0 | |
1109 | Cleanup: discarding lookahead token 'a' (PRINTER) | |
1110 | DESTRUCTOR | |
1111 | Stack now 0 | |
1112 | ]]) | |
1113 | ||
1114 | AT_CLEANUP | |
965537bc JD |
1115 | |
1116 | ||
1117 | ||
1118 | ## --------------------------------- ## | |
1119 | ## String alias declared after use. ## | |
1120 | ## --------------------------------- ## | |
1121 | ||
1122 | AT_SETUP([String alias declared after use]) | |
1123 | ||
1124 | # Bison once incorrectly asserted that the symbol number for either a token or | |
1125 | # its alias was the highest symbol number so far at the point of the alias | |
1126 | # declaration. That was true unless the declaration appeared after their first | |
6d0ef4ec | 1127 | # uses and other tokens appeared in between. |
965537bc JD |
1128 | |
1129 | AT_DATA([input.y], | |
1130 | [[%% | |
1131 | start: 'a' "A" 'b'; | |
1132 | %token 'a' "A"; | |
1133 | ]]) | |
1134 | ||
da730230 | 1135 | AT_BISON_CHECK([-t -o input.c input.y]) |
965537bc JD |
1136 | |
1137 | AT_CLEANUP | |
a0de5091 JD |
1138 | |
1139 | ||
1140 | ||
1141 | ## -------------------------------- ## | |
1142 | ## Extra lookahead sets in report. ## | |
1143 | ## -------------------------------- ## | |
1144 | ||
1145 | AT_SETUP([[Extra lookahead sets in report]]) | |
1146 | ||
88c78747 JD |
1147 | # Bison prints each reduction's lookahead set only next to the associated |
1148 | # state's one item that (1) is associated with the same rule as the reduction | |
1149 | # and (2) has its dot at the end of its RHS. Previously, Bison also | |
1150 | # erroneously printed the lookahead set next to all of the state's other items | |
1151 | # associated with the same rule. This bug affected only the `.output' file and | |
1152 | # not the generated parser source code. | |
a0de5091 JD |
1153 | |
1154 | AT_DATA([[input.y]], | |
1155 | [[%% | |
1156 | start: a | 'a' a 'a' ; | |
1157 | a: 'a' ; | |
1158 | ]]) | |
1159 | ||
da730230 | 1160 | AT_BISON_CHECK([[--report=all input.y]]) |
a0de5091 JD |
1161 | AT_CHECK([[sed -n '/^state 1$/,/^state 2$/p' input.output]], [[0]], |
1162 | [[state 1 | |
1163 | ||
1164 | 2 start: 'a' . a 'a' | |
1165 | 3 a: . 'a' | |
1166 | 3 | 'a' . [$end] | |
1167 | ||
1168 | 'a' shift, and go to state 4 | |
1169 | ||
1170 | $default reduce using rule 3 (a) | |
1171 | ||
1172 | a go to state 5 | |
1173 | ||
1174 | ||
1175 | state 2 | |
1176 | ]]) | |
1177 | ||
1178 | AT_CLEANUP | |
ab7f29f8 JD |
1179 | |
1180 | ||
1181 | ||
1182 | ## ---------------------------------------- ## | |
1183 | ## Token number in precedence declaration. ## | |
1184 | ## ---------------------------------------- ## | |
1185 | ||
58bd33b7 | 1186 | AT_SETUP([[Token number in precedence declaration]]) |
ab7f29f8 JD |
1187 | |
1188 | # POSIX says token numbers can be declared in %left, %right, and %nonassoc, but | |
1189 | # we lost this in Bison 1.50. | |
1190 | ||
1191 | AT_DATA_GRAMMAR([input.y], | |
1192 | [[%{ | |
1193 | #include <stdio.h> | |
1194 | void yyerror (char const *); | |
1195 | int yylex (void); | |
1196 | %} | |
1197 | ||
1198 | %error-verbose | |
1f36f544 | 1199 | %right END 0 |
ab7f29f8 JD |
1200 | %left TK1 1 TK2 2 "tok alias" 3 |
1201 | ||
1202 | %% | |
1203 | ||
1f36f544 JD |
1204 | start: |
1205 | TK1 sr_conflict "tok alias" | |
1206 | | start %prec END | |
1207 | ; | |
ab7f29f8 JD |
1208 | sr_conflict: |
1209 | TK2 | |
1210 | | TK2 "tok alias" | |
1211 | ; | |
1212 | ||
1213 | %% | |
1214 | ||
1215 | void | |
1216 | yyerror (char const *msg) | |
1217 | { | |
1218 | fprintf (stderr, "%s\n", msg); | |
1219 | } | |
1220 | ||
1221 | int | |
1222 | yylex (void) | |
1223 | { | |
1224 | static int const input[] = { 1, 2, 3, 0 }; | |
1225 | static int const *inputp = input; | |
1226 | return *inputp++; | |
1227 | } | |
1228 | ||
1229 | int | |
1230 | main (void) | |
1231 | { | |
1232 | return yyparse (); | |
1233 | } | |
1234 | ]]) | |
1235 | ||
1236 | AT_BISON_CHECK([[-o input.c input.y]], [[0]],, | |
1f36f544 JD |
1237 | [[input.y:23.5-19: warning: rule useless in parser due to conflicts: start: start |
1238 | input.y:27.5-19: warning: rule useless in parser due to conflicts: sr_conflict: TK2 "tok alias" | |
ab7f29f8 JD |
1239 | ]]) |
1240 | AT_COMPILE([[input]]) | |
1241 | AT_PARSER_CHECK([[./input]]) | |
1242 | ||
1243 | AT_CLEANUP | |
43aabb70 JD |
1244 | |
1245 | ||
1246 | ||
1247 | ## --------------------------- ## | |
1248 | ## parse-gram.y: LALR = IELR. ## | |
1249 | ## --------------------------- ## | |
1250 | ||
1251 | # If parse-gram.y's LALR and IELR parser tables ever begin to differ, we | |
1252 | # need to fix parse-gram.y or start using IELR. | |
1253 | ||
1254 | AT_SETUP([[parse-gram.y: LALR = IELR]]) | |
1255 | ||
1256 | # Avoid tests/bison's dark magic by processing a local copy of the | |
1257 | # grammar. Avoid differences in synclines by telling bison that the | |
1258 | # output files have the same name. | |
d8f68fc2 JD |
1259 | [cp $abs_top_srcdir/src/parse-gram.y input.y] |
1260 | AT_BISON_CHECK([[-o input.c -Dlr.type=lalr input.y]]) | |
1261 | [mv input.c lalr.c] | |
1262 | AT_BISON_CHECK([[-o input.c -Dlr.type=ielr input.y]]) | |
1263 | [mv input.c ielr.c] | |
43aabb70 JD |
1264 | AT_CHECK([[diff -u lalr.c ielr.c]]) |
1265 | ||
1266 | AT_CLEANUP | |
52cea04a JD |
1267 | |
1268 | ||
1269 | ||
1270 | ## -------------------------------------------- ## | |
1271 | ## parse.error=verbose and YYSTACK_USE_ALLOCA. ## | |
1272 | ## -------------------------------------------- ## | |
1273 | ||
1274 | AT_SETUP([[parse.error=verbose and YYSTACK_USE_ALLOCA]]) | |
1275 | ||
1276 | AT_DATA_GRAMMAR([input.y], | |
1277 | [[%code { | |
1278 | #include <stdio.h> | |
1279 | void yyerror (char const *); | |
1280 | int yylex (void); | |
1281 | #define YYSTACK_USE_ALLOCA 1 | |
1282 | } | |
1283 | ||
1284 | %define parse.error verbose | |
1285 | ||
1286 | %% | |
1287 | ||
1288 | start: check syntax_error syntax_error ; | |
1289 | ||
1290 | check: | |
1291 | { | |
1292 | if (128 < sizeof yymsgbuf) | |
1293 | { | |
1294 | fprintf (stderr, | |
1295 | "The initial size of yymsgbuf in yyparse has increased\n" | |
1296 | "since this test group was last updated. As a result,\n" | |
1297 | "this test group may no longer manage to induce a\n" | |
1298 | "reallocation of the syntax error message buffer.\n" | |
1299 | "This test group must be adjusted to produce a longer\n" | |
1300 | "error message.\n"); | |
1301 | YYABORT; | |
1302 | } | |
1303 | } | |
1304 | ; | |
1305 | ||
1306 | // Induce a syntax error message whose total length is more than | |
1307 | // sizeof yymsgbuf in yyparse. Each token here is 64 bytes. | |
1308 | syntax_error: | |
1309 | "123456789112345678921234567893123456789412345678951234567896123A" | |
1310 | | "123456789112345678921234567893123456789412345678951234567896123B" | |
1311 | | error 'a' 'b' 'c' | |
1312 | ; | |
1313 | ||
1314 | %% | |
1315 | ||
1316 | void | |
1317 | yyerror (char const *msg) | |
1318 | { | |
1319 | fprintf (stderr, "%s\n", msg); | |
1320 | } | |
1321 | ||
1322 | int | |
1323 | yylex (void) | |
1324 | { | |
1325 | /* Induce two syntax error messages (which requires full error | |
1326 | recovery by shifting 3 tokens) in order to detect any loss of the | |
1327 | reallocated buffer. */ | |
1328 | static char const *input = "abc"; | |
1329 | return *input++; | |
1330 | } | |
1331 | ||
1332 | int | |
1333 | main (void) | |
1334 | { | |
1335 | return yyparse (); | |
1336 | } | |
1337 | ]]) | |
1338 | ||
1339 | AT_BISON_CHECK([[-o input.c input.y]]) | |
1340 | AT_COMPILE([[input]]) | |
1341 | AT_PARSER_CHECK([[./input]], [[1]], [], | |
1342 | [[syntax error, unexpected 'a', expecting 123456789112345678921234567893123456789412345678951234567896123A or 123456789112345678921234567893123456789412345678951234567896123B | |
1343 | syntax error, unexpected $end, expecting 123456789112345678921234567893123456789412345678951234567896123A or 123456789112345678921234567893123456789412345678951234567896123B | |
1344 | ]]) | |
1345 | ||
1346 | AT_CLEANUP | |
1347 | ||
1348 | ||
1349 | ||
1350 | ## ------------------------------ ## | |
1351 | ## parse.error=verbose overflow. ## | |
1352 | ## ------------------------------ ## | |
1353 | ||
1354 | # Imagine the case where YYSTACK_ALLOC_MAXIMUM = YYSIZE_MAXIMUM and an | |
1355 | # invocation of yysyntax_error has caused yymsg_alloc to grow to exactly | |
1356 | # YYSTACK_ALLOC_MAXIMUM (perhaps because the normal doubling of size had | |
45319f13 JD |
1357 | # to be clipped to YYSTACK_ALLOC_MAXIMUM). In an old version of yacc.c, |
1358 | # a subsequent invocation of yysyntax_error that overflows during its | |
1359 | # size calculation would return YYSIZE_MAXIMUM to yyparse. Then, | |
1360 | # yyparse would invoke yyerror using the old contents of yymsg. | |
52cea04a JD |
1361 | |
1362 | AT_SETUP([[parse.error=verbose overflow]]) | |
1363 | ||
52cea04a JD |
1364 | AT_DATA_GRAMMAR([input.y], |
1365 | [[%code { | |
1366 | #include <stdio.h> | |
1367 | void yyerror (char const *); | |
1368 | int yylex (void); | |
1369 | ||
1370 | /* This prevents this test case from having to induce error messages | |
1371 | large enough to overflow size_t. */ | |
1372 | #define YYSIZE_T unsigned char | |
1373 | ||
8ff146cd | 1374 | /* Bring in malloc and set EXIT_SUCCESS so yacc.c doesn't try to |
d6b347e4 | 1375 | provide a malloc prototype using our YYSIZE_T. */ |
52cea04a | 1376 | #include <stdlib.h> |
8ff146cd PE |
1377 | #ifndef EXIT_SUCCESS |
1378 | # define EXIT_SUCCESS 0 | |
d6b347e4 | 1379 | #endif |
52cea04a JD |
1380 | |
1381 | /* Max depth is usually much smaller than YYSTACK_ALLOC_MAXIMUM, and | |
1382 | we don't want gcc to warn everywhere this constant would be too big | |
1383 | to make sense for our YYSIZE_T. */ | |
1384 | #define YYMAXDEPTH 100 | |
1385 | } | |
1386 | ||
1387 | %define parse.error verbose | |
1388 | ||
1389 | %% | |
1390 | ||
1391 | start: syntax_error1 check syntax_error2 ; | |
1392 | ||
1393 | // Induce a syntax error message whose total length causes yymsg in | |
1394 | // yyparse to be reallocated to size YYSTACK_ALLOC_MAXIMUM, which | |
1395 | // should be 255. Each token here is 64 bytes. | |
1396 | syntax_error1: | |
1397 | "123456789112345678921234567893123456789412345678951234567896123A" | |
1398 | | "123456789112345678921234567893123456789412345678951234567896123B" | |
1399 | | "123456789112345678921234567893123456789412345678951234567896123C" | |
1400 | | error 'a' 'b' 'c' | |
1401 | ; | |
1402 | ||
1403 | check: | |
1404 | { | |
1405 | if (yymsg_alloc != YYSTACK_ALLOC_MAXIMUM | |
1406 | || YYSTACK_ALLOC_MAXIMUM != YYSIZE_MAXIMUM | |
1407 | || YYSIZE_MAXIMUM != 255) | |
1408 | { | |
1409 | fprintf (stderr, | |
1410 | "The assumptions of this test group are no longer\n" | |
1411 | "valid, so it may no longer catch the error it was\n" | |
1412 | "designed to catch. Specifically, the following\n" | |
1413 | "values should all be 255:\n\n"); | |
1414 | fprintf (stderr, " yymsg_alloc = %d\n", yymsg_alloc); | |
1415 | fprintf (stderr, " YYSTACK_ALLOC_MAXIMUM = %d\n", | |
1416 | YYSTACK_ALLOC_MAXIMUM); | |
1417 | fprintf (stderr, " YYSIZE_MAXIMUM = %d\n", YYSIZE_MAXIMUM); | |
1418 | YYABORT; | |
1419 | } | |
1420 | } | |
1421 | ; | |
1422 | ||
1423 | // Now overflow. | |
1424 | syntax_error2: | |
1425 | "123456789112345678921234567893123456789412345678951234567896123A" | |
1426 | | "123456789112345678921234567893123456789412345678951234567896123B" | |
1427 | | "123456789112345678921234567893123456789412345678951234567896123C" | |
1428 | | "123456789112345678921234567893123456789412345678951234567896123D" | |
1429 | | "123456789112345678921234567893123456789412345678951234567896123E" | |
1430 | ; | |
1431 | ||
1432 | %% | |
1433 | ||
1434 | void | |
1435 | yyerror (char const *msg) | |
1436 | { | |
1437 | fprintf (stderr, "%s\n", msg); | |
1438 | } | |
1439 | ||
1440 | int | |
1441 | yylex (void) | |
1442 | { | |
1443 | /* Induce two syntax error messages (which requires full error | |
1444 | recovery by shifting 3 tokens). */ | |
1445 | static char const *input = "abc"; | |
1446 | return *input++; | |
1447 | } | |
1448 | ||
1449 | int | |
1450 | main (void) | |
1451 | { | |
1452 | /* Push parsers throw away the message buffer between tokens, so skip | |
1453 | this test under maintainer-push-check. */ | |
1454 | if (YYPUSH) | |
1455 | return 77; | |
1456 | return yyparse (); | |
1457 | } | |
1458 | ]]) | |
1459 | ||
1460 | AT_BISON_CHECK([[-o input.c input.y]]) | |
1461 | ||
1462 | # gcc warns about tautologies and fallacies involving comparisons for | |
1463 | # unsigned char. However, it doesn't produce these same warnings for | |
1464 | # size_t and many other types when the warnings would seem to make just | |
1465 | # as much sense. We ignore the warnings. | |
1466 | [CFLAGS="$NO_WERROR_CFLAGS"] | |
1467 | AT_COMPILE([[input]]) | |
1468 | ||
1469 | AT_PARSER_CHECK([[./input]], [[2]], [], | |
1470 | [[syntax error, unexpected 'a', expecting 123456789112345678921234567893123456789412345678951234567896123A or 123456789112345678921234567893123456789412345678951234567896123B or 123456789112345678921234567893123456789412345678951234567896123C | |
1471 | syntax error | |
1472 | memory exhausted | |
1473 | ]]) | |
1474 | ||
1475 | AT_CLEANUP | |
bf35c71c JD |
1476 | |
1477 | ||
1478 | ||
1479 | ## ------------------------ ## | |
1480 | ## LAC: Exploratory stack. ## | |
1481 | ## ------------------------ ## | |
1482 | ||
1483 | AT_SETUP([[LAC: Exploratory stack]]) | |
1484 | ||
1485 | m4_pushdef([AT_LAC_CHECK], [ | |
1486 | ||
1487 | AT_BISON_OPTION_PUSHDEFS([$1]) | |
1488 | ||
1489 | AT_DATA_GRAMMAR([input.y], | |
1490 | [[%code { | |
1491 | #include <stdio.h> | |
1492 | void yyerror (char const *); | |
1493 | int yylex (]AT_PURE_IF([[YYSTYPE *]], [[void]])[); | |
1494 | } | |
1495 | ||
1496 | ]$1[ | |
1497 | %define parse.error verbose | |
1498 | %token 'c' | |
1499 | ||
1500 | %% | |
1501 | ||
1502 | // default reductions in inconsistent states | |
1503 | // v v v v v v v v v v v v v v | |
1504 | S: A B A A B A A A A B A A A A A A A B C C A A A A A A A A A A A A B ; | |
107844a3 JD |
1505 | // ^ ^ ^ |
1506 | // LAC reallocs | |
bf35c71c JD |
1507 | |
1508 | A: 'a' | /*empty*/ { printf ("inconsistent default reduction\n"); } ; | |
1509 | B: 'b' ; | |
1510 | C: /*empty*/ { printf ("consistent default reduction\n"); } ; | |
1511 | ||
1512 | %% | |
1513 | ||
1514 | void | |
1515 | yyerror (char const *msg) | |
1516 | { | |
1517 | fprintf (stderr, "%s\n", msg); | |
1518 | } | |
1519 | ||
1520 | int | |
1521 | yylex (]AT_PURE_IF([[YYSTYPE *v]], [[void]])[) | |
1522 | { | |
1523 | static char const *input = "bbbbc";]AT_PURE_IF([[ | |
1524 | *v = 0;]])[ | |
1525 | return *input++; | |
1526 | } | |
1527 | ||
1528 | int | |
1529 | main (void) | |
1530 | { | |
1531 | yydebug = 1; | |
1532 | return yyparse (); | |
1533 | } | |
1534 | ]]) | |
1535 | ||
107844a3 JD |
1536 | AT_BISON_CHECK([[-Dparse.lac=full -Dparse.lac.es-capacity-initial=1 \ |
1537 | -Dparse.lac.memory-trace=full \ | |
bf35c71c JD |
1538 | -t -o input.c input.y]], [[0]], [], |
1539 | [[input.y: conflicts: 21 shift/reduce | |
1540 | ]]) | |
1541 | AT_COMPILE([[input]]) | |
1542 | AT_PARSER_CHECK([[./input > stdout.txt 2> stderr.txt]], [[1]]) | |
1543 | ||
1544 | # Make sure syntax error doesn't forget that 'a' is expected. It would | |
1545 | # be forgotten without lookahead correction. | |
1546 | AT_CHECK([[grep 'syntax error,' stderr.txt]], [[0]], | |
1547 | [[syntax error, unexpected 'c', expecting 'a' or 'b' | |
1548 | ]]) | |
1549 | ||
1550 | # Check number of default reductions in inconsistent states to be sure | |
1551 | # syntax error is detected before unnecessary reductions are performed. | |
1552 | AT_CHECK([[perl -0777 -ne 'print s/inconsistent default reduction//g;' \ | |
1553 | < stdout.txt || exit 77]], [[0]], [[14]]) | |
1554 | ||
1555 | # Check number of default reductions in consistent states to be sure | |
1556 | # it is performed before the syntax error is detected. | |
1557 | AT_CHECK([[perl -0777 -ne 'print s/\bconsistent default reduction//g;' \ | |
1558 | < stdout.txt || exit 77]], [[0]], [[2]]) | |
1559 | ||
107844a3 JD |
1560 | # Check number of reallocs to be sure reallocated memory isn't somehow |
1561 | # lost between LAC invocations. | |
1562 | AT_CHECK([[perl -0777 -ne 'print s/\(realloc//g;' < stderr.txt \ | |
1563 | || exit 77]], [[0]], [[3]]) | |
1564 | ||
bf35c71c JD |
1565 | AT_BISON_OPTION_POPDEFS |
1566 | ]) | |
1567 | ||
1568 | AT_LAC_CHECK([[%define api.push-pull pull]]) | |
1569 | AT_LAC_CHECK([[%define api.push-pull pull %define api.pure]]) | |
1570 | AT_LAC_CHECK([[%define api.push-pull both]]) | |
1571 | AT_LAC_CHECK([[%define api.push-pull both %define api.pure]]) | |
1572 | ||
1573 | m4_popdef([AT_LAC_CHECK]) | |
1574 | ||
1575 | AT_CLEANUP | |
1576 | ||
1577 | ||
1578 | ||
1579 | ## ------------------------ ## | |
1580 | ## LAC: Memory exhaustion. ## | |
1581 | ## ------------------------ ## | |
1582 | ||
1583 | AT_SETUP([[LAC: Memory exhaustion]]) | |
1584 | ||
1585 | m4_pushdef([AT_LAC_CHECK], [ | |
1586 | ||
1587 | AT_DATA_GRAMMAR([input.y], | |
1588 | [[%code { | |
1589 | #include <stdio.h> | |
1590 | void yyerror (char const *); | |
1591 | int yylex (void); | |
107844a3 | 1592 | #define YYMAXDEPTH 8 |
bf35c71c JD |
1593 | } |
1594 | ||
1595 | %error-verbose | |
1596 | ||
1597 | %% | |
1598 | ||
1599 | S: A A A A A A A A A ; | |
1600 | A: /*empty*/ | 'a' ; | |
1601 | ||
1602 | %% | |
1603 | ||
1604 | void | |
1605 | yyerror (char const *msg) | |
1606 | { | |
1607 | fprintf (stderr, "%s\n", msg); | |
1608 | } | |
1609 | ||
1610 | int | |
1611 | yylex (void) | |
1612 | { | |
1613 | static char const *input = "]$1["; | |
1614 | return *input++; | |
1615 | } | |
1616 | ||
1617 | int | |
1618 | main (void) | |
1619 | { | |
1620 | yydebug = 1; | |
1621 | return yyparse (); | |
1622 | } | |
1623 | ]]) | |
1624 | ||
107844a3 | 1625 | AT_BISON_CHECK([[-Dparse.lac=full -Dparse.lac.es-capacity-initial=1 \ |
bf35c71c JD |
1626 | -t -o input.c input.y]], [[0]], [], |
1627 | [[input.y: conflicts: 8 shift/reduce | |
1628 | ]]) | |
1629 | AT_COMPILE([[input]]) | |
1630 | ||
1631 | ]) | |
1632 | ||
1633 | # Check for memory exhaustion during parsing. | |
1634 | AT_LAC_CHECK([[]]) | |
1635 | AT_PARSER_CHECK([[./input]], [[2]], [[]], | |
1636 | [[Starting parse | |
1637 | Entering state 0 | |
1638 | Reading a token: Now at end of input. | |
1639 | LAC: initial context established for $end | |
107844a3 | 1640 | LAC: checking lookahead $end: R2 G3 R2 G5 R2 G6 R2 G7 R2 G8 R2 G9 R2 G10 R2 G11 R2 (max size exceeded) |
bf35c71c JD |
1641 | memory exhausted |
1642 | Cleanup: discarding lookahead token $end () | |
1643 | Stack now 0 | |
1644 | ]]) | |
1645 | ||
1646 | # Induce an immediate syntax error with an undefined token, and check | |
1647 | # for memory exhaustion while building syntax error message. | |
1648 | AT_LAC_CHECK([[z]], [[0]]) | |
1649 | AT_PARSER_CHECK([[./input]], [[2]], [[]], | |
1650 | [[Starting parse | |
1651 | Entering state 0 | |
1652 | Reading a token: Next token is token $undefined () | |
1653 | LAC: initial context established for $undefined | |
1654 | LAC: checking lookahead $undefined: Always Err | |
1655 | Constructing syntax error message | |
107844a3 | 1656 | LAC: checking lookahead $end: R2 G3 R2 G5 R2 G6 R2 G7 R2 G8 R2 G9 R2 G10 R2 G11 R2 (max size exceeded) |
bf35c71c JD |
1657 | syntax error |
1658 | memory exhausted | |
1659 | Cleanup: discarding lookahead token $undefined () | |
1660 | Stack now 0 | |
1661 | ]]) | |
1662 | ||
1663 | m4_popdef([AT_LAC_CHECK]) | |
1664 | ||
1665 | AT_CLEANUP |