1 # Torturing Bison. -*- Autotest -*-
2 # Copyright (C) 2001, 2002, 2004, 2005 Free Software Foundation, Inc.
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)
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA
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_DATA([[gengram.pl]],
49 my $max = $ARGV[0] || 10;
52 ]AT_DATA_GRAMMAR_PROLOGUE[
57 #define YYERROR_VERBOSE 1
60 static int yylex (void);
61 static void yyerror (const char *msg);
72 for my $size (1 .. $max)
74 print "%token t$size $size \"$size\"\n";
80 exp { if (\@S|@1 != 0) abort (); \$\$ = \@S|@1; }
81 | input exp { if (\@S|@2 != \@S|@1 + 1) abort (); \$\$ = \@S|@2; }
89 for my $size (1 .. $max)
92 print wrap ("| ", " ",
93 (map { "\"$_\"" } (1 .. $size)),
95 " { \$\$ = $size; }\n";
104 static int inner = 1;
105 static int outer = 0;
108 else if (inner > outer)
118 yyerror (const char *msg)
120 fprintf (stderr, "%s\\n", msg);
126 yydebug = !!getenv ("YYDEBUG");
132 AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
141 AT_SETUP([Big triangle])
143 # I have been able to go up to 2000 on my machine.
144 # I tried 3000, a 29Mb grammar file, but then my system killed bison.
145 # With 500 and the new parser, which consume far too much memory,
146 # it gets killed too. Of course the parser is to be cleaned.
147 AT_DATA_TRIANGULAR_GRAMMAR([input.y], [200])
148 AT_CHECK([bison -v -o input.c input.y])
150 AT_PARSER_CHECK([./input])
156 # AT_DATA_HORIZONTAL_GRAMMAR(FILE-NAME, SIZE)
157 # -------------------------------------------
158 # Create FILE-NAME, containing a self checking parser for a huge
159 # horizontal grammar.
160 m4_define([AT_DATA_HORIZONTAL_GRAMMAR],
161 [AT_DATA([[gengram.pl]],
162 [[#! /usr/bin/perl -w
165 my $max = $ARGV[0] || 10;
168 ]AT_DATA_GRAMMAR_PROLOGUE[
173 #define YYERROR_VERBOSE 1
176 static int yylex (void);
177 static void yyerror (const char *msg);
181 for my $size (1 .. $max)
183 print "%token t$size $size \"$size\"\n";
193 (map { "\"$_\"" } (1 .. $max)), ";"),
201 static int counter = 1;
209 yyerror (const char *msg)
211 fprintf (stderr, "%s\\n", msg);
217 yydebug = !!getenv ("YYDEBUG");
223 AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
228 ## ---------------- ##
229 ## Big horizontal. ##
230 ## ---------------- ##
232 AT_SETUP([Big horizontal])
234 # I have been able to go up to 10000 on my machine, but I had to
235 # increase the maximum stack size (* 100). It gave:
241 # gengram.pl 10000 0.70s user 0.01s sys 99% cpu 0.711 total
242 # bison input.y 730.56s user 0.53s sys 99% cpu 12:12.34 total
243 # gcc -Wall input.tab.c -o input 5.81s user 0.20s sys 100% cpu 6.01 total
244 # ./input 0.00s user 0.01s sys 108% cpu 0.01 total
246 AT_DATA_HORIZONTAL_GRAMMAR([input.y], [1000])
248 # GNU m4 requires about 70 MiB for this test on a 32-bit host.
249 # Ask for 200 MiB, which should be plenty even on a 64-bit host.
250 AT_INCREASE_DATA_SIZE(204000)
252 AT_CHECK([bison -v -o input.c input.y])
254 AT_PARSER_CHECK([./input])
260 # AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR(FILE-NAME, SIZE)
261 # -------------------------------------------
262 # Create FILE-NAME, containing a self checking parser for a grammar
263 # requiring SIZE look-ahead tokens.
264 m4_define([AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR],
265 [AT_DATA([[gengram.pl]],
266 [[#! /usr/bin/perl -w
270 my $max = $ARGV[0] || 10;
277 #define YYERROR_VERBOSE 1
280 static int yylex (void);
281 static void yyerror (const char *msg);
288 %type <val> input exp
293 wrap ("%type <val> ",
295 map { "n$_" } (1 .. $max)),
298 for my $count (1 .. $max)
300 print "%token t$count $count \"$count\"\n";
306 exp { if (\@S|@1 != 1) abort (); \$\$ = \@S|@1; }
307 | input exp { if (\@S|@2 != \@S|@1 + 1) abort (); \$\$ = \@S|@2; }
311 n1 "1" { if (\@S|@1 != 1) abort (); }
314 for my $count (2 .. $max)
316 print "| n$count \"$count\" { if (\@S|@1 != $count) abort (); }\n";
320 for my $count (1 .. $max)
322 print "n$count: token { \$\$ = $count; };\n";
330 static int return_token = 1;
331 static int counter = 1;
344 yyerror (const char *msg)
346 fprintf (stderr, "%s\\n", msg);
352 yydebug = !!getenv ("YYDEBUG");
358 AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
363 ## ------------------------ ##
364 ## Many look-ahead tokens. ##
365 ## ------------------------ ##
367 AT_SETUP([Many look-ahead tokens])
369 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR([input.y], [1000])
371 # GNU m4 requires about 70 MiB for this test on a 32-bit host.
372 # Ask for 200 MiB, which should be plenty even on a 64-bit host.
373 AT_INCREASE_DATA_SIZE(204000)
375 AT_CHECK([bison -v -o input.c input.y])
377 AT_PARSER_CHECK([./input])
383 # AT_DATA_STACK_TORTURE(C-PROLOGUE)
384 # ---------------------------------
385 # A parser specialized in torturing the stack size.
386 m4_define([AT_DATA_STACK_TORTURE],
387 [# A grammar of parens growing the stack thanks to right recursion.
394 static int yylex (void);
395 static void yyerror (const char *msg);
401 exp: WAIT_FOR_EOF exp | ;
404 yyerror (const char *msg)
406 fprintf (stderr, "%s\n", msg);
410 /* There are YYLVAL_MAX of WAIT_FOR_EOFs. */
411 unsigned int yylval_max;
423 main (int argc, const char **argv)
427 yylval = atoi (argv[1]);
432 AT_CHECK([bison -o input.c input.y])
437 ## -------------------------------------- ##
438 ## Exploding the Stack Size with Alloca. ##
439 ## -------------------------------------- ##
441 AT_SETUP([Exploding the Stack Size with Alloca])
443 AT_DATA_STACK_TORTURE([[
444 #if defined __GNUC__ || defined alloca
445 # define YYSTACK_USE_ALLOCA 1
449 # Below the limit of 200.
450 AT_PARSER_CHECK([./input 20], 0, [], [ignore])
451 # Two enlargements: 2 * 2 * 200.
452 AT_PARSER_CHECK([./input 900], 0, [], [ignore])
453 # Fails: beyond the limit of 10,000 (which we don't reach anyway since we
454 # multiply by two starting at 200 => 5120 is the last possible).
455 AT_PARSER_CHECK([./input 10000], 1, [], [ignore])
462 ## -------------------------------------- ##
463 ## Exploding the Stack Size with Malloc. ##
464 ## -------------------------------------- ##
466 AT_SETUP([Exploding the Stack Size with Malloc])
468 AT_DATA_STACK_TORTURE([[#define YYSTACK_USE_ALLOCA 0]])
470 # Below the limit of 200.
471 AT_PARSER_CHECK([./input 20], 0, [], [ignore])
472 # Two enlargements: 2 * 2 * 200.
473 AT_PARSER_CHECK([./input 900], 0, [], [ignore])
474 # Fails: beyond the limit of 10,000 (which we don't reach anyway since we
475 # multiply by two starting at 200 => 5120 is the possible).
476 AT_PARSER_CHECK([./input 10000], 1, [], [ignore])