]> git.saurik.com Git - bison.git/blame - tests/torture.at
* src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
[bison.git] / tests / torture.at
CommitLineData
6d7d248e 1# Torturing Bison. -*- Autotest -*-
817e9f41 2# Copyright (C) 2001, 2002 Free Software Foundation, Inc.
6d7d248e
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
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17# 02111-1307, USA.
18
19AT_BANNER([[Torture Tests.]])
20
21
49e794c5
PE
22# AT_INCREASE_DATA_SIZE(SIZE)
23# -------------------------------------------
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
30 ulimit -S -d $1
31 fi
32esac])
33
34
817e9f41
AD
35## ------------------------------------- ##
36## Creating a large artificial grammar. ##
37## ------------------------------------- ##
38
39# AT_DATA_TRIANGULAR_GRAMMAR(FILE-NAME, SIZE)
40# -------------------------------------------
41# Create FILE-NAME, containing a self checking parser for a huge
42# triangular grammar.
817e9f41
AD
43m4_define([AT_DATA_TRIANGULAR_GRAMMAR],
44[AT_DATA([[gengram.pl]],
45[[#! /usr/bin/perl -w
46
47use strict;
48my $max = $ARGV[0] || 10;
49
50print <<EOF;
51%{
52#include <stdio.h>
53#include <stdlib.h>
54#include <assert.h>
55
56#define YYERROR_VERBOSE 1
57#define YYDEBUG 1
58
59static int yylex (void);
60static void yyerror (const char *msg);
61%}
62%union
63{
64 int val;
65};
66
67%token END "end"
68%type <val> exp input
69EOF
70
71for my $size (1 .. $max)
72 {
e9955c83 73 print "%token t$size $size \"$size\"\n";
817e9f41
AD
74 };
75
76print <<EOF;
77%%
78input:
79 exp { assert (\@S|@1 == 0); \$\$ = \@S|@1; }
80| input exp { assert (\@S|@2 == \@S|@1 + 1); \$\$ = \@S|@2; }
81;
82
83exp:
84 END
85 { \$\$ = 0; }
86EOF
87
88for my $size (1 .. $max)
89 {
90 use Text::Wrap;
91 print wrap ("| ", " ",
92 (map { "\"$_\"" } (1 .. $size)),
93 " END \n"),
94 " { \$\$ = $size; }\n";
95 };
96print ";\n";
97
98print <<EOF;
99%%
100static int
101yylex (void)
102{
103 static int inner = 1;
104 static int outer = 0;
105 if (outer > $max)
106 return 0;
107 else if (inner > outer)
108 {
109 inner = 1;
110 ++outer;
111 return END;
112 }
23c5a174 113 return inner++;
817e9f41
AD
114}
115
116static void
117yyerror (const char *msg)
118{
119 fprintf (stderr, "%s\\n", msg);
120}
121
122int
123main (void)
124{
125 yydebug = !!getenv ("YYDEBUG");
126 return yyparse ();
127}
128EOF
129]])
130
131AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
132mv stdout $1
133])
134
135
136## -------------- ##
137## Big triangle. ##
138## -------------- ##
139
817e9f41
AD
140AT_SETUP([Big triangle])
141
355e7c1c
AD
142# I have been able to go up to 2000 on my machine.
143# I tried 3000, a 29Mb grammar file, but then my system killed bison.
e9955c83
AD
144# With 500 and the new parser, which consume far too much memory,
145# it gets killed too. Of course the parser is to be cleaned.
146AT_DATA_TRIANGULAR_GRAMMAR([input.y], [200])
b56471a6 147AT_CHECK([bison -v -o input.c input.y])
1154cced
AD
148AT_COMPILE([input])
149AT_PARSER_CHECK([./input])
817e9f41
AD
150
151AT_CLEANUP
152
153
154
62a3e4f0
AD
155# AT_DATA_HORIZONTAL_GRAMMAR(FILE-NAME, SIZE)
156# -------------------------------------------
157# Create FILE-NAME, containing a self checking parser for a huge
158# horizontal grammar.
62a3e4f0
AD
159m4_define([AT_DATA_HORIZONTAL_GRAMMAR],
160[AT_DATA([[gengram.pl]],
161[[#! /usr/bin/perl -w
162
163use strict;
164my $max = $ARGV[0] || 10;
165
166print <<EOF;
167%{
168#include <stdio.h>
169#include <stdlib.h>
170#include <assert.h>
171
172#define YYERROR_VERBOSE 1
173#define YYDEBUG 1
174
175static int yylex (void);
176static void yyerror (const char *msg);
177%}
178EOF
179
180for my $size (1 .. $max)
181 {
e9955c83 182 print "%token t$size $size \"$size\"\n";
62a3e4f0
AD
183 };
184
185print <<EOF;
186%%
187EOF
188
189use Text::Wrap;
190print
191 wrap ("exp: ", " ",
192 (map { "\"$_\"" } (1 .. $max)), ";"),
193 "\n";
194
195print <<EOF;
196%%
197static int
198yylex (void)
199{
200 static int counter = 1;
201 if (counter > $max)
202 return 0;
203 else
23c5a174 204 return counter++;
62a3e4f0
AD
205}
206
207static void
208yyerror (const char *msg)
209{
210 fprintf (stderr, "%s\\n", msg);
211}
212
213int
214main (void)
215{
216 yydebug = !!getenv ("YYDEBUG");
217 return yyparse ();
218}
219EOF
220]])
221
222AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
223mv stdout $1
224])
225
226
227## ---------------- ##
228## Big horizontal. ##
229## ---------------- ##
230
231AT_SETUP([Big horizontal])
232
233# I have been able to go up to 10000 on my machine, but I had to
234# increase the maximum stack size (* 100). It gave:
235#
236# input.y 263k
237# input.tab.c 1.3M
238# input 453k
239#
240# gengram.pl 10000 0.70s user 0.01s sys 99% cpu 0.711 total
241# bison input.y 730.56s user 0.53s sys 99% cpu 12:12.34 total
242# gcc -Wall input.tab.c -o input 5.81s user 0.20s sys 100% cpu 6.01 total
243# ./input 0.00s user 0.01s sys 108% cpu 0.01 total
244#
245AT_DATA_HORIZONTAL_GRAMMAR([input.y], [1000])
49e794c5
PE
246
247# GNU m4 requires about 70 MiB for this test on a 32-bit host.
248# Ask for 200 MiB, which should be plenty even on a 64-bit host.
249AT_INCREASE_DATA_SIZE(204000)
250
b56471a6 251AT_CHECK([bison -v -o input.c input.y])
1154cced
AD
252AT_COMPILE([input])
253AT_PARSER_CHECK([./input])
62a3e4f0
AD
254
255AT_CLEANUP
256
257
258
39ceb25b
AD
259# AT_DATA_LOOKAHEADS_GRAMMAR(FILE-NAME, SIZE)
260# -------------------------------------------
261# Create FILE-NAME, containing a self checking parser for a grammar
262# requiring SIZE lookaheads.
263m4_define([AT_DATA_LOOKAHEADS_GRAMMAR],
264[AT_DATA([[gengram.pl]],
265[[#! /usr/bin/perl -w
266
267use strict;
268use Text::Wrap;
269my $max = $ARGV[0] || 10;
270
271print <<EOF;
272%{
273#include <stdio.h>
274#include <stdlib.h>
275#include <assert.h>
276
277#define YYERROR_VERBOSE 1
278#define YYDEBUG 1
279
280static int yylex (void);
281static void yyerror (const char *msg);
282%}
283%union
284{
285 int val;
286};
287
288%type <val> input exp
289%token token
290EOF
291
292print
293 wrap ("%type <val> ",
294 " ",
e9955c83 295 map { "n$_" } (1 .. $max)),
39ceb25b
AD
296 "\n";
297
298for my $count (1 .. $max)
299 {
e9955c83 300 print "%token t$count $count \"$count\"\n";
39ceb25b
AD
301 };
302
303print <<EOF;
304%%
305input:
306 exp { assert (\@S|@1 == 1); \$\$ = \@S|@1; }
307| input exp { assert (\@S|@2 == \@S|@1 + 1); \$\$ = \@S|@2; }
308;
309
310exp:
e9955c83 311 n1 "1" { assert (\@S|@1 == 1); }
39ceb25b
AD
312EOF
313
314for my $count (2 .. $max)
315 {
e9955c83 316 print "| n$count \"$count\" { assert (\@S|@1 == $count); }\n";
39ceb25b
AD
317 };
318print ";\n";
319
320for my $count (1 .. $max)
321 {
e9955c83 322 print "n$count: token { \$\$ = $count; };\n";
39ceb25b
AD
323 };
324
325print <<EOF;
326%%
327static int
328yylex (void)
329{
330 static int return_token = 1;
331 static int counter = 1;
332 if (counter > $max)
333 return 0;
334 if (return_token)
335 {
336 return_token = 0;
337 return token;
338 }
339 return_token = 1;
340 return counter++;
341}
342
343static void
344yyerror (const char *msg)
345{
346 fprintf (stderr, "%s\\n", msg);
347}
348
349int
350main (void)
351{
352 yydebug = !!getenv ("YYDEBUG");
353 return yyparse ();
354}
355EOF
356]])
357
358AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout])
359mv stdout $1
360])
361
362
363## ----------------- ##
364## Many lookaheads. ##
365## ----------------- ##
366
367AT_SETUP([Many lookaheads])
368
369AT_DATA_LOOKAHEADS_GRAMMAR([input.y], [1000])
49e794c5
PE
370
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.
373AT_INCREASE_DATA_SIZE(204000)
374
b56471a6 375AT_CHECK([bison -v -o input.c input.y])
1154cced
AD
376AT_COMPILE([input])
377AT_PARSER_CHECK([./input])
39ceb25b
AD
378
379AT_CLEANUP
380
381
382
6d7d248e
AD
383# AT_DATA_STACK_TORTURE(C-PROLOGUE)
384# ---------------------------------
385# A parser specialized in torturing the stack size.
386m4_define([AT_DATA_STACK_TORTURE],
387[# A grammar of parens growing the stack thanks to right recursion.
388# exp:
389AT_DATA([input.y],
390[[%{
391#include <stdio.h>
392#include <stdlib.h>
393#include <assert.h>
394]$1[
395 static int yylex (void);
396 static void yyerror (const char *msg);
6d7d248e 397%}
04d843a2 398%error-verbose
6d7d248e
AD
399%debug
400%token WAIT_FOR_EOF
401%%
402exp: WAIT_FOR_EOF exp | ;
403%%
404static void
405yyerror (const char *msg)
406{
407 fprintf (stderr, "%s\n", msg);
408 exit (1);
409}
410
411/* There are YYLVAL_MAX of WAIT_FOR_EOFs. */
412unsigned int yylval_max;
413
414static int
415yylex (void)
416{
417 if (yylval--)
418 return WAIT_FOR_EOF;
419 else
420 return EOF;
421}
422
423int
424main (int argc, const char **argv)
425{
426 assert (argc == 2);
427 yylval = atoi (argv[1]);
428 yydebug = 1;
429 return yyparse ();
430}
431]])
b56471a6 432AT_CHECK([bison -o input.c input.y])
1154cced 433AT_COMPILE([input])
6d7d248e
AD
434])
435
436
437## -------------------------------------- ##
438## Exploding the Stack Size with Alloca. ##
439## -------------------------------------- ##
440
441AT_SETUP([Exploding the Stack Size with Alloca])
442
443AT_DATA_STACK_TORTURE
444
445# Below the limit of 200.
1154cced 446AT_PARSER_CHECK([./input 20], 0, [], [ignore])
6d7d248e 447# Two enlargements: 2 * 2 * 200.
1154cced 448AT_PARSER_CHECK([./input 900], 0, [], [ignore])
6d7d248e
AD
449# Fails: beyond the limit of 10,000 (which we don't reach anyway since we
450# multiply by two starting at 200 => 5120 is the last possible).
1154cced 451AT_PARSER_CHECK([./input 10000], 1, [], [ignore])
6d7d248e
AD
452
453AT_CLEANUP
454
455
456
457
458## -------------------------------------- ##
459## Exploding the Stack Size with Malloc. ##
460## -------------------------------------- ##
461
462AT_SETUP([Exploding the Stack Size with Malloc])
463
000f1a3c 464AT_DATA_STACK_TORTURE([[#define YYSTACK_USE_ALLOCA 0]])
6d7d248e
AD
465
466# Below the limit of 200.
1154cced 467AT_PARSER_CHECK([./input 20], 0, [], [ignore])
6d7d248e 468# Two enlargements: 2 * 2 * 200.
1154cced 469AT_PARSER_CHECK([./input 900], 0, [], [ignore])
6d7d248e
AD
470# Fails: beyond the limit of 10,000 (which we don't reach anyway since we
471# multiply by two starting at 200 => 5120 is the possible).
1154cced 472AT_PARSER_CHECK([./input 10000], 1, [], [ignore])
6d7d248e
AD
473
474AT_CLEANUP