]>
Commit | Line | Data |
---|---|---|
6d7d248e | 1 | # Torturing Bison. -*- Autotest -*- |
f79b4f5c | 2 | # Copyright (C) 2001, 2002, 2004, 2005 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 | |
0fb669f9 PE |
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
17 | # 02110-1301, USA. | |
6d7d248e AD |
18 | |
19 | AT_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. |
25 | m4_define([AT_INCREASE_DATA_SIZE], | |
26 | [data_limit=`(ulimit -S -d) 2>/dev/null` | |
27 | case $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 | |
33 | esac]) | |
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 AD |
44 | m4_define([AT_DATA_TRIANGULAR_GRAMMAR], |
45 | [AT_DATA([[gengram.pl]], | |
46 | [[#! /usr/bin/perl -w | |
47 | ||
48 | use strict; | |
49 | my $max = $ARGV[0] || 10; | |
50 | ||
51 | print <<EOF; | |
9501dc6e | 52 | ]AT_DATA_GRAMMAR_PROLOGUE[ |
817e9f41 AD |
53 | %{ |
54 | #include <stdio.h> | |
55 | #include <stdlib.h> | |
817e9f41 AD |
56 | |
57 | #define YYERROR_VERBOSE 1 | |
58 | #define YYDEBUG 1 | |
59 | ||
60 | static int yylex (void); | |
61 | static void yyerror (const char *msg); | |
62 | %} | |
63 | %union | |
64 | { | |
65 | int val; | |
66 | }; | |
67 | ||
68 | %token END "end" | |
69 | %type <val> exp input | |
70 | EOF | |
71 | ||
72 | for my $size (1 .. $max) | |
73 | { | |
e9955c83 | 74 | print "%token t$size $size \"$size\"\n"; |
817e9f41 AD |
75 | }; |
76 | ||
77 | print <<EOF; | |
78 | %% | |
79 | input: | |
66871a81 PE |
80 | exp { if (\@S|@1 != 0) abort (); \$\$ = \@S|@1; } |
81 | | input exp { if (\@S|@2 != \@S|@1 + 1) abort (); \$\$ = \@S|@2; } | |
817e9f41 AD |
82 | ; |
83 | ||
84 | exp: | |
85 | END | |
86 | { \$\$ = 0; } | |
87 | EOF | |
88 | ||
89 | for my $size (1 .. $max) | |
90 | { | |
91 | use Text::Wrap; | |
92 | print wrap ("| ", " ", | |
93 | (map { "\"$_\"" } (1 .. $size)), | |
94 | " END \n"), | |
95 | " { \$\$ = $size; }\n"; | |
96 | }; | |
97 | print ";\n"; | |
98 | ||
99 | print <<EOF; | |
100 | %% | |
101 | static int | |
102 | yylex (void) | |
103 | { | |
104 | static int inner = 1; | |
105 | static int outer = 0; | |
106 | if (outer > $max) | |
107 | return 0; | |
108 | else if (inner > outer) | |
109 | { | |
110 | inner = 1; | |
111 | ++outer; | |
112 | return END; | |
113 | } | |
23c5a174 | 114 | return inner++; |
817e9f41 AD |
115 | } |
116 | ||
117 | static void | |
118 | yyerror (const char *msg) | |
119 | { | |
120 | fprintf (stderr, "%s\\n", msg); | |
121 | } | |
122 | ||
123 | int | |
124 | main (void) | |
125 | { | |
126 | yydebug = !!getenv ("YYDEBUG"); | |
127 | return yyparse (); | |
128 | } | |
129 | EOF | |
130 | ]]) | |
131 | ||
132 | AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout]) | |
133 | mv stdout $1 | |
134 | ]) | |
135 | ||
136 | ||
137 | ## -------------- ## | |
138 | ## Big triangle. ## | |
139 | ## -------------- ## | |
140 | ||
817e9f41 AD |
141 | AT_SETUP([Big triangle]) |
142 | ||
355e7c1c AD |
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. | |
e9955c83 AD |
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]) | |
b56471a6 | 148 | AT_CHECK([bison -v -o input.c input.y]) |
1154cced AD |
149 | AT_COMPILE([input]) |
150 | AT_PARSER_CHECK([./input]) | |
817e9f41 AD |
151 | |
152 | AT_CLEANUP | |
153 | ||
154 | ||
155 | ||
62a3e4f0 AD |
156 | # AT_DATA_HORIZONTAL_GRAMMAR(FILE-NAME, SIZE) |
157 | # ------------------------------------------- | |
158 | # Create FILE-NAME, containing a self checking parser for a huge | |
159 | # horizontal grammar. | |
62a3e4f0 AD |
160 | m4_define([AT_DATA_HORIZONTAL_GRAMMAR], |
161 | [AT_DATA([[gengram.pl]], | |
162 | [[#! /usr/bin/perl -w | |
163 | ||
164 | use strict; | |
165 | my $max = $ARGV[0] || 10; | |
166 | ||
167 | print <<EOF; | |
9501dc6e | 168 | ]AT_DATA_GRAMMAR_PROLOGUE[ |
62a3e4f0 AD |
169 | %{ |
170 | #include <stdio.h> | |
171 | #include <stdlib.h> | |
62a3e4f0 AD |
172 | |
173 | #define YYERROR_VERBOSE 1 | |
174 | #define YYDEBUG 1 | |
175 | ||
176 | static int yylex (void); | |
177 | static void yyerror (const char *msg); | |
178 | %} | |
179 | EOF | |
180 | ||
181 | for my $size (1 .. $max) | |
182 | { | |
e9955c83 | 183 | print "%token t$size $size \"$size\"\n"; |
62a3e4f0 AD |
184 | }; |
185 | ||
186 | print <<EOF; | |
187 | %% | |
188 | EOF | |
189 | ||
190 | use Text::Wrap; | |
191 | ||
192 | wrap ("exp: ", " ", | |
193 | (map { "\"$_\"" } (1 .. $max)), ";"), | |
194 | "\n"; | |
195 | ||
196 | print <<EOF; | |
197 | %% | |
198 | static int | |
199 | yylex (void) | |
200 | { | |
201 | static int counter = 1; | |
202 | if (counter > $max) | |
203 | return 0; | |
204 | else | |
23c5a174 | 205 | return counter++; |
62a3e4f0 AD |
206 | } |
207 | ||
208 | static void | |
209 | yyerror (const char *msg) | |
210 | { | |
211 | fprintf (stderr, "%s\\n", msg); | |
212 | } | |
213 | ||
214 | int | |
215 | main (void) | |
216 | { | |
217 | yydebug = !!getenv ("YYDEBUG"); | |
218 | return yyparse (); | |
219 | } | |
220 | EOF | |
221 | ]]) | |
222 | ||
223 | AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout]) | |
224 | mv stdout $1 | |
225 | ]) | |
226 | ||
227 | ||
228 | ## ---------------- ## | |
229 | ## Big horizontal. ## | |
230 | ## ---------------- ## | |
231 | ||
232 | AT_SETUP([Big horizontal]) | |
233 | ||
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: | |
236 | # | |
237 | # input.y 263k | |
238 | # input.tab.c 1.3M | |
239 | # input 453k | |
240 | # | |
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 | |
245 | # | |
246 | AT_DATA_HORIZONTAL_GRAMMAR([input.y], [1000]) | |
49e794c5 PE |
247 | |
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) | |
251 | ||
b56471a6 | 252 | AT_CHECK([bison -v -o input.c input.y]) |
1154cced AD |
253 | AT_COMPILE([input]) |
254 | AT_PARSER_CHECK([./input]) | |
62a3e4f0 AD |
255 | |
256 | AT_CLEANUP | |
257 | ||
258 | ||
259 | ||
8dd162d3 | 260 | # AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR(FILE-NAME, SIZE) |
39ceb25b AD |
261 | # ------------------------------------------- |
262 | # Create FILE-NAME, containing a self checking parser for a grammar | |
8dd162d3 PE |
263 | # requiring SIZE look-ahead tokens. |
264 | m4_define([AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR], | |
39ceb25b AD |
265 | [AT_DATA([[gengram.pl]], |
266 | [[#! /usr/bin/perl -w | |
267 | ||
268 | use strict; | |
269 | use Text::Wrap; | |
270 | my $max = $ARGV[0] || 10; | |
271 | ||
272 | print <<EOF; | |
273 | %{ | |
274 | #include <stdio.h> | |
275 | #include <stdlib.h> | |
39ceb25b AD |
276 | |
277 | #define YYERROR_VERBOSE 1 | |
278 | #define YYDEBUG 1 | |
279 | ||
280 | static int yylex (void); | |
281 | static void yyerror (const char *msg); | |
282 | %} | |
283 | %union | |
284 | { | |
285 | int val; | |
286 | }; | |
287 | ||
288 | %type <val> input exp | |
289 | %token token | |
290 | EOF | |
291 | ||
292 | ||
293 | wrap ("%type <val> ", | |
294 | " ", | |
e9955c83 | 295 | map { "n$_" } (1 .. $max)), |
39ceb25b AD |
296 | "\n"; |
297 | ||
298 | for my $count (1 .. $max) | |
299 | { | |
e9955c83 | 300 | print "%token t$count $count \"$count\"\n"; |
39ceb25b AD |
301 | }; |
302 | ||
303 | print <<EOF; | |
304 | %% | |
305 | input: | |
66871a81 PE |
306 | exp { if (\@S|@1 != 1) abort (); \$\$ = \@S|@1; } |
307 | | input exp { if (\@S|@2 != \@S|@1 + 1) abort (); \$\$ = \@S|@2; } | |
39ceb25b AD |
308 | ; |
309 | ||
310 | exp: | |
66871a81 | 311 | n1 "1" { if (\@S|@1 != 1) abort (); } |
39ceb25b AD |
312 | EOF |
313 | ||
314 | for my $count (2 .. $max) | |
315 | { | |
66871a81 | 316 | print "| n$count \"$count\" { if (\@S|@1 != $count) abort (); }\n"; |
39ceb25b AD |
317 | }; |
318 | print ";\n"; | |
319 | ||
320 | for my $count (1 .. $max) | |
321 | { | |
e9955c83 | 322 | print "n$count: token { \$\$ = $count; };\n"; |
39ceb25b AD |
323 | }; |
324 | ||
325 | print <<EOF; | |
326 | %% | |
327 | static int | |
328 | yylex (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 | ||
343 | static void | |
344 | yyerror (const char *msg) | |
345 | { | |
346 | fprintf (stderr, "%s\\n", msg); | |
347 | } | |
348 | ||
349 | int | |
350 | main (void) | |
351 | { | |
352 | yydebug = !!getenv ("YYDEBUG"); | |
353 | return yyparse (); | |
354 | } | |
355 | EOF | |
356 | ]]) | |
357 | ||
358 | AT_CHECK([perl -w ./gengram.pl $2 || exit 77], 0, [stdout]) | |
359 | mv stdout $1 | |
360 | ]) | |
361 | ||
362 | ||
8dd162d3 PE |
363 | ## ------------------------ ## |
364 | ## Many look-ahead tokens. ## | |
365 | ## ------------------------ ## | |
39ceb25b | 366 | |
8dd162d3 | 367 | AT_SETUP([Many look-ahead tokens]) |
39ceb25b | 368 | |
8dd162d3 | 369 | AT_DATA_LOOK_AHEAD_TOKENS_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. | |
373 | AT_INCREASE_DATA_SIZE(204000) | |
374 | ||
b56471a6 | 375 | AT_CHECK([bison -v -o input.c input.y]) |
1154cced AD |
376 | AT_COMPILE([input]) |
377 | AT_PARSER_CHECK([./input]) | |
39ceb25b AD |
378 | |
379 | AT_CLEANUP | |
380 | ||
381 | ||
382 | ||
6d7d248e AD |
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. | |
388 | # exp: | |
389 | AT_DATA([input.y], | |
390 | [[%{ | |
04098407 PE |
391 | #include <errno.h> |
392 | #include <limits.h> | |
6d7d248e AD |
393 | #include <stdio.h> |
394 | #include <stdlib.h> | |
6d7d248e AD |
395 | ]$1[ |
396 | static int yylex (void); | |
397 | static void yyerror (const char *msg); | |
6d7d248e | 398 | %} |
04d843a2 | 399 | %error-verbose |
6d7d248e AD |
400 | %debug |
401 | %token WAIT_FOR_EOF | |
402 | %% | |
403 | exp: WAIT_FOR_EOF exp | ; | |
404 | %% | |
405 | static void | |
406 | yyerror (const char *msg) | |
407 | { | |
408 | fprintf (stderr, "%s\n", msg); | |
6d7d248e AD |
409 | } |
410 | ||
6d7d248e AD |
411 | static int |
412 | yylex (void) | |
413 | { | |
414 | if (yylval--) | |
415 | return WAIT_FOR_EOF; | |
416 | else | |
417 | return EOF; | |
418 | } | |
419 | ||
420 | int | |
421 | main (int argc, const char **argv) | |
422 | { | |
04098407 | 423 | char *endp; |
66871a81 PE |
424 | if (argc != 2) |
425 | abort (); | |
04098407 PE |
426 | yylval = strtol (argv[1], &endp, 10); |
427 | if (! (argv[1] != endp | |
428 | && 0 <= yylval && yylval <= INT_MAX | |
429 | && errno != ERANGE)) | |
430 | abort (); | |
6d7d248e AD |
431 | yydebug = 1; |
432 | return yyparse (); | |
433 | } | |
434 | ]]) | |
b56471a6 | 435 | AT_CHECK([bison -o input.c input.y]) |
1154cced | 436 | AT_COMPILE([input]) |
6d7d248e AD |
437 | ]) |
438 | ||
439 | ||
440 | ## -------------------------------------- ## | |
441 | ## Exploding the Stack Size with Alloca. ## | |
442 | ## -------------------------------------- ## | |
443 | ||
444 | AT_SETUP([Exploding the Stack Size with Alloca]) | |
445 | ||
577d7c33 PE |
446 | AT_DATA_STACK_TORTURE([[ |
447 | #if defined __GNUC__ || defined alloca | |
448 | # define YYSTACK_USE_ALLOCA 1 | |
449 | #endif | |
450 | ]]) | |
6d7d248e AD |
451 | |
452 | # Below the limit of 200. | |
1154cced | 453 | AT_PARSER_CHECK([./input 20], 0, [], [ignore]) |
6d7d248e | 454 | # Two enlargements: 2 * 2 * 200. |
1154cced | 455 | AT_PARSER_CHECK([./input 900], 0, [], [ignore]) |
6d7d248e AD |
456 | # Fails: beyond the limit of 10,000 (which we don't reach anyway since we |
457 | # multiply by two starting at 200 => 5120 is the last possible). | |
67fd79c4 | 458 | AT_PARSER_CHECK([./input 10000], 2, [], [ignore]) |
6d7d248e AD |
459 | |
460 | AT_CLEANUP | |
461 | ||
462 | ||
463 | ||
464 | ||
465 | ## -------------------------------------- ## | |
466 | ## Exploding the Stack Size with Malloc. ## | |
467 | ## -------------------------------------- ## | |
468 | ||
469 | AT_SETUP([Exploding the Stack Size with Malloc]) | |
470 | ||
000f1a3c | 471 | AT_DATA_STACK_TORTURE([[#define YYSTACK_USE_ALLOCA 0]]) |
6d7d248e AD |
472 | |
473 | # Below the limit of 200. | |
1154cced | 474 | AT_PARSER_CHECK([./input 20], 0, [], [ignore]) |
6d7d248e | 475 | # Two enlargements: 2 * 2 * 200. |
1154cced | 476 | AT_PARSER_CHECK([./input 900], 0, [], [ignore]) |
6d7d248e AD |
477 | # Fails: beyond the limit of 10,000 (which we don't reach anyway since we |
478 | # multiply by two starting at 200 => 5120 is the possible). | |
67fd79c4 | 479 | AT_PARSER_CHECK([./input 10000], 2, [], [ignore]) |
6d7d248e AD |
480 | |
481 | AT_CLEANUP |