]> git.saurik.com Git - bison.git/blame - tests/actions.at
* tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
[bison.git] / tests / actions.at
CommitLineData
82c035a8 1# Executing Actions. -*- Autotest -*-
1f916a78 2# Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
82c035a8
AD
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2, or (at your option)
7# any later version.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17# 02111-1307, USA.
18
19AT_BANNER([[User Actions.]])
20
21## ------------------ ##
22## Mid-rule actions. ##
23## ------------------ ##
24
25AT_SETUP([Mid-rule actions])
26
27# Bison once forgot the mid-rule actions. It was because the action
28# was attached to the host rule (the one with the mid-rule action),
29# instead of being attached to the empty rule dedicated to this
30# action.
31
9501dc6e 32AT_DATA_GRAMMAR([[input.y]],
82c035a8 33[[%{
d99361e6
AD
34# include <stdio.h>
35# include <stdlib.h>
36 static void yyerror (const char *msg);
37 static int yylex (void);
38# define YYDEBUG 1
39# define YYERROR_VERBOSE 1
82c035a8
AD
40%}
41%%
931394cb
AD
42exp: { putchar ('0'); }
43 '1' { putchar ('1'); }
44 '2' { putchar ('2'); }
45 '3' { putchar ('3'); }
46 '4' { putchar ('4'); }
47 '5' { putchar ('5'); }
48 '6' { putchar ('6'); }
49 '7' { putchar ('7'); }
50 '8' { putchar ('8'); }
51 '9' { putchar ('9'); }
52 { putchar ('\n'); }
82c035a8
AD
53 ;
54%%
55static int
56yylex (void)
57{
58 static const char *input = "123456789";
59 return *input++;
60}
61
62static void
63yyerror (const char *msg)
64{
65 fprintf (stderr, "%s\n", msg);
66}
67
68int
69main (void)
70{
71 return yyparse ();
72}
73]])
74
b56471a6 75AT_CHECK([bison -d -v -o input.c input.y])
1154cced
AD
76AT_COMPILE([input])
77AT_PARSER_CHECK([./input], 0,
931394cb 78[[0123456789
82c035a8
AD
79]])
80
81AT_CLEANUP
75d1fe16
AD
82
83
84
5dac0025
PE
85## ---------------------- ##
86## Actions after errors. ##
87## ---------------------- ##
88
89AT_SETUP([Actions after errors])
90
91
92
93AT_DATA_GRAMMAR([[input.y]],
94[[%{
95#include <stdio.h>
96#include <stdlib.h>
97
98static int yylex (void);
99static void yyerror (char const *);
100
101#define YYDEBUG 1
102%}
103%union { int ival; }
104%type <ival> 'x' ';' thing line input
105
106%%
107input:
108 /* Nothing. */
109 {
110 $$ = 0;
16f37b35 111 printf ("input (%d): /* Nothing */\n", $$);
5dac0025
PE
112 }
113| line input /* Right recursive to load the stack so that popping at
114 EOF can be exercised. */
115 {
116 $$ = 2;
16f37b35 117 printf ("input (%d): line (%d) input (%d)\n", $$, $1, $2);
5dac0025
PE
118 }
119;
120
121line:
122 thing thing thing ';'
123 {
124 $$ = $1;
16f37b35 125 printf ("line (%d): thing (%d) thing (%d) thing (%d) ';' (%d)\n",
5dac0025
PE
126 $$, $1, $2, $3, $4);
127 }
128| thing thing ';'
129 {
130 $$ = $1;
16f37b35 131 printf ("line (%d): thing (%d) thing (%d) ';' (%d)\n", $$, $1, $2, $3);
5dac0025
PE
132 }
133| thing ';'
134 {
135 $$ = $1;
16f37b35 136 printf ("line (%d): thing (%d) ';' (%d)\n", $$, $1, $2);
5dac0025
PE
137 }
138| error ';'
139 {
140 $$ = -1;
16f37b35 141 printf ("line (%d): error ';' (%d)\n", $$, $2);
5dac0025
PE
142 }
143;
144
145thing:
146 'x'
147 {
148 $$ = $1;
16f37b35 149 printf ("thing (%d): 'x' (%d)\n", $$, $1);
5dac0025
PE
150 }
151;
152%%
153static size_t counter;
154
155static int
156yylex (void)
157{
158 static char const input[] =
159 {
120f129d 160 /* Exercise the discarding of stack top and input until `error'
5dac0025
PE
161 can be reduced. */
162 'x', 'x', 'x', 'x', 'x', 'x', ';',
163
164 /* Load the stack and provoke an error that cannot be caught by
165 the grammar, to check that the stack is cleared. */
166 'x', 'x', ';',
167 'x', ';',
168 'y'
169 };
170
171 if (counter < sizeof input)
172 {
173 yylval.ival = counter;
16f37b35 174 printf ("sending: '%c' (%d)\n", input[counter], yylval.ival);
5dac0025
PE
175 return input[counter++];
176 }
177 else
178 {
179 printf ("sending: EOF\n");
180 return EOF;
181 }
182}
183
184static void
185yyerror (char const *msg)
186{
187 printf ("%lu: %s\n", (unsigned long int) counter, msg);
188}
189
190int
191main (void)
192{
193 yydebug = !!getenv ("YYDEBUG");
194 return yyparse ();
195}
196]])
197
198AT_CHECK([bison -o input.c input.y])
199AT_COMPILE([input])
200AT_PARSER_CHECK([./input], 1,
16f37b35
PE
201[[sending: 'x' (0)
202thing (0): 'x' (0)
203sending: 'x' (1)
204thing (1): 'x' (1)
205sending: 'x' (2)
206thing (2): 'x' (2)
207sending: 'x' (3)
5dac0025 2084: syntax error
16f37b35
PE
209sending: 'x' (4)
210sending: 'x' (5)
211sending: ';' (6)
212line (-1): error ';' (6)
213sending: 'x' (7)
214thing (7): 'x' (7)
215sending: 'x' (8)
216thing (8): 'x' (8)
217sending: ';' (9)
218line (7): thing (7) thing (8) ';' (9)
219sending: 'x' (10)
220thing (10): 'x' (10)
221sending: ';' (11)
222line (10): thing (10) ';' (11)
223sending: 'y' (12)
5dac0025
PE
22413: syntax error
225sending: EOF
226]])
227
228AT_CLEANUP
229
230
231
75d1fe16
AD
232## ---------------- ##
233## Exotic Dollars. ##
234## ---------------- ##
235
236AT_SETUP([Exotic Dollars])
237
9501dc6e 238AT_DATA_GRAMMAR([[input.y]],
75d1fe16
AD
239[[%{
240# include <stdio.h>
241# include <stdlib.h>
242 static void yyerror (const char *msg);
243 static int yylex (void);
244# define YYDEBUG 1
245# define YYERROR_VERBOSE 1
246%}
247
248%union
249{
250 int val;
251};
252
0ff67d71 253%type <val> a_1 a_2 a_5
75d1fe16
AD
254 sum_of_the_five_previous_values
255
256%%
0ff67d71
PE
257exp: a_1 a_2 { $<val>$ = 3; } { $<val>$ = $<val>3 + 1; } a_5
258 sum_of_the_five_previous_values
75d1fe16
AD
259 {
260 printf ("%d\n", $6);
261 }
262;
263a_1: { $$ = 1; };
264a_2: { $$ = 2; };
75d1fe16
AD
265a_5: { $$ = 5; };
266
267sum_of_the_five_previous_values:
268 {
269 $$ = $<val>0 + $<val>-1 + $<val>-2 + $<val>-3 + $<val>-4;
270 }
271;
272
273%%
274static int
275yylex (void)
276{
277 return EOF;
278}
279
280static void
281yyerror (const char *msg)
282{
283 fprintf (stderr, "%s\n", msg);
284}
285
286int
287main (void)
288{
289 return yyparse ();
290}
291]])
292
b56471a6 293AT_CHECK([bison -d -v -o input.c input.y])
1154cced
AD
294AT_COMPILE([input])
295AT_PARSER_CHECK([./input], 0,
75d1fe16
AD
296[[15
297]])
298
299AT_CLEANUP
9280d3ef
AD
300
301
302
e776192e
AD
303## -------------------------- ##
304## Printers and Destructors. ##
305## -------------------------- ##
9280d3ef 306
ac700aa6
PE
307# _AT_CHECK_PRINTER_AND_DESTRUCTOR($1, $2, $3, $4, BISON-DIRECTIVE, UNION-FLAG)
308# -----------------------------------------------------------------------------
3df37415
AD
309m4_define([_AT_CHECK_PRINTER_AND_DESTRUCTOR],
310[m4_if([$1$2$3], $[1]$[2]$[3], [],
311 [m4_fatal([$0: Invalid arguments: $@])])dnl
312
ac700aa6 313AT_SETUP([Printers and Destructors $6: $5])
9280d3ef
AD
314
315# Make sure complex $n work.
316
c2729758 317AT_BISON_OPTION_PUSHDEFS([$5])
9501dc6e 318AT_DATA_GRAMMAR([[input.y]],
16f37b35 319[[$5
3df37415 320%{
9280d3ef
AD
321#include <stdio.h>
322#include <stdlib.h>
c2729758
ADL
323]AT_LALR1_CC_IF(
324 [#define RANGE(Location) (Location).begin.line, (Location).end.line],
325 [#define RANGE(Location) (Location).first_line, (Location).last_line])
326[%}
7bd6c77e
AD
327%error-verbose
328%debug
5719c109 329%verbose
7bd6c77e 330%locations
ac700aa6 331]m4_ifval([$6], [%union
9280d3ef
AD
332{
333 int ival;
ac700aa6
PE
334}])
335[
c2729758 336%{
ac700aa6
PE
337]AT_LALR1_CC_IF([typedef yy::Location YYLTYPE;
338m4_ifval([$6], , [#define YYSTYPE int])])
c2729758 339[static int yylex (]AT_LEX_FORMALS[);
ca6f187f
PE
340]AT_LALR1_CC_IF([], [static void yyerror (const char *msg);])
341[%}
c2729758 342
ac700aa6 343]m4_ifval([$6], [%type <ival> 'x' ';' thing line input])[
e3170060 344
a5eb1ed2
AD
345%printer
346 {
347 ]AT_LALR1_CC_IF([cdebug_ << @$ << ": " << $$;],
348 [fprintf (yyoutput, "%d@%d-%d", $$, RANGE (@$))])[;
349 }
350 input line thing 'x'
e3170060
AD
351
352%destructor
4c6cc1db 353 { printf ("Freeing nterm input (%d@%d-%d)\n", $$, RANGE (@$)); }
7bd6c77e 354 input
5719c109 355
7bd6c77e 356%destructor
4c6cc1db 357 { printf ("Freeing nterm line (%d@%d-%d)\n", $$, RANGE (@$)); }
7bd6c77e
AD
358 line
359
360%destructor
4c6cc1db 361 { printf ("Freeing nterm thing (%d@%d-%d)\n", $$, RANGE (@$)); }
7bd6c77e
AD
362 thing
363
364%destructor
4c6cc1db 365 { printf ("Freeing token 'x' (%d@%d-%d)\n", $$, RANGE (@$)); }
7bd6c77e 366 'x'
5719c109 367
9280d3ef
AD
368%%
369input:
370 /* Nothing. */
5719c109
AD
371 {
372 $$ = 0;
16f37b35 373 printf ("input (%d@%d-%d): /* Nothing */\n", $$, RANGE (@$));
5719c109
AD
374 }
375| line input /* Right recursive to load the stack so that popping at
376 EOF can be exercised. */
377 {
378 $$ = 2;
16f37b35 379 printf ("input (%d@%d-%d): line (%d@%d-%d) input (%d@%d-%d)\n",
4c6cc1db 380 $$, RANGE (@$), $1, RANGE (@1), $2, RANGE (@2));
5719c109 381 }
9280d3ef
AD
382;
383
384line:
385 thing thing thing ';'
5719c109
AD
386 {
387 $$ = $1;
16f37b35 388 printf ("line (%d@%d-%d): thing (%d@%d-%d) thing (%d@%d-%d) thing (%d@%d-%d) ';' (%d@%d-%d)\n",
4c6cc1db 389 $$, RANGE (@$), $1, RANGE (@1), $2, RANGE (@2),
16f37b35 390 $3, RANGE (@3), $4, RANGE (@4));
5719c109 391 }
9280d3ef 392| thing thing ';'
5719c109
AD
393 {
394 $$ = $1;
16f37b35
PE
395 printf ("line (%d@%d-%d): thing (%d@%d-%d) thing (%d@%d-%d) ';' (%d@%d-%d)\n",
396 $$, RANGE (@$), $1, RANGE (@1), $2, RANGE (@2), $3, RANGE (@3));
5719c109 397 }
9280d3ef 398| thing ';'
5719c109
AD
399 {
400 $$ = $1;
16f37b35
PE
401 printf ("line (%d@%d-%d): thing (%d@%d-%d) ';' (%d@%d-%d)\n",
402 $$, RANGE (@$), $1, RANGE (@1), $2, RANGE (@2));
5719c109 403 }
9280d3ef 404| error ';'
5719c109
AD
405 {
406 $$ = -1;
16f37b35
PE
407 printf ("line (%d@%d-%d): error (@%d-%d) ';' (%d@%d-%d)\n",
408 $$, RANGE (@$), RANGE (@1), $2, RANGE (@2));
5719c109 409 }
9280d3ef
AD
410;
411
412thing:
5719c109
AD
413 'x'
414 {
415 $$ = $1;
4c6cc1db
AD
416 printf ("thing (%d@%d-%d): 'x' (%d@%d-%d)\n",
417 $$, RANGE (@$), $1, RANGE (@1));
5719c109 418 }
9280d3ef
AD
419;
420%%
421static int
c2729758 422yylex (]AT_LEX_FORMALS[)
9280d3ef 423{
ac700aa6 424 static const char input[] =
9280d3ef 425 {
4c6cc1db 426 /* Exercise the discarding of stack top and input until `error'
5719c109 427 can be reduced. */
9280d3ef 428 'x', 'x', 'x', 'x', 'x', 'x', ';',
5719c109 429
5a08f1ce
AD
430 /* Load the stack and provoke an error that cannot be caught by
431 the grammar, to check that the stack is cleared. */
9280d3ef
AD
432 'x', 'x', ';',
433 'x', ';',
5719c109 434 'y'
9280d3ef 435 };
5a08f1ce 436 static unsigned int counter = 0;
9280d3ef
AD
437
438 if (counter < (sizeof(input) / sizeof (input[0])))
439 {
c2729758 440]AT_LALR1_CC_IF(
ac700aa6 441[ int c = m4_ifval([$6], [yylval->ival], [*yylval]) = counter++;
c2729758 442 /* As in BASIC, line numbers go from 10 to 10. */
ac700aa6 443 yylloc->begin.line = yylloc->begin.column = 10 * c;
c2729758
ADL
444 yylloc->end.line = yylloc->end.column = yylloc->begin.line + 9;
445 printf ("sending: '%c' (%d@%d-%d)\n",
ac700aa6
PE
446 input[[c]], c, RANGE (*yylloc));
447 return input[[c]];
c2729758 448],
ac700aa6 449[ int c = m4_ifval([$6], [yylval.ival], [yylval]) = counter++;
93b68a0e 450 /* As in BASIC, line numbers go from 10 to 10. */
ac700aa6 451 yylloc.first_line = yylloc.first_column = 10 * c;
4c6cc1db
AD
452 yylloc.last_line = yylloc.last_column = yylloc.first_line + 9;
453 printf ("sending: '%c' (%d@%d-%d)\n",
ac700aa6
PE
454 input[[c]], c, RANGE (yylloc));
455 return input[[c]];
c2729758 456])[
9280d3ef
AD
457 }
458 else
5719c109
AD
459 {
460 printf ("sending: EOF\n");
461 return EOF;
462 }
9280d3ef
AD
463}
464
c2729758
ADL
465]AT_LALR1_CC_IF(
466[/* Currently, print_ is required in C++. */
467void
468yy::Parser::print_ ()
469{
470 std::cerr << location;
471}
472
473/* A C++ error reporting function. */
474void
475yy::Parser::error_ ()
476{
477 printf ("%d-%d: %s\n", RANGE (location), message.c_str());
478}
479
480static bool yydebug;
481int
482yyparse ()
483{
29058652 484 yy::Parser parser (yydebug, yy::Location ());
c2729758
ADL
485 return parser.parse ();
486}
487],
488[static void
9280d3ef
AD
489yyerror (const char *msg)
490{
4c6cc1db 491 printf ("%d-%d: %s\n", RANGE (yylloc), msg);
c2729758 492}])[
9280d3ef 493
9280d3ef
AD
494int
495main (void)
496{
497 yydebug = !!getenv ("YYDEBUG");
498 if (yyparse ())
499 {
4c6cc1db 500 printf ("Parsing FAILED.\n");
9280d3ef
AD
501 exit (1);
502 }
4c6cc1db 503 printf ("Successful parse.\n");
9280d3ef
AD
504 return 0;
505}
506]])
507
07971983
PE
508AT_LALR1_CC_IF(
509 [AT_CHECK([bison -o input.cc input.y])
510 AT_COMPILE_CXX([input])],
511 [AT_CHECK([bison -o input.c input.y])
512 AT_COMPILE([input])])
1154cced 513AT_PARSER_CHECK([./input], 1,
4c6cc1db
AD
514[[sending: 'x' (0@0-9)
515thing (0@0-9): 'x' (0@0-9)
516sending: 'x' (1@10-19)
517thing (1@10-19): 'x' (1@10-19)
518sending: 'x' (2@20-29)
519thing (2@20-29): 'x' (2@20-29)
520sending: 'x' (3@30-39)
52130-39: syntax error, unexpected 'x', expecting ';'
522Freeing nterm thing (2@20-29)
523Freeing nterm thing (1@10-19)
524Freeing nterm thing (0@0-9)
525Freeing token 'x' (3@30-39)
526sending: 'x' (4@40-49)
527Freeing token 'x' (4@40-49)
528sending: 'x' (5@50-59)
529Freeing token 'x' (5@50-59)
530sending: ';' (6@60-69)
120f129d 531line (-1@0-69): error (@0-59) ';' (6@60-69)
4c6cc1db
AD
532sending: 'x' (7@70-79)
533thing (7@70-79): 'x' (7@70-79)
534sending: 'x' (8@80-89)
535thing (8@80-89): 'x' (8@80-89)
536sending: ';' (9@90-99)
16f37b35 537line (7@70-99): thing (7@70-79) thing (8@80-89) ';' (9@90-99)
4c6cc1db
AD
538sending: 'x' (10@100-109)
539thing (10@100-109): 'x' (10@100-109)
540sending: ';' (11@110-119)
16f37b35 541line (10@100-119): thing (10@100-109) ';' (11@110-119)
4c6cc1db
AD
542sending: 'y' (12@120-129)
543120-129: syntax error, unexpected $undefined, expecting $end or 'x'
5719c109 544sending: EOF
4c6cc1db
AD
545Freeing nterm line (10@100-119)
546Freeing nterm line (7@70-99)
120f129d 547Freeing nterm line (-1@0-69)
5719c109 548Parsing FAILED.
9280d3ef
AD
549]])
550
551AT_CLEANUP
3df37415
AD
552])
553
554
ac700aa6
PE
555# AT_CHECK_PRINTER_AND_DESTRUCTOR([BISON-OPTIONS], [UNION-FLAG])
556# --------------------------------------------------------------
3df37415
AD
557# Produce `calc.y'.
558m4_define([AT_CHECK_PRINTER_AND_DESTRUCTOR],
ac700aa6 559[_AT_CHECK_PRINTER_AND_DESTRUCTOR($[1], $[2], $[3], $[4], [$1], [$2])
3df37415
AD
560])
561
562
ac700aa6
PE
563AT_CHECK_PRINTER_AND_DESTRUCTOR([])
564AT_CHECK_PRINTER_AND_DESTRUCTOR([], [with union])
c2729758 565AT_CHECK_PRINTER_AND_DESTRUCTOR([%locations %defines %skeleton "lalr1.cc"])
ac700aa6
PE
566AT_CHECK_PRINTER_AND_DESTRUCTOR([%locations %defines %skeleton "lalr1.cc"],
567 [with union])
16f37b35 568
ac700aa6 569# FIXME. These test cases fail.
16f37b35 570#AT_CHECK_PRINTER_AND_DESTRUCTOR([%glr-parser])
ac700aa6 571#AT_CHECK_PRINTER_AND_DESTRUCTOR([%glr-parser], [with union])