1 # Torturing Bison. -*- Autotest -*-
3 # Copyright (C) 2001-2002, 2004-2007, 2009-2012 Free Software
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 AT_BANNER([[Torture Tests.]])
22 # AT_INCREASE_DATA_SIZE(SIZE)
23 # ---------------------------
24 # Try to increase the data size to SIZE KiB if possible.
25 m4_define([AT_INCREASE_DATA_SIZE],
26 [data_limit=`(ulimit -S -d) 2>/dev/null`
29 if test "$data_limit" -lt $1; then
30 AT_CHECK([ulimit -S -d $1 || exit 77])
36 ## ------------------------------------- ##
37 ## Creating a large artificial grammar. ##
38 ## ------------------------------------- ##
40 # AT_DATA_TRIANGULAR_GRAMMAR(FILE-NAME, SIZE)
41 # -------------------------------------------
42 # Create FILE-NAME, containing a self checking parser for a huge
44 m4_define([AT_DATA_TRIANGULAR_GRAMMAR],
45 [AT_BISON_OPTION_PUSHDEFS
46 AT_DATA([[gengram.pl]],
50 my $max = $ARGV[0] || 10;
53 ]AT_DATA_GRAMMAR_PROLOGUE[
73 for my $size (1 .. $max)
75 print "%token t$size $size \"$size\"\n";
81 exp { assert (\@S|@1 == 0); \$\$ = \@S|@1; }
82 | input exp { assert (\@S|@2 == \@S|@1 + 1); \$\$ = \@S|@2; }
90 for my $size (1 .. $max)
93 print wrap ("| ", " ",
94 (map { "\"$_\"" } (1 .. $size)),
96 " { \$\$ = $size; }\n";
106 static int inner = 1;
107 static int outer = 0;
110 else if (inner > outer)
121 yydebug = !!getenv ("YYDEBUG");
126 AT_BISON_OPTION_POPDEFS
128 AT_CHECK([$PERL -w ./gengram.pl $2 || exit 77], 0, [stdout])
137 AT_SETUP([Big triangle])
139 # I have been able to go up to 2000 on my machine.
140 # I tried 3000, a 29Mb grammar file, but then my system killed bison.
141 # With 500 and the new parser, which consume far too much memory,
142 # it gets killed too. Of course the parser is to be cleaned.
143 AT_DATA_TRIANGULAR_GRAMMAR([input.y], [200])
144 AT_BISON_CHECK_NO_XML([-v -o input.c input.y])
146 AT_PARSER_CHECK([./input])
152 # AT_DATA_HORIZONTAL_GRAMMAR(FILE-NAME, SIZE)
153 # -------------------------------------------
154 # Create FILE-NAME, containing a self checking parser for a huge
155 # horizontal grammar.
156 m4_define([AT_DATA_HORIZONTAL_GRAMMAR],
157 [AT_BISON_OPTION_PUSHDEFS
158 AT_DATA([[gengram.pl]],
159 [[#! /usr/bin/perl -w
162 my $max = $ARGV[0] || 10;
165 ]AT_DATA_GRAMMAR_PROLOGUE[
178 for my $size (1 .. $max)
180 print " t$size $size \"$size\"\n";
191 (map { "\"$_\"" } (1 .. $max)), ";"),
201 static int counter = 1;
204 assert (counter++ == MAX + 1);
211 yydebug = !!getenv ("YYDEBUG");
217 AT_CHECK([$PERL -w ./gengram.pl $2 || exit 77], 0, [stdout])
219 AT_BISON_OPTION_POPDEFS
223 ## ---------------- ##
224 ## Big horizontal. ##
225 ## ---------------- ##
227 AT_SETUP([Big horizontal])
229 # I have been able to go up to 10000 on my machine, but I had to
230 # increase the maximum stack size (* 100). It gave:
236 # gengram.pl 10000 0.70s user 0.01s sys 99% cpu 0.711 total
237 # bison input.y 730.56s user 0.53s sys 99% cpu 12:12.34 total
238 # gcc -Wall input.tab.c -o input 5.81s user 0.20s sys 100% cpu 6.01 total
239 # ./input 0.00s user 0.01s sys 108% cpu 0.01 total
241 AT_DATA_HORIZONTAL_GRAMMAR([input.y], [1000])
243 # GNU m4 requires about 70 MiB for this test on a 32-bit host.
244 # Ask for 200 MiB, which should be plenty even on a 64-bit host.
245 AT_INCREASE_DATA_SIZE(204000)
247 AT_BISON_CHECK_NO_XML([-v -o input.c input.y])
249 AT_PARSER_CHECK([./input])
255 # AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR(FILE-NAME, SIZE)
256 # --------------------------------------------------
257 # Create FILE-NAME, containing a self checking parser for a grammar
258 # requiring SIZE lookahead tokens.
259 m4_define([AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR],
260 [AT_BISON_OPTION_PUSHDEFS
261 AT_DATA([[gengram.pl]],
262 [[#! /usr/bin/perl -w
266 my $max = $ARGV[0] || 10;
272 ]AT_DATA_SOURCE_PROLOGUE[
285 %type <val> input exp
290 wrap ("%type <val> ",
292 map { "n$_" } (1 .. $max)),
296 for my $count (1 .. $max)
298 print " t$count $count \"$count\"\n";
304 exp { assert (\@S|@1 == 1); \$\$ = \@S|@1; }
305 | input exp { assert (\@S|@2 == \@S|@1 + 1); \$\$ = \@S|@2; }
309 n1 "1" { assert (\@S|@1 == 1); \@S|@\@S|@ = \@S|@1; }
312 for my $count (2 .. $max)
314 print "| n$count \"$count\" { assert (\@S|@1 == $count); \@S|@\@S|@ = \@S|@1; }\n";
318 for my $count (1 .. $max)
320 print "n$count: token { \$\$ = $count; };\n";
329 static int return_token = 1;
330 static int counter = 1;
333 assert (counter++ == MAX + 1);
348 yydebug = !!getenv ("YYDEBUG");
354 AT_CHECK([$PERL -w ./gengram.pl $2 || exit 77], 0, [stdout])
356 AT_BISON_OPTION_POPDEFS
360 ## ------------------------ ##
361 ## Many lookahead tokens. ##
362 ## ------------------------ ##
364 AT_SETUP([Many lookahead tokens])
366 AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR([input.y], [1000])
368 # GNU m4 requires about 70 MiB for this test on a 32-bit host.
369 # Ask for 200 MiB, which should be plenty even on a 64-bit host.
370 AT_INCREASE_DATA_SIZE(204000)
372 AT_BISON_CHECK([-v -o input.c input.y])
374 AT_PARSER_CHECK([./input])
380 # AT_DATA_STACK_TORTURE(C-PROLOGUE, [BISON-DECLS])
381 # ------------------------------------------------
382 # A parser specialized in torturing the stack size.
383 m4_define([AT_DATA_STACK_TORTURE],
384 [AT_BISON_OPTION_PUSHDEFS([$2])
385 # A grammar of parens growing the stack thanks to right recursion.
387 AT_DATA_GRAMMAR([input.y],
402 exp: WAIT_FOR_EOF exp | ;
409 assert (0 <= yylval);
416 /* Return argv[1] as an int. */
418 get_args (int argc, const char **argv)
423 res = strtol (argv[1], &endp, 10);
424 assert (argv[1] != endp);
426 assert (res <= INT_MAX);
427 assert (errno != ERANGE);
432 main (int argc, const char **argv)
434 YYSTYPE yylval_init = get_args (argc, argv);
437 ]m4_bmatch([$2], [api.push-pull both],
438 [[ yypstate *ps = yypstate_new ();
440 for (count = 0; count < 2; ++count)
443 yylval = yylval_init;
444 new_status = ]m4_bmatch([$2], [api.push-pull both],
445 [[yypull_parse (ps)]],
450 assert (new_status == status);
451 }]m4_bmatch([$2], [api.push-pull both],[[
452 yypstate_delete (ps);]])[
456 AT_BISON_OPTION_POPDEFS([$2])
457 AT_BISON_CHECK([-o input.c input.y])
462 ## -------------------------------------- ##
463 ## Exploding the Stack Size with Alloca. ##
464 ## -------------------------------------- ##
466 AT_SETUP([Exploding the Stack Size with Alloca])
468 m4_pushdef([AT_USE_ALLOCA], [[
469 #if (defined __GNUC__ || defined __BUILTIN_VA_ARG_INCR \
470 || defined _AIX || defined _MSC_VER || defined _ALLOCA_H)
471 # define YYSTACK_USE_ALLOCA 1
475 AT_DATA_STACK_TORTURE([AT_USE_ALLOCA])
477 # Below the limit of 200.
478 AT_PARSER_CHECK([./input 20], 0, [], [ignore],
479 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
480 # Two enlargements: 2 * 2 * 200.
481 AT_PARSER_CHECK([./input 900], 0, [], [ignore],
482 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
483 # Fails: beyond the limit of 10,000 (which we don't reach anyway since we
484 # multiply by two starting at 200 => 5120 is the last possible).
485 AT_PARSER_CHECK([./input 10000], 2, [], [ignore],
486 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
488 # The push parser can't use alloca since the stacks can't be locals. This test
489 # just helps guarantee we don't let the YYSTACK_USE_ALLOCA feature affect
491 AT_DATA_STACK_TORTURE([AT_USE_ALLOCA],
492 [[%define api.push-pull both
494 AT_PARSER_CHECK([./input 20], 0, [], [ignore],
495 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
496 AT_PARSER_CHECK([./input 900], 0, [], [ignore],
497 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
498 AT_PARSER_CHECK([./input 10000], 2, [], [ignore],
499 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
501 m4_popdef([AT_USE_ALLOCA])
508 ## -------------------------------------- ##
509 ## Exploding the Stack Size with Malloc. ##
510 ## -------------------------------------- ##
512 AT_SETUP([Exploding the Stack Size with Malloc])
514 m4_pushdef([AT_USE_ALLOCA], [[#define YYSTACK_USE_ALLOCA 0]])
516 AT_DATA_STACK_TORTURE([AT_USE_ALLOCA])
518 # Below the limit of 200.
519 AT_PARSER_CHECK([./input 20], 0, [], [ignore],
520 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
521 # Two enlargements: 2 * 2 * 200.
522 AT_PARSER_CHECK([./input 900], 0, [], [ignore],
523 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
524 # Fails: beyond the limit of 10,000 (which we don't reach anyway since we
525 # multiply by two starting at 200 => 5120 is the possible).
526 AT_PARSER_CHECK([./input 10000], 2, [], [ignore],
527 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
529 AT_DATA_STACK_TORTURE([AT_USE_ALLOCA],
530 [[%define api.push-pull both
532 AT_PARSER_CHECK([./input 20], 0, [], [ignore],
533 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
534 AT_PARSER_CHECK([./input 900], 0, [], [ignore],
535 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
536 AT_PARSER_CHECK([./input 10000], 2, [], [ignore],
537 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
539 m4_popdef([AT_USE_ALLOCA])