]>
Commit | Line | Data |
---|---|---|
1 | Bison News | |
2 | ---------- | |
3 | ||
4 | Changes in version 1.50a: | |
5 | ||
6 | * Bison should now work on 64-bit hosts. | |
7 | ||
8 | * Indonesian translation thanks to Tedi Heriyanto. | |
9 | ||
10 | Changes in version 1.50, 2002-10-04: | |
11 | ||
12 | * GLR parsing | |
13 | The declaration | |
14 | %glr-parser | |
15 | causes Bison to produce a Generalized LR (GLR) parser, capable of handling | |
16 | almost any context-free grammar, ambiguous or not. The new declarations | |
17 | %dprec and %merge on grammar rules allow parse-time resolution of | |
18 | ambiguities. Contributed by Paul Hilfinger. | |
19 | ||
20 | Unfortunately Bison 1.50 does not work properly on 64-bit hosts | |
21 | like the Alpha, so please stick to 32-bit hosts for now. | |
22 | ||
23 | * Output Directory | |
24 | When not in Yacc compatibility mode, when the output file was not | |
25 | specified, running `bison foo/bar.y' created `foo/bar.c'. It | |
26 | now creates `bar.c'. | |
27 | ||
28 | * Undefined token | |
29 | The undefined token was systematically mapped to 2 which prevented | |
30 | the use of 2 by the user. This is no longer the case. | |
31 | ||
32 | * Unknown token numbers | |
33 | If yylex returned an out of range value, yyparse could die. This is | |
34 | no longer the case. | |
35 | ||
36 | * Error token | |
37 | According to POSIX, the error token must be 256. | |
38 | Bison extends this requirement by making it a preference: *if* the | |
39 | user specified that one of her tokens is numbered 256, then error | |
40 | will be mapped onto another number. | |
41 | ||
42 | * Verbose error messages | |
43 | They no longer report `..., expecting error or...' for states where | |
44 | error recovery is possible. | |
45 | ||
46 | * End token | |
47 | Defaults to `$end' instead of `$'. | |
48 | ||
49 | * Error recovery now conforms to documentation and to POSIX | |
50 | When a Bison-generated parser encounters a syntax error, it now pops | |
51 | the stack until it finds a state that allows shifting the error | |
52 | token. Formerly, it popped the stack until it found a state that | |
53 | allowed some non-error action other than a default reduction on the | |
54 | error token. The new behavior has long been the documented behavior, | |
55 | and has long been required by POSIX. For more details, please see | |
56 | <http://mail.gnu.org/pipermail/bug-bison/2002-May/001452.html>. | |
57 | ||
58 | * Traces | |
59 | Popped tokens and nonterminals are now reported. | |
60 | ||
61 | * Larger grammars | |
62 | Larger grammars are now supported (larger token numbers, larger grammar | |
63 | size (= sum of the LHS and RHS lengths), larger LALR tables). | |
64 | Formerly, many of these numbers ran afoul of 16-bit limits; | |
65 | now these limits are 32 bits on most hosts. | |
66 | ||
67 | * Explicit initial rule | |
68 | Bison used to play hacks with the initial rule, which the user does | |
69 | not write. It is now explicit, and visible in the reports and | |
70 | graphs as rule 0. | |
71 | ||
72 | * Useless rules | |
73 | Before, Bison reported the useless rules, but, although not used, | |
74 | included them in the parsers. They are now actually removed. | |
75 | ||
76 | * Useless rules, useless nonterminals | |
77 | They are now reported, as a warning, with their locations. | |
78 | ||
79 | * Rules never reduced | |
80 | Rules that can never be reduced because of conflicts are now | |
81 | reported. | |
82 | ||
83 | * Incorrect `Token not used' | |
84 | On a grammar such as | |
85 | ||
86 | %token useless useful | |
87 | %% | |
88 | exp: '0' %prec useful; | |
89 | ||
90 | where a token was used to set the precedence of the last rule, | |
91 | bison reported both `useful' and `useless' as useless tokens. | |
92 | ||
93 | * Revert the C++ namespace changes introduced in 1.31 | |
94 | as they caused too many portability hassles. | |
95 | ||
96 | * Default locations | |
97 | By an accident of design, the default computation of @$ was | |
98 | performed after another default computation was performed: @$ = @1. | |
99 | The latter is now removed: YYLLOC_DEFAULT is fully responsible of | |
100 | the computation of @$. | |
101 | ||
102 | * Token end-of-file | |
103 | The token end of file may be specified by the user, in which case, | |
104 | the user symbol is used in the reports, the graphs, and the verbose | |
105 | error messages instead of `$end', which remains being the default. | |
106 | For instance | |
107 | %token YYEOF 0 | |
108 | or | |
109 | %token YYEOF 0 "end of file" | |
110 | ||
111 | * Semantic parser | |
112 | This old option, which has been broken for ages, is removed. | |
113 | ||
114 | * New translations | |
115 | Brazilian Portuguese, thanks to Alexandre Folle de Menezes. | |
116 | Croatian, thanks to Denis Lackovic. | |
117 | ||
118 | * Incorrect token definitions | |
119 | When given `%token 'a' "A"', Bison used to output `#define 'a' 65'. | |
120 | ||
121 | * Token definitions as enums | |
122 | Tokens are output both as the traditional #define's, and, provided | |
123 | the compiler supports ANSI C or is a C++ compiler, as enums. | |
124 | This lets debuggers display names instead of integers. | |
125 | ||
126 | * Reports | |
127 | In addition to --verbose, bison supports --report=THINGS, which | |
128 | produces additional information: | |
129 | - itemset | |
130 | complete the core item sets with their closure | |
131 | - lookahead | |
132 | explicitly associate lookaheads to items | |
133 | - solved | |
134 | describe shift/reduce conflicts solving. | |
135 | Bison used to systematically output this information on top of | |
136 | the report. Solved conflicts are now attached to their states. | |
137 | ||
138 | * Type clashes | |
139 | Previous versions don't complain when there is a type clash on | |
140 | the default action if the rule has a mid-rule action, such as in: | |
141 | ||
142 | %type <foo> bar | |
143 | %% | |
144 | bar: '0' {} '0'; | |
145 | ||
146 | This is fixed. | |
147 | ||
148 | * GNU M4 is now required when using Bison. | |
149 | \f | |
150 | Changes in version 1.35, 2002-03-25: | |
151 | ||
152 | * C Skeleton | |
153 | Some projects use Bison's C parser with C++ compilers, and define | |
154 | YYSTYPE as a class. The recent adjustment of C parsers for data | |
155 | alignment and 64 bit architectures made this impossible. | |
156 | ||
157 | Because for the time being no real solution for C++ parser | |
158 | generation exists, kludges were implemented in the parser to | |
159 | maintain this use. In the future, when Bison has C++ parsers, this | |
160 | kludge will be disabled. | |
161 | ||
162 | This kludge also addresses some C++ problems when the stack was | |
163 | extended. | |
164 | \f | |
165 | Changes in version 1.34, 2002-03-12: | |
166 | ||
167 | * File name clashes are detected | |
168 | $ bison foo.y -d -o foo.x | |
169 | fatal error: header and parser would both be named `foo.x' | |
170 | ||
171 | * A missing `;' at the end of a rule triggers a warning | |
172 | In accordance with POSIX, and in agreement with other | |
173 | Yacc implementations, Bison will mandate this semicolon in the near | |
174 | future. This eases the implementation of a Bison parser of Bison | |
175 | grammars by making this grammar LALR(1) instead of LR(2). To | |
176 | facilitate the transition, this release introduces a warning. | |
177 | ||
178 | * Revert the C++ namespace changes introduced in 1.31, as they caused too | |
179 | many portability hassles. | |
180 | ||
181 | * DJGPP support added. | |
182 | ||
183 | * Fix test suite portability problems. | |
184 | \f | |
185 | Changes in version 1.33, 2002-02-07: | |
186 | ||
187 | * Fix C++ issues | |
188 | Groff could not be compiled for the definition of size_t was lacking | |
189 | under some conditions. | |
190 | ||
191 | * Catch invalid @n | |
192 | As is done with $n. | |
193 | \f | |
194 | Changes in version 1.32, 2002-01-23: | |
195 | ||
196 | * Fix Yacc output file names | |
197 | ||
198 | * Portability fixes | |
199 | ||
200 | * Italian, Dutch translations | |
201 | \f | |
202 | Changes in version 1.31, 2002-01-14: | |
203 | ||
204 | * Many Bug Fixes | |
205 | ||
206 | * GNU Gettext and %expect | |
207 | GNU Gettext asserts 10 s/r conflicts, but there are 7. Now that | |
208 | Bison dies on incorrect %expectations, we fear there will be | |
209 | too many bug reports for Gettext, so _for the time being_, %expect | |
210 | does not trigger an error when the input file is named `plural.y'. | |
211 | ||
212 | * Use of alloca in parsers | |
213 | If YYSTACK_USE_ALLOCA is defined to 0, then the parsers will use | |
214 | malloc exclusively. Since 1.29, but was not NEWS'ed. | |
215 | ||
216 | alloca is used only when compiled with GCC, to avoid portability | |
217 | problems as on AIX. | |
218 | ||
219 | * When the generated parser lacks debugging code, YYDEBUG is now 0 | |
220 | (as POSIX requires) instead of being undefined. | |
221 | ||
222 | * User Actions | |
223 | Bison has always permitted actions such as { $$ = $1 }: it adds the | |
224 | ending semicolon. Now if in Yacc compatibility mode, the semicolon | |
225 | is no longer output: one has to write { $$ = $1; }. | |
226 | ||
227 | * Better C++ compliance | |
228 | The output parsers try to respect C++ namespaces. | |
229 | [This turned out to be a failed experiment, and it was reverted later.] | |
230 | ||
231 | * Reduced Grammars | |
232 | Fixed bugs when reporting useless nonterminals. | |
233 | ||
234 | * 64 bit hosts | |
235 | The parsers work properly on 64 bit hosts. | |
236 | ||
237 | * Error messages | |
238 | Some calls to strerror resulted in scrambled or missing error messages. | |
239 | ||
240 | * %expect | |
241 | When the number of shift/reduce conflicts is correct, don't issue | |
242 | any warning. | |
243 | ||
244 | * The verbose report includes the rule line numbers. | |
245 | ||
246 | * Rule line numbers are fixed in traces. | |
247 | ||
248 | * Swedish translation | |
249 | ||
250 | * Parse errors | |
251 | Verbose parse error messages from the parsers are better looking. | |
252 | Before: parse error: unexpected `'/'', expecting `"number"' or `'-'' or `'('' | |
253 | Now: parse error: unexpected '/', expecting "number" or '-' or '(' | |
254 | ||
255 | * Fixed parser memory leaks. | |
256 | When the generated parser was using malloc to extend its stacks, the | |
257 | previous allocations were not freed. | |
258 | ||
259 | * Fixed verbose output file. | |
260 | Some newlines were missing. | |
261 | Some conflicts in state descriptions were missing. | |
262 | ||
263 | * Fixed conflict report. | |
264 | Option -v was needed to get the result. | |
265 | ||
266 | * %expect | |
267 | Was not used. | |
268 | Mismatches are errors, not warnings. | |
269 | ||
270 | * Fixed incorrect processing of some invalid input. | |
271 | ||
272 | * Fixed CPP guards: 9foo.h uses BISON_9FOO_H instead of 9FOO_H. | |
273 | ||
274 | * Fixed some typos in the documentation. | |
275 | ||
276 | * %token MY_EOF 0 is supported. | |
277 | Before, MY_EOF was silently renumbered as 257. | |
278 | ||
279 | * doc/refcard.tex is updated. | |
280 | ||
281 | * %output, %file-prefix, %name-prefix. | |
282 | New. | |
283 | ||
284 | * --output | |
285 | New, aliasing `--output-file'. | |
286 | \f | |
287 | Changes in version 1.30, 2001-10-26: | |
288 | ||
289 | * `--defines' and `--graph' have now an optionnal argument which is the | |
290 | output file name. `-d' and `-g' do not change, they do not take any | |
291 | argument. | |
292 | ||
293 | * `%source_extension' and `%header_extension' are removed, failed | |
294 | experiment. | |
295 | ||
296 | * Portability fixes. | |
297 | \f | |
298 | Changes in version 1.29, 2001-09-07: | |
299 | ||
300 | * The output file does not define const, as this caused problems when used | |
301 | with common autoconfiguration schemes. If you still use ancient compilers | |
302 | that lack const, compile with the equivalent of the C compiler option | |
303 | `-Dconst='. autoconf's AC_C_CONST macro provides one way to do this. | |
304 | ||
305 | * Added `-g' and `--graph'. | |
306 | ||
307 | * The Bison manual is now distributed under the terms of the GNU FDL. | |
308 | ||
309 | * The input and the output files has automatically a similar extension. | |
310 | ||
311 | * Russian translation added. | |
312 | ||
313 | * NLS support updated; should hopefully be less troublesome. | |
314 | ||
315 | * Added the old Bison reference card. | |
316 | ||
317 | * Added `--locations' and `%locations'. | |
318 | ||
319 | * Added `-S' and `--skeleton'. | |
320 | ||
321 | * `%raw', `-r', `--raw' is disabled. | |
322 | ||
323 | * Special characters are escaped when output. This solves the problems | |
324 | of the #line lines with path names including backslashes. | |
325 | ||
326 | * New directives. | |
327 | `%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose', | |
328 | `%debug', `%source_extension' and `%header_extension'. | |
329 | ||
330 | * @$ | |
331 | Automatic location tracking. | |
332 | \f | |
333 | Changes in version 1.28, 1999-07-06: | |
334 | ||
335 | * Should compile better now with K&R compilers. | |
336 | ||
337 | * Added NLS. | |
338 | ||
339 | * Fixed a problem with escaping the double quote character. | |
340 | ||
341 | * There is now a FAQ. | |
342 | \f | |
343 | Changes in version 1.27: | |
344 | ||
345 | * The make rule which prevented bison.simple from being created on | |
346 | some systems has been fixed. | |
347 | \f | |
348 | Changes in version 1.26: | |
349 | ||
350 | * Bison now uses automake. | |
351 | ||
352 | * New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>. | |
353 | ||
354 | * Token numbers now start at 257 as previously documented, not 258. | |
355 | ||
356 | * Bison honors the TMPDIR environment variable. | |
357 | ||
358 | * A couple of buffer overruns have been fixed. | |
359 | ||
360 | * Problems when closing files should now be reported. | |
361 | ||
362 | * Generated parsers should now work even on operating systems which do | |
363 | not provide alloca(). | |
364 | \f | |
365 | Changes in version 1.25, 1995-10-16: | |
366 | ||
367 | * Errors in the input grammar are not fatal; Bison keeps reading | |
368 | the grammar file, and reports all the errors found in it. | |
369 | ||
370 | * Tokens can now be specified as multiple-character strings: for | |
371 | example, you could use "<=" for a token which looks like <=, instead | |
372 | of chosing a name like LESSEQ. | |
373 | ||
374 | * The %token_table declaration says to write a table of tokens (names | |
375 | and numbers) into the parser file. The yylex function can use this | |
376 | table to recognize multiple-character string tokens, or for other | |
377 | purposes. | |
378 | ||
379 | * The %no_lines declaration says not to generate any #line preprocessor | |
380 | directives in the parser file. | |
381 | ||
382 | * The %raw declaration says to use internal Bison token numbers, not | |
383 | Yacc-compatible token numbers, when token names are defined as macros. | |
384 | ||
385 | * The --no-parser option produces the parser tables without including | |
386 | the parser engine; a project can now use its own parser engine. | |
387 | The actions go into a separate file called NAME.act, in the form of | |
388 | a switch statement body. | |
389 | \f | |
390 | Changes in version 1.23: | |
391 | ||
392 | The user can define YYPARSE_PARAM as the name of an argument to be | |
393 | passed into yyparse. The argument should have type void *. It should | |
394 | actually point to an object. Grammar actions can access the variable | |
395 | by casting it to the proper pointer type. | |
396 | ||
397 | Line numbers in output file corrected. | |
398 | \f | |
399 | Changes in version 1.22: | |
400 | ||
401 | --help option added. | |
402 | \f | |
403 | Changes in version 1.20: | |
404 | ||
405 | Output file does not redefine const for C++. | |
406 | ||
407 | Local Variables: | |
408 | mode: outline | |
409 | End: | |
410 | ||
411 | ----- | |
412 | ||
413 | Copyright (C) 2001, 2002 Free Software Foundation, Inc. | |
414 | ||
415 | This file is part of GNU Autoconf. | |
416 | ||
417 | GNU Autoconf is free software; you can redistribute it and/or modify | |
418 | it under the terms of the GNU General Public License as published by | |
419 | the Free Software Foundation; either version 2, or (at your option) | |
420 | any later version. | |
421 | ||
422 | GNU Autoconf is distributed in the hope that it will be useful, | |
423 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
424 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
425 | GNU General Public License for more details. | |
426 | ||
427 | You should have received a copy of the GNU General Public License | |
428 | along with autoconf; see the file COPYING. If not, write to | |
429 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
430 | Boston, MA 02111-1307, USA. |