]> git.saurik.com Git - bison.git/blame - tests/torture.at
muscles: shuffle responsabilities
[bison.git] / tests / torture.at
CommitLineData
6d7d248e 1# Torturing Bison. -*- Autotest -*-
6e30ede8 2
c932d613 3# Copyright (C) 2001-2002, 2004-2007, 2009-2012 Free Software
ea0a7676 4# Foundation, Inc.
6d7d248e 5
f16b0819 6# This program is free software: you can redistribute it and/or modify
6d7d248e 7# it under the terms of the GNU General Public License as published by
f16b0819
PE
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
6d7d248e
AD
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.
f16b0819 15#
6d7d248e 16# You should have received a copy of the GNU General Public License
f16b0819 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
6d7d248e
AD
18
19AT_BANNER([[Torture Tests.]])
20
21
49e794c5 22# AT_INCREASE_DATA_SIZE(SIZE)
f79b4f5c 23# ---------------------------
49e794c5
PE
24# Try to increase the data size to SIZE KiB if possible.
25m4_define([AT_INCREASE_DATA_SIZE],
26[data_limit=`(ulimit -S -d) 2>/dev/null`
27case $data_limit in
28[[0-9]]*)
29 if test "$data_limit" -lt $1; then
f79b4f5c 30 AT_CHECK([ulimit -S -d $1 || exit 77])
49e794c5
PE
31 ulimit -S -d $1
32 fi
33esac])
34
35
817e9f41
AD
36## ------------------------------------- ##
37## Creating a large artificial grammar. ##
38## ------------------------------------- ##
39
40# AT_DATA_TRIANGULAR_GRAMMAR(FILE-NAME, SIZE)
41# -------------------------------------------
42# Create FILE-NAME, containing a self checking parser for a huge
43# triangular grammar.
817e9f41 44m4_define([AT_DATA_TRIANGULAR_GRAMMAR],
71c7e24f
AD
45[AT_BISON_OPTION_PUSHDEFS
46AT_DATA([[gengram.pl]],
817e9f41
AD
47[[#! /usr/bin/perl -w
48
49use strict;
50my $max = $ARGV[0] || 10;
51
52print <<EOF;
9501dc6e 53]AT_DATA_GRAMMAR_PROLOGUE[
8f3596a6
AD
54%error-verbose
55%debug
817e9f41
AD
56%{
57#include <stdio.h>
58#include <stdlib.h>
77519a7d 59#include <assert.h>
290a8ff2 60#define MAX $max
55f48c48
AD
61]AT_YYLEX_DECLARE[
62]AT_YYERROR_DECLARE[
817e9f41
AD
63%}
64%union
65{
66 int val;
67};
68
69%token END "end"
70%type <val> exp input
71EOF
72
73for my $size (1 .. $max)
74 {
e9955c83 75 print "%token t$size $size \"$size\"\n";
817e9f41
AD
76 };
77
78print <<EOF;
79%%
80input:
77519a7d
AD
81 exp { assert (\@S|@1 == 0); \$\$ = \@S|@1; }
82| input exp { assert (\@S|@2 == \@S|@1 + 1); \$\$ = \@S|@2; }
817e9f41
AD
83;
84
85exp:
86 END
87 { \$\$ = 0; }
88EOF
89
90for my $size (1 .. $max)
91 {
92 use Text::Wrap;
93 print wrap ("| ", " ",
94 (map { "\"$_\"" } (1 .. $size)),
95 " END \n"),
96 " { \$\$ = $size; }\n";
97 };
98print ";\n";
99
290a8ff2 100print <<\EOF;
817e9f41 101%%
290a8ff2 102]AT_YYERROR_DEFINE[
817e9f41
AD
103static int
104yylex (void)
105{
106 static int inner = 1;
107 static int outer = 0;
290a8ff2 108 if (outer > MAX)
817e9f41
AD
109 return 0;
110 else if (inner > outer)
111 {
112 inner = 1;
113 ++outer;
114 return END;
115 }
23c5a174 116 return inner++;
817e9f41 117}
817e9f41
AD
118int
119main (void)
120{
121 yydebug = !!getenv ("YYDEBUG");
122 return yyparse ();
123}
124EOF
125]])
71c7e24f 126AT_BISON_OPTION_POPDEFS
817e9f41
AD
127
128AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
129mv stdout $1
130])
131
132
133## -------------- ##
134## Big triangle. ##
135## -------------- ##
136
817e9f41
AD
137AT_SETUP([Big triangle])
138
355e7c1c
AD
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.
e9955c83
AD
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.
143AT_DATA_TRIANGULAR_GRAMMAR([input.y], [200])
da730230 144AT_BISON_CHECK_NO_XML([-v -o input.c input.y])
1154cced
AD
145AT_COMPILE([input])
146AT_PARSER_CHECK([./input])
817e9f41
AD
147
148AT_CLEANUP
149
150
151
62a3e4f0
AD
152# AT_DATA_HORIZONTAL_GRAMMAR(FILE-NAME, SIZE)
153# -------------------------------------------
154# Create FILE-NAME, containing a self checking parser for a huge
155# horizontal grammar.
62a3e4f0 156m4_define([AT_DATA_HORIZONTAL_GRAMMAR],
71c7e24f
AD
157[AT_BISON_OPTION_PUSHDEFS
158AT_DATA([[gengram.pl]],
62a3e4f0
AD
159[[#! /usr/bin/perl -w
160
161use strict;
162my $max = $ARGV[0] || 10;
163
164print <<EOF;
9501dc6e 165]AT_DATA_GRAMMAR_PROLOGUE[
8f3596a6
AD
166%error-verbose
167%debug
62a3e4f0
AD
168%{
169#include <stdio.h>
170#include <stdlib.h>
290a8ff2 171#define MAX $max
55f48c48
AD
172]AT_YYLEX_DECLARE[
173]AT_YYERROR_DECLARE[
62a3e4f0 174%}
62a3e4f0 175
8f3596a6
AD
176%token
177EOF
62a3e4f0
AD
178for my $size (1 .. $max)
179 {
8f3596a6 180 print " t$size $size \"$size\"\n";
62a3e4f0
AD
181 };
182
183print <<EOF;
8f3596a6 184
62a3e4f0
AD
185%%
186EOF
187
188use Text::Wrap;
189print
190 wrap ("exp: ", " ",
191 (map { "\"$_\"" } (1 .. $max)), ";"),
192 "\n";
193
290a8ff2 194print <<\EOF;
62a3e4f0 195%%
77519a7d 196#include <assert.h>
290a8ff2 197]AT_YYERROR_DEFINE[
62a3e4f0
AD
198static int
199yylex (void)
200{
201 static int counter = 1;
290a8ff2 202 if (counter <= MAX)
cf806753 203 return counter++;
77519a7d 204 assert (counter++ == MAX + 1);
cf806753 205 return 0;
62a3e4f0
AD
206}
207
62a3e4f0
AD
208int
209main (void)
210{
211 yydebug = !!getenv ("YYDEBUG");
212 return yyparse ();
213}
214EOF
215]])
216
217AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
218mv stdout $1
71c7e24f 219AT_BISON_OPTION_POPDEFS
62a3e4f0
AD
220])
221
222
223## ---------------- ##
224## Big horizontal. ##
225## ---------------- ##
226
227AT_SETUP([Big horizontal])
228
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:
231#
232# input.y 263k
233# input.tab.c 1.3M
234# input 453k
235#
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
240#
241AT_DATA_HORIZONTAL_GRAMMAR([input.y], [1000])
49e794c5
PE
242
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.
245AT_INCREASE_DATA_SIZE(204000)
246
da730230 247AT_BISON_CHECK_NO_XML([-v -o input.c input.y])
1154cced
AD
248AT_COMPILE([input])
249AT_PARSER_CHECK([./input])
62a3e4f0
AD
250
251AT_CLEANUP
252
253
254
742e4900 255# AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR(FILE-NAME, SIZE)
8f3596a6 256# --------------------------------------------------
39ceb25b 257# Create FILE-NAME, containing a self checking parser for a grammar
742e4900
JD
258# requiring SIZE lookahead tokens.
259m4_define([AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR],
71c7e24f
AD
260[AT_BISON_OPTION_PUSHDEFS
261AT_DATA([[gengram.pl]],
39ceb25b
AD
262[[#! /usr/bin/perl -w
263
264use strict;
265use Text::Wrap;
266my $max = $ARGV[0] || 10;
267
268print <<EOF;
8f3596a6
AD
269%error-verbose
270%debug
39ceb25b 271%{
8f3596a6
AD
272# include <stdio.h>
273# include <stdlib.h>
274# include <assert.h>
290a8ff2 275# define MAX $max
55f48c48
AD
276]AT_YYLEX_DECLARE[
277]AT_YYERROR_DECLARE[
39ceb25b
AD
278%}
279%union
280{
281 int val;
282};
283
284%type <val> input exp
285%token token
286EOF
287
288print
289 wrap ("%type <val> ",
290 " ",
e9955c83 291 map { "n$_" } (1 .. $max)),
39ceb25b
AD
292 "\n";
293
8f3596a6 294print "%token\n";
39ceb25b
AD
295for my $count (1 .. $max)
296 {
8f3596a6 297 print " t$count $count \"$count\"\n";
39ceb25b
AD
298 };
299
300print <<EOF;
301%%
302input:
8f3596a6
AD
303 exp { assert (\@S|@1 == 1); \$\$ = \@S|@1; }
304| input exp { assert (\@S|@2 == \@S|@1 + 1); \$\$ = \@S|@2; }
39ceb25b
AD
305;
306
307exp:
8f3596a6 308 n1 "1" { assert (\@S|@1 == 1); \@S|@\@S|@ = \@S|@1; }
39ceb25b
AD
309EOF
310
311for my $count (2 .. $max)
312 {
8f3596a6 313 print "| n$count \"$count\" { assert (\@S|@1 == $count); \@S|@\@S|@ = \@S|@1; }\n";
39ceb25b
AD
314 };
315print ";\n";
316
317for my $count (1 .. $max)
318 {
e9955c83 319 print "n$count: token { \$\$ = $count; };\n";
39ceb25b
AD
320 };
321
290a8ff2 322print <<\EOF;
39ceb25b 323%%
290a8ff2 324]AT_YYERROR_DEFINE[
39ceb25b
AD
325static int
326yylex (void)
327{
328 static int return_token = 1;
329 static int counter = 1;
290a8ff2 330 if (counter > MAX)
cf806753 331 {
77519a7d 332 assert (counter++ == MAX + 1);
cf806753
PE
333 return 0;
334 }
39ceb25b
AD
335 if (return_token)
336 {
337 return_token = 0;
338 return token;
339 }
340 return_token = 1;
341 return counter++;
342}
343
39ceb25b
AD
344int
345main (void)
346{
347 yydebug = !!getenv ("YYDEBUG");
348 return yyparse ();
349}
350EOF
351]])
352
353AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
354mv stdout $1
71c7e24f 355AT_BISON_OPTION_POPDEFS
39ceb25b
AD
356])
357
358
8dd162d3 359## ------------------------ ##
7d596384 360## Many lookahead tokens. ##
8dd162d3 361## ------------------------ ##
39ceb25b 362
742e4900 363AT_SETUP([Many lookahead tokens])
39ceb25b 364
742e4900 365AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR([input.y], [1000])
49e794c5
PE
366
367# GNU m4 requires about 70 MiB for this test on a 32-bit host.
368# Ask for 200 MiB, which should be plenty even on a 64-bit host.
369AT_INCREASE_DATA_SIZE(204000)
370
da730230 371AT_BISON_CHECK([-v -o input.c input.y])
1154cced
AD
372AT_COMPILE([input])
373AT_PARSER_CHECK([./input])
39ceb25b
AD
374
375AT_CLEANUP
376
377
378
7d596384
JD
379# AT_DATA_STACK_TORTURE(C-PROLOGUE, [BISON-DECLS])
380# ------------------------------------------------
6d7d248e
AD
381# A parser specialized in torturing the stack size.
382m4_define([AT_DATA_STACK_TORTURE],
55f48c48
AD
383[AT_BISON_OPTION_PUSHDEFS([$2])
384# A grammar of parens growing the stack thanks to right recursion.
6d7d248e
AD
385# exp:
386AT_DATA([input.y],
387[[%{
04098407
PE
388#include <errno.h>
389#include <limits.h>
6d7d248e
AD
390#include <stdio.h>
391#include <stdlib.h>
6d7d248e 392]$1[
55f48c48
AD
393 ]AT_YYLEX_DECLARE[
394 ]AT_YYERROR_DECLARE[
6d7d248e 395%}
7d596384 396]$2[
04d843a2 397%error-verbose
6d7d248e
AD
398%debug
399%token WAIT_FOR_EOF
400%%
401exp: WAIT_FOR_EOF exp | ;
402%%
55f48c48 403]AT_YYERROR_DEFINE[
77519a7d 404#include <assert.h>
6d7d248e
AD
405static int
406yylex (void)
407{
77519a7d 408 assert (0 <= yylval);
6d7d248e
AD
409 if (yylval--)
410 return WAIT_FOR_EOF;
411 else
412 return EOF;
413}
414
415int
416main (int argc, const char **argv)
417{
04098407 418 char *endp;
7d596384 419 YYSTYPE yylval_init;
77519a7d 420 assert (argc == 2);
7d596384 421 yylval_init = strtol (argv[1], &endp, 10);
77519a7d
AD
422 assert (argv[1] != endp);
423 assert (0 <= yylval_init);
424 assert (yylval_init <= INT_MAX);
425 assert (errno != ERANGE);
6d7d248e 426 yydebug = 1;
7d596384
JD
427 {
428 int count;
429 int status;
430]m4_bmatch([$2], [%push-],
5d31a216 431[[ yypstate *ps = yypstate_new ();
7d596384
JD
432]])[ for (count = 0; count < 2; ++count)
433 {
434 int new_status;
435 yylval = yylval_init;
436]m4_bmatch([$2], [%push-],
5d31a216 437[[ new_status = yypull_parse (ps);
7d596384
JD
438]],
439[[ new_status = yyparse ();
77519a7d 440]])[ assert (0 <= count || new_status == status);
7d596384
JD
441 status = new_status;
442 }
443]m4_bmatch([$2], [%push-],
5d31a216 444[[ yypstate_delete (ps);
7d596384
JD
445]])[ return status;
446 }
6d7d248e
AD
447}
448]])
55f48c48 449AT_BISON_OPTION_POPDEFS([$2])
da730230 450AT_BISON_CHECK([-o input.c input.y])
1154cced 451AT_COMPILE([input])
6d7d248e
AD
452])
453
454
455## -------------------------------------- ##
456## Exploding the Stack Size with Alloca. ##
457## -------------------------------------- ##
458
459AT_SETUP([Exploding the Stack Size with Alloca])
460
7d596384 461m4_pushdef([AT_USE_ALLOCA], [[
0d50976f 462#if (defined __GNUC__ || defined __BUILTIN_VA_ARG_INCR \
62c4328e 463 || defined _AIX || defined _MSC_VER || defined _ALLOCA_H)
577d7c33
PE
464# define YYSTACK_USE_ALLOCA 1
465#endif
466]])
6d7d248e 467
7d596384
JD
468AT_DATA_STACK_TORTURE([AT_USE_ALLOCA])
469
6d7d248e 470# Below the limit of 200.
e0ac9b4b
JD
471AT_PARSER_CHECK([./input 20], 0, [], [ignore],
472 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
6d7d248e 473# Two enlargements: 2 * 2 * 200.
e0ac9b4b
JD
474AT_PARSER_CHECK([./input 900], 0, [], [ignore],
475 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
6d7d248e
AD
476# Fails: beyond the limit of 10,000 (which we don't reach anyway since we
477# multiply by two starting at 200 => 5120 is the last possible).
e0ac9b4b
JD
478AT_PARSER_CHECK([./input 10000], 2, [], [ignore],
479 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
6d7d248e 480
78143faa
JD
481# The push parser can't use alloca since the stacks can't be locals. This test
482# just helps guarantee we don't let the YYSTACK_USE_ALLOCA feature affect
483# push parsers.
7d596384 484AT_DATA_STACK_TORTURE([AT_USE_ALLOCA],
f37495f6 485[[%define api.push-pull both
7d596384 486]])
e0ac9b4b
JD
487AT_PARSER_CHECK([./input 20], 0, [], [ignore],
488 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
489AT_PARSER_CHECK([./input 900], 0, [], [ignore],
490 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
491AT_PARSER_CHECK([./input 10000], 2, [], [ignore],
492 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
7d596384
JD
493
494m4_popdef([AT_USE_ALLOCA])
495
6d7d248e
AD
496AT_CLEANUP
497
498
499
500
501## -------------------------------------- ##
502## Exploding the Stack Size with Malloc. ##
503## -------------------------------------- ##
504
505AT_SETUP([Exploding the Stack Size with Malloc])
506
7d596384
JD
507m4_pushdef([AT_USE_ALLOCA], [[#define YYSTACK_USE_ALLOCA 0]])
508
509AT_DATA_STACK_TORTURE([AT_USE_ALLOCA])
6d7d248e
AD
510
511# Below the limit of 200.
e0ac9b4b
JD
512AT_PARSER_CHECK([./input 20], 0, [], [ignore],
513 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
6d7d248e 514# Two enlargements: 2 * 2 * 200.
e0ac9b4b
JD
515AT_PARSER_CHECK([./input 900], 0, [], [ignore],
516 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
6d7d248e
AD
517# Fails: beyond the limit of 10,000 (which we don't reach anyway since we
518# multiply by two starting at 200 => 5120 is the possible).
e0ac9b4b
JD
519AT_PARSER_CHECK([./input 10000], 2, [], [ignore],
520 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
6d7d248e 521
7d596384 522AT_DATA_STACK_TORTURE([AT_USE_ALLOCA],
f37495f6 523[[%define api.push-pull both
7d596384 524]])
e0ac9b4b
JD
525AT_PARSER_CHECK([./input 20], 0, [], [ignore],
526 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
527AT_PARSER_CHECK([./input 900], 0, [], [ignore],
528 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
529AT_PARSER_CHECK([./input 10000], 2, [], [ignore],
530 [[VALGRIND_OPTS="$VALGRIND_OPTS --log-fd=1"]])
7d596384
JD
531
532m4_popdef([AT_USE_ALLOCA])
533
6d7d248e 534AT_CLEANUP