]>
Commit | Line | Data |
---|---|---|
9534d2be | 1 | e# Executing Actions. -*- Autotest -*- |
7d424de1 | 2 | |
7d6bad19 | 3 | # Copyright (C) 2001-2013 Free Software Foundation, Inc. |
82c035a8 | 4 | |
f16b0819 | 5 | # This program is free software: you can redistribute it and/or modify |
82c035a8 | 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 | # | |
82c035a8 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 | # |
82c035a8 | 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/>. |
82c035a8 AD |
17 | |
18 | AT_BANNER([[User Actions.]]) | |
19 | ||
20 | ## ------------------ ## | |
21 | ## Mid-rule actions. ## | |
22 | ## ------------------ ## | |
23 | ||
24 | AT_SETUP([Mid-rule actions]) | |
25 | ||
26 | # Bison once forgot the mid-rule actions. It was because the action | |
27 | # was attached to the host rule (the one with the mid-rule action), | |
28 | # instead of being attached to the empty rule dedicated to this | |
29 | # action. | |
30 | ||
55f48c48 | 31 | AT_BISON_OPTION_PUSHDEFS |
9501dc6e | 32 | AT_DATA_GRAMMAR([[input.y]], |
cf499cff | 33 | [[%define parse.error verbose |
8f3596a6 | 34 | %debug |
f0f95a50 | 35 | %code { |
55f48c48 AD |
36 | ]AT_YYERROR_DECLARE[ |
37 | ]AT_YYLEX_DECLARE[ | |
f0f95a50 | 38 | } |
82c035a8 | 39 | %% |
931394cb AD |
40 | exp: { putchar ('0'); } |
41 | '1' { putchar ('1'); } | |
42 | '2' { putchar ('2'); } | |
43 | '3' { putchar ('3'); } | |
44 | '4' { putchar ('4'); } | |
45 | '5' { putchar ('5'); } | |
46 | '6' { putchar ('6'); } | |
47 | '7' { putchar ('7'); } | |
48 | '8' { putchar ('8'); } | |
49 | '9' { putchar ('9'); } | |
50 | { putchar ('\n'); } | |
82c035a8 AD |
51 | ; |
52 | %% | |
55f48c48 | 53 | ]AT_YYERROR_DEFINE[ |
95361618 | 54 | ]AT_YYLEX_DEFINE(["123456789"])[ |
3ef9fa8f | 55 | ]AT_MAIN_DEFINE[ |
82c035a8 | 56 | ]]) |
55f48c48 | 57 | AT_BISON_OPTION_POPDEFS |
82c035a8 | 58 | |
da730230 | 59 | AT_BISON_CHECK([-d -v -o input.c input.y]) |
1154cced AD |
60 | AT_COMPILE([input]) |
61 | AT_PARSER_CHECK([./input], 0, | |
931394cb | 62 | [[0123456789 |
82c035a8 AD |
63 | ]]) |
64 | ||
65 | AT_CLEANUP | |
75d1fe16 | 66 | |
f68a49ed AD |
67 | ## ----------------------- ## |
68 | ## Implicitly empty rule. ## | |
69 | ## ----------------------- ## | |
70 | ||
71 | AT_SETUP([Implicitly empty rule]) | |
72 | ||
73 | AT_DATA_GRAMMAR([[1.y]], | |
74 | [[%% | |
75 | exp: a b; | |
76 | a: /* empty. */ {}; | |
77 | // A mid-rule action does not count as an empty rule. | |
78 | b: {} {}; | |
79 | ]]) | |
80 | ||
81 | AT_BISON_CHECK([-fcaret -Wempty-rule 1.y], [0], [], | |
82 | [[1.y:11.17-18: warning: empty rule without %empty [-Wempty-rule] | |
83 | a: /* empty. */ {}; | |
84 | ^^ | |
85 | ]]) | |
86 | ||
42d101da AD |
87 | AT_DATA_GRAMMAR([[2.y]], |
88 | [[%% | |
89 | exp: a b c; | |
90 | a: /* empty. */ {}; | |
91 | b: %empty {}; | |
92 | c: /* empty. */ {}; | |
93 | ]]) | |
94 | ||
95 | AT_BISON_CHECK([-fcaret 2.y], [0], [], | |
96 | [[2.y:11.17-18: warning: empty rule without %empty [-Wempty-rule] | |
97 | a: /* empty. */ {}; | |
98 | ^^ | |
99 | 2.y:13.17-18: warning: empty rule without %empty [-Wempty-rule] | |
100 | c: /* empty. */ {}; | |
101 | ^^ | |
102 | ]]) | |
103 | ||
104 | AT_BISON_CHECK([-fcaret -Wno-empty-rule 2.y], [0]) | |
105 | ||
f68a49ed AD |
106 | AT_CLEANUP |
107 | ||
ae2b48f5 AD |
108 | ## ------------------------ ## |
109 | ## Invalid uses of %empty. ## | |
110 | ## ------------------------ ## | |
111 | ||
112 | AT_SETUP([Invalid uses of %empty]) | |
113 | ||
114 | AT_DATA_GRAMMAR([[one.y]], | |
115 | [[%% | |
116 | exp: | |
0fe5a72a | 117 | %empty {} %empty |
ae2b48f5 AD |
118 | ; |
119 | ]]) | |
120 | ||
121 | AT_BISON_CHECK([-fcaret one.y], [1], [], | |
0fe5a72a AD |
122 | [[one.y:11.13-18: error: only one %empty allowed per rule |
123 | %empty {} %empty | |
124 | ^^^^^^ | |
125 | one.y:11.3-8: previous declaration | |
126 | %empty {} %empty | |
127 | ^^^^^^ | |
ae2b48f5 AD |
128 | ]]) |
129 | ||
130 | AT_DATA_GRAMMAR([[two.y]], | |
131 | [[%% | |
132 | exp: | |
133 | 'a' %empty {} | |
134 | | %empty 'a' {} | |
135 | | %empty {} {} | |
136 | ; | |
137 | ]]) | |
138 | ||
139 | AT_BISON_CHECK([-fcaret two.y], [1], [], | |
140 | [[two.y:11.7-12: error: %empty on non-empty rule | |
141 | 'a' %empty {} | |
142 | ^^^^^^ | |
143 | two.y:12.3-8: error: %empty on non-empty rule | |
144 | | %empty 'a' {} | |
145 | ^^^^^^ | |
146 | two.y:13.3-8: error: %empty on non-empty rule | |
147 | | %empty {} {} | |
148 | ^^^^^^ | |
149 | ]]) | |
150 | ||
151 | AT_CLEANUP | |
152 | ||
153 | ## ---------------------- ## | |
154 | ## Valid uses of %empty. ## | |
155 | ## ---------------------- ## | |
156 | ||
157 | AT_SETUP([Valid uses of %empty]) | |
158 | ||
159 | AT_BISON_OPTION_PUSHDEFS | |
160 | AT_DATA_GRAMMAR([[input.y]], | |
161 | [[ | |
162 | %debug | |
163 | %code | |
164 | { | |
165 | ]AT_YYERROR_DECLARE[ | |
166 | ]AT_YYLEX_DECLARE[ | |
167 | } | |
168 | %% | |
169 | exp: %empty {} | |
170 | %% | |
171 | ]AT_YYERROR_DEFINE[ | |
172 | ]AT_YYLEX_DEFINE[ | |
173 | ]AT_MAIN_DEFINE[ | |
174 | ]]) | |
175 | ||
176 | AT_FULL_COMPILE([input]) | |
177 | AT_PARSER_CHECK([./input]) | |
178 | AT_BISON_OPTION_POPDEFS | |
179 | AT_CLEANUP | |
75d1fe16 | 180 | |
a1d1ab50 AD |
181 | ## ------------------ ## |
182 | ## Initial location. ## | |
183 | ## ------------------ ## | |
184 | ||
fb4c8a7c TR |
185 | # AT_TEST(SKELETON-NAME, DIRECTIVES, [MORE-DIRECTIVES], [LOCATION = 1.1]) |
186 | # ----------------------------------------------------------------------- | |
63951be2 | 187 | # Check that the initial location is correct. |
a1d1ab50 AD |
188 | m4_pushdef([AT_TEST], |
189 | [AT_SETUP([Initial location: $1 $2]) | |
190 | ||
6428a8a4 | 191 | AT_BISON_OPTION_PUSHDEFS([%locations %skeleton "$1" $2]) |
a1d1ab50 | 192 | AT_DATA_GRAMMAR([[input.y]], |
66fb016e | 193 | [[%locations |
a1d1ab50 AD |
194 | %debug |
195 | %skeleton "$1" | |
fb4c8a7c TR |
196 | ]$2[ |
197 | ]$3[ | |
a1d1ab50 AD |
198 | %code |
199 | { | |
200 | # include <stdio.h> | |
1127a75a | 201 | # include <stdlib.h> /* getenv */ |
a1d1ab50 AD |
202 | ]AT_YYERROR_DECLARE[ |
203 | ]AT_YYLEX_DECLARE[ | |
204 | } | |
205 | %% | |
206 | exp: { ]AT_SKEL_CC_IF([[std::cerr << @$ << std::endl]], | |
f0f95a50 | 207 | [[LOCATION_PRINT(stderr, @$); fputc ('\n', stderr)]])[; } |
a1d1ab50 AD |
208 | %% |
209 | ]AT_YYERROR_DEFINE[ | |
210 | ||
211 | ]AT_YYLEX_PROTOTYPE[ | |
212 | {]AT_PURE_IF([ | |
213 | YYUSE(lvalp); | |
214 | YYUSE(llocp);], [AT_SKEL_CC_IF([ | |
215 | YYUSE(lvalp); | |
216 | YYUSE(llocp);])])[ | |
217 | return 'x'; | |
218 | } | |
219 | ||
220 | int | |
221 | main (void) | |
222 | {]AT_SKEL_CC_IF([[ | |
6428a8a4 | 223 | yy::parser p; |
a1d1ab50 AD |
224 | p.set_debug_level (!!getenv("YYDEBUG")); |
225 | return p.parse ();]], [[ | |
226 | yydebug = !!getenv("YYDEBUG"); | |
6428a8a4 | 227 | return !!yyparse (]AT_PARAM_IF([0])[);]])[ |
a1d1ab50 AD |
228 | } |
229 | ]]) | |
230 | ||
231 | AT_FULL_COMPILE([input]) | |
232 | AT_PARSER_CHECK([./input], 1, [], | |
fb4c8a7c TR |
233 | [m4_default([$4], [1.1]) |
234 | m4_default([$4], [1.1])[: syntax error | |
a1d1ab50 AD |
235 | ]]) |
236 | AT_BISON_OPTION_POPDEFS | |
237 | AT_CLEANUP | |
238 | ]) | |
239 | ||
240 | ## FIXME: test Java, and iterate over skeletons. | |
241 | AT_TEST([yacc.c]) | |
6428a8a4 TR |
242 | AT_TEST([yacc.c], [%define api.pure full]) |
243 | AT_TEST([yacc.c], [%define api.pure %parse-param { int x }]) | |
a1d1ab50 | 244 | AT_TEST([yacc.c], [%define api.push-pull both]) |
6428a8a4 | 245 | AT_TEST([yacc.c], [%define api.push-pull both %define api.pure full]) |
a1d1ab50 | 246 | AT_TEST([glr.c]) |
6428a8a4 | 247 | AT_TEST([glr.c], [%define api.pure]) |
a1d1ab50 AD |
248 | AT_TEST([lalr1.cc]) |
249 | AT_TEST([glr.cc]) | |
250 | ||
fb4c8a7c TR |
251 | ## A very different test, based on PostgreSQL's implementation of the |
252 | ## locations. See | |
253 | ## http://lists.gnu.org/archive/html/bug-bison/2012-11/msg00023.html | |
254 | ## | |
255 | ## Weirdly enough, to trigger the warning with GCC 4.7, we must not | |
256 | ## use fprintf, so run the test twice: once to check the warning | |
257 | ## (absence thereof), and another time to check the value. | |
6428a8a4 | 258 | AT_TEST([yacc.c], [%define api.pure full], |
fb4c8a7c TR |
259 | [[%{ |
260 | # define YYLTYPE int | |
f0f95a50 | 261 | # define LOCATION_PRINT(Stream, Loc) \ |
fb4c8a7c TR |
262 | (void) (Loc) |
263 | # define YYLLOC_DEFAULT(Current, Rhs, N) \ | |
264 | (Current) = ((Rhs)[N ? 1 : 0]) | |
265 | %} | |
266 | ]], | |
267 | [@&t@]) | |
268 | ||
6428a8a4 | 269 | AT_TEST([yacc.c], [%define api.pure full], |
fb4c8a7c TR |
270 | [[%{ |
271 | # define YYLTYPE int | |
f0f95a50 | 272 | # define LOCATION_PRINT(Stream, Loc) \ |
fb4c8a7c TR |
273 | fprintf ((Stream), "%d", (Loc)) |
274 | # define YYLLOC_DEFAULT(Current, Rhs, N) \ | |
275 | (Current) = ((Rhs)[N ? 1 : 0]) | |
276 | %} | |
277 | ]], | |
278 | [0]) | |
279 | ||
280 | ||
a1d1ab50 | 281 | m4_popdef([AT_TEST]) |
75d1fe16 | 282 | |
5dac0025 PE |
283 | |
284 | ||
3804aa26 AD |
285 | ## ---------------- ## |
286 | ## Location Print. ## | |
287 | ## ---------------- ## | |
288 | ||
edaa22ec AD |
289 | # AT_TEST(SKELETON-NAME, DIRECTIVES, [MORE-DIRECTIVES]) |
290 | # ----------------------------------------------------- | |
3804aa26 AD |
291 | # Check that the initial location is correct. |
292 | m4_pushdef([AT_TEST], | |
293 | [AT_SETUP([Location print: $1 $2]) | |
294 | ||
295 | AT_BISON_OPTION_PUSHDEFS([%locations %skeleton "$1" $2]) | |
296 | AT_DATA_GRAMMAR([[input.y]], | |
66fb016e | 297 | [[%locations |
3804aa26 AD |
298 | %debug |
299 | %skeleton "$1" | |
300 | ]$2[ | |
301 | ]$3[ | |
302 | %code | |
303 | { | |
3804aa26 AD |
304 | ]AT_YYERROR_DECLARE[ |
305 | ]AT_YYLEX_DECLARE[ | |
306 | } | |
307 | %% | |
684083f0 | 308 | exp: %empty; |
3804aa26 AD |
309 | %% |
310 | ]AT_YYERROR_DEFINE[ | |
311 | ]AT_YYLEX_DEFINE[ | |
312 | ||
313 | int | |
314 | main (void) | |
315 | { | |
aedcb6c0 AD |
316 | ]AT_YYLTYPE[ loc; |
317 | ]AT_GLR_CC_IF([loc.initialize();])[ | |
3804aa26 | 318 | #define TEST(L1, C1, L2, C2) \ |
aedcb6c0 AD |
319 | loc.]AT_FIRST_LINE[ = L1; \ |
320 | loc.]AT_FIRST_COLUMN[ = C1; \ | |
321 | loc.]AT_LAST_LINE[ = L2; \ | |
322 | loc.]AT_LAST_COLUMN[ = C2; \ | |
323 | ]AT_SKEL_CC_IF([std::cout << loc], | |
f0f95a50 | 324 | [LOCATION_PRINT(stdout, loc)])[;\ |
3804aa26 AD |
325 | putchar ('\n'); |
326 | ||
327 | TEST(1, 1, 1, 1); | |
328 | TEST(2, 1, 2, 10); | |
329 | TEST(3, 1, 4, 1); | |
330 | TEST(5, 1, 6, 10); | |
331 | ||
332 | TEST(7, 2, 0, 2); | |
333 | TEST(8, 0, 8, 0); | |
1127a75a | 334 | return 0; |
3804aa26 AD |
335 | } |
336 | ]]) | |
337 | ||
338 | AT_FULL_COMPILE([input]) | |
339 | AT_PARSER_CHECK([./input], 0, | |
340 | [[1.1 | |
341 | 2.1-9 | |
342 | 3.1-4.0 | |
343 | 5.1-6.9 | |
344 | 7.2 | |
345 | 8.0 | |
346 | ]]) | |
347 | AT_BISON_OPTION_POPDEFS | |
348 | AT_CLEANUP | |
349 | ]) | |
350 | ||
351 | ## FIXME: test Java, and iterate over skeletons. | |
352 | AT_TEST([yacc.c]) | |
353 | AT_TEST([glr.c]) | |
aedcb6c0 AD |
354 | AT_TEST([lalr1.cc]) |
355 | AT_TEST([glr.cc]) | |
3804aa26 AD |
356 | |
357 | m4_popdef([AT_TEST]) | |
358 | ||
359 | ||
360 | ||
75d1fe16 AD |
361 | ## ---------------- ## |
362 | ## Exotic Dollars. ## | |
363 | ## ---------------- ## | |
364 | ||
365 | AT_SETUP([Exotic Dollars]) | |
366 | ||
55f48c48 | 367 | AT_BISON_OPTION_PUSHDEFS |
9501dc6e | 368 | AT_DATA_GRAMMAR([[input.y]], |
cf499cff | 369 | [[%define parse.error verbose |
8f3596a6 | 370 | %debug |
f0f95a50 | 371 | %code { |
55f48c48 AD |
372 | ]AT_YYERROR_DECLARE[ |
373 | ]AT_YYLEX_DECLARE[ | |
affac613 | 374 | # define USE(Var) |
f0f95a50 | 375 | } |
75d1fe16 AD |
376 | |
377 | %union | |
378 | { | |
379 | int val; | |
380 | }; | |
381 | ||
0ff67d71 | 382 | %type <val> a_1 a_2 a_5 |
378f4bd8 | 383 | sum_of_the_five_previous_values |
75d1fe16 AD |
384 | |
385 | %% | |
0ff67d71 PE |
386 | exp: a_1 a_2 { $<val>$ = 3; } { $<val>$ = $<val>3 + 1; } a_5 |
387 | sum_of_the_five_previous_values | |
75d1fe16 | 388 | { |
84866159 | 389 | USE (($1, $2, $<foo>3, $<foo>4, $5)); |
75d1fe16 AD |
390 | printf ("%d\n", $6); |
391 | } | |
392 | ; | |
393 | a_1: { $$ = 1; }; | |
394 | a_2: { $$ = 2; }; | |
75d1fe16 AD |
395 | a_5: { $$ = 5; }; |
396 | ||
397 | sum_of_the_five_previous_values: | |
398 | { | |
399 | $$ = $<val>0 + $<val>-1 + $<val>-2 + $<val>-3 + $<val>-4; | |
400 | } | |
401 | ; | |
402 | ||
403 | %% | |
55f48c48 | 404 | ]AT_YYERROR_DEFINE[ |
95361618 | 405 | ]AT_YYLEX_DEFINE[ |
3ef9fa8f | 406 | ]AT_MAIN_DEFINE[ |
75d1fe16 AD |
407 | ]]) |
408 | ||
da730230 | 409 | AT_BISON_CHECK([-d -v -o input.c input.y], 0) |
1154cced AD |
410 | AT_COMPILE([input]) |
411 | AT_PARSER_CHECK([./input], 0, | |
75d1fe16 AD |
412 | [[15 |
413 | ]]) | |
414 | ||
82f3355e JD |
415 | # Make sure that fields after $n or $-n are parsed correctly. At one |
416 | # point while implementing dashes in symbol names, we were dropping | |
417 | # fields after $-n. | |
418 | AT_DATA_GRAMMAR([[input.y]], | |
419 | [[ | |
420 | %{ | |
55f48c48 AD |
421 | ]AT_YYERROR_DECLARE[ |
422 | ]AT_YYLEX_DECLARE[ | |
82f3355e JD |
423 | typedef struct { int val; } stype; |
424 | # define YYSTYPE stype | |
425 | %} | |
426 | ||
427 | %% | |
428 | start: one two { $$.val = $1.val + $2.val; } sum ; | |
429 | one: { $$.val = 1; } ; | |
430 | two: { $$.val = 2; } ; | |
431 | sum: { printf ("%d\n", $0.val + $-1.val + $-2.val); } ; | |
432 | ||
433 | %% | |
55f48c48 | 434 | ]AT_YYERROR_DEFINE[ |
95361618 | 435 | ]AT_YYLEX_DEFINE[ |
3ef9fa8f | 436 | ]AT_MAIN_DEFINE[ |
82f3355e JD |
437 | ]]) |
438 | ||
3112e7a8 | 439 | AT_FULL_COMPILE([input]) |
82f3355e JD |
440 | AT_PARSER_CHECK([[./input]], [[0]], |
441 | [[6 | |
442 | ]]) | |
443 | ||
55f48c48 | 444 | AT_BISON_OPTION_POPDEFS |
75d1fe16 | 445 | AT_CLEANUP |
9280d3ef AD |
446 | |
447 | ||
448 | ||
e776192e AD |
449 | ## -------------------------- ## |
450 | ## Printers and Destructors. ## | |
451 | ## -------------------------- ## | |
9280d3ef | 452 | |
8d6c1b5e AD |
453 | # _AT_CHECK_PRINTER_AND_DESTRUCTOR($1, $2, $3, $4, |
454 | # BISON-DIRECTIVE, UNION-FLAG) | |
455 | # ------------------------------------------------------------- | |
3df37415 | 456 | m4_define([_AT_CHECK_PRINTER_AND_DESTRUCTOR], |
9c66f418 | 457 | [# Make sure complex $n work. |
8d6c1b5e | 458 | m4_if([$1$2$3$4], $[1]$[2]$[3]$[4], [], |
3df37415 AD |
459 | [m4_fatal([$0: Invalid arguments: $@])])dnl |
460 | ||
9c66f418 AD |
461 | # Be sure to pass all the %directives to this macro to have correct |
462 | # helping macros. So don't put any directly in the Bison file. | |
c2729758 | 463 | AT_BISON_OPTION_PUSHDEFS([$5]) |
9501dc6e | 464 | AT_DATA_GRAMMAR([[input.y]], |
16dc6a9e | 465 | [[%code requires { |
9280d3ef AD |
466 | #include <stdio.h> |
467 | #include <stdlib.h> | |
cf806753 | 468 | #include <string.h> |
9c66f418 | 469 | #include <assert.h> |
80ce3401 PE |
470 | |
471 | #define YYINITDEPTH 10 | |
472 | #define YYMAXDEPTH 10 | |
8d6c1b5e AD |
473 | #define RANGE(Location) ]AT_LALR1_CC_IF([(Location).begin.line, (Location).end.line], |
474 | [(Location).first_line, (Location).last_line])[ | |
475 | ||
476 | /* Display the symbol type Symbol. */ | |
477 | #define V(Symbol, Value, Location, Sep) \ | |
478 | fprintf (stderr, #Symbol " (%d@%d-%d)" Sep, Value, RANGE(Location)) | |
479 | } | |
9c66f418 | 480 | |
8d6c1b5e AD |
481 | $5 |
482 | ]m4_ifval([$6], [%union | |
9280d3ef AD |
483 | { |
484 | int ival; | |
ac700aa6 | 485 | }]) |
16dc6a9e JD |
486 | AT_LALR1_CC_IF([%define global_tokens_and_yystype]) |
487 | m4_ifval([$6], [[%code provides {]], [[%code {]]) | |
230a3db4 AD |
488 | AT_LALR1_CC_IF([typedef yy::location YYLTYPE;])[ |
489 | ]AT_YYLEX_DECLARE[ | |
55f48c48 | 490 | ]AT_LALR1_CC_IF([], [AT_YYERROR_DECLARE]) |
9bc0dd67 | 491 | [} |
c2729758 | 492 | |
868d2d96 | 493 | ]m4_ifval([$6], [%type <ival> '(' 'x' 'y' ')' ';' thing line input END])[ |
e3170060 | 494 | |
868d2d96 | 495 | /* FIXME: This %printer isn't actually tested. */ |
a5eb1ed2 AD |
496 | %printer |
497 | { | |
9a1e9989 | 498 | ]AT_LALR1_CC_IF([debug_stream () << $$;], |
3fc16193 | 499 | [fprintf (yyoutput, "%d", $$)])[; |
a5eb1ed2 | 500 | } |
9c66f418 | 501 | input line thing 'x' 'y' |
e3170060 AD |
502 | |
503 | %destructor | |
8d6c1b5e | 504 | { fprintf (stderr, "Freeing nterm input (%d@%d-%d)\n", $$, RANGE (@$)); } |
7bd6c77e | 505 | input |
5719c109 | 506 | |
7bd6c77e | 507 | %destructor |
8d6c1b5e | 508 | { fprintf (stderr, "Freeing nterm line (%d@%d-%d)\n", $$, RANGE (@$)); } |
7bd6c77e AD |
509 | line |
510 | ||
511 | %destructor | |
8d6c1b5e | 512 | { fprintf (stderr, "Freeing nterm thing (%d@%d-%d)\n", $$, RANGE (@$)); } |
7bd6c77e AD |
513 | thing |
514 | ||
515 | %destructor | |
8d6c1b5e | 516 | { fprintf (stderr, "Freeing token 'x' (%d@%d-%d)\n", $$, RANGE (@$)); } |
7bd6c77e | 517 | 'x' |
5719c109 | 518 | |
9c66f418 | 519 | %destructor |
8d6c1b5e | 520 | { fprintf (stderr, "Freeing token 'y' (%d@%d-%d)\n", $$, RANGE (@$)); } |
9c66f418 AD |
521 | 'y' |
522 | ||
868d2d96 JD |
523 | %token END 0 |
524 | %destructor | |
8d6c1b5e | 525 | { fprintf (stderr, "Freeing token END (%d@%d-%d)\n", $$, RANGE (@$)); } |
868d2d96 JD |
526 | END |
527 | ||
9280d3ef | 528 | %% |
9c66f418 AD |
529 | /* |
530 | This grammar is made to exercise error recovery. | |
4c9b8f13 | 531 | "Lines" starting with '(' support error recovery, with |
9c66f418 AD |
532 | ')' as synchronizing token. Lines starting with 'x' can never |
533 | be recovered from if in error. | |
534 | */ | |
535 | ||
9280d3ef AD |
536 | input: |
537 | /* Nothing. */ | |
5719c109 AD |
538 | { |
539 | $$ = 0; | |
8d6c1b5e | 540 | V(input, $$, @$, ": /* Nothing */\n"); |
5719c109 AD |
541 | } |
542 | | line input /* Right recursive to load the stack so that popping at | |
e9690142 | 543 | END can be exercised. */ |
5719c109 AD |
544 | { |
545 | $$ = 2; | |
8d6c1b5e AD |
546 | V(input, $$, @$, ": "); |
547 | V(line, $1, @1, " "); | |
548 | V(input, $2, @2, "\n"); | |
5719c109 | 549 | } |
9280d3ef AD |
550 | ; |
551 | ||
552 | line: | |
553 | thing thing thing ';' | |
5719c109 AD |
554 | { |
555 | $$ = $1; | |
8d6c1b5e AD |
556 | V(line, $$, @$, ": "); |
557 | V(thing, $1, @1, " "); | |
558 | V(thing, $2, @2, " "); | |
559 | V(thing, $3, @3, " "); | |
560 | V(;, $4, @4, "\n"); | |
5719c109 | 561 | } |
9c66f418 | 562 | | '(' thing thing ')' |
5719c109 AD |
563 | { |
564 | $$ = $1; | |
8d6c1b5e AD |
565 | V(line, $$, @$, ": "); |
566 | V('(', $1, @1, " "); | |
567 | V(thing, $2, @2, " "); | |
568 | V(thing, $3, @3, " "); | |
569 | V(')', $4, @4, "\n"); | |
5719c109 | 570 | } |
9c66f418 | 571 | | '(' thing ')' |
5719c109 AD |
572 | { |
573 | $$ = $1; | |
8d6c1b5e AD |
574 | V(line, $$, @$, ": "); |
575 | V('(', $1, @1, " "); | |
576 | V(thing, $2, @2, " "); | |
577 | V(')', $3, @3, "\n"); | |
5719c109 | 578 | } |
9c66f418 | 579 | | '(' error ')' |
5719c109 AD |
580 | { |
581 | $$ = -1; | |
8d6c1b5e AD |
582 | V(line, $$, @$, ": "); |
583 | V('(', $1, @1, " "); | |
584 | fprintf (stderr, "error (@%d-%d) ", RANGE(@2)); | |
585 | V(')', $3, @3, "\n"); | |
5719c109 | 586 | } |
9280d3ef AD |
587 | ; |
588 | ||
589 | thing: | |
5719c109 AD |
590 | 'x' |
591 | { | |
592 | $$ = $1; | |
8d6c1b5e AD |
593 | V(thing, $$, @$, ": "); |
594 | V('x', $1, @1, "\n"); | |
5719c109 | 595 | } |
9280d3ef AD |
596 | ; |
597 | %% | |
9c66f418 | 598 | /* Alias to ARGV[1]. */ |
ef51bfa7 | 599 | const char *source = YY_NULL; |
9c66f418 | 600 | |
8d6c1b5e AD |
601 | ]AT_YYERROR_DEFINE[ |
602 | ||
230a3db4 AD |
603 | static |
604 | ]AT_YYLEX_PROTOTYPE[ | |
9280d3ef | 605 | { |
5a08f1ce | 606 | static unsigned int counter = 0; |
9280d3ef | 607 | |
7ba01e11 | 608 | unsigned int c = ]AT_VAL[]m4_ifval([$6], [.ival])[ = counter++; |
9c66f418 | 609 | /* As in BASIC, line numbers go from 10 to 10. */ |
8d6c1b5e AD |
610 | ]AT_LOC_FIRST_LINE[ = ]AT_LOC_FIRST_COLUMN[ = 10 * c; |
611 | ]AT_LOC_LAST_LINE[ = ]AT_LOC_LAST_COLUMN[ = ]AT_LOC_FIRST_LINE[ + 9; | |
7ba01e11 | 612 | assert (c <= strlen (source)); |
a9739e7c | 613 | if (source[c]) |
8d6c1b5e | 614 | fprintf (stderr, "sending: '%c'", source[c]); |
9280d3ef | 615 | else |
8d6c1b5e AD |
616 | fprintf (stderr, "sending: END"); |
617 | fprintf (stderr, " (%d@%d-%d)\n", c, RANGE (]AT_LOC[)); | |
a9739e7c | 618 | return source[c]; |
9280d3ef | 619 | } |
c2729758 | 620 | ]AT_LALR1_CC_IF( |
8d6c1b5e | 621 | [static bool yydebug; |
c2729758 ADL |
622 | int |
623 | yyparse () | |
624 | { | |
99880de5 | 625 | yy::parser parser; |
a3cb6248 | 626 | parser.set_debug_level (yydebug); |
c2729758 ADL |
627 | return parser.parse (); |
628 | } | |
8d6c1b5e | 629 | ])[ |
9280d3ef | 630 | |
9280d3ef | 631 | int |
9c66f418 | 632 | main (int argc, const char *argv[]) |
9280d3ef | 633 | { |
6100a9aa | 634 | int status; |
9280d3ef | 635 | yydebug = !!getenv ("YYDEBUG"); |
9c66f418 | 636 | assert (argc == 2); |
a9739e7c | 637 | source = argv[1]; |
6100a9aa PE |
638 | status = yyparse (); |
639 | switch (status) | |
9280d3ef | 640 | { |
8d6c1b5e AD |
641 | case 0: fprintf (stderr, "Successful parse.\n"); break; |
642 | case 1: fprintf (stderr, "Parsing FAILED.\n"); break; | |
643 | default: fprintf (stderr, "Parsing FAILED (status %d).\n", status); break; | |
9280d3ef | 644 | } |
6100a9aa | 645 | return status; |
9280d3ef AD |
646 | } |
647 | ]]) | |
648 | ||
7ca2266a | 649 | AT_FULL_COMPILE([input]) |
9c66f418 AD |
650 | |
651 | ||
652 | # Check the location of "empty" | |
653 | # ----------------------------- | |
654 | # I.e., epsilon-reductions, as in "(x)" which ends by reducing | |
655 | # an empty "line" nterm. | |
656 | # FIXME: This location is not satisfying. Depend on the lookahead? | |
8d6c1b5e | 657 | AT_PARSER_CHECK([./input '(x)'], 0, [], |
9c66f418 AD |
658 | [[sending: '(' (0@0-9) |
659 | sending: 'x' (1@10-19) | |
660 | thing (1@10-19): 'x' (1@10-19) | |
661 | sending: ')' (2@20-29) | |
662 | line (0@0-29): '(' (0@0-9) thing (1@10-19) ')' (2@20-29) | |
868d2d96 | 663 | sending: END (3@30-39) |
b4a20338 AD |
664 | input (0@29-29): /* Nothing */ |
665 | input (2@0-29): line (0@0-29) input (0@29-29) | |
868d2d96 | 666 | Freeing token END (3@30-39) |
258b75ca | 667 | Freeing nterm input (2@0-29) |
9c66f418 AD |
668 | Successful parse. |
669 | ]]) | |
670 | ||
671 | ||
672 | # Check locations in error recovery | |
673 | # --------------------------------- | |
674 | # '(y)' is an error, but can be recovered from. But what's the location | |
675 | # of the error itself ('y'), and of the resulting reduction ('(error)'). | |
8d6c1b5e | 676 | AT_PARSER_CHECK([./input '(y)'], 0, [], |
9c66f418 AD |
677 | [[sending: '(' (0@0-9) |
678 | sending: 'y' (1@10-19) | |
8d6c1b5e | 679 | 10.10-19.18: syntax error, unexpected 'y', expecting 'x' |
9c66f418 AD |
680 | Freeing token 'y' (1@10-19) |
681 | sending: ')' (2@20-29) | |
682 | line (-1@0-29): '(' (0@0-9) error (@10-19) ')' (2@20-29) | |
868d2d96 | 683 | sending: END (3@30-39) |
b4a20338 AD |
684 | input (0@29-29): /* Nothing */ |
685 | input (2@0-29): line (-1@0-29) input (0@29-29) | |
868d2d96 | 686 | Freeing token END (3@30-39) |
258b75ca | 687 | Freeing nterm input (2@0-29) |
9c66f418 AD |
688 | Successful parse. |
689 | ]]) | |
690 | ||
691 | ||
692 | # Syntax errors caught by the parser | |
693 | # ---------------------------------- | |
4c9b8f13 | 694 | # Exercise the discarding of stack top and input until 'error' |
9c66f418 AD |
695 | # can be reduced. |
696 | # | |
697 | # '(', 'x', 'x', 'x', 'x', 'x', ')', | |
698 | # | |
699 | # Load the stack and provoke an error that cannot be caught by the | |
700 | # grammar, to check that the stack is cleared. And make sure the | |
701 | # lookahead is freed. | |
702 | # | |
703 | # '(', 'x', ')', | |
704 | # '(', 'x', ')', | |
705 | # 'y' | |
8d6c1b5e | 706 | AT_PARSER_CHECK([./input '(xxxxx)(x)(x)y'], 1, [], |
9c66f418 | 707 | [[sending: '(' (0@0-9) |
4c6cc1db AD |
708 | sending: 'x' (1@10-19) |
709 | thing (1@10-19): 'x' (1@10-19) | |
710 | sending: 'x' (2@20-29) | |
711 | thing (2@20-29): 'x' (2@20-29) | |
712 | sending: 'x' (3@30-39) | |
8d6c1b5e | 713 | 30.30-39.38: syntax error, unexpected 'x', expecting ')' |
4c6cc1db AD |
714 | Freeing nterm thing (2@20-29) |
715 | Freeing nterm thing (1@10-19) | |
4c6cc1db AD |
716 | Freeing token 'x' (3@30-39) |
717 | sending: 'x' (4@40-49) | |
718 | Freeing token 'x' (4@40-49) | |
719 | sending: 'x' (5@50-59) | |
720 | Freeing token 'x' (5@50-59) | |
9c66f418 AD |
721 | sending: ')' (6@60-69) |
722 | line (-1@0-69): '(' (0@0-9) error (@10-59) ')' (6@60-69) | |
723 | sending: '(' (7@70-79) | |
4c6cc1db AD |
724 | sending: 'x' (8@80-89) |
725 | thing (8@80-89): 'x' (8@80-89) | |
9c66f418 AD |
726 | sending: ')' (9@90-99) |
727 | line (7@70-99): '(' (7@70-79) thing (8@80-89) ')' (9@90-99) | |
728 | sending: '(' (10@100-109) | |
729 | sending: 'x' (11@110-119) | |
730 | thing (11@110-119): 'x' (11@110-119) | |
731 | sending: ')' (12@120-129) | |
732 | line (10@100-129): '(' (10@100-109) thing (11@110-119) ')' (12@120-129) | |
733 | sending: 'y' (13@130-139) | |
b4a20338 AD |
734 | input (0@129-129): /* Nothing */ |
735 | input (2@100-129): line (10@100-129) input (0@129-129) | |
9c66f418 AD |
736 | input (2@70-129): line (7@70-99) input (2@100-129) |
737 | input (2@0-129): line (-1@0-69) input (2@70-129) | |
8d6c1b5e | 738 | 130.130-139.138: syntax error, unexpected 'y', expecting END |
9c66f418 AD |
739 | Freeing nterm input (2@0-129) |
740 | Freeing token 'y' (13@130-139) | |
5719c109 | 741 | Parsing FAILED. |
9280d3ef AD |
742 | ]]) |
743 | ||
868d2d96 JD |
744 | |
745 | # Syntax error caught by the parser where lookahead = END | |
746 | # -------------------------------------------------------- | |
747 | # Load the stack and provoke an error that cannot be caught by the | |
748 | # grammar, to check that the stack is cleared. And make sure the | |
749 | # lookahead is freed. | |
750 | # | |
751 | # '(', 'x', ')', | |
752 | # '(', 'x', ')', | |
753 | # 'x' | |
8d6c1b5e | 754 | AT_PARSER_CHECK([./input '(x)(x)x'], 1, [], |
868d2d96 JD |
755 | [[sending: '(' (0@0-9) |
756 | sending: 'x' (1@10-19) | |
757 | thing (1@10-19): 'x' (1@10-19) | |
758 | sending: ')' (2@20-29) | |
759 | line (0@0-29): '(' (0@0-9) thing (1@10-19) ')' (2@20-29) | |
760 | sending: '(' (3@30-39) | |
761 | sending: 'x' (4@40-49) | |
762 | thing (4@40-49): 'x' (4@40-49) | |
763 | sending: ')' (5@50-59) | |
764 | line (3@30-59): '(' (3@30-39) thing (4@40-49) ')' (5@50-59) | |
765 | sending: 'x' (6@60-69) | |
766 | thing (6@60-69): 'x' (6@60-69) | |
767 | sending: END (7@70-79) | |
8d6c1b5e | 768 | 70.70-79.78: syntax error, unexpected END, expecting 'x' |
868d2d96 JD |
769 | Freeing nterm thing (6@60-69) |
770 | Freeing nterm line (3@30-59) | |
771 | Freeing nterm line (0@0-29) | |
772 | Freeing token END (7@70-79) | |
773 | Parsing FAILED. | |
774 | ]]) | |
775 | ||
776 | ||
80ce3401 PE |
777 | # Check destruction upon stack overflow |
778 | # ------------------------------------- | |
779 | # Upon stack overflow, all symbols on the stack should be destroyed. | |
780 | # Only check for yacc.c. | |
781 | AT_YACC_IF([ | |
8d6c1b5e | 782 | AT_PARSER_CHECK([./input '(x)(x)(x)(x)(x)(x)(x)'], 2, [], |
80ce3401 PE |
783 | [[sending: '(' (0@0-9) |
784 | sending: 'x' (1@10-19) | |
785 | thing (1@10-19): 'x' (1@10-19) | |
786 | sending: ')' (2@20-29) | |
787 | line (0@0-29): '(' (0@0-9) thing (1@10-19) ')' (2@20-29) | |
788 | sending: '(' (3@30-39) | |
789 | sending: 'x' (4@40-49) | |
790 | thing (4@40-49): 'x' (4@40-49) | |
791 | sending: ')' (5@50-59) | |
792 | line (3@30-59): '(' (3@30-39) thing (4@40-49) ')' (5@50-59) | |
793 | sending: '(' (6@60-69) | |
794 | sending: 'x' (7@70-79) | |
795 | thing (7@70-79): 'x' (7@70-79) | |
796 | sending: ')' (8@80-89) | |
797 | line (6@60-89): '(' (6@60-69) thing (7@70-79) ')' (8@80-89) | |
798 | sending: '(' (9@90-99) | |
799 | sending: 'x' (10@100-109) | |
800 | thing (10@100-109): 'x' (10@100-109) | |
801 | sending: ')' (11@110-119) | |
802 | line (9@90-119): '(' (9@90-99) thing (10@100-109) ')' (11@110-119) | |
803 | sending: '(' (12@120-129) | |
804 | sending: 'x' (13@130-139) | |
805 | thing (13@130-139): 'x' (13@130-139) | |
806 | sending: ')' (14@140-149) | |
807 | line (12@120-149): '(' (12@120-129) thing (13@130-139) ')' (14@140-149) | |
808 | sending: '(' (15@150-159) | |
809 | sending: 'x' (16@160-169) | |
810 | thing (16@160-169): 'x' (16@160-169) | |
811 | sending: ')' (17@170-179) | |
812 | line (15@150-179): '(' (15@150-159) thing (16@160-169) ')' (17@170-179) | |
813 | sending: '(' (18@180-189) | |
814 | sending: 'x' (19@190-199) | |
815 | thing (19@190-199): 'x' (19@190-199) | |
816 | sending: ')' (20@200-209) | |
8d6c1b5e | 817 | 200.200-209.208: memory exhausted |
80ce3401 PE |
818 | Freeing nterm thing (19@190-199) |
819 | Freeing nterm line (15@150-179) | |
820 | Freeing nterm line (12@120-149) | |
821 | Freeing nterm line (9@90-119) | |
822 | Freeing nterm line (6@60-89) | |
823 | Freeing nterm line (3@30-59) | |
824 | Freeing nterm line (0@0-29) | |
6100a9aa | 825 | Parsing FAILED (status 2). |
80ce3401 PE |
826 | ]]) |
827 | ]) | |
828 | ||
55f48c48 AD |
829 | AT_BISON_OPTION_POPDEFS |
830 | ])# _AT_CHECK_PRINTER_AND_DESTRUCTOR | |
3df37415 AD |
831 | |
832 | ||
a14a26fa | 833 | # AT_CHECK_PRINTER_AND_DESTRUCTOR([BISON-OPTIONS], [UNION-FLAG], [SKIP_FLAG]) |
046ac74e | 834 | # --------------------------------------------------------------------------- |
3df37415 | 835 | m4_define([AT_CHECK_PRINTER_AND_DESTRUCTOR], |
623a5147 | 836 | [AT_SETUP([Printers and Destructors$2]m4_ifval([$1], [[: $1]])) |
9c66f418 | 837 | |
a14a26fa | 838 | $3 |
9c66f418 | 839 | _AT_CHECK_PRINTER_AND_DESTRUCTOR($[1], $[2], $[3], $[4], |
cf499cff | 840 | [%define parse.error verbose |
9c66f418 AD |
841 | %debug |
842 | %verbose | |
843 | %locations | |
844 | $1], [$2]) | |
845 | ||
846 | AT_CLEANUP | |
3df37415 AD |
847 | ]) |
848 | ||
849 | ||
ac700aa6 | 850 | AT_CHECK_PRINTER_AND_DESTRUCTOR([]) |
7ba01e11 | 851 | AT_CHECK_PRINTER_AND_DESTRUCTOR([], [ with union]) |
046ac74e | 852 | |
fd19f271 | 853 | AT_CHECK_PRINTER_AND_DESTRUCTOR([%defines %skeleton "lalr1.cc"]) |
7ba01e11 | 854 | AT_CHECK_PRINTER_AND_DESTRUCTOR([%defines %skeleton "lalr1.cc"], [ with union]) |
046ac74e | 855 | |
1576d44d | 856 | AT_CHECK_PRINTER_AND_DESTRUCTOR([%glr-parser]) |
7ba01e11 | 857 | AT_CHECK_PRINTER_AND_DESTRUCTOR([%glr-parser], [ with union]) |
ec5479ce JD |
858 | |
859 | ||
860 | ||
12e35840 JD |
861 | ## ----------------------------------------- ## |
862 | ## Default tagless %printer and %destructor. ## | |
863 | ## ----------------------------------------- ## | |
ec5479ce JD |
864 | |
865 | # Check that the right %printer and %destructor are called, that they're not | |
866 | # called for $end, and that $$ and @$ work correctly. | |
867 | ||
12e35840 | 868 | AT_SETUP([Default tagless %printer and %destructor]) |
f42c012f | 869 | AT_BISON_OPTION_PUSHDEFS([%locations %debug]) |
ec5479ce | 870 | AT_DATA_GRAMMAR([[input.y]], |
cf499cff | 871 | [[%define parse.error verbose |
ec5479ce JD |
872 | %debug |
873 | %locations | |
ec5479ce | 874 | |
f0f95a50 | 875 | %code { |
55f48c48 AD |
876 | ]AT_YYLEX_DECLARE[ |
877 | ]AT_YYERROR_DECLARE[ | |
ec5479ce | 878 | # define USE(SYM) |
f0f95a50 | 879 | } |
ec5479ce JD |
880 | |
881 | %printer { | |
12e35840 JD |
882 | fprintf (yyoutput, "<*> printer should not be called.\n"); |
883 | } <*> | |
884 | ||
885 | %printer { | |
3ebecc24 JD |
886 | fprintf (yyoutput, "<> printer for '%c' @ %d", $$, @$.first_column); |
887 | } <> | |
ec5479ce | 888 | %destructor { |
3ebecc24 JD |
889 | fprintf (stdout, "<> destructor for '%c' @ %d.\n", $$, @$.first_column); |
890 | } <> | |
ec5479ce JD |
891 | |
892 | %printer { | |
893 | fprintf (yyoutput, "'b'/'c' printer for '%c' @ %d", $$, @$.first_column); | |
894 | } 'b' 'c' | |
895 | %destructor { | |
896 | fprintf (stdout, "'b'/'c' destructor for '%c' @ %d.\n", $$, @$.first_column); | |
897 | } 'b' 'c' | |
898 | ||
12e35840 JD |
899 | %destructor { |
900 | fprintf (yyoutput, "<*> destructor should not be called.\n"); | |
901 | } <*> | |
902 | ||
ec5479ce JD |
903 | %% |
904 | ||
905 | start: 'a' 'b' 'c' 'd' 'e' { $$ = 'S'; USE(($1, $2, $3, $4, $5)); } ; | |
906 | ||
907 | %% | |
55f48c48 | 908 | ]AT_YYERROR_DEFINE[ |
95361618 | 909 | ]AT_YYLEX_DEFINE(["abcd"], [[yylval = res]])[ |
f42c012f | 910 | ]AT_MAIN_DEFINE[ |
ec5479ce JD |
911 | ]]) |
912 | ||
9534d2be | 913 | AT_BISON_CHECK([-o input.c input.y], [], [], |
f0f95a50 AD |
914 | [[input.y:30.3-5: warning: useless %destructor for type <*> [-Wother] |
915 | input.y:30.3-5: warning: useless %printer for type <*> [-Wother] | |
9534d2be | 916 | ]]) |
ec5479ce | 917 | AT_COMPILE([input]) |
f42c012f | 918 | AT_PARSER_CHECK([./input --debug], 1, |
3ebecc24 | 919 | [[<> destructor for 'd' @ 4. |
ec5479ce JD |
920 | 'b'/'c' destructor for 'c' @ 3. |
921 | 'b'/'c' destructor for 'b' @ 2. | |
3ebecc24 | 922 | <> destructor for 'a' @ 1. |
ec5479ce JD |
923 | ]], |
924 | [[Starting parse | |
925 | Entering state 0 | |
3237f570 AD |
926 | Reading a token: Next token is token 'a' (1.1: <> printer for 'a' @ 1) |
927 | Shifting token 'a' (1.1: <> printer for 'a' @ 1) | |
ec5479ce | 928 | Entering state 1 |
3237f570 AD |
929 | Reading a token: Next token is token 'b' (1.2: 'b'/'c' printer for 'b' @ 2) |
930 | Shifting token 'b' (1.2: 'b'/'c' printer for 'b' @ 2) | |
ec5479ce | 931 | Entering state 3 |
3237f570 AD |
932 | Reading a token: Next token is token 'c' (1.3: 'b'/'c' printer for 'c' @ 3) |
933 | Shifting token 'c' (1.3: 'b'/'c' printer for 'c' @ 3) | |
ec5479ce | 934 | Entering state 5 |
3237f570 AD |
935 | Reading a token: Next token is token 'd' (1.4: <> printer for 'd' @ 4) |
936 | Shifting token 'd' (1.4: <> printer for 'd' @ 4) | |
ec5479ce JD |
937 | Entering state 6 |
938 | Reading a token: Now at end of input. | |
7dbb8d8a | 939 | 1.5: syntax error, unexpected $end, expecting 'e' |
3237f570 | 940 | Error: popping token 'd' (1.4: <> printer for 'd' @ 4) |
ec5479ce | 941 | Stack now 0 1 3 5 |
3237f570 | 942 | Error: popping token 'c' (1.3: 'b'/'c' printer for 'c' @ 3) |
ec5479ce | 943 | Stack now 0 1 3 |
3237f570 | 944 | Error: popping token 'b' (1.2: 'b'/'c' printer for 'b' @ 2) |
ec5479ce | 945 | Stack now 0 1 |
3237f570 | 946 | Error: popping token 'a' (1.1: <> printer for 'a' @ 1) |
ec5479ce | 947 | Stack now 0 |
3237f570 | 948 | Cleanup: discarding lookahead token $end (1.5: ) |
ec5479ce JD |
949 | Stack now 0 |
950 | ]]) | |
951 | ||
55f48c48 | 952 | AT_BISON_OPTION_POPDEFS |
ec5479ce JD |
953 | AT_CLEANUP |
954 | ||
955 | ||
956 | ||
12e35840 JD |
957 | ## ------------------------------------------------------ ## |
958 | ## Default tagged and per-type %printer and %destructor. ## | |
959 | ## ------------------------------------------------------ ## | |
b2a0b7ca | 960 | |
12e35840 | 961 | AT_SETUP([Default tagged and per-type %printer and %destructor]) |
f42c012f | 962 | AT_BISON_OPTION_PUSHDEFS([%debug]) |
b2a0b7ca | 963 | AT_DATA_GRAMMAR([[input.y]], |
cf499cff | 964 | [[%define parse.error verbose |
b2a0b7ca JD |
965 | %debug |
966 | ||
967 | %{ | |
55f48c48 AD |
968 | ]AT_YYERROR_DECLARE[ |
969 | ]AT_YYLEX_DECLARE[ | |
b2a0b7ca JD |
970 | # define USE(SYM) |
971 | %} | |
972 | ||
12e35840 | 973 | %printer { |
3ebecc24 JD |
974 | fprintf (yyoutput, "<> printer should not be called.\n"); |
975 | } <> | |
12e35840 | 976 | |
b2a0b7ca JD |
977 | %union { int field0; int field1; int field2; } |
978 | %type <field0> start 'a' 'g' | |
979 | %type <field1> 'e' | |
980 | %type <field2> 'f' | |
981 | %printer { | |
12e35840 JD |
982 | fprintf (yyoutput, "<*>/<field2>/e printer"); |
983 | } <*> 'e' <field2> | |
b2a0b7ca | 984 | %destructor { |
12e35840 JD |
985 | fprintf (stdout, "<*>/<field2>/e destructor.\n"); |
986 | } <*> 'e' <field2> | |
b2a0b7ca JD |
987 | |
988 | %type <field1> 'b' | |
989 | %printer { fprintf (yyoutput, "<field1> printer"); } <field1> | |
990 | %destructor { fprintf (stdout, "<field1> destructor.\n"); } <field1> | |
991 | ||
992 | %type <field0> 'c' | |
993 | %printer { fprintf (yyoutput, "'c' printer"); } 'c' | |
994 | %destructor { fprintf (stdout, "'c' destructor.\n"); } 'c' | |
995 | ||
996 | %type <field1> 'd' | |
997 | %printer { fprintf (yyoutput, "'d' printer"); } 'd' | |
998 | %destructor { fprintf (stdout, "'d' destructor.\n"); } 'd' | |
999 | ||
12e35840 | 1000 | %destructor { |
3ebecc24 JD |
1001 | fprintf (yyoutput, "<> destructor should not be called.\n"); |
1002 | } <> | |
12e35840 | 1003 | |
b2a0b7ca JD |
1004 | %% |
1005 | ||
1006 | start: | |
1007 | 'a' 'b' 'c' 'd' 'e' 'f' 'g' | |
1008 | { | |
1009 | USE(($1, $2, $3, $4, $5, $6, $7)); | |
1010 | $$ = 'S'; | |
1011 | } | |
1012 | ; | |
1013 | ||
1014 | %% | |
55f48c48 | 1015 | ]AT_YYERROR_DEFINE[ |
95361618 | 1016 | ]AT_YYLEX_DEFINE(["abcdef"])[ |
f42c012f | 1017 | ]AT_MAIN_DEFINE[ |
b2a0b7ca JD |
1018 | ]]) |
1019 | ||
9534d2be AD |
1020 | AT_BISON_CHECK([-o input.c input.y], [], [], |
1021 | [[input.y:22.3-4: warning: useless %destructor for type <> [-Wother] | |
1022 | input.y:22.3-4: warning: useless %printer for type <> [-Wother] | |
1023 | ]]) | |
b2a0b7ca | 1024 | AT_COMPILE([input]) |
f42c012f | 1025 | AT_PARSER_CHECK([./input --debug], 1, |
12e35840 JD |
1026 | [[<*>/<field2>/e destructor. |
1027 | <*>/<field2>/e destructor. | |
b2a0b7ca JD |
1028 | 'd' destructor. |
1029 | 'c' destructor. | |
1030 | <field1> destructor. | |
12e35840 | 1031 | <*>/<field2>/e destructor. |
b2a0b7ca JD |
1032 | ]], |
1033 | [[Starting parse | |
1034 | Entering state 0 | |
12e35840 JD |
1035 | Reading a token: Next token is token 'a' (<*>/<field2>/e printer) |
1036 | Shifting token 'a' (<*>/<field2>/e printer) | |
b2a0b7ca JD |
1037 | Entering state 1 |
1038 | Reading a token: Next token is token 'b' (<field1> printer) | |
1039 | Shifting token 'b' (<field1> printer) | |
1040 | Entering state 3 | |
1041 | Reading a token: Next token is token 'c' ('c' printer) | |
1042 | Shifting token 'c' ('c' printer) | |
1043 | Entering state 5 | |
1044 | Reading a token: Next token is token 'd' ('d' printer) | |
1045 | Shifting token 'd' ('d' printer) | |
1046 | Entering state 6 | |
12e35840 JD |
1047 | Reading a token: Next token is token 'e' (<*>/<field2>/e printer) |
1048 | Shifting token 'e' (<*>/<field2>/e printer) | |
b2a0b7ca | 1049 | Entering state 7 |
12e35840 JD |
1050 | Reading a token: Next token is token 'f' (<*>/<field2>/e printer) |
1051 | Shifting token 'f' (<*>/<field2>/e printer) | |
b2a0b7ca JD |
1052 | Entering state 8 |
1053 | Reading a token: Now at end of input. | |
1054 | syntax error, unexpected $end, expecting 'g' | |
12e35840 | 1055 | Error: popping token 'f' (<*>/<field2>/e printer) |
b2a0b7ca | 1056 | Stack now 0 1 3 5 6 7 |
12e35840 | 1057 | Error: popping token 'e' (<*>/<field2>/e printer) |
b2a0b7ca JD |
1058 | Stack now 0 1 3 5 6 |
1059 | Error: popping token 'd' ('d' printer) | |
1060 | Stack now 0 1 3 5 | |
1061 | Error: popping token 'c' ('c' printer) | |
1062 | Stack now 0 1 3 | |
1063 | Error: popping token 'b' (<field1> printer) | |
1064 | Stack now 0 1 | |
12e35840 | 1065 | Error: popping token 'a' (<*>/<field2>/e printer) |
b2a0b7ca JD |
1066 | Stack now 0 |
1067 | Cleanup: discarding lookahead token $end () | |
1068 | Stack now 0 | |
1069 | ]]) | |
1070 | ||
55f48c48 | 1071 | AT_BISON_OPTION_POPDEFS |
b2a0b7ca JD |
1072 | AT_CLEANUP |
1073 | ||
1074 | ||
1075 | ||
ec5479ce | 1076 | ## ------------------------------------------------------------- ## |
12e35840 | 1077 | ## Default %printer and %destructor for user-defined end token. ## |
ec5479ce JD |
1078 | ## ------------------------------------------------------------- ## |
1079 | ||
3508ce36 | 1080 | AT_SETUP([Default %printer and %destructor for user-defined end token]) |
ec5479ce | 1081 | |
9534d2be AD |
1082 | # AT_TEST(TYPED) |
1083 | # -------------- | |
1084 | m4_pushdef([AT_TEST], | |
12e35840 | 1085 | [m4_if($1, 0, |
3ebecc24 JD |
1086 | [m4_pushdef([kind], []) m4_pushdef([not_kind], [*])], |
1087 | [m4_pushdef([kind], [*]) m4_pushdef([not_kind], [])]) | |
12e35840 | 1088 | |
f42c012f | 1089 | AT_BISON_OPTION_PUSHDEFS([%locations %debug]) |
12e35840 | 1090 | AT_DATA_GRAMMAR([[input]]$1[[.y]], |
cf499cff | 1091 | [[%define parse.error verbose |
ec5479ce JD |
1092 | %debug |
1093 | %locations | |
ec5479ce | 1094 | |
f0f95a50 | 1095 | %code { |
55f48c48 AD |
1096 | ]AT_YYERROR_DECLARE[ |
1097 | ]AT_YYLEX_DECLARE[ | |
ec5479ce | 1098 | # define USE(SYM) |
f0f95a50 | 1099 | } |
ec5479ce | 1100 | |
12e35840 JD |
1101 | %destructor { |
1102 | fprintf (yyoutput, "<]]not_kind[[> destructor should not be called.\n"); | |
1103 | } <]]not_kind[[> | |
1104 | ||
ec5479ce JD |
1105 | %token END 0 |
1106 | %printer { | |
12e35840 JD |
1107 | fprintf (yyoutput, "<]]kind[[> for '%c' @ %d", $$, @$.first_column); |
1108 | } <]]kind[[> | |
ec5479ce | 1109 | %destructor { |
12e35840 JD |
1110 | fprintf (stdout, "<]]kind[[> for '%c' @ %d.\n", $$, @$.first_column); |
1111 | } <]]kind[[> | |
1112 | ||
1113 | %printer { | |
1114 | fprintf (yyoutput, "<]]not_kind[[> printer should not be called.\n"); | |
1115 | } <]]not_kind[[> | |
1116 | ||
1117 | ]]m4_if($1, 0, [[[ | |
1118 | ]]], | |
1119 | [[[%union { char tag; } | |
1120 | %type <tag> start END]]])[[ | |
ec5479ce JD |
1121 | |
1122 | %% | |
1123 | ||
1124 | start: { $$ = 'S'; } ; | |
1125 | ||
1126 | %% | |
312c0cff | 1127 | #include <stdlib.h> /* abort */ |
ec5479ce JD |
1128 | static int |
1129 | yylex (void) | |
1130 | { | |
cf806753 PE |
1131 | static int called; |
1132 | if (called++) | |
1133 | abort (); | |
12e35840 | 1134 | yylval]]m4_if($1, 0,, [[[.tag]]])[[ = 'E'; |
ec5479ce JD |
1135 | yylloc.first_line = yylloc.last_line = 1; |
1136 | yylloc.first_column = yylloc.last_column = 1; | |
1137 | return 0; | |
1138 | } | |
55f48c48 | 1139 | ]AT_YYERROR_DEFINE[ |
f42c012f | 1140 | ]AT_MAIN_DEFINE[ |
ec5479ce | 1141 | ]]) |
55f48c48 | 1142 | AT_BISON_OPTION_POPDEFS |
ec5479ce | 1143 | |
9534d2be AD |
1144 | AT_BISON_CHECK([-o input$1.c input$1.y], [], [], |
1145 | [m4_if([$1], [0], | |
f0f95a50 AD |
1146 | [[input0.y:30.3-5: warning: useless %destructor for type <*> [-Wother] |
1147 | input0.y:30.3-5: warning: useless %printer for type <*> [-Wother] | |
9534d2be | 1148 | ]], |
f0f95a50 AD |
1149 | [[input1.y:30.3-4: warning: useless %destructor for type <> [-Wother] |
1150 | input1.y:30.3-4: warning: useless %printer for type <> [-Wother] | |
9534d2be AD |
1151 | ]])]) |
1152 | ||
12e35840 | 1153 | AT_COMPILE([input$1]) |
9534d2be | 1154 | |
f42c012f | 1155 | AT_PARSER_CHECK([./input$1 --debug], 0, |
12e35840 JD |
1156 | [[<]]kind[[> for 'E' @ 1. |
1157 | <]]kind[[> for 'S' @ 1. | |
ec5479ce JD |
1158 | ]], |
1159 | [[Starting parse | |
1160 | Entering state 0 | |
f0f95a50 | 1161 | Reducing stack by rule 1 (line 49): |
3237f570 | 1162 | -> $$ = nterm start (1.1: <]]kind[[> for 'S' @ 1) |
ec5479ce JD |
1163 | Stack now 0 |
1164 | Entering state 1 | |
1165 | Reading a token: Now at end of input. | |
3237f570 | 1166 | Shifting token END (1.1: <]]kind[[> for 'E' @ 1) |
ec5479ce JD |
1167 | Entering state 2 |
1168 | Stack now 0 1 2 | |
3237f570 AD |
1169 | Cleanup: popping token END (1.1: <]]kind[[> for 'E' @ 1) |
1170 | Cleanup: popping nterm start (1.1: <]]kind[[> for 'S' @ 1) | |
ec5479ce JD |
1171 | ]]) |
1172 | ||
12e35840 JD |
1173 | m4_popdef([kind]) |
1174 | m4_popdef([not_kind]) | |
1175 | ]) | |
1176 | ||
9534d2be AD |
1177 | AT_TEST(0) |
1178 | AT_TEST(1) | |
1179 | ||
1180 | m4_popdef([AT_TEST]) | |
12e35840 | 1181 | |
ec5479ce | 1182 | AT_CLEANUP |
9350499c JD |
1183 | |
1184 | ||
1185 | ||
1186 | ## ------------------------------------------------------------------ ## | |
1187 | ## Default %printer and %destructor are not for error or $undefined. ## | |
1188 | ## ------------------------------------------------------------------ ## | |
1189 | ||
287b314e | 1190 | AT_SETUP([Default %printer and %destructor are not for error or $undefined]) |
9350499c JD |
1191 | |
1192 | # If Bison were to apply the default %printer and %destructor to the error | |
1193 | # token or to $undefined: | |
1194 | # - For the error token: | |
1195 | # - It would generate warnings for unused $n. | |
1196 | # - It would invoke the %printer and %destructor on the error token's | |
1197 | # semantic value, which would be initialized from the lookahead, which | |
1198 | # would be destroyed separately. | |
1199 | # - For $undefined, who knows what the semantic value would be. | |
f42c012f | 1200 | AT_BISON_OPTION_PUSHDEFS([%debug]) |
9350499c JD |
1201 | AT_DATA_GRAMMAR([[input.y]], |
1202 | [[%debug | |
1203 | ||
1204 | %{ | |
1205 | # include <stdio.h> | |
cf806753 | 1206 | # include <stdlib.h> |
55f48c48 AD |
1207 | ]AT_YYERROR_DECLARE[ |
1208 | ]AT_YYLEX_DECLARE[ | |
9350499c JD |
1209 | # define USE(SYM) |
1210 | %} | |
1211 | ||
1212 | %printer { | |
1213 | fprintf (yyoutput, "'%c'", $$); | |
3ebecc24 | 1214 | } <> <*> |
9350499c JD |
1215 | %destructor { |
1216 | fprintf (stderr, "DESTROY '%c'\n", $$); | |
3ebecc24 | 1217 | } <> <*> |
9350499c JD |
1218 | |
1219 | %% | |
1220 | ||
1221 | start: | |
1222 | { $$ = 'S'; } | |
1223 | /* In order to reveal the problems that this bug caused during parsing, add | |
1224 | * $2 to USE. */ | |
1225 | | 'a' error 'b' 'c' { USE(($1, $3, $4)); $$ = 'S'; } | |
1226 | ; | |
1227 | ||
1228 | %% | |
55f48c48 | 1229 | ]AT_YYERROR_DEFINE[ |
95361618 | 1230 | ]AT_YYLEX_DEFINE(["abd"], [yylval = res])[ |
f42c012f | 1231 | ]AT_MAIN_DEFINE[ |
9350499c | 1232 | ]]) |
55f48c48 | 1233 | AT_BISON_OPTION_POPDEFS |
9350499c | 1234 | |
9534d2be | 1235 | AT_BISON_CHECK([-o input.c input.y], [], [], |
f0f95a50 AD |
1236 | [[input.y:23.6-8: warning: useless %destructor for type <*> [-Wother] |
1237 | input.y:23.6-8: warning: useless %printer for type <*> [-Wother] | |
9534d2be | 1238 | ]]) |
9350499c | 1239 | AT_COMPILE([input]) |
f42c012f | 1240 | AT_PARSER_CHECK([./input --debug], [1], [], |
9350499c JD |
1241 | [[Starting parse |
1242 | Entering state 0 | |
1243 | Reading a token: Next token is token 'a' ('a') | |
1244 | Shifting token 'a' ('a') | |
1245 | Entering state 1 | |
1246 | Reading a token: Next token is token 'b' ('b') | |
1247 | syntax error | |
1248 | Shifting token error () | |
1249 | Entering state 3 | |
1250 | Next token is token 'b' ('b') | |
1251 | Shifting token 'b' ('b') | |
1252 | Entering state 5 | |
1253 | Reading a token: Next token is token $undefined () | |
1254 | Error: popping token 'b' ('b') | |
1255 | DESTROY 'b' | |
1256 | Stack now 0 1 3 | |
1257 | Error: popping token error () | |
1258 | Stack now 0 1 | |
1259 | Shifting token error () | |
1260 | Entering state 3 | |
1261 | Next token is token $undefined () | |
1262 | Error: discarding token $undefined () | |
1263 | Error: popping token error () | |
1264 | Stack now 0 1 | |
1265 | Shifting token error () | |
1266 | Entering state 3 | |
1267 | Reading a token: Now at end of input. | |
1268 | Cleanup: discarding lookahead token $end () | |
1269 | Stack now 0 1 3 | |
1270 | Cleanup: popping token error () | |
1271 | Cleanup: popping token 'a' ('a') | |
1272 | DESTROY 'a' | |
1273 | ]]) | |
1274 | ||
1275 | AT_CLEANUP | |
1276 | ||
1277 | ||
1278 | ||
1279 | ## ------------------------------------------------------ ## | |
1280 | ## Default %printer and %destructor are not for $accept. ## | |
1281 | ## ------------------------------------------------------ ## | |
1282 | ||
287b314e | 1283 | AT_SETUP([Default %printer and %destructor are not for $accept]) |
9350499c JD |
1284 | |
1285 | # If YYSTYPE is a union and Bison were to apply the default %printer and | |
1286 | # %destructor to $accept: | |
1287 | # - The %printer and %destructor code generated for $accept would always be | |
1288 | # dead code because $accept is currently never shifted onto the stack. | |
1289 | # - $$ for $accept would always be of type YYSTYPE because it's not possible | |
4c9b8f13 | 1290 | # to declare '%type <field> $accept'. (Also true for $undefined.) |
9350499c JD |
1291 | # - Thus, the compiler might complain that the user code assumes the wrong |
1292 | # type for $$ since the code might assume the type associated with a | |
1293 | # specific union field, which is especially reasonable in C++ since that | |
1294 | # type may be a base type. This test case checks for this problem. (Also | |
1295 | # true for $undefined and the error token, so there are three warnings for | |
1296 | # %printer and three for %destructor.) | |
1297 | ||
f42c012f | 1298 | AT_BISON_OPTION_PUSHDEFS([%debug]) |
9350499c JD |
1299 | AT_DATA_GRAMMAR([[input.y]], |
1300 | [[%debug /* So that %printer is actually compiled. */ | |
1301 | ||
1302 | %{ | |
1303 | # include <stdio.h> | |
cf806753 | 1304 | # include <stdlib.h> |
55f48c48 AD |
1305 | ]AT_YYERROR_DECLARE[ |
1306 | ]AT_YYLEX_DECLARE[ | |
9350499c JD |
1307 | # define USE(SYM) |
1308 | %} | |
1309 | ||
1310 | %printer { | |
1311 | char chr = $$; | |
1312 | fprintf (yyoutput, "'%c'", chr); | |
3ebecc24 | 1313 | } <> <*> |
9350499c JD |
1314 | %destructor { |
1315 | char chr = $$; | |
1316 | fprintf (stderr, "DESTROY '%c'\n", chr); | |
3ebecc24 | 1317 | } <> <*> |
9350499c JD |
1318 | |
1319 | %union { char chr; } | |
1320 | %type <chr> start | |
1321 | ||
1322 | %% | |
1323 | ||
1324 | start: { USE($$); } ; | |
1325 | ||
1326 | %% | |
55f48c48 | 1327 | ]AT_YYERROR_DEFINE[ |
95361618 | 1328 | ]AT_YYLEX_DEFINE[ |
3ef9fa8f | 1329 | ]AT_MAIN_DEFINE[ |
9350499c | 1330 | ]]) |
55f48c48 | 1331 | AT_BISON_OPTION_POPDEFS |
9350499c | 1332 | |
9534d2be | 1333 | AT_BISON_CHECK([-o input.c input.y], [], [], |
f0f95a50 AD |
1334 | [[input.y:24.3-4: warning: useless %destructor for type <> [-Wother] |
1335 | input.y:24.3-4: warning: useless %printer for type <> [-Wother] | |
9534d2be | 1336 | ]]) |
9350499c JD |
1337 | AT_COMPILE([input]) |
1338 | ||
1339 | AT_CLEANUP | |
f91b1629 JD |
1340 | |
1341 | ||
1342 | ||
1343 | ## ------------------------------------------------------ ## | |
1344 | ## Default %printer and %destructor for mid-rule values. ## | |
1345 | ## ------------------------------------------------------ ## | |
1346 | ||
1347 | AT_SETUP([Default %printer and %destructor for mid-rule values]) | |
1348 | ||
f42c012f | 1349 | AT_BISON_OPTION_PUSHDEFS([%debug]) |
f91b1629 JD |
1350 | AT_DATA_GRAMMAR([[input.y]], |
1351 | [[%debug /* So that %printer is actually compiled. */ | |
1352 | ||
1353 | %{ | |
55f48c48 AD |
1354 | ]AT_YYERROR_DECLARE[ |
1355 | ]AT_YYLEX_DECLARE[ | |
f91b1629 JD |
1356 | # define USE(SYM) |
1357 | # define YYLTYPE int | |
9fc4c025 | 1358 | # define YYLLOC_DEFAULT(Current, Rhs, N) (void)(Rhs) |
f0f95a50 | 1359 | # define LOCATION_PRINT(File, Loc) |
f91b1629 JD |
1360 | %} |
1361 | ||
3ebecc24 JD |
1362 | %printer { fprintf (yyoutput, "%d", @$); } <> |
1363 | %destructor { fprintf (stderr, "DESTROY %d\n", @$); } <> | |
12e35840 JD |
1364 | %printer { fprintf (yyoutput, "<*> printer should not be called"); } <*> |
1365 | %destructor { fprintf (yyoutput, "<*> destructor should not be called"); } <*> | |
f91b1629 JD |
1366 | |
1367 | %% | |
1368 | ||
1369 | start: | |
1370 | { @$ = 1; } // Not set or used. | |
1371 | { USE ($$); @$ = 2; } // Both set and used. | |
1372 | { USE ($$); @$ = 3; } // Only set. | |
1373 | { @$ = 4; } // Only used. | |
1374 | 'c' | |
1375 | { USE (($$, $2, $4, $5)); @$ = 0; } | |
1376 | ; | |
1377 | ||
1378 | %% | |
55f48c48 | 1379 | ]AT_YYERROR_DEFINE[ |
95361618 | 1380 | ]AT_YYLEX_DEFINE[ |
f42c012f | 1381 | ]AT_MAIN_DEFINE[ |
f91b1629 | 1382 | ]]) |
55f48c48 | 1383 | AT_BISON_OPTION_POPDEFS |
f91b1629 | 1384 | |
da730230 | 1385 | AT_BISON_CHECK([-o input.c input.y], 0,, |
9534d2be AD |
1386 | [[input.y:24.70-72: warning: useless %destructor for type <*> [-Wother] |
1387 | input.y:24.70-72: warning: useless %printer for type <*> [-Wother] | |
1388 | input.y:33.3-23: warning: unset value: $$ [-Wother] | |
0906b12c | 1389 | input.y:32.3-23: warning: unused value: $3 [-Wother] |
f91b1629 JD |
1390 | ]]) |
1391 | ||
505ece51 | 1392 | AT_BISON_CHECK([-fcaret -o input.c input.y], 0,, |
f3ead217 TR |
1393 | [[input.y:24.70-72: warning: useless %destructor for type <*> [-Wother] |
1394 | %printer { fprintf (yyoutput, "<*> printer should not be called"); } <*> | |
1395 | ^^^ | |
1396 | input.y:24.70-72: warning: useless %printer for type <*> [-Wother] | |
1397 | %printer { fprintf (yyoutput, "<*> printer should not be called"); } <*> | |
1398 | ^^^ | |
1399 | input.y:33.3-23: warning: unset value: $$ [-Wother] | |
505ece51 TR |
1400 | { @$ = 4; } // Only used. |
1401 | ^^^^^^^^^^^^^^^^^^^^^ | |
0906b12c | 1402 | input.y:32.3-23: warning: unused value: $3 [-Wother] |
23589235 AD |
1403 | { USE ($$); @$ = 3; } // Only set. |
1404 | ^^^^^^^^^^^^^^^^^^^^^ | |
505ece51 TR |
1405 | ]]) |
1406 | ||
f91b1629 | 1407 | AT_COMPILE([input]) |
f42c012f | 1408 | AT_PARSER_CHECK([./input --debug], 1,, |
f91b1629 JD |
1409 | [[Starting parse |
1410 | Entering state 0 | |
12e35840 | 1411 | Reducing stack by rule 1 (line 30): |
f91b1629 JD |
1412 | -> $$ = nterm $@1 (: ) |
1413 | Stack now 0 | |
1414 | Entering state 2 | |
12e35840 | 1415 | Reducing stack by rule 2 (line 31): |
f91b1629 JD |
1416 | -> $$ = nterm @2 (: 2) |
1417 | Stack now 0 2 | |
1418 | Entering state 4 | |
12e35840 | 1419 | Reducing stack by rule 3 (line 32): |
f91b1629 JD |
1420 | -> $$ = nterm @3 (: 3) |
1421 | Stack now 0 2 4 | |
1422 | Entering state 5 | |
12e35840 | 1423 | Reducing stack by rule 4 (line 33): |
f91b1629 JD |
1424 | -> $$ = nterm @4 (: 4) |
1425 | Stack now 0 2 4 5 | |
1426 | Entering state 6 | |
1427 | Reading a token: Now at end of input. | |
1428 | syntax error | |
1429 | Error: popping nterm @4 (: 4) | |
1430 | DESTROY 4 | |
1431 | Stack now 0 2 4 5 | |
1432 | Error: popping nterm @3 (: 3) | |
1433 | DESTROY 3 | |
1434 | Stack now 0 2 4 | |
1435 | Error: popping nterm @2 (: 2) | |
1436 | DESTROY 2 | |
1437 | Stack now 0 2 | |
1438 | Error: popping nterm $@1 (: ) | |
1439 | Stack now 0 | |
1440 | Cleanup: discarding lookahead token $end (: ) | |
1441 | Stack now 0 | |
1442 | ]]) | |
1443 | ||
1444 | AT_CLEANUP | |
e785ccf7 JD |
1445 | |
1446 | ||
1447 | ## ----------------------- ## | |
1448 | ## @$ implies %locations. ## | |
1449 | ## ----------------------- ## | |
1450 | ||
1451 | # Bison once forgot to check for @$ in actions other than semantic actions. | |
1452 | ||
1453 | # AT_CHECK_ACTION_LOCATIONS(ACTION-DIRECTIVE) | |
55f48c48 | 1454 | # ------------------------------------------- |
e785ccf7 JD |
1455 | m4_define([AT_CHECK_ACTION_LOCATIONS], |
1456 | [AT_SETUP([[@$ in ]$1[ implies %locations]]) | |
f42c012f | 1457 | AT_BISON_OPTION_PUSHDEFS([%debug]) |
e785ccf7 JD |
1458 | AT_DATA_GRAMMAR([[input.y]], |
1459 | [[%code { | |
1460 | #include <stdio.h> | |
55f48c48 AD |
1461 | ]AT_YYERROR_DECLARE[ |
1462 | ]AT_YYLEX_DECLARE[ | |
e785ccf7 JD |
1463 | } |
1464 | ||
1465 | %debug | |
1466 | ||
1467 | ]$1[ { | |
8d6c1b5e | 1468 | fprintf (stderr, "%d\n", @$.first_line); |
e785ccf7 JD |
1469 | } ]m4_if($1, [%initial-action], [], [[start]])[ |
1470 | ||
1471 | %% | |
1472 | ||
1473 | start: ; | |
1474 | ||
1475 | %% | |
1476 | ||
1477 | static int | |
1478 | yylex (void) | |
1479 | { | |
1480 | return 0; | |
1481 | } | |
1482 | ||
55f48c48 | 1483 | ]AT_YYERROR_DEFINE[ |
3ef9fa8f | 1484 | ]AT_MAIN_DEFINE[ |
e785ccf7 JD |
1485 | ]]) |
1486 | ||
da730230 | 1487 | AT_BISON_CHECK([[-o input.c input.y]]) |
e785ccf7 | 1488 | AT_COMPILE([[input]]) |
55f48c48 | 1489 | AT_BISON_OPTION_POPDEFS |
e785ccf7 JD |
1490 | AT_CLEANUP]) |
1491 | ||
1492 | AT_CHECK_ACTION_LOCATIONS([[%initial-action]]) | |
1493 | AT_CHECK_ACTION_LOCATIONS([[%destructor]]) | |
1494 | AT_CHECK_ACTION_LOCATIONS([[%printer]]) | |
e8cd1ad6 DJ |
1495 | |
1496 | ||
4982f078 AD |
1497 | ## ------------------------- ## |
1498 | ## Qualified $$ in actions. ## | |
1499 | ## ------------------------- ## | |
1500 | ||
3edfae04 AD |
1501 | # Check that we can use qualified $$ (v.g., $<type>$) not only in rule |
1502 | # actions, but also where $$ is valid: %destructor/%printer and | |
1503 | # %initial-action. | |
4982f078 | 1504 | # |
3edfae04 | 1505 | # FIXME: Not actually checking %destructor, but it's the same code as |
4982f078 AD |
1506 | # %printer... |
1507 | # | |
1508 | # To do that, use a semantic value that has two fields (sem_type), | |
1509 | # declare symbols to have only one of these types (INT, float), and | |
1510 | # use $<type>$ to get the other one. Including for symbols that are | |
1511 | # not typed (UNTYPED). | |
1512 | ||
1513 | m4_pushdef([AT_TEST], | |
1514 | [AT_SETUP([[Qualified $$ in actions: $1]]) | |
1515 | ||
f42c012f | 1516 | AT_BISON_OPTION_PUSHDEFS([%skeleton "$1" %debug]) |
4982f078 AD |
1517 | |
1518 | AT_DATA_GRAMMAR([[input.y]], | |
1519 | [[%skeleton "$1" | |
4982f078 AD |
1520 | %debug |
1521 | %code requires | |
1522 | { | |
4982f078 AD |
1523 | typedef struct sem_type |
1524 | { | |
1525 | int ival; | |
1526 | float fval; | |
1527 | } sem_type; | |
1528 | ||
1529 | # define YYSTYPE sem_type | |
1530 | ||
4acc22e5 | 1531 | ]AT_SKEL_CC_IF([[ |
4982f078 AD |
1532 | # include <iostream> |
1533 | static void | |
1534 | report (std::ostream& yyo, int ival, float fval) | |
1535 | { | |
1536 | yyo << "ival: " << ival << ", fval: " << fval; | |
1537 | } | |
4acc22e5 AD |
1538 | ]], [[ |
1539 | # include <stdio.h> | |
4982f078 AD |
1540 | static void |
1541 | report (FILE* yyo, int ival, float fval) | |
1542 | { | |
1543 | fprintf (yyo, "ival: %d, fval: %1.1f", ival, fval); | |
1544 | } | |
4acc22e5 | 1545 | ]])[ |
4982f078 AD |
1546 | } |
1547 | ||
1548 | %code | |
1549 | { | |
1550 | ]AT_YYERROR_DECLARE[ | |
1551 | ]AT_YYLEX_DECLARE[ | |
1552 | } | |
1553 | ||
1554 | %token UNTYPED | |
1555 | %token <ival> INT | |
1556 | %type <fval> float | |
1557 | %printer { report (yyo, $$, $<fval>$); } <ival>; | |
1558 | %printer { report (yyo, $<ival>$, $$ ); } <fval>; | |
1559 | %printer { report (yyo, $<ival>$, $<fval>$); } <>; | |
1560 | ||
cd735a8c AD |
1561 | %initial-action |
1562 | { | |
1563 | $<ival>$ = 42; | |
1564 | $<fval>$ = 4.2; | |
1565 | } | |
4982f078 AD |
1566 | |
1567 | %% | |
1568 | float: UNTYPED INT | |
1569 | { | |
1570 | $$ = $<fval>1 + $<fval>2; | |
1571 | $<ival>$ = $<ival>1 + $][2; | |
1572 | }; | |
1573 | %% | |
1574 | ]AT_YYERROR_DEFINE[ | |
1575 | ]AT_YYLEX_DEFINE(AT_SKEL_CC_IF([[{yy::parser::token::UNTYPED, | |
1576 | yy::parser::token::INT, | |
1577 | EOF}]], | |
1578 | [[{UNTYPED, INT, EOF}]]), | |
1579 | [AT_VAL.ival = toknum * 10; AT_VAL.fval = toknum / 10.0;])[ | |
f42c012f | 1580 | ]AT_MAIN_DEFINE[ |
4982f078 AD |
1581 | ]]) |
1582 | ||
1583 | AT_FULL_COMPILE([[input]]) | |
f42c012f | 1584 | AT_PARSER_CHECK([./input --debug], 0, [], [stderr]) |
4982f078 AD |
1585 | # Don't be too picky on the traces, GLR is not exactly the same. Keep |
1586 | # only the lines from the printer. | |
34904c57 | 1587 | AT_CHECK([[sed -ne '/ival:/p' stderr]], 0, |
4982f078 AD |
1588 | [[Reading a token: Next token is token UNTYPED (ival: 10, fval: 0.1) |
1589 | Shifting token UNTYPED (ival: 10, fval: 0.1) | |
1590 | Reading a token: Next token is token INT (ival: 20, fval: 0.2) | |
1591 | Shifting token INT (ival: 20, fval: 0.2) | |
1592 | $][1 = token UNTYPED (ival: 10, fval: 0.1) | |
1593 | $][2 = token INT (ival: 20, fval: 0.2) | |
1594 | -> $$ = nterm float (ival: 30, fval: 0.3) | |
1595 | Cleanup: popping nterm float (ival: 30, fval: 0.3) | |
1596 | ]]) | |
1597 | ||
1598 | AT_BISON_OPTION_POPDEFS | |
1599 | ||
1600 | AT_CLEANUP | |
1601 | ]) | |
1602 | ||
1603 | AT_TEST([yacc.c]) | |
1604 | AT_TEST([glr.c]) | |
1605 | AT_TEST([lalr1.cc]) | |
1606 | AT_TEST([glr.cc]) | |
1607 | ||
1608 | m4_popdef([AT_TEST]) | |
1609 | ||
df222dfa JD |
1610 | ## -------------------------------------------------- ## |
1611 | ## Destroying lookahead assigned by semantic action. ## | |
1612 | ## -------------------------------------------------- ## | |
1613 | ||
1614 | AT_SETUP([[Destroying lookahead assigned by semantic action]]) | |
1615 | ||
55f48c48 | 1616 | AT_BISON_OPTION_PUSHDEFS |
df222dfa JD |
1617 | AT_DATA_GRAMMAR([input.y], |
1618 | [[ | |
1619 | %code { | |
1620 | #include <assert.h> | |
1621 | #include <stdio.h> | |
55f48c48 AD |
1622 | ]AT_YYERROR_DECLARE[ |
1623 | ]AT_YYLEX_DECLARE[ | |
df222dfa JD |
1624 | #define USE(Var) |
1625 | } | |
1626 | ||
1627 | %destructor { fprintf (stderr, "'a' destructor\n"); } 'a' | |
1628 | %destructor { fprintf (stderr, "'b' destructor\n"); } 'b' | |
1629 | ||
1630 | %% | |
1631 | ||
1632 | // In a previous version of Bison, yychar assigned by the semantic | |
1633 | // action below was not translated into yytoken before the lookahead was | |
1634 | // discarded and thus before its destructor (selected according to | |
1635 | // yytoken) was called in order to return from yyparse. This would | |
1636 | // happen even if YYACCEPT was performed in a later semantic action as | |
1637 | // long as only consistent states with default reductions were visited | |
1638 | // in between. However, we leave YYACCEPT in the same semantic action | |
1639 | // for this test in order to show that skeletons cannot simply translate | |
1640 | // immediately after every semantic action because a semantic action | |
1641 | // that has set yychar might not always return normally. Instead, | |
1642 | // skeletons must translate before every use of yytoken. | |
1643 | start: 'a' accept { USE($1); } ; | |
684083f0 | 1644 | accept: %empty { |
df222dfa JD |
1645 | assert (yychar == YYEMPTY); |
1646 | yychar = 'b'; | |
1647 | YYACCEPT; | |
1648 | } ; | |
1649 | ||
1650 | %% | |
55f48c48 | 1651 | ]AT_YYERROR_DEFINE[ |
95361618 | 1652 | ]AT_YYLEX_DEFINE(["a"])[ |
3ef9fa8f | 1653 | ]AT_MAIN_DEFINE[ |
df222dfa | 1654 | ]]) |
55f48c48 | 1655 | AT_BISON_OPTION_POPDEFS |
df222dfa JD |
1656 | AT_BISON_CHECK([[-o input.c input.y]]) |
1657 | AT_COMPILE([[input]]) | |
1658 | AT_PARSER_CHECK([[./input]], [[0]], [], | |
1659 | [['b' destructor | |
1660 | 'a' destructor | |
1661 | ]]) | |
1662 | ||
1663 | AT_CLEANUP | |
d115aad9 AD |
1664 | |
1665 | ## ---------- ## | |
1666 | ## YYBACKUP. ## | |
1667 | ## ---------- ## | |
1668 | ||
1669 | AT_SETUP([[YYBACKUP]]) | |
1670 | ||
f42c012f | 1671 | AT_BISON_OPTION_PUSHDEFS([%pure-parser %debug]) |
55f48c48 | 1672 | |
d115aad9 AD |
1673 | AT_DATA_GRAMMAR([input.y], |
1674 | [[ | |
1675 | %error-verbose | |
1676 | %debug | |
1677 | %pure-parser | |
1678 | %code { | |
1679 | # include <stdio.h> | |
1680 | # include <stdlib.h> | |
1681 | # include <assert.h> | |
1682 | ||
55f48c48 | 1683 | ]AT_YYERROR_DECLARE[ |
087dcd78 | 1684 | ]AT_YYLEX_DECLARE[ |
d115aad9 AD |
1685 | } |
1686 | %% | |
1687 | input: | |
1688 | exp exp {} | |
1689 | ; | |
1690 | ||
1691 | exp: | |
1692 | 'a' { printf ("a: %d\n", $1); } | |
1693 | | 'b' { YYBACKUP('a', 123); } | |
1694 | | 'c' 'd' { YYBACKUP('a', 456); } | |
1695 | ; | |
1696 | ||
1697 | %% | |
55f48c48 | 1698 | ]AT_YYERROR_DEFINE[ |
087dcd78 | 1699 | ]AT_YYLEX_DEFINE(["bcd"], [*lvalp = (toknum + 1) * 10])[ |
3ef9fa8f | 1700 | ]AT_MAIN_DEFINE[ |
d115aad9 | 1701 | ]]) |
55f48c48 | 1702 | AT_BISON_OPTION_POPDEFS |
d115aad9 AD |
1703 | |
1704 | AT_BISON_CHECK([[-o input.c input.y]]) | |
1705 | AT_COMPILE([[input]]) | |
1706 | AT_PARSER_CHECK([[./input]], [[0]], | |
1707 | [[a: 123 | |
1708 | a: 456 | |
d115aad9 AD |
1709 | ]]) |
1710 | ||
1711 | AT_CLEANUP |