1 # Torturing Bison. -*- Autotest -*-
2 # Copyright (C) 2001, 2002 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., 59 Temple Place - Suite 330, 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
35 ## ------------------------------------- ##
36 ## Creating a large artificial grammar. ##
37 ## ------------------------------------- ##
39 # AT_DATA_TRIANGULAR_GRAMMAR(FILE-NAME, SIZE)
40 # -------------------------------------------
41 # Create FILE-NAME, containing a self checking parser for a huge
43 m4_define([AT_DATA_TRIANGULAR_GRAMMAR],
44 [AT_DATA([[gengram.pl]],
48 my $max = $ARGV[0] || 10;
55 #define YYERROR_VERBOSE 1
58 static int yylex (void);
59 static void yyerror (const char *msg);
70 for my $size (1 .. $max)
72 print "%token t$size $size \"$size\"\n";
78 exp { if (\@S|@1 != 0) abort (); \$\$ = \@S|@1; }
79 | input exp { if (\@S|@2 != \@S|@1 + 1) abort (); \$\$ = \@S|@2; }
87 for my $size (1 .. $max)
90 print wrap ("| ", " ",
91 (map { "\"$_\"" } (1 .. $size)),
93 " { \$\$ = $size; }\n";
102 static int inner = 1;
103 static int outer = 0;
106 else if (inner > outer)
116 yyerror (const char *msg)
118 fprintf (stderr, "%s\\n", msg);
124 yydebug = !!getenv ("YYDEBUG");
130 AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
139 AT_SETUP([Big triangle])
141 # I have been able to go up to 2000 on my machine.
142 # I tried 3000, a 29Mb grammar file, but then my system killed bison.
143 # With 500 and the new parser, which consume far too much memory,
144 # it gets killed too. Of course the parser is to be cleaned.
145 AT_DATA_TRIANGULAR_GRAMMAR([input.y], [200])
146 AT_CHECK([bison -v -o input.c input.y])
148 AT_PARSER_CHECK([./input])
154 # AT_DATA_HORIZONTAL_GRAMMAR(FILE-NAME, SIZE)
155 # -------------------------------------------
156 # Create FILE-NAME, containing a self checking parser for a huge
157 # horizontal grammar.
158 m4_define([AT_DATA_HORIZONTAL_GRAMMAR],
159 [AT_DATA([[gengram.pl]],
160 [[#! /usr/bin/perl -w
163 my $max = $ARGV[0] || 10;
170 #define YYERROR_VERBOSE 1
173 static int yylex (void);
174 static void yyerror (const char *msg);
178 for my $size (1 .. $max)
180 print "%token t$size $size \"$size\"\n";
190 (map { "\"$_\"" } (1 .. $max)), ";"),
198 static int counter = 1;
206 yyerror (const char *msg)
208 fprintf (stderr, "%s\\n", msg);
214 yydebug = !!getenv ("YYDEBUG");
220 AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
225 ## ---------------- ##
226 ## Big horizontal. ##
227 ## ---------------- ##
229 AT_SETUP([Big horizontal])
231 # I have been able to go up to 10000 on my machine, but I had to
232 # increase the maximum stack size (* 100). It gave:
238 # gengram.pl 10000 0.70s user 0.01s sys 99% cpu 0.711 total
239 # bison input.y 730.56s user 0.53s sys 99% cpu 12:12.34 total
240 # gcc -Wall input.tab.c -o input 5.81s user 0.20s sys 100% cpu 6.01 total
241 # ./input 0.00s user 0.01s sys 108% cpu 0.01 total
243 AT_DATA_HORIZONTAL_GRAMMAR([input.y], [1000])
245 # GNU m4 requires about 70 MiB for this test on a 32-bit host.
246 # Ask for 200 MiB, which should be plenty even on a 64-bit host.
247 AT_INCREASE_DATA_SIZE(204000)
249 AT_CHECK([bison -v -o input.c input.y])
251 AT_PARSER_CHECK([./input])
257 # AT_DATA_LOOKAHEADS_GRAMMAR(FILE-NAME, SIZE)
258 # -------------------------------------------
259 # Create FILE-NAME, containing a self checking parser for a grammar
260 # requiring SIZE lookaheads.
261 m4_define([AT_DATA_LOOKAHEADS_GRAMMAR],
262 [AT_DATA([[gengram.pl]],
263 [[#! /usr/bin/perl -w
267 my $max = $ARGV[0] || 10;
274 #define YYERROR_VERBOSE 1
277 static int yylex (void);
278 static void yyerror (const char *msg);
285 %type <val> input exp
290 wrap ("%type <val> ",
292 map { "n$_" } (1 .. $max)),
295 for my $count (1 .. $max)
297 print "%token t$count $count \"$count\"\n";
303 exp { if (\@S|@1 != 1) abort (); \$\$ = \@S|@1; }
304 | input exp { if (\@S|@2 != \@S|@1 + 1) abort (); \$\$ = \@S|@2; }
308 n1 "1" { if (\@S|@1 != 1) abort (); }
311 for my $count (2 .. $max)
313 print "| n$count \"$count\" { if (\@S|@1 != $count) abort (); }\n";
317 for my $count (1 .. $max)
319 print "n$count: token { \$\$ = $count; };\n";
327 static int return_token = 1;
328 static int counter = 1;
341 yyerror (const char *msg)
343 fprintf (stderr, "%s\\n", msg);
349 yydebug = !!getenv ("YYDEBUG");
355 AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
360 ## ----------------- ##
361 ## Many lookaheads. ##
362 ## ----------------- ##
364 AT_SETUP([Many lookaheads])
366 AT_DATA_LOOKAHEADS_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_CHECK([bison -v -o input.c input.y])
374 AT_PARSER_CHECK([./input])
380 # AT_DATA_STACK_TORTURE(C-PROLOGUE)
381 # ---------------------------------
382 # A parser specialized in torturing the stack size.
383 m4_define([AT_DATA_STACK_TORTURE],
384 [# A grammar of parens growing the stack thanks to right recursion.
391 static int yylex (void);
392 static void yyerror (const char *msg);
398 exp: WAIT_FOR_EOF exp | ;
401 yyerror (const char *msg)
403 fprintf (stderr, "%s\n", msg);
407 /* There are YYLVAL_MAX of WAIT_FOR_EOFs. */
408 unsigned int yylval_max;
420 main (int argc, const char **argv)
424 yylval = atoi (argv[1]);
429 AT_CHECK([bison -o input.c input.y])
434 ## -------------------------------------- ##
435 ## Exploding the Stack Size with Alloca. ##
436 ## -------------------------------------- ##
438 AT_SETUP([Exploding the Stack Size with Alloca])
440 AT_DATA_STACK_TORTURE
442 # Below the limit of 200.
443 AT_PARSER_CHECK([./input 20], 0, [], [ignore])
444 # Two enlargements: 2 * 2 * 200.
445 AT_PARSER_CHECK([./input 900], 0, [], [ignore])
446 # Fails: beyond the limit of 10,000 (which we don't reach anyway since we
447 # multiply by two starting at 200 => 5120 is the last possible).
448 AT_PARSER_CHECK([./input 10000], 1, [], [ignore])
455 ## -------------------------------------- ##
456 ## Exploding the Stack Size with Malloc. ##
457 ## -------------------------------------- ##
459 AT_SETUP([Exploding the Stack Size with Malloc])
461 AT_DATA_STACK_TORTURE([[#define YYSTACK_USE_ALLOCA 0]])
463 # Below the limit of 200.
464 AT_PARSER_CHECK([./input 20], 0, [], [ignore])
465 # Two enlargements: 2 * 2 * 200.
466 AT_PARSER_CHECK([./input 900], 0, [], [ignore])
467 # Fails: beyond the limit of 10,000 (which we don't reach anyway since we
468 # multiply by two starting at 200 => 5120 is the possible).
469 AT_PARSER_CHECK([./input 10000], 1, [], [ignore])