]> git.saurik.com Git - bison.git/blob - NEWS
4706c1c3da69d7615f710ee0482bae23bc075fc3
[bison.git] / NEWS
1 Bison News
2 ----------
3
4 * Changes in version 2.4.2 (????-??-??):
5
6 ** Detection of GNU M4 1.4.6 or newer during configure is improved.
7
8 ** %code is now a permanent feature.
9
10 A traditional Yacc prologue directive is written in the form:
11
12 %{CODE%}
13
14 To provide a more flexible alternative, Bison 2.3b introduced the
15 %code directive with the following forms for C/C++:
16
17 %code {CODE}
18 %code requires {CODE}
19 %code provides {CODE}
20 %code top {CODE}
21
22 These forms are now considered permanent features of Bison. See the
23 %code entries in the section "Bison Declaration Summary" in the Bison
24 manual for a summary of their functionality. See the section
25 "Prologue Alternatives" for a detailed discussion including the
26 advantages of %code over the traditional Yacc prologue directive.
27
28 Bison's Java feature as a whole including its current usage of %code
29 is still considered experimental.
30
31 * Changes in version 2.4.1 (2008-12-11):
32
33 ** In the GLR defines file, unexpanded M4 macros in the yylval and yylloc
34 declarations have been fixed.
35
36 ** Temporary hack for adding a semicolon to the user action.
37
38 Bison used to prepend a trailing semicolon at the end of the user
39 action for reductions. This allowed actions such as
40
41 exp: exp "+" exp { $$ = $1 + $3 };
42
43 instead of
44
45 exp: exp "+" exp { $$ = $1 + $3; };
46
47 Some grammars still depend on this `feature'. Bison 2.4.1 restores
48 the previous behavior in the case of C output (specifically, when
49 neither %language or %skeleton or equivalent command-line options
50 are used) to leave more time for grammars depending on the old
51 behavior to be adjusted. Future releases of Bison will disable this
52 feature.
53
54 ** A few minor improvements to the Bison manual.
55
56 * Changes in version 2.4 (2008-11-02):
57
58 ** %language is an experimental feature.
59
60 We first introduced this feature in test release 2.3b as a cleaner
61 alternative to %skeleton. Since then, we have discussed the possibility of
62 modifying its effect on Bison's output file names. Thus, in this release,
63 we consider %language to be an experimental feature that will likely evolve
64 in future releases.
65
66 ** Forward compatibility with GNU M4 has been improved.
67
68 ** Several bugs in the C++ skeleton and the experimental Java skeleton have been
69 fixed.
70
71 * Changes in version 2.3b (2008-05-27):
72
73 ** The quotes around NAME that used to be required in the following directive
74 are now deprecated:
75
76 %define NAME "VALUE"
77
78 ** The directive `%pure-parser' is now deprecated in favor of:
79
80 %define api.pure
81
82 which has the same effect except that Bison is more careful to warn about
83 unreasonable usage in the latter case.
84
85 ** Push Parsing
86
87 Bison can now generate an LALR(1) parser in C with a push interface. That
88 is, instead of invoking `yyparse', which pulls tokens from `yylex', you can
89 push one token at a time to the parser using `yypush_parse', which will
90 return to the caller after processing each token. By default, the push
91 interface is disabled. Either of the following directives will enable it:
92
93 %define api.push_pull "push" // Just push; does not require yylex.
94 %define api.push_pull "both" // Push and pull; requires yylex.
95
96 See the new section `A Push Parser' in the Bison manual for details.
97
98 The current push parsing interface is experimental and may evolve. More user
99 feedback will help to stabilize it.
100
101 ** The -g and --graph options now output graphs in Graphviz DOT format,
102 not VCG format. Like --graph, -g now also takes an optional FILE argument
103 and thus cannot be bundled with other short options.
104
105 ** Java
106
107 Bison can now generate an LALR(1) parser in Java. The skeleton is
108 `data/lalr1.java'. Consider using the new %language directive instead of
109 %skeleton to select it.
110
111 See the new section `Java Parsers' in the Bison manual for details.
112
113 The current Java interface is experimental and may evolve. More user
114 feedback will help to stabilize it.
115
116 ** %language
117
118 This new directive specifies the programming language of the generated
119 parser, which can be C (the default), C++, or Java. Besides the skeleton
120 that Bison uses, the directive affects the names of the generated files if
121 the grammar file's name ends in ".y".
122
123 ** XML Automaton Report
124
125 Bison can now generate an XML report of the LALR(1) automaton using the new
126 `--xml' option. The current XML schema is experimental and may evolve. More
127 user feedback will help to stabilize it.
128
129 ** The grammar file may now specify the name of the parser header file using
130 %defines. For example:
131
132 %defines "parser.h"
133
134 ** When reporting useless rules, useless nonterminals, and unused terminals,
135 Bison now employs the terms "useless in grammar" instead of "useless",
136 "useless in parser" instead of "never reduced", and "unused in grammar"
137 instead of "unused".
138
139 ** Unreachable State Removal
140
141 Previously, Bison sometimes generated parser tables containing unreachable
142 states. A state can become unreachable during conflict resolution if Bison
143 disables a shift action leading to it from a predecessor state. Bison now:
144
145 1. Removes unreachable states.
146
147 2. Does not report any conflicts that appeared in unreachable states.
148 WARNING: As a result, you may need to update %expect and %expect-rr
149 directives in existing grammar files.
150
151 3. For any rule used only in such states, Bison now reports the rule as
152 "useless in parser due to conflicts".
153
154 This feature can be disabled with the following directive:
155
156 %define lr.keep_unreachable_states
157
158 See the %define entry in the `Bison Declaration Summary' in the Bison manual
159 for further discussion.
160
161 ** Lookahead Set Correction in the `.output' Report
162
163 When instructed to generate a `.output' file including lookahead sets
164 (using `--report=lookahead', for example), Bison now prints each reduction's
165 lookahead set only next to the associated state's one item that (1) is
166 associated with the same rule as the reduction and (2) has its dot at the end
167 of its RHS. Previously, Bison also erroneously printed the lookahead set
168 next to all of the state's other items associated with the same rule. This
169 bug affected only the `.output' file and not the generated parser source
170 code.
171
172 ** --report-file=FILE is a new option to override the default `.output' file
173 name.
174
175 ** The `=' that used to be required in the following directives is now
176 deprecated:
177
178 %file-prefix "parser"
179 %name-prefix "c_"
180 %output "parser.c"
181
182 ** An Alternative to `%{...%}' -- `%code QUALIFIER {CODE}'
183
184 Bison 2.3a provided a new set of directives as a more flexible alternative to
185 the traditional Yacc prologue blocks. Those have now been consolidated into
186 a single %code directive with an optional qualifier field, which identifies
187 the purpose of the code and thus the location(s) where Bison should generate
188 it:
189
190 1. `%code {CODE}' replaces `%after-header {CODE}'
191 2. `%code requires {CODE}' replaces `%start-header {CODE}'
192 3. `%code provides {CODE}' replaces `%end-header {CODE}'
193 4. `%code top {CODE}' replaces `%before-header {CODE}'
194
195 See the %code entries in section `Bison Declaration Summary' in the Bison
196 manual for a summary of the new functionality. See the new section `Prologue
197 Alternatives' for a detailed discussion including the advantages of %code
198 over the traditional Yacc prologues.
199
200 The prologue alternatives are experimental. More user feedback will help to
201 determine whether they should become permanent features.
202
203 ** Revised warning: unset or unused mid-rule values
204
205 Since Bison 2.2, Bison has warned about mid-rule values that are set but not
206 used within any of the actions of the parent rule. For example, Bison warns
207 about unused $2 in:
208
209 exp: '1' { $$ = 1; } '+' exp { $$ = $1 + $4; };
210
211 Now, Bison also warns about mid-rule values that are used but not set. For
212 example, Bison warns about unset $$ in the mid-rule action in:
213
214 exp: '1' { $1 = 1; } '+' exp { $$ = $2 + $4; };
215
216 However, Bison now disables both of these warnings by default since they
217 sometimes prove to be false alarms in existing grammars employing the Yacc
218 constructs $0 or $-N (where N is some positive integer).
219
220 To enable these warnings, specify the option `--warnings=midrule-values' or
221 `-W', which is a synonym for `--warnings=all'.
222
223 ** Default %destructor or %printer with `<*>' or `<>'
224
225 Bison now recognizes two separate kinds of default %destructor's and
226 %printer's:
227
228 1. Place `<*>' in a %destructor/%printer symbol list to define a default
229 %destructor/%printer for all grammar symbols for which you have formally
230 declared semantic type tags.
231
232 2. Place `<>' in a %destructor/%printer symbol list to define a default
233 %destructor/%printer for all grammar symbols without declared semantic
234 type tags.
235
236 Bison no longer supports the `%symbol-default' notation from Bison 2.3a.
237 `<*>' and `<>' combined achieve the same effect with one exception: Bison no
238 longer applies any %destructor to a mid-rule value if that mid-rule value is
239 not actually ever referenced using either $$ or $n in a semantic action.
240
241 The default %destructor's and %printer's are experimental. More user
242 feedback will help to determine whether they should become permanent
243 features.
244
245 See the section `Freeing Discarded Symbols' in the Bison manual for further
246 details.
247
248 ** %left, %right, and %nonassoc can now declare token numbers. This is required
249 by POSIX. However, see the end of section `Operator Precedence' in the Bison
250 manual for a caveat concerning the treatment of literal strings.
251
252 ** The nonfunctional --no-parser, -n, and %no-parser options have been
253 completely removed from Bison.
254
255 * Changes in version 2.3a, 2006-09-13:
256
257 ** Instead of %union, you can define and use your own union type
258 YYSTYPE if your grammar contains at least one <type> tag.
259 Your YYSTYPE need not be a macro; it can be a typedef.
260 This change is for compatibility with other Yacc implementations,
261 and is required by POSIX.
262
263 ** Locations columns and lines start at 1.
264 In accordance with the GNU Coding Standards and Emacs.
265
266 ** You may now declare per-type and default %destructor's and %printer's:
267
268 For example:
269
270 %union { char *string; }
271 %token <string> STRING1
272 %token <string> STRING2
273 %type <string> string1
274 %type <string> string2
275 %union { char character; }
276 %token <character> CHR
277 %type <character> chr
278 %destructor { free ($$); } %symbol-default
279 %destructor { free ($$); printf ("%d", @$.first_line); } STRING1 string1
280 %destructor { } <character>
281
282 guarantees that, when the parser discards any user-defined symbol that has a
283 semantic type tag other than `<character>', it passes its semantic value to
284 `free'. However, when the parser discards a `STRING1' or a `string1', it
285 also prints its line number to `stdout'. It performs only the second
286 `%destructor' in this case, so it invokes `free' only once.
287
288 [Although we failed to mention this here in the 2.3a release, the default
289 %destructor's and %printer's were experimental, and they were rewritten in
290 future versions.]
291
292 ** Except for LALR(1) parsers in C with POSIX Yacc emulation enabled (with `-y',
293 `--yacc', or `%yacc'), Bison no longer generates #define statements for
294 associating token numbers with token names. Removing the #define statements
295 helps to sanitize the global namespace during preprocessing, but POSIX Yacc
296 requires them. Bison still generates an enum for token names in all cases.
297
298 ** Handling of traditional Yacc prologue blocks is now more consistent but
299 potentially incompatible with previous releases of Bison.
300
301 As before, you declare prologue blocks in your grammar file with the
302 `%{ ... %}' syntax. To generate the pre-prologue, Bison concatenates all
303 prologue blocks that you've declared before the first %union. To generate
304 the post-prologue, Bison concatenates all prologue blocks that you've
305 declared after the first %union.
306
307 Previous releases of Bison inserted the pre-prologue into both the header
308 file and the code file in all cases except for LALR(1) parsers in C. In the
309 latter case, Bison inserted it only into the code file. For parsers in C++,
310 the point of insertion was before any token definitions (which associate
311 token numbers with names). For parsers in C, the point of insertion was
312 after the token definitions.
313
314 Now, Bison never inserts the pre-prologue into the header file. In the code
315 file, it always inserts it before the token definitions.
316
317 ** Bison now provides a more flexible alternative to the traditional Yacc
318 prologue blocks: %before-header, %start-header, %end-header, and
319 %after-header.
320
321 For example, the following declaration order in the grammar file reflects the
322 order in which Bison will output these code blocks. However, you are free to
323 declare these code blocks in your grammar file in whatever order is most
324 convenient for you:
325
326 %before-header {
327 /* Bison treats this block like a pre-prologue block: it inserts it into
328 * the code file before the contents of the header file. It does *not*
329 * insert it into the header file. This is a good place to put
330 * #include's that you want at the top of your code file. A common
331 * example is `#include "system.h"'. */
332 }
333 %start-header {
334 /* Bison inserts this block into both the header file and the code file.
335 * In both files, the point of insertion is before any Bison-generated
336 * token, semantic type, location type, and class definitions. This is a
337 * good place to define %union dependencies, for example. */
338 }
339 %union {
340 /* Unlike the traditional Yacc prologue blocks, the output order for the
341 * new %*-header blocks is not affected by their declaration position
342 * relative to any %union in the grammar file. */
343 }
344 %end-header {
345 /* Bison inserts this block into both the header file and the code file.
346 * In both files, the point of insertion is after the Bison-generated
347 * definitions. This is a good place to declare or define public
348 * functions or data structures that depend on the Bison-generated
349 * definitions. */
350 }
351 %after-header {
352 /* Bison treats this block like a post-prologue block: it inserts it into
353 * the code file after the contents of the header file. It does *not*
354 * insert it into the header file. This is a good place to declare or
355 * define internal functions or data structures that depend on the
356 * Bison-generated definitions. */
357 }
358
359 If you have multiple occurrences of any one of the above declarations, Bison
360 will concatenate the contents in declaration order.
361
362 [Although we failed to mention this here in the 2.3a release, the prologue
363 alternatives were experimental, and they were rewritten in future versions.]
364
365 ** The option `--report=look-ahead' has been changed to `--report=lookahead'.
366 The old spelling still works, but is not documented and may be removed
367 in a future release.
368
369 * Changes in version 2.3, 2006-06-05:
370
371 ** GLR grammars should now use `YYRECOVERING ()' instead of `YYRECOVERING',
372 for compatibility with LALR(1) grammars.
373
374 ** It is now documented that any definition of YYSTYPE or YYLTYPE should
375 be to a type name that does not contain parentheses or brackets.
376
377 * Changes in version 2.2, 2006-05-19:
378
379 ** The distribution terms for all Bison-generated parsers now permit
380 using the parsers in nonfree programs. Previously, this permission
381 was granted only for Bison-generated LALR(1) parsers in C.
382
383 ** %name-prefix changes the namespace name in C++ outputs.
384
385 ** The C++ parsers export their token_type.
386
387 ** Bison now allows multiple %union declarations, and concatenates
388 their contents together.
389
390 ** New warning: unused values
391 Right-hand side symbols whose values are not used are reported,
392 if the symbols have destructors. For instance:
393
394 exp: exp "?" exp ":" exp { $1 ? $1 : $3; }
395 | exp "+" exp
396 ;
397
398 will trigger a warning about $$ and $5 in the first rule, and $3 in
399 the second ($1 is copied to $$ by the default rule). This example
400 most likely contains three errors, and could be rewritten as:
401
402 exp: exp "?" exp ":" exp
403 { $$ = $1 ? $3 : $5; free ($1 ? $5 : $3); free ($1); }
404 | exp "+" exp
405 { $$ = $1 ? $1 : $3; if ($1) free ($3); }
406 ;
407
408 However, if the original actions were really intended, memory leaks
409 and all, the warnings can be suppressed by letting Bison believe the
410 values are used, e.g.:
411
412 exp: exp "?" exp ":" exp { $1 ? $1 : $3; (void) ($$, $5); }
413 | exp "+" exp { $$ = $1; (void) $3; }
414 ;
415
416 If there are mid-rule actions, the warning is issued if no action
417 uses it. The following triggers no warning: $1 and $3 are used.
418
419 exp: exp { push ($1); } '+' exp { push ($3); sum (); };
420
421 The warning is intended to help catching lost values and memory leaks.
422 If a value is ignored, its associated memory typically is not reclaimed.
423
424 ** %destructor vs. YYABORT, YYACCEPT, and YYERROR.
425 Destructors are now called when user code invokes YYABORT, YYACCEPT,
426 and YYERROR, for all objects on the stack, other than objects
427 corresponding to the right-hand side of the current rule.
428
429 ** %expect, %expect-rr
430 Incorrect numbers of expected conflicts are now actual errors,
431 instead of warnings.
432
433 ** GLR, YACC parsers.
434 The %parse-params are available in the destructors (and the
435 experimental printers) as per the documentation.
436
437 ** Bison now warns if it finds a stray `$' or `@' in an action.
438
439 ** %require "VERSION"
440 This specifies that the grammar file depends on features implemented
441 in Bison version VERSION or higher.
442
443 ** lalr1.cc: The token and value types are now class members.
444 The tokens were defined as free form enums and cpp macros. YYSTYPE
445 was defined as a free form union. They are now class members:
446 tokens are enumerations of the `yy::parser::token' struct, and the
447 semantic values have the `yy::parser::semantic_type' type.
448
449 If you do not want or can update to this scheme, the directive
450 `%define "global_tokens_and_yystype" "1"' triggers the global
451 definition of tokens and YYSTYPE. This change is suitable both
452 for previous releases of Bison, and this one.
453
454 If you wish to update, then make sure older version of Bison will
455 fail using `%require "2.2"'.
456
457 ** DJGPP support added.
458 \f
459 * Changes in version 2.1, 2005-09-16:
460
461 ** The C++ lalr1.cc skeleton supports %lex-param.
462
463 ** Bison-generated parsers now support the translation of diagnostics like
464 "syntax error" into languages other than English. The default
465 language is still English. For details, please see the new
466 Internationalization section of the Bison manual. Software
467 distributors should also see the new PACKAGING file. Thanks to
468 Bruno Haible for this new feature.
469
470 ** Wording in the Bison-generated parsers has been changed slightly to
471 simplify translation. In particular, the message "memory exhausted"
472 has replaced "parser stack overflow", as the old message was not
473 always accurate for modern Bison-generated parsers.
474
475 ** Destructors are now called when the parser aborts, for all symbols left
476 behind on the stack. Also, the start symbol is now destroyed after a
477 successful parse. In both cases, the behavior was formerly inconsistent.
478
479 ** When generating verbose diagnostics, Bison-generated parsers no longer
480 quote the literal strings associated with tokens. For example, for
481 a syntax error associated with '%token NUM "number"' they might
482 print 'syntax error, unexpected number' instead of 'syntax error,
483 unexpected "number"'.
484 \f
485 * Changes in version 2.0, 2004-12-25:
486
487 ** Possibly-incompatible changes
488
489 - Bison-generated parsers no longer default to using the alloca function
490 (when available) to extend the parser stack, due to widespread
491 problems in unchecked stack-overflow detection. You can "#define
492 YYSTACK_USE_ALLOCA 1" to require the use of alloca, but please read
493 the manual to determine safe values for YYMAXDEPTH in that case.
494
495 - Error token location.
496 During error recovery, the location of the syntax error is updated
497 to cover the whole sequence covered by the error token: it includes
498 the shifted symbols thrown away during the first part of the error
499 recovery, and the lookahead rejected during the second part.
500
501 - Semicolon changes:
502 . Stray semicolons are no longer allowed at the start of a grammar.
503 . Semicolons are now required after in-grammar declarations.
504
505 - Unescaped newlines are no longer allowed in character constants or
506 string literals. They were never portable, and GCC 3.4.0 has
507 dropped support for them. Better diagnostics are now generated if
508 forget a closing quote.
509
510 - NUL bytes are no longer allowed in Bison string literals, unfortunately.
511
512 ** New features
513
514 - GLR grammars now support locations.
515
516 - New directive: %initial-action.
517 This directive allows the user to run arbitrary code (including
518 initializing @$) from yyparse before parsing starts.
519
520 - A new directive "%expect-rr N" specifies the expected number of
521 reduce/reduce conflicts in GLR parsers.
522
523 - %token numbers can now be hexadecimal integers, e.g., `%token FOO 0x12d'.
524 This is a GNU extension.
525
526 - The option `--report=lookahead' was changed to `--report=look-ahead'.
527 [However, this was changed back after 2.3.]
528
529 - Experimental %destructor support has been added to lalr1.cc.
530
531 - New configure option --disable-yacc, to disable installation of the
532 yacc command and -ly library introduced in 1.875 for POSIX conformance.
533
534 ** Bug fixes
535
536 - For now, %expect-count violations are now just warnings, not errors.
537 This is for compatibility with Bison 1.75 and earlier (when there are
538 reduce/reduce conflicts) and with Bison 1.30 and earlier (when there
539 are too many or too few shift/reduce conflicts). However, in future
540 versions of Bison we plan to improve the %expect machinery so that
541 these violations will become errors again.
542
543 - Within Bison itself, numbers (e.g., goto numbers) are no longer
544 arbitrarily limited to 16-bit counts.
545
546 - Semicolons are now allowed before "|" in grammar rules, as POSIX requires.
547 \f
548 * Changes in version 1.875, 2003-01-01:
549
550 ** The documentation license has been upgraded to version 1.2
551 of the GNU Free Documentation License.
552
553 ** syntax error processing
554
555 - In Yacc-style parsers YYLLOC_DEFAULT is now used to compute error
556 locations too. This fixes bugs in error-location computation.
557
558 - %destructor
559 It is now possible to reclaim the memory associated to symbols
560 discarded during error recovery. This feature is still experimental.
561
562 - %error-verbose
563 This new directive is preferred over YYERROR_VERBOSE.
564
565 - #defining yyerror to steal internal variables is discouraged.
566 It is not guaranteed to work forever.
567
568 ** POSIX conformance
569
570 - Semicolons are once again optional at the end of grammar rules.
571 This reverts to the behavior of Bison 1.33 and earlier, and improves
572 compatibility with Yacc.
573
574 - `parse error' -> `syntax error'
575 Bison now uniformly uses the term `syntax error'; formerly, the code
576 and manual sometimes used the term `parse error' instead. POSIX
577 requires `syntax error' in diagnostics, and it was thought better to
578 be consistent.
579
580 - The documentation now emphasizes that yylex and yyerror must be
581 declared before use. C99 requires this.
582
583 - Bison now parses C99 lexical constructs like UCNs and
584 backslash-newline within C escape sequences, as POSIX 1003.1-2001 requires.
585
586 - File names are properly escaped in C output. E.g., foo\bar.y is
587 output as "foo\\bar.y".
588
589 - Yacc command and library now available
590 The Bison distribution now installs a `yacc' command, as POSIX requires.
591 Also, Bison now installs a small library liby.a containing
592 implementations of Yacc-compatible yyerror and main functions.
593 This library is normally not useful, but POSIX requires it.
594
595 - Type clashes now generate warnings, not errors.
596
597 - If the user does not define YYSTYPE as a macro, Bison now declares it
598 using typedef instead of defining it as a macro.
599 For consistency, YYLTYPE is also declared instead of defined.
600
601 ** Other compatibility issues
602
603 - %union directives can now have a tag before the `{', e.g., the
604 directive `%union foo {...}' now generates the C code
605 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
606 The default union tag is `YYSTYPE', for compatibility with Solaris 9 Yacc.
607 For consistency, YYLTYPE's struct tag is now `YYLTYPE' not `yyltype'.
608 This is for compatibility with both Yacc and Bison 1.35.
609
610 - `;' is output before the terminating `}' of an action, for
611 compatibility with Bison 1.35.
612
613 - Bison now uses a Yacc-style format for conflict reports, e.g.,
614 `conflicts: 2 shift/reduce, 1 reduce/reduce'.
615
616 - `yystype' and `yyltype' are now obsolescent macros instead of being
617 typedefs or tags; they are no longer documented and are planned to be
618 withdrawn in a future release.
619
620 ** GLR parser notes
621
622 - GLR and inline
623 Users of Bison have to decide how they handle the portability of the
624 C keyword `inline'.
625
626 - `parsing stack overflow...' -> `parser stack overflow'
627 GLR parsers now report `parser stack overflow' as per the Bison manual.
628
629 ** Bison now warns if it detects conflicting outputs to the same file,
630 e.g., it generates a warning for `bison -d -o foo.h foo.y' since
631 that command outputs both code and header to foo.h.
632
633 ** #line in output files
634 - --no-line works properly.
635
636 ** Bison can no longer be built by a K&R C compiler; it requires C89 or
637 later to be built. This change originally took place a few versions
638 ago, but nobody noticed until we recently asked someone to try
639 building Bison with a K&R C compiler.
640 \f
641 * Changes in version 1.75, 2002-10-14:
642
643 ** Bison should now work on 64-bit hosts.
644
645 ** Indonesian translation thanks to Tedi Heriyanto.
646
647 ** GLR parsers
648 Fix spurious parse errors.
649
650 ** Pure parsers
651 Some people redefine yyerror to steal yyparse' private variables.
652 Reenable this trick until an official feature replaces it.
653
654 ** Type Clashes
655 In agreement with POSIX and with other Yaccs, leaving a default
656 action is valid when $$ is untyped, and $1 typed:
657
658 untyped: ... typed;
659
660 but the converse remains an error:
661
662 typed: ... untyped;
663
664 ** Values of mid-rule actions
665 The following code:
666
667 foo: { ... } { $$ = $1; } ...
668
669 was incorrectly rejected: $1 is defined in the second mid-rule
670 action, and is equal to the $$ of the first mid-rule action.
671 \f
672 * Changes in version 1.50, 2002-10-04:
673
674 ** GLR parsing
675 The declaration
676 %glr-parser
677 causes Bison to produce a Generalized LR (GLR) parser, capable of handling
678 almost any context-free grammar, ambiguous or not. The new declarations
679 %dprec and %merge on grammar rules allow parse-time resolution of
680 ambiguities. Contributed by Paul Hilfinger.
681
682 Unfortunately Bison 1.50 does not work properly on 64-bit hosts
683 like the Alpha, so please stick to 32-bit hosts for now.
684
685 ** Output Directory
686 When not in Yacc compatibility mode, when the output file was not
687 specified, running `bison foo/bar.y' created `foo/bar.c'. It
688 now creates `bar.c'.
689
690 ** Undefined token
691 The undefined token was systematically mapped to 2 which prevented
692 the use of 2 by the user. This is no longer the case.
693
694 ** Unknown token numbers
695 If yylex returned an out of range value, yyparse could die. This is
696 no longer the case.
697
698 ** Error token
699 According to POSIX, the error token must be 256.
700 Bison extends this requirement by making it a preference: *if* the
701 user specified that one of her tokens is numbered 256, then error
702 will be mapped onto another number.
703
704 ** Verbose error messages
705 They no longer report `..., expecting error or...' for states where
706 error recovery is possible.
707
708 ** End token
709 Defaults to `$end' instead of `$'.
710
711 ** Error recovery now conforms to documentation and to POSIX
712 When a Bison-generated parser encounters a syntax error, it now pops
713 the stack until it finds a state that allows shifting the error
714 token. Formerly, it popped the stack until it found a state that
715 allowed some non-error action other than a default reduction on the
716 error token. The new behavior has long been the documented behavior,
717 and has long been required by POSIX. For more details, please see
718 Paul Eggert, "Reductions during Bison error handling" (2002-05-20)
719 <http://lists.gnu.org/archive/html/bug-bison/2002-05/msg00038.html>.
720
721 ** Traces
722 Popped tokens and nonterminals are now reported.
723
724 ** Larger grammars
725 Larger grammars are now supported (larger token numbers, larger grammar
726 size (= sum of the LHS and RHS lengths), larger LALR tables).
727 Formerly, many of these numbers ran afoul of 16-bit limits;
728 now these limits are 32 bits on most hosts.
729
730 ** Explicit initial rule
731 Bison used to play hacks with the initial rule, which the user does
732 not write. It is now explicit, and visible in the reports and
733 graphs as rule 0.
734
735 ** Useless rules
736 Before, Bison reported the useless rules, but, although not used,
737 included them in the parsers. They are now actually removed.
738
739 ** Useless rules, useless nonterminals
740 They are now reported, as a warning, with their locations.
741
742 ** Rules never reduced
743 Rules that can never be reduced because of conflicts are now
744 reported.
745
746 ** Incorrect `Token not used'
747 On a grammar such as
748
749 %token useless useful
750 %%
751 exp: '0' %prec useful;
752
753 where a token was used to set the precedence of the last rule,
754 bison reported both `useful' and `useless' as useless tokens.
755
756 ** Revert the C++ namespace changes introduced in 1.31
757 as they caused too many portability hassles.
758
759 ** Default locations
760 By an accident of design, the default computation of @$ was
761 performed after another default computation was performed: @$ = @1.
762 The latter is now removed: YYLLOC_DEFAULT is fully responsible of
763 the computation of @$.
764
765 ** Token end-of-file
766 The token end of file may be specified by the user, in which case,
767 the user symbol is used in the reports, the graphs, and the verbose
768 error messages instead of `$end', which remains being the default.
769 For instance
770 %token MYEOF 0
771 or
772 %token MYEOF 0 "end of file"
773
774 ** Semantic parser
775 This old option, which has been broken for ages, is removed.
776
777 ** New translations
778 Brazilian Portuguese, thanks to Alexandre Folle de Menezes.
779 Croatian, thanks to Denis Lackovic.
780
781 ** Incorrect token definitions
782 When given `%token 'a' "A"', Bison used to output `#define 'a' 65'.
783
784 ** Token definitions as enums
785 Tokens are output both as the traditional #define's, and, provided
786 the compiler supports ANSI C or is a C++ compiler, as enums.
787 This lets debuggers display names instead of integers.
788
789 ** Reports
790 In addition to --verbose, bison supports --report=THINGS, which
791 produces additional information:
792 - itemset
793 complete the core item sets with their closure
794 - lookahead [changed to `look-ahead' in 1.875e through 2.3, but changed back]
795 explicitly associate lookahead tokens to items
796 - solved
797 describe shift/reduce conflicts solving.
798 Bison used to systematically output this information on top of
799 the report. Solved conflicts are now attached to their states.
800
801 ** Type clashes
802 Previous versions don't complain when there is a type clash on
803 the default action if the rule has a mid-rule action, such as in:
804
805 %type <foo> bar
806 %%
807 bar: '0' {} '0';
808
809 This is fixed.
810
811 ** GNU M4 is now required when using Bison.
812 \f
813 * Changes in version 1.35, 2002-03-25:
814
815 ** C Skeleton
816 Some projects use Bison's C parser with C++ compilers, and define
817 YYSTYPE as a class. The recent adjustment of C parsers for data
818 alignment and 64 bit architectures made this impossible.
819
820 Because for the time being no real solution for C++ parser
821 generation exists, kludges were implemented in the parser to
822 maintain this use. In the future, when Bison has C++ parsers, this
823 kludge will be disabled.
824
825 This kludge also addresses some C++ problems when the stack was
826 extended.
827 \f
828 * Changes in version 1.34, 2002-03-12:
829
830 ** File name clashes are detected
831 $ bison foo.y -d -o foo.x
832 fatal error: header and parser would both be named `foo.x'
833
834 ** A missing `;' at the end of a rule triggers a warning
835 In accordance with POSIX, and in agreement with other
836 Yacc implementations, Bison will mandate this semicolon in the near
837 future. This eases the implementation of a Bison parser of Bison
838 grammars by making this grammar LALR(1) instead of LR(2). To
839 facilitate the transition, this release introduces a warning.
840
841 ** Revert the C++ namespace changes introduced in 1.31, as they caused too
842 many portability hassles.
843
844 ** DJGPP support added.
845
846 ** Fix test suite portability problems.
847 \f
848 * Changes in version 1.33, 2002-02-07:
849
850 ** Fix C++ issues
851 Groff could not be compiled for the definition of size_t was lacking
852 under some conditions.
853
854 ** Catch invalid @n
855 As is done with $n.
856 \f
857 * Changes in version 1.32, 2002-01-23:
858
859 ** Fix Yacc output file names
860
861 ** Portability fixes
862
863 ** Italian, Dutch translations
864 \f
865 * Changes in version 1.31, 2002-01-14:
866
867 ** Many Bug Fixes
868
869 ** GNU Gettext and %expect
870 GNU Gettext asserts 10 s/r conflicts, but there are 7. Now that
871 Bison dies on incorrect %expectations, we fear there will be
872 too many bug reports for Gettext, so _for the time being_, %expect
873 does not trigger an error when the input file is named `plural.y'.
874
875 ** Use of alloca in parsers
876 If YYSTACK_USE_ALLOCA is defined to 0, then the parsers will use
877 malloc exclusively. Since 1.29, but was not NEWS'ed.
878
879 alloca is used only when compiled with GCC, to avoid portability
880 problems as on AIX.
881
882 ** yyparse now returns 2 if memory is exhausted; formerly it dumped core.
883
884 ** When the generated parser lacks debugging code, YYDEBUG is now 0
885 (as POSIX requires) instead of being undefined.
886
887 ** User Actions
888 Bison has always permitted actions such as { $$ = $1 }: it adds the
889 ending semicolon. Now if in Yacc compatibility mode, the semicolon
890 is no longer output: one has to write { $$ = $1; }.
891
892 ** Better C++ compliance
893 The output parsers try to respect C++ namespaces.
894 [This turned out to be a failed experiment, and it was reverted later.]
895
896 ** Reduced Grammars
897 Fixed bugs when reporting useless nonterminals.
898
899 ** 64 bit hosts
900 The parsers work properly on 64 bit hosts.
901
902 ** Error messages
903 Some calls to strerror resulted in scrambled or missing error messages.
904
905 ** %expect
906 When the number of shift/reduce conflicts is correct, don't issue
907 any warning.
908
909 ** The verbose report includes the rule line numbers.
910
911 ** Rule line numbers are fixed in traces.
912
913 ** Swedish translation
914
915 ** Parse errors
916 Verbose parse error messages from the parsers are better looking.
917 Before: parse error: unexpected `'/'', expecting `"number"' or `'-'' or `'(''
918 Now: parse error: unexpected '/', expecting "number" or '-' or '('
919
920 ** Fixed parser memory leaks.
921 When the generated parser was using malloc to extend its stacks, the
922 previous allocations were not freed.
923
924 ** Fixed verbose output file.
925 Some newlines were missing.
926 Some conflicts in state descriptions were missing.
927
928 ** Fixed conflict report.
929 Option -v was needed to get the result.
930
931 ** %expect
932 Was not used.
933 Mismatches are errors, not warnings.
934
935 ** Fixed incorrect processing of some invalid input.
936
937 ** Fixed CPP guards: 9foo.h uses BISON_9FOO_H instead of 9FOO_H.
938
939 ** Fixed some typos in the documentation.
940
941 ** %token MY_EOF 0 is supported.
942 Before, MY_EOF was silently renumbered as 257.
943
944 ** doc/refcard.tex is updated.
945
946 ** %output, %file-prefix, %name-prefix.
947 New.
948
949 ** --output
950 New, aliasing `--output-file'.
951 \f
952 * Changes in version 1.30, 2001-10-26:
953
954 ** `--defines' and `--graph' have now an optional argument which is the
955 output file name. `-d' and `-g' do not change; they do not take any
956 argument.
957
958 ** `%source_extension' and `%header_extension' are removed, failed
959 experiment.
960
961 ** Portability fixes.
962 \f
963 * Changes in version 1.29, 2001-09-07:
964
965 ** The output file does not define const, as this caused problems when used
966 with common autoconfiguration schemes. If you still use ancient compilers
967 that lack const, compile with the equivalent of the C compiler option
968 `-Dconst='. autoconf's AC_C_CONST macro provides one way to do this.
969
970 ** Added `-g' and `--graph'.
971
972 ** The Bison manual is now distributed under the terms of the GNU FDL.
973
974 ** The input and the output files has automatically a similar extension.
975
976 ** Russian translation added.
977
978 ** NLS support updated; should hopefully be less troublesome.
979
980 ** Added the old Bison reference card.
981
982 ** Added `--locations' and `%locations'.
983
984 ** Added `-S' and `--skeleton'.
985
986 ** `%raw', `-r', `--raw' is disabled.
987
988 ** Special characters are escaped when output. This solves the problems
989 of the #line lines with path names including backslashes.
990
991 ** New directives.
992 `%yacc', `%fixed_output_files', `%defines', `%no_parser', `%verbose',
993 `%debug', `%source_extension' and `%header_extension'.
994
995 ** @$
996 Automatic location tracking.
997 \f
998 * Changes in version 1.28, 1999-07-06:
999
1000 ** Should compile better now with K&R compilers.
1001
1002 ** Added NLS.
1003
1004 ** Fixed a problem with escaping the double quote character.
1005
1006 ** There is now a FAQ.
1007 \f
1008 * Changes in version 1.27:
1009
1010 ** The make rule which prevented bison.simple from being created on
1011 some systems has been fixed.
1012 \f
1013 * Changes in version 1.26:
1014
1015 ** Bison now uses automake.
1016
1017 ** New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>.
1018
1019 ** Token numbers now start at 257 as previously documented, not 258.
1020
1021 ** Bison honors the TMPDIR environment variable.
1022
1023 ** A couple of buffer overruns have been fixed.
1024
1025 ** Problems when closing files should now be reported.
1026
1027 ** Generated parsers should now work even on operating systems which do
1028 not provide alloca().
1029 \f
1030 * Changes in version 1.25, 1995-10-16:
1031
1032 ** Errors in the input grammar are not fatal; Bison keeps reading
1033 the grammar file, and reports all the errors found in it.
1034
1035 ** Tokens can now be specified as multiple-character strings: for
1036 example, you could use "<=" for a token which looks like <=, instead
1037 of chosing a name like LESSEQ.
1038
1039 ** The %token_table declaration says to write a table of tokens (names
1040 and numbers) into the parser file. The yylex function can use this
1041 table to recognize multiple-character string tokens, or for other
1042 purposes.
1043
1044 ** The %no_lines declaration says not to generate any #line preprocessor
1045 directives in the parser file.
1046
1047 ** The %raw declaration says to use internal Bison token numbers, not
1048 Yacc-compatible token numbers, when token names are defined as macros.
1049
1050 ** The --no-parser option produces the parser tables without including
1051 the parser engine; a project can now use its own parser engine.
1052 The actions go into a separate file called NAME.act, in the form of
1053 a switch statement body.
1054 \f
1055 * Changes in version 1.23:
1056
1057 The user can define YYPARSE_PARAM as the name of an argument to be
1058 passed into yyparse. The argument should have type void *. It should
1059 actually point to an object. Grammar actions can access the variable
1060 by casting it to the proper pointer type.
1061
1062 Line numbers in output file corrected.
1063 \f
1064 * Changes in version 1.22:
1065
1066 --help option added.
1067 \f
1068 * Changes in version 1.20:
1069
1070 Output file does not redefine const for C++.
1071
1072 Local Variables:
1073 mode: outline
1074 End:
1075
1076 -----
1077
1078 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
1079 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
1080
1081 This file is part of Bison, the GNU Parser Generator.
1082
1083 This program is free software: you can redistribute it and/or modify
1084 it under the terms of the GNU General Public License as published by
1085 the Free Software Foundation, either version 3 of the License, or
1086 (at your option) any later version.
1087
1088 This program is distributed in the hope that it will be useful,
1089 but WITHOUT ANY WARRANTY; without even the implied warranty of
1090 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1091 GNU General Public License for more details.
1092
1093 You should have received a copy of the GNU General Public License
1094 along with this program. If not, see <http://www.gnu.org/licenses/>.