]> git.saurik.com Git - bison.git/blame - tests/actions.at
Clean up handling of %destructor for the end token (token 0).
[bison.git] / tests / actions.at
CommitLineData
82c035a8 1# Executing Actions. -*- Autotest -*-
378f4bd8 2# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 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
0fb669f9
PE
16# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17# 02110-1301, USA.
82c035a8
AD
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]],
8f3596a6
AD
33[[%error-verbose
34%debug
35%{
d99361e6
AD
36# include <stdio.h>
37# include <stdlib.h>
38 static void yyerror (const char *msg);
39 static int yylex (void);
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
75d1fe16
AD
87## ---------------- ##
88## Exotic Dollars. ##
89## ---------------- ##
90
91AT_SETUP([Exotic Dollars])
92
9501dc6e 93AT_DATA_GRAMMAR([[input.y]],
8f3596a6
AD
94[[%error-verbose
95%debug
96%{
75d1fe16
AD
97# include <stdio.h>
98# include <stdlib.h>
99 static void yyerror (const char *msg);
100 static int yylex (void);
affac613 101# define USE(Var)
75d1fe16
AD
102%}
103
104%union
105{
106 int val;
107};
108
0ff67d71 109%type <val> a_1 a_2 a_5
378f4bd8 110 sum_of_the_five_previous_values
75d1fe16
AD
111
112%%
0ff67d71
PE
113exp: a_1 a_2 { $<val>$ = 3; } { $<val>$ = $<val>3 + 1; } a_5
114 sum_of_the_five_previous_values
75d1fe16 115 {
84866159 116 USE (($1, $2, $<foo>3, $<foo>4, $5));
75d1fe16
AD
117 printf ("%d\n", $6);
118 }
119;
120a_1: { $$ = 1; };
121a_2: { $$ = 2; };
75d1fe16
AD
122a_5: { $$ = 5; };
123
124sum_of_the_five_previous_values:
125 {
126 $$ = $<val>0 + $<val>-1 + $<val>-2 + $<val>-3 + $<val>-4;
127 }
128;
129
130%%
131static int
132yylex (void)
133{
134 return EOF;
135}
136
137static void
138yyerror (const char *msg)
139{
140 fprintf (stderr, "%s\n", msg);
141}
142
143int
144main (void)
145{
146 return yyparse ();
147}
148]])
149
84866159 150AT_CHECK([bison -d -v -o input.c input.y], 0)
1154cced
AD
151AT_COMPILE([input])
152AT_PARSER_CHECK([./input], 0,
75d1fe16
AD
153[[15
154]])
155
156AT_CLEANUP
9280d3ef
AD
157
158
159
e776192e
AD
160## -------------------------- ##
161## Printers and Destructors. ##
162## -------------------------- ##
9280d3ef 163
ac700aa6
PE
164# _AT_CHECK_PRINTER_AND_DESTRUCTOR($1, $2, $3, $4, BISON-DIRECTIVE, UNION-FLAG)
165# -----------------------------------------------------------------------------
3df37415 166m4_define([_AT_CHECK_PRINTER_AND_DESTRUCTOR],
9c66f418
AD
167[# Make sure complex $n work.
168m4_if([$1$2$3], $[1]$[2]$[3], [],
3df37415
AD
169 [m4_fatal([$0: Invalid arguments: $@])])dnl
170
9c66f418
AD
171# Be sure to pass all the %directives to this macro to have correct
172# helping macros. So don't put any directly in the Bison file.
c2729758 173AT_BISON_OPTION_PUSHDEFS([$5])
9501dc6e 174AT_DATA_GRAMMAR([[input.y]],
34f98f46 175[[%start-header {
9280d3ef
AD
176#include <stdio.h>
177#include <stdlib.h>
9c66f418 178#include <assert.h>
80ce3401
PE
179
180#define YYINITDEPTH 10
181#define YYMAXDEPTH 10
c2729758
ADL
182]AT_LALR1_CC_IF(
183 [#define RANGE(Location) (Location).begin.line, (Location).end.line],
184 [#define RANGE(Location) (Location).first_line, (Location).last_line])
9bc0dd67 185[}
9c66f418
AD
186
187$5]
188m4_ifval([$6], [%union
9280d3ef
AD
189{
190 int ival;
ac700aa6 191}])
fb9712a9 192AT_LALR1_CC_IF([%define "global_tokens_and_yystype"])
34f98f46 193m4_ifval([$6], [[%end-header {]], [[%start-header {]])
9bc0dd67 194AT_LALR1_CC_IF([typedef yy::location YYLTYPE;
9c66f418 195 m4_ifval([$6], , [#define YYSTYPE int])])
c2729758 196[static int yylex (]AT_LEX_FORMALS[);
ca6f187f 197]AT_LALR1_CC_IF([], [static void yyerror (const char *msg);])
9bc0dd67 198[}
c2729758 199
868d2d96 200]m4_ifval([$6], [%type <ival> '(' 'x' 'y' ')' ';' thing line input END])[
e3170060 201
868d2d96 202/* FIXME: This %printer isn't actually tested. */
a5eb1ed2
AD
203%printer
204 {
9a1e9989 205 ]AT_LALR1_CC_IF([debug_stream () << $$;],
3fc16193 206 [fprintf (yyoutput, "%d", $$)])[;
a5eb1ed2 207 }
9c66f418 208 input line thing 'x' 'y'
e3170060
AD
209
210%destructor
4c6cc1db 211 { printf ("Freeing nterm input (%d@%d-%d)\n", $$, RANGE (@$)); }
7bd6c77e 212 input
5719c109 213
7bd6c77e 214%destructor
4c6cc1db 215 { printf ("Freeing nterm line (%d@%d-%d)\n", $$, RANGE (@$)); }
7bd6c77e
AD
216 line
217
218%destructor
4c6cc1db 219 { printf ("Freeing nterm thing (%d@%d-%d)\n", $$, RANGE (@$)); }
7bd6c77e
AD
220 thing
221
222%destructor
4c6cc1db 223 { printf ("Freeing token 'x' (%d@%d-%d)\n", $$, RANGE (@$)); }
7bd6c77e 224 'x'
5719c109 225
9c66f418
AD
226%destructor
227 { printf ("Freeing token 'y' (%d@%d-%d)\n", $$, RANGE (@$)); }
228 'y'
229
868d2d96
JD
230%token END 0
231%destructor
232 { printf ("Freeing token END (%d@%d-%d)\n", $$, RANGE (@$)); }
233 END
234
9280d3ef 235%%
9c66f418
AD
236/*
237 This grammar is made to exercise error recovery.
238 "Lines" starting with `(' support error recovery, with
239 ')' as synchronizing token. Lines starting with 'x' can never
240 be recovered from if in error.
241*/
242
9280d3ef
AD
243input:
244 /* Nothing. */
5719c109
AD
245 {
246 $$ = 0;
16f37b35 247 printf ("input (%d@%d-%d): /* Nothing */\n", $$, RANGE (@$));
5719c109
AD
248 }
249| line input /* Right recursive to load the stack so that popping at
868d2d96 250 END can be exercised. */
5719c109
AD
251 {
252 $$ = 2;
16f37b35 253 printf ("input (%d@%d-%d): line (%d@%d-%d) input (%d@%d-%d)\n",
4c6cc1db 254 $$, RANGE (@$), $1, RANGE (@1), $2, RANGE (@2));
5719c109 255 }
9280d3ef
AD
256;
257
258line:
259 thing thing thing ';'
5719c109
AD
260 {
261 $$ = $1;
16f37b35 262 printf ("line (%d@%d-%d): thing (%d@%d-%d) thing (%d@%d-%d) thing (%d@%d-%d) ';' (%d@%d-%d)\n",
4c6cc1db 263 $$, RANGE (@$), $1, RANGE (@1), $2, RANGE (@2),
16f37b35 264 $3, RANGE (@3), $4, RANGE (@4));
5719c109 265 }
9c66f418 266| '(' thing thing ')'
5719c109
AD
267 {
268 $$ = $1;
9c66f418
AD
269 printf ("line (%d@%d-%d): '(' (%d@%d-%d) thing (%d@%d-%d) thing (%d@%d-%d) ')' (%d@%d-%d)\n",
270 $$, RANGE (@$), $1, RANGE (@1), $2, RANGE (@2),
271 $3, RANGE (@3), $4, RANGE (@4));
5719c109 272 }
9c66f418 273| '(' thing ')'
5719c109
AD
274 {
275 $$ = $1;
9c66f418
AD
276 printf ("line (%d@%d-%d): '(' (%d@%d-%d) thing (%d@%d-%d) ')' (%d@%d-%d)\n",
277 $$, RANGE (@$), $1, RANGE (@1), $2, RANGE (@2), $3, RANGE (@3));
5719c109 278 }
9c66f418 279| '(' error ')'
5719c109
AD
280 {
281 $$ = -1;
9c66f418
AD
282 printf ("line (%d@%d-%d): '(' (%d@%d-%d) error (@%d-%d) ')' (%d@%d-%d)\n",
283 $$, RANGE (@$), $1, RANGE (@1), RANGE (@2), $3, RANGE (@3));
5719c109 284 }
9280d3ef
AD
285;
286
287thing:
5719c109
AD
288 'x'
289 {
290 $$ = $1;
4c6cc1db
AD
291 printf ("thing (%d@%d-%d): 'x' (%d@%d-%d)\n",
292 $$, RANGE (@$), $1, RANGE (@1));
5719c109 293 }
9280d3ef
AD
294;
295%%
9c66f418 296/* Alias to ARGV[1]. */
a9739e7c 297const char *source = 0;
9c66f418 298
9280d3ef 299static int
c2729758 300yylex (]AT_LEX_FORMALS[)
9280d3ef 301{
5a08f1ce 302 static unsigned int counter = 0;
9280d3ef 303
9c66f418
AD
304 int c = ]AT_VAL[]m4_ifval([$6], [.ival])[ = counter++;
305 /* As in BASIC, line numbers go from 10 to 10. */
c2729758 306]AT_LALR1_CC_IF(
9c66f418
AD
307[ AT_LOC.begin.line = AT_LOC.begin.column = 10 * c;
308 AT_LOC.end.line = AT_LOC.end.column = AT_LOC.begin.line + 9;
c2729758 309],
9c66f418
AD
310[ AT_LOC.first_line = AT_LOC.first_column = 10 * c;
311 AT_LOC.last_line = AT_LOC.last_column = AT_LOC.first_line + 9;
c2729758 312])[
9c66f418 313
a9739e7c
PE
314 if (source[c])
315 printf ("sending: '%c'", source[c]);
9280d3ef 316 else
868d2d96 317 printf ("sending: END");
9c66f418 318 printf (" (%d@%d-%d)\n", c, RANGE (]AT_LOC[));
a9739e7c 319 return source[c];
9280d3ef
AD
320}
321
c2729758 322]AT_LALR1_CC_IF(
68e11668 323[/* A C++ error reporting function. */
c2729758 324void
99880de5 325yy::parser::error (const location& l, const std::string& m)
c2729758 326{
efeed023 327 printf ("%d-%d: %s\n", RANGE (l), m.c_str());
c2729758
ADL
328}
329
330static bool yydebug;
331int
332yyparse ()
333{
99880de5 334 yy::parser parser;
a3cb6248 335 parser.set_debug_level (yydebug);
c2729758
ADL
336 return parser.parse ();
337}
338],
339[static void
9280d3ef
AD
340yyerror (const char *msg)
341{
4c6cc1db 342 printf ("%d-%d: %s\n", RANGE (yylloc), msg);
c2729758 343}])[
9280d3ef 344
9280d3ef 345int
9c66f418 346main (int argc, const char *argv[])
9280d3ef 347{
6100a9aa 348 int status;
9280d3ef 349 yydebug = !!getenv ("YYDEBUG");
9c66f418 350 assert (argc == 2);
a9739e7c 351 source = argv[1];
6100a9aa
PE
352 status = yyparse ();
353 switch (status)
9280d3ef 354 {
6100a9aa
PE
355 case 0: printf ("Successful parse.\n"); break;
356 case 1: printf ("Parsing FAILED.\n"); break;
357 default: printf ("Parsing FAILED (status %d).\n", status); break;
9280d3ef 358 }
6100a9aa 359 return status;
9280d3ef
AD
360}
361]])
362
07971983
PE
363AT_LALR1_CC_IF(
364 [AT_CHECK([bison -o input.cc input.y])
365 AT_COMPILE_CXX([input])],
366 [AT_CHECK([bison -o input.c input.y])
367 AT_COMPILE([input])])
9c66f418
AD
368
369
370# Check the location of "empty"
371# -----------------------------
372# I.e., epsilon-reductions, as in "(x)" which ends by reducing
373# an empty "line" nterm.
374# FIXME: This location is not satisfying. Depend on the lookahead?
375AT_PARSER_CHECK([./input '(x)'], 0,
376[[sending: '(' (0@0-9)
377sending: 'x' (1@10-19)
378thing (1@10-19): 'x' (1@10-19)
379sending: ')' (2@20-29)
380line (0@0-29): '(' (0@0-9) thing (1@10-19) ')' (2@20-29)
868d2d96 381sending: END (3@30-39)
b4a20338
AD
382input (0@29-29): /* Nothing */
383input (2@0-29): line (0@0-29) input (0@29-29)
868d2d96 384Freeing token END (3@30-39)
258b75ca 385Freeing nterm input (2@0-29)
9c66f418
AD
386Successful parse.
387]])
388
389
390# Check locations in error recovery
391# ---------------------------------
392# '(y)' is an error, but can be recovered from. But what's the location
393# of the error itself ('y'), and of the resulting reduction ('(error)').
394AT_PARSER_CHECK([./input '(y)'], 0,
395[[sending: '(' (0@0-9)
396sending: 'y' (1@10-19)
39710-19: syntax error, unexpected 'y', expecting 'x'
398Freeing token 'y' (1@10-19)
399sending: ')' (2@20-29)
400line (-1@0-29): '(' (0@0-9) error (@10-19) ')' (2@20-29)
868d2d96 401sending: END (3@30-39)
b4a20338
AD
402input (0@29-29): /* Nothing */
403input (2@0-29): line (-1@0-29) input (0@29-29)
868d2d96 404Freeing token END (3@30-39)
258b75ca 405Freeing nterm input (2@0-29)
9c66f418
AD
406Successful parse.
407]])
408
409
410# Syntax errors caught by the parser
411# ----------------------------------
412# Exercise the discarding of stack top and input until `error'
413# can be reduced.
414#
415# '(', 'x', 'x', 'x', 'x', 'x', ')',
416#
417# Load the stack and provoke an error that cannot be caught by the
418# grammar, to check that the stack is cleared. And make sure the
419# lookahead is freed.
420#
421# '(', 'x', ')',
422# '(', 'x', ')',
423# 'y'
424AT_PARSER_CHECK([./input '(xxxxx)(x)(x)y'], 1,
425[[sending: '(' (0@0-9)
4c6cc1db
AD
426sending: 'x' (1@10-19)
427thing (1@10-19): 'x' (1@10-19)
428sending: 'x' (2@20-29)
429thing (2@20-29): 'x' (2@20-29)
430sending: 'x' (3@30-39)
9c66f418 43130-39: syntax error, unexpected 'x', expecting ')'
4c6cc1db
AD
432Freeing nterm thing (2@20-29)
433Freeing nterm thing (1@10-19)
4c6cc1db
AD
434Freeing token 'x' (3@30-39)
435sending: 'x' (4@40-49)
436Freeing token 'x' (4@40-49)
437sending: 'x' (5@50-59)
438Freeing token 'x' (5@50-59)
9c66f418
AD
439sending: ')' (6@60-69)
440line (-1@0-69): '(' (0@0-9) error (@10-59) ')' (6@60-69)
441sending: '(' (7@70-79)
4c6cc1db
AD
442sending: 'x' (8@80-89)
443thing (8@80-89): 'x' (8@80-89)
9c66f418
AD
444sending: ')' (9@90-99)
445line (7@70-99): '(' (7@70-79) thing (8@80-89) ')' (9@90-99)
446sending: '(' (10@100-109)
447sending: 'x' (11@110-119)
448thing (11@110-119): 'x' (11@110-119)
449sending: ')' (12@120-129)
450line (10@100-129): '(' (10@100-109) thing (11@110-119) ')' (12@120-129)
451sending: 'y' (13@130-139)
b4a20338
AD
452input (0@129-129): /* Nothing */
453input (2@100-129): line (10@100-129) input (0@129-129)
9c66f418
AD
454input (2@70-129): line (7@70-99) input (2@100-129)
455input (2@0-129): line (-1@0-69) input (2@70-129)
868d2d96 456130-139: syntax error, unexpected 'y', expecting END
9c66f418
AD
457Freeing nterm input (2@0-129)
458Freeing token 'y' (13@130-139)
5719c109 459Parsing FAILED.
9280d3ef
AD
460]])
461
868d2d96
JD
462
463# Syntax error caught by the parser where lookahead = END
464# --------------------------------------------------------
465# Load the stack and provoke an error that cannot be caught by the
466# grammar, to check that the stack is cleared. And make sure the
467# lookahead is freed.
468#
469# '(', 'x', ')',
470# '(', 'x', ')',
471# 'x'
472AT_PARSER_CHECK([./input '(x)(x)x'], 1,
473[[sending: '(' (0@0-9)
474sending: 'x' (1@10-19)
475thing (1@10-19): 'x' (1@10-19)
476sending: ')' (2@20-29)
477line (0@0-29): '(' (0@0-9) thing (1@10-19) ')' (2@20-29)
478sending: '(' (3@30-39)
479sending: 'x' (4@40-49)
480thing (4@40-49): 'x' (4@40-49)
481sending: ')' (5@50-59)
482line (3@30-59): '(' (3@30-39) thing (4@40-49) ')' (5@50-59)
483sending: 'x' (6@60-69)
484thing (6@60-69): 'x' (6@60-69)
485sending: END (7@70-79)
48670-79: syntax error, unexpected END, expecting 'x'
487Freeing nterm thing (6@60-69)
488Freeing nterm line (3@30-59)
489Freeing nterm line (0@0-29)
490Freeing token END (7@70-79)
491Parsing FAILED.
492]])
493
494
80ce3401
PE
495# Check destruction upon stack overflow
496# -------------------------------------
497# Upon stack overflow, all symbols on the stack should be destroyed.
498# Only check for yacc.c.
499AT_YACC_IF([
6100a9aa 500AT_PARSER_CHECK([./input '(x)(x)(x)(x)(x)(x)(x)'], 2,
80ce3401
PE
501[[sending: '(' (0@0-9)
502sending: 'x' (1@10-19)
503thing (1@10-19): 'x' (1@10-19)
504sending: ')' (2@20-29)
505line (0@0-29): '(' (0@0-9) thing (1@10-19) ')' (2@20-29)
506sending: '(' (3@30-39)
507sending: 'x' (4@40-49)
508thing (4@40-49): 'x' (4@40-49)
509sending: ')' (5@50-59)
510line (3@30-59): '(' (3@30-39) thing (4@40-49) ')' (5@50-59)
511sending: '(' (6@60-69)
512sending: 'x' (7@70-79)
513thing (7@70-79): 'x' (7@70-79)
514sending: ')' (8@80-89)
515line (6@60-89): '(' (6@60-69) thing (7@70-79) ')' (8@80-89)
516sending: '(' (9@90-99)
517sending: 'x' (10@100-109)
518thing (10@100-109): 'x' (10@100-109)
519sending: ')' (11@110-119)
520line (9@90-119): '(' (9@90-99) thing (10@100-109) ')' (11@110-119)
521sending: '(' (12@120-129)
522sending: 'x' (13@130-139)
523thing (13@130-139): 'x' (13@130-139)
524sending: ')' (14@140-149)
525line (12@120-149): '(' (12@120-129) thing (13@130-139) ')' (14@140-149)
526sending: '(' (15@150-159)
527sending: 'x' (16@160-169)
528thing (16@160-169): 'x' (16@160-169)
529sending: ')' (17@170-179)
530line (15@150-179): '(' (15@150-159) thing (16@160-169) ')' (17@170-179)
531sending: '(' (18@180-189)
532sending: 'x' (19@190-199)
533thing (19@190-199): 'x' (19@190-199)
534sending: ')' (20@200-209)
1a059451 535200-209: memory exhausted
80ce3401
PE
536Freeing nterm thing (19@190-199)
537Freeing nterm line (15@150-179)
538Freeing nterm line (12@120-149)
539Freeing nterm line (9@90-119)
540Freeing nterm line (6@60-89)
541Freeing nterm line (3@30-59)
542Freeing nterm line (0@0-29)
6100a9aa 543Parsing FAILED (status 2).
80ce3401
PE
544]])
545])
546
3df37415
AD
547])
548
549
a14a26fa 550# AT_CHECK_PRINTER_AND_DESTRUCTOR([BISON-OPTIONS], [UNION-FLAG], [SKIP_FLAG])
046ac74e 551# ---------------------------------------------------------------------------
3df37415 552m4_define([AT_CHECK_PRINTER_AND_DESTRUCTOR],
9c66f418
AD
553[AT_SETUP([Printers and Destructors $2: $1])
554
a14a26fa 555$3
9c66f418
AD
556_AT_CHECK_PRINTER_AND_DESTRUCTOR($[1], $[2], $[3], $[4],
557[%error-verbose
558%debug
559%verbose
560%locations
561$1], [$2])
562
563AT_CLEANUP
3df37415
AD
564])
565
566
ac700aa6
PE
567AT_CHECK_PRINTER_AND_DESTRUCTOR([])
568AT_CHECK_PRINTER_AND_DESTRUCTOR([], [with union])
046ac74e 569
a14a26fa
PE
570# These tests currently fail on a Debian GNU/Linux 3.0r2 x86 host,
571# but the 2nd test succeeds on a Solaris 9 sparc hosts (Forte 7 cc).
572# Skip them until we figure out what the problem is.
fd19f271
AD
573AT_CHECK_PRINTER_AND_DESTRUCTOR([%defines %skeleton "lalr1.cc"])
574AT_CHECK_PRINTER_AND_DESTRUCTOR([%defines %skeleton "lalr1.cc"], [with union])
046ac74e 575
1576d44d
AD
576AT_CHECK_PRINTER_AND_DESTRUCTOR([%glr-parser])
577AT_CHECK_PRINTER_AND_DESTRUCTOR([%glr-parser], [with union])