d: change the name of the custom error message function to reportSyntaxError
[bison.git] / NEWS
blobcdbd53f00bb3a0d76dd224d60d175284939c6183
1 GNU Bison NEWS
3 * Noteworthy changes in release ?.? (????-??-??) [?]
5 ** Changes
7 ** New features
9 *** Option -H, --header and directive %header
11   The option -H/--header supersedes the option --defines, and the directive
12   %header supersedes %defines.  Both --defines and %defines are, of course,
13   maintained for backward compatibility.
15 *** Option --html
17   Since version 2.4 Bison can be used to generate HTML reports.  However it
18   was a two-step process: first bison must be invoked with option --xml, and
19   then xsltproc must be run to the convert the XML reports into HTML.
21   The new option --html combines these steps.  The xsltproc program must be
22   available.
24 *** A C++ native GLR parser
26   A new version of the generated C++ GLR parser was added as "glr2.cc". It
27   is forked from the existing glr.c/cc parser, with the objective of making
28   it a more modern, truly C++ parser (instead of a C++ wrapper around a C
29   parser).  Down the line, the goal is to support `%define api.value.type
30   variant` and maybe share code with lalr1.cc.
32   The current parser should be identical in terms of interface, functionality
33   and performance to "glr.cc". To try it out, simply use
35   %skeleton "glr2.cc"
37 *** Counterexamples
39   Counterexamples now show the rule numbers, and always show ε for rules
40   with an empty right-hand side.  For instance
42     exp
43     ↳ 1: e1       e2     "a"
44          ↳ 3: ε • ↳ 1: ε
46   instead of
48     exp
49     ↳ e1  e2  "a"
50       ↳ • ↳ ε
52 *** Lookahead correction in Java
54   The Java skeleton (lalr1.java) now supports LAC, via the %define variable
55   parse.lac.
58 * Noteworthy changes in release 3.7.4 (2020-11-14) [stable]
60 ** Bug fixes
62 *** Bug fixes in yacc.c
64   In Yacc mode, all the tokens are defined twice: once as an enum, and then
65   as a macro.  YYEMPTY was missing its macro.
67 *** Bug fixes in lalr1.cc
69   The lalr1.cc skeleton used to emit internal assertions (using YY_ASSERT)
70   even when the `parse.assert` %define variable is not enabled.  It no
71   longer does.
73   The private internal macro YY_ASSERT now obeys the `api.prefix` %define
74   variable.
76   When there is a very large number of tokens, some assertions could be long
77   enough to hit arbitrary limits in Visual C++.  They have been rewritten to
78   work around this limitation.
80 ** Changes
82   The YYBISON macro in generated "regular C parsers" (from the "yacc.c"
83   skeleton) used to be defined to 1.  It is now defined to the version of
84   Bison as an integer (e.g., 30704 for version 3.7.4).
87 * Noteworthy changes in release 3.7.3 (2020-10-13) [stable]
89 ** Bug fixes
91   Fix concurrent build issues.
93   The bison executable is no longer linked uselessly against libreadline.
95   Fix incorrect use of yytname in glr.cc.
98 * Noteworthy changes in release 3.7.2 (2020-09-05) [stable]
100   This release of Bison fixes all known bugs reported for Bison in MITRE's
101   Common Vulnerabilities and Exposures (CVE) system.  These vulnerabilities
102   are only about bison-the-program itself, not the generated code.
104   Although these bugs are typically irrelevant to how Bison is used, they
105   are worth fixing if only to give users peace of mind.
107   There is no known vulnerability in the generated parsers.
109 ** Bug fixes
111   Fix concurrent build issues (introduced in Bison 3.5).
113   Push parsers always use YYMALLOC/YYFREE (no direct calls to malloc/free).
115   Fix portability issues of the test suite, and of bison itself.
117   Some unlikely crashes found by fuzzing have been fixed.  This is only
118   about bison itself, not the generated parsers.
121 * Noteworthy changes in release 3.7.1 (2020-08-02) [stable]
123 ** Bug fixes
125   Crash when a token alias contains a NUL byte.
127   Portability issues with libtextstyle.
129   Portability issues of Bison itself with MSVC.
131 ** Changes
133   Improvements and fixes in the documentation.
135   More precise location about symbol type redefinitions.
138 * Noteworthy changes in release 3.7 (2020-07-23) [stable]
140 ** Deprecated features
142   The YYPRINT macro, which works only with yacc.c and only for tokens, was
143   obsoleted long ago by %printer, introduced in Bison 1.50 (November 2002).
144   It is deprecated and its support will be removed eventually.
146   In conformance with the recommendations of the Graphviz team, in the next
147   version Bison the option `--graph` will generate a *.gv file by default,
148   instead of *.dot.  A transition started in Bison 3.4.
150 ** New features
152 *** Counterexample Generation
154   Contributed by Vincent Imbimbo.
156   When given `-Wcounterexamples`/`-Wcex`, bison will now output
157   counterexamples for conflicts.
159 **** Unifying Counterexamples
161   Unifying counterexamples are strings which can be parsed in two ways due
162   to the conflict.  For example on a grammar that contains the usual
163   "dangling else" ambiguity:
165     $ bison else.y
166     else.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
167     else.y: note: rerun with option '-Wcounterexamples' to generate conflict counterexamples
169     $ bison else.y -Wcex
170     else.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
171     else.y: warning: shift/reduce conflict on token "else" [-Wcounterexamples]
172       Example: "if" exp "then" "if" exp "then" exp • "else" exp
173       Shift derivation
174         exp
175         ↳ "if" exp "then" exp
176                           ↳ "if" exp "then" exp • "else" exp
177       Example: "if" exp "then" "if" exp "then" exp • "else" exp
178       Reduce derivation
179         exp
180         ↳ "if" exp "then" exp                     "else" exp
181                           ↳ "if" exp "then" exp •
183   When text styling is enabled, colors are used in the examples and the
184   derivations to highlight the structure of both analyses.  In this case,
186     "if" exp "then" [ "if" exp "then" exp • ] "else" exp
188   vs.
190     "if" exp "then" [ "if" exp "then" exp • "else" exp ]
193   The counterexamples are "focused", in two different ways.  First, they do
194   not clutter the output with all the derivations from the start symbol,
195   rather they start on the "conflicted nonterminal". They go straight to the
196   point.  Second, they don't "expand" nonterminal symbols uselessly.
198 **** Nonunifying Counterexamples
200   In the case of the dangling else, Bison found an example that can be
201   parsed in two ways (therefore proving that the grammar is ambiguous).
202   When it cannot find such an example, it instead generates two examples
203   that are the same up until the dot:
205     $ bison foo.y
206     foo.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
207     foo.y: note: rerun with option '-Wcounterexamples' to generate conflict counterexamples
208     foo.y:4.4-7: warning: rule useless in parser due to conflicts [-Wother]
209         4 | a: expr
210           |    ^~~~
212     $ bison -Wcex foo.y
213     foo.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
214     foo.y: warning: shift/reduce conflict on token ID [-Wcounterexamples]
215       First example: expr • ID ',' ID $end
216       Shift derivation
217         $accept
218         ↳ s                      $end
219           ↳ a                 ID
220             ↳ expr
221               ↳ expr • ID ','
222       Second example: expr • ID $end
223       Reduce derivation
224         $accept
225         ↳ s             $end
226           ↳ a        ID
227             ↳ expr •
228     foo.y:4.4-7: warning: rule useless in parser due to conflicts [-Wother]
229         4 | a: expr
230           |    ^~~~
232   In these cases, the parser usually doesn't have enough lookahead to
233   differentiate the two given examples.
235 **** Reports
237   Counterexamples are also included in the report when given
238   `--report=counterexamples`/`-rcex` (or `--report=all`), with more
239   technical details:
241     State 7
243       1 exp: "if" exp "then" exp •  [$end, "then", "else"]
244       2    | "if" exp "then" exp • "else" exp
246       "else"  shift, and go to state 8
248       "else"    [reduce using rule 1 (exp)]
249       $default  reduce using rule 1 (exp)
251       shift/reduce conflict on token "else":
252           1 exp: "if" exp "then" exp •
253           2 exp: "if" exp "then" exp • "else" exp
254         Example: "if" exp "then" "if" exp "then" exp • "else" exp
255         Shift derivation
256           exp
257           ↳ "if" exp "then" exp
258                             ↳ "if" exp "then" exp • "else" exp
259         Example: "if" exp "then" "if" exp "then" exp • "else" exp
260         Reduce derivation
261           exp
262           ↳ "if" exp "then" exp                     "else" exp
263                             ↳ "if" exp "then" exp •
265 *** File prefix mapping
267   Contributed by Joshua Watt.
269   Bison learned a new argument, `--file-prefix-map OLD=NEW`.  Any file path
270   in the output (specifically `#line` directives and `#ifdef` header guards)
271   that begins with the prefix OLD will have it replaced with the prefix NEW,
272   similar to the `-ffile-prefix-map` in GCC.  This option can be used to
273   make bison output reproducible.
275 ** Changes
277 *** Diagnostics
279   When text styling is enabled and the terminal supports it, the warnings
280   now include hyperlinks to the documentation.
282 *** Relocatable installation
284   When installed to be relocatable (via `configure --enable-relocatable`),
285   bison will now also look for a relocated m4.
287 *** C++ file names
289   The `filename_type` %define variable was renamed `api.filename.type`.
290   Instead of
292     %define filename_type "symbol"
294   write
296     %define api.filename.type {symbol}
298   (Or let `bison --update` do it for you).
300   It now defaults to `const std::string` instead of `std::string`.
302 *** Deprecated %define variable names
304   The following variables have been renamed for consistency.  Backward
305   compatibility is ensured, but upgrading is recommended.
307     filename_type       -> api.filename.type
308     package             -> api.package
310 *** Push parsers no longer clear their state when parsing is finished
312   Previously push-parsers cleared their state when parsing was finished (on
313   success and on failure).  This made it impossible to check if there were
314   parse errors, since `yynerrs` was also reset.  This can be especially
315   troublesome when used in autocompletion, since a parser with error
316   recovery would suggest (irrelevant) expected tokens even if there were
317   failure.
319   Now the parser state can be examined when parsing is finished.  The parser
320   state is reset when starting a new parse.
322 ** Documentation
324 *** Examples
326   The bistromathic demonstrates %param and how to quote sources in the error
327   messages:
329     > 123 456
330     1.5-7: syntax error: expected end of file or + or - or * or / or ^ before number
331         1 | 123 456
332           |     ^~~
334 ** Bug fixes
336 *** Include the generated header (yacc.c)
338   Historically, when --defines was used, bison generated a header and pasted
339   an exact copy of it into the generated parser implementation file.  Since
340   Bison 3.4 it is possible to specify that the header should be `#include`d,
341   and how.  For instance
343     %define api.header.include {"parse.h"}
345   or
347     %define api.header.include {<parser/parse.h>}
349   Now api.header.include defaults to `"header-basename"`, as was intended in
350   Bison 3.4, where `header-basename` is the basename of the generated
351   header.  This is disabled when the generated header is `y.tab.h`, to
352   comply with Automake's ylwrap.
354 *** String aliases are faithfully propagated
356   Bison used to interpret user strings (i.e., decoding backslash escapes)
357   when reading them, and to escape them (i.e., issue non-printable
358   characters as backslash escapes, taking the locale into account) when
359   outputting them.  As a consequence non-ASCII strings (say in UTF-8) ended
360   up "ciphered" as sequences of backslash escapes.  This happened not only
361   in the generated sources (where the compiler will reinterpret them), but
362   also in all the generated reports (text, xml, html, dot, etc.).  Reports
363   were therefore not readable when string aliases were not pure ASCII.
364   Worse yet: the output depended on the user's locale.
366   Now Bison faithfully treats the string aliases exactly the way the user
367   spelled them.  This fixes all the aforementioned problems.  However, now,
368   string aliases semantically equivalent but syntactically different (e.g.,
369   "A", "\x41", "\101") are considered to be different.
371 *** Crash when generating IELR
373   An old, well hidden, bug in the generation of IELR parsers was fixed.
376 * Noteworthy changes in release 3.6.4 (2020-06-15) [stable]
378 ** Bug fixes
380   In glr.cc some internal macros leaked in the user's code, and could damage
381   access to the token kinds.
384 * Noteworthy changes in release 3.6.3 (2020-06-03) [stable]
386 ** Bug fixes
388   Incorrect comments in the generated parsers.
390   Warnings in push parsers (yacc.c).
392   Incorrect display of gotos in LAC traces (lalr1.cc).
395 * Noteworthy changes in release 3.6.2 (2020-05-17) [stable]
397 ** Bug fixes
399   Some tests were fixed.
401   When token aliases contain comment delimiters:
403     %token FOO "/* foo */"
405   bison used to emit "nested" comments, which is invalid C.
408 * Noteworthy changes in release 3.6.1 (2020-05-10) [stable]
410 ** Bug fixes
412   Restored ANSI-C compliance in yacc.c.
414   GNU readline portability issues.
416   In C++, yy::parser::symbol_name is now a public member, as was intended.
418 ** New features
420   In C++, yy::parser::symbol_type now has a public name() member function.
423 * Noteworthy changes in release 3.6 (2020-05-08) [stable]
425 ** Backward incompatible changes
427   TL;DR: replace "#define YYERROR_VERBOSE 1" by "%define parse.error verbose".
429   The YYERROR_VERBOSE macro is no longer supported; the parsers that still
430   depend on it will now produce Yacc-like error messages (just "syntax
431   error").  It was superseded by the "%error-verbose" directive in Bison
432   1.875 (2003-01-01).  Bison 2.6 (2012-07-19) clearly announced that support
433   for YYERROR_VERBOSE would be removed.  Note that since Bison 3.0
434   (2013-07-25), "%error-verbose" is deprecated in favor of "%define
435   parse.error verbose".
437 ** Deprecated features
439   The YYPRINT macro, which works only with yacc.c and only for tokens, was
440   obsoleted long ago by %printer, introduced in Bison 1.50 (November 2002).
441   It is deprecated and its support will be removed eventually.
443 ** New features
445 *** Improved syntax error messages
447   Two new values for the %define parse.error variable offer more control to
448   the user.  Available in all the skeletons (C, C++, Java).
450 **** %define parse.error detailed
452   The behavior of "%define parse.error detailed" is closely resembling that
453   of "%define parse.error verbose" with a few exceptions.  First, it is safe
454   to use non-ASCII characters in token aliases (with 'verbose', the result
455   depends on the locale with which bison was run).  Second, a yysymbol_name
456   function is exposed to the user, instead of the yytnamerr function and the
457   yytname table.  Third, token internationalization is supported (see
458   below).
460 **** %define parse.error custom
462   With this directive, the user forges and emits the syntax error message
463   herself by defining the yyreport_syntax_error function.  A new type,
464   yypcontext_t, captures the circumstances of the error, and provides the
465   user with functions to get details, such as yypcontext_expected_tokens to
466   get the list of expected token kinds.
468   A possible implementation of yyreport_syntax_error is:
470     int
471     yyreport_syntax_error (const yypcontext_t *ctx)
472     {
473       int res = 0;
474       YY_LOCATION_PRINT (stderr, *yypcontext_location (ctx));
475       fprintf (stderr, ": syntax error");
476       // Report the tokens expected at this point.
477       {
478         enum { TOKENMAX = 10 };
479         yysymbol_kind_t expected[TOKENMAX];
480         int n = yypcontext_expected_tokens (ctx, expected, TOKENMAX);
481         if (n < 0)
482           // Forward errors to yyparse.
483           res = n;
484         else
485           for (int i = 0; i < n; ++i)
486             fprintf (stderr, "%s %s",
487                      i == 0 ? ": expected" : " or", yysymbol_name (expected[i]));
488       }
489       // Report the unexpected token.
490       {
491         yysymbol_kind_t lookahead = yypcontext_token (ctx);
492         if (lookahead != YYSYMBOL_YYEMPTY)
493           fprintf (stderr, " before %s", yysymbol_name (lookahead));
494       }
495       fprintf (stderr, "\n");
496       return res;
497     }
499 **** Token aliases internationalization
501   When the %define variable parse.error is set to `custom` or `detailed`,
502   one may specify which token aliases are to be translated using _().  For
503   instance
505     %token
506         PLUS   "+"
507         MINUS  "-"
508       <double>
509         NUM _("number")
510       <symrec*>
511         FUN _("function")
512         VAR _("variable")
514   In that case the user must define _() and N_(), and yysymbol_name returns
515   the translated symbol (i.e., it returns '_("variable")' rather that
516   '"variable"').  In Java, the user must provide an i18n() function.
518 *** List of expected tokens (yacc.c)
520   Push parsers may invoke yypstate_expected_tokens at any point during
521   parsing (including even before submitting the first token) to get the list
522   of possible tokens.  This feature can be used to propose autocompletion
523   (see below the "bistromathic" example).
525   It makes little sense to use this feature without enabling LAC (lookahead
526   correction).
528 *** Returning the error token
530   When the scanner returns an invalid token or the undefined token
531   (YYUNDEF), the parser generates an error message and enters error
532   recovery.  Because of that error message, most scanners that find lexical
533   errors generate an error message, and then ignore the invalid input
534   without entering the error-recovery.
536   The scanners may now return YYerror, the error token, to enter the
537   error-recovery mode without triggering an additional error message.  See
538   the bistromathic for an example.
540 *** Deep overhaul of the symbol and token kinds
542   To avoid the confusion with types in programming languages, we now refer
543   to token and symbol "kinds" instead of token and symbol "types".  The
544   documentation and error messages have been revised.
546   All the skeletons have been updated to use dedicated enum types rather
547   than integral types.  Special symbols are now regular citizens, instead of
548   being declared in ad hoc ways.
550 **** Token kinds
552   The "token kind" is what is returned by the scanner, e.g., PLUS, NUMBER,
553   LPAREN, etc.  While backward compatibility is of course ensured, users are
554   nonetheless invited to replace their uses of "enum yytokentype" by
555   "yytoken_kind_t".
557   This type now also includes tokens that were previously hidden: YYEOF (end
558   of input), YYUNDEF (undefined token), and YYerror (error token).  They
559   now have string aliases, internationalized when internationalization is
560   enabled.  Therefore, by default, error messages now refer to "end of file"
561   (internationalized) rather than the cryptic "$end", or to "invalid token"
562   rather than "$undefined".
564   Therefore in most cases it is now useless to define the end-of-line token
565   as follows:
567     %token T_EOF 0 "end of file"
569   Rather simply use "YYEOF" in your scanner.
571 **** Symbol kinds
573   The "symbol kinds" is what the parser actually uses.  (Unless the
574   api.token.raw %define variable is used, the symbol kind of a terminal
575   differs from the corresponding token kind.)
577   They are now exposed as a enum, "yysymbol_kind_t".
579   This allows users to tailor the error messages the way they want, or to
580   process some symbols in a specific way in autocompletion (see the
581   bistromathic example below).
583 *** Modernize display of explanatory statements in diagnostics
585   Since Bison 2.7, output was indented four spaces for explanatory
586   statements.  For example:
588     input.y:2.7-13: error: %type redeclaration for exp
589     input.y:1.7-11:     previous declaration
591   Since the introduction of caret-diagnostics, it became less clear.  This
592   indentation has been removed and submessages are displayed similarly as in
593   GCC:
595     input.y:2.7-13: error: %type redeclaration for exp
596         2 | %type <float> exp
597           |       ^~~~~~~
598     input.y:1.7-11: note: previous declaration
599         1 | %type <int> exp
600           |       ^~~~~
602   Contributed by Victor Morales Cayuela.
604 *** C++
606   The token and symbol kinds are yy::parser::token_kind_type and
607   yy::parser::symbol_kind_type.
609   The symbol_type::kind() member function allows to get the kind of a
610   symbol.  This can be used to write unit tests for scanners, e.g.,
612     yy::parser::symbol_type t = make_NUMBER ("123");
613     assert (t.kind () == yy::parser::symbol_kind::S_NUMBER);
614     assert (t.value.as<int> () == 123);
616 ** Documentation
618 *** User Manual
620   In order to avoid ambiguities with "type" as in "typing", we now refer to
621   the "token kind" (e.g., `PLUS`, `NUMBER`, etc.) rather than the "token
622   type".  We now also refer to the "symbol type" (e.g., `PLUS`, `expr`,
623   etc.).
625 *** Examples
627   There are now examples/java: a very simple calculator, and a more complete
628   one (push-parser, location tracking, and debug traces).
630   The lexcalc example (a simple example in C based on Flex and Bison) now
631   also demonstrates location tracking.
634   A new C example, bistromathic, is a fully featured interactive calculator
635   using many Bison features: pure interface, push parser, autocompletion
636   based on the current parser state (using yypstate_expected_tokens),
637   location tracking, internationalized custom error messages, lookahead
638   correction, rich debug traces, etc.
640   It shows how to depend on the symbol kinds to tailor autocompletion.  For
641   instance it recognizes the symbol kind "VARIABLE" to propose
642   autocompletion on the existing variables, rather than of the word
643   "variable".
646 * Noteworthy changes in release 3.5.4 (2020-04-05) [stable]
648 ** WARNING: Future backward-incompatibilities!
650   TL;DR: replace "#define YYERROR_VERBOSE 1" by "%define parse.error verbose".
652   Bison 3.6 will no longer support the YYERROR_VERBOSE macro; the parsers
653   that still depend on it will produce Yacc-like error messages (just
654   "syntax error").  It was superseded by the "%error-verbose" directive in
655   Bison 1.875 (2003-01-01).  Bison 2.6 (2012-07-19) clearly announced that
656   support for YYERROR_VERBOSE would be removed.  Note that since Bison 3.0
657   (2013-07-25), "%error-verbose" is deprecated in favor of "%define
658   parse.error verbose".
660 ** Bug fixes
662   Fix portability issues of the package itself on old compilers.
664   Fix api.token.raw support in Java.
667 * Noteworthy changes in release 3.5.3 (2020-03-08) [stable]
669 ** Bug fixes
671   Error messages could quote lines containing zero-width characters (such as
672   \005) with incorrect styling.  Fixes for similar issues with unexpectedly
673   short lines (e.g., the file was changed between parsing and diagnosing).
675   Some unlikely crashes found by fuzzing have been fixed.  This is only
676   about bison itself, not the generated parsers.
679 * Noteworthy changes in release 3.5.2 (2020-02-13) [stable]
681 ** Bug fixes
683   Portability issues and minor cosmetic issues.
685   The lalr1.cc skeleton properly rejects unsupported values for parse.lac
686   (as yacc.c does).
689 * Noteworthy changes in release 3.5.1 (2020-01-19) [stable]
691 ** Bug fixes
693   Portability fixes.
695   Fix compiler warnings.
698 * Noteworthy changes in release 3.5 (2019-12-11) [stable]
700 ** Backward incompatible changes
702   Lone carriage-return characters (aka \r or ^M) in the grammar files are no
703   longer treated as end-of-lines.  This changes the diagnostics, and in
704   particular their locations.
706   In C++, line numbers and columns are now represented as 'int' not
707   'unsigned', so that integer overflow on positions is easily checkable via
708   'gcc -fsanitize=undefined' and the like.  This affects the API for
709   positions.  The default position and location classes now expose
710   'counter_type' (int), used to define line and column numbers.
712 ** Deprecated features
714   The YYPRINT macro, which works only with yacc.c and only for tokens, was
715   obsoleted long ago by %printer, introduced in Bison 1.50 (November 2002).
716   It is deprecated and its support will be removed eventually.
718 ** New features
720 *** Lookahead correction in C++
722   Contributed by Adrian Vogelsgesang.
724   The C++ deterministic skeleton (lalr1.cc) now supports LAC, via the
725   %define variable parse.lac.
727 *** Variable api.token.raw: Optimized token numbers (all skeletons)
729   In the generated parsers, tokens have two numbers: the "external" token
730   number as returned by yylex (which starts at 257), and the "internal"
731   symbol number (which starts at 3).  Each time yylex is called, a table
732   lookup maps the external token number to the internal symbol number.
734   When the %define variable api.token.raw is set, tokens are assigned their
735   internal number, which saves one table lookup per token, and also saves
736   the generation of the mapping table.
738   The gain is typically moderate, but in extreme cases (very simple user
739   actions), a 10% improvement can be observed.
741 *** Generated parsers use better types for states
743   Stacks now use the best integral type for state numbers, instead of always
744   using 15 bits.  As a result "small" parsers now have a smaller memory
745   footprint (they use 8 bits), and there is support for large automata (16
746   bits), and extra large (using int, i.e., typically 31 bits).
748 *** Generated parsers prefer signed integer types
750   Bison skeletons now prefer signed to unsigned integer types when either
751   will do, as the signed types are less error-prone and allow for better
752   checking with 'gcc -fsanitize=undefined'.  Also, the types chosen are now
753   portable to unusual machines where char, short and int are all the same
754   width.  On non-GNU platforms this may entail including <limits.h> and (if
755   available) <stdint.h> to define integer types and constants.
757 *** A skeleton for the D programming language
759   For the last few releases, Bison has shipped a stealth experimental
760   skeleton: lalr1.d.  It was first contributed by Oliver Mangold, based on
761   Paolo Bonzini's lalr1.java, and was cleaned and improved thanks to
762   H. S. Teoh.
764   However, because nobody has committed to improving, testing, and
765   documenting this skeleton, it is not clear that it will be supported in
766   the future.
768   The lalr1.d skeleton *is functional*, and works well, as demonstrated in
769   examples/d/calc.d.  Please try it, enjoy it, and... commit to support it.
771 *** Debug traces in Java
773   The Java backend no longer emits code and data for parser tracing if the
774   %define variable parse.trace is not defined.
776 ** Diagnostics
778 *** New diagnostic: -Wdangling-alias
780   String literals, which allow for better error messages, are (too)
781   liberally accepted by Bison, which might result in silent errors.  For
782   instance
784     %type <exVal> cond "condition"
786   does not define "condition" as a string alias to 'cond' (nonterminal
787   symbols do not have string aliases).  It is rather equivalent to
789     %nterm <exVal> cond
790     %token <exVal> "condition"
792   i.e., it gives the type 'exVal' to the "condition" token, which was
793   clearly not the intention.
795   Also, because string aliases need not be defined, typos such as "baz"
796   instead of "bar" will be not reported.
798   The option -Wdangling-alias catches these situations.  On
800     %token BAR "bar"
801     %type <ival> foo "foo"
802     %%
803     foo: "baz" {}
805   bison -Wdangling-alias reports
807     warning: string literal not attached to a symbol
808           | %type <ival> foo "foo"
809           |                  ^~~~~
810     warning: string literal not attached to a symbol
811           | foo: "baz" {}
812           |      ^~~~~
814    The -Wall option does not (yet?) include -Wdangling-alias.
816 *** Better POSIX Yacc compatibility diagnostics
818   POSIX Yacc restricts %type to nonterminals.  This is now diagnosed by
819   -Wyacc.
821     %token TOKEN1
822     %type  <ival> TOKEN1 TOKEN2 't'
823     %token TOKEN2
824     %%
825     expr:
827   gives with -Wyacc
829     input.y:2.15-20: warning: POSIX yacc reserves %type to nonterminals [-Wyacc]
830         2 | %type  <ival> TOKEN1 TOKEN2 't'
831           |               ^~~~~~
832     input.y:2.29-31: warning: POSIX yacc reserves %type to nonterminals [-Wyacc]
833         2 | %type  <ival> TOKEN1 TOKEN2 't'
834           |                             ^~~
835     input.y:2.22-27: warning: POSIX yacc reserves %type to nonterminals [-Wyacc]
836         2 | %type  <ival> TOKEN1 TOKEN2 't'
837           |                      ^~~~~~
839 *** Diagnostics with insertion
841   The diagnostics now display the suggestion below the underlined source.
842   Replacement for undeclared symbols are now also suggested.
844     $ cat /tmp/foo.y
845     %%
846     list: lis '.' |
848     $ bison -Wall foo.y
849     foo.y:2.7-9: error: symbol 'lis' is used, but is not defined as a token and has no rules; did you mean 'list'?
850         2 | list: lis '.' |
851           |       ^~~
852           |       list
853     foo.y:2.16: warning: empty rule without %empty [-Wempty-rule]
854         2 | list: lis '.' |
855           |                ^
856           |                %empty
857     foo.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
859 *** Diagnostics about long lines
861   Quoted sources may now be truncated to fit the screen.  For instance, on a
862   30-column wide terminal:
864     $ cat foo.y
865     %token FOO                       FOO                         FOO
866     %%
867     exp: FOO
868     $ bison foo.y
869     foo.y:1.34-36: warning: symbol FOO redeclared [-Wother]
870         1 | …         FOO                  …
871           |           ^~~
872     foo.y:1.8-10:      previous declaration
873         1 | %token FOO                     …
874           |        ^~~
875     foo.y:1.62-64: warning: symbol FOO redeclared [-Wother]
876         1 | …         FOO
877           |           ^~~
878     foo.y:1.8-10:      previous declaration
879         1 | %token FOO                     …
880           |        ^~~
882 ** Changes
884 *** Debugging glr.c and glr.cc
886   The glr.c skeleton always had asserts to check its own behavior (not the
887   user's).  These assertions are now under the control of the parse.assert
888   %define variable (disabled by default).
890 *** Clean up
892   Several new compiler warnings in the generated output have been avoided.
893   Some unused features are no longer emitted.  Cleaner generated code in
894   general.
896 ** Bug Fixes
898   Portability issues in the test suite.
900   In theory, parsers using %nonassoc could crash when reporting verbose
901   error messages. This unlikely bug has been fixed.
903   In Java, %define api.prefix was ignored.  It now behaves as expected.
906 * Noteworthy changes in release 3.4.2 (2019-09-12) [stable]
908 ** Bug fixes
910   In some cases, when warnings are disabled, bison could emit tons of white
911   spaces as diagnostics.
913   When running out of memory, bison could crash (found by fuzzing).
915   When defining twice the EOF token, bison would crash.
917   New warnings from recent compilers have been addressed in the generated
918   parsers (yacc.c, glr.c, glr.cc).
920   When lone carriage-return characters appeared in the input file,
921   diagnostics could hang forever.
924 * Noteworthy changes in release 3.4.1 (2019-05-22) [stable]
926 ** Bug fixes
928   Portability fixes.
931 * Noteworthy changes in release 3.4 (2019-05-19) [stable]
933 ** Deprecated features
935   The %pure-parser directive is deprecated in favor of '%define api.pure'
936   since Bison 2.3b (2008-05-27), but no warning was issued; there is one
937   now.  Note that since Bison 2.7 you are strongly encouraged to use
938   '%define api.pure full' instead of '%define api.pure'.
940 ** New features
942 *** Colored diagnostics
944   As an experimental feature, diagnostics are now colored, controlled by the
945   new options --color and --style.
947   To use them, install the libtextstyle library before configuring Bison.
948   It is available from
950     https://alpha.gnu.org/gnu/gettext/
952   for instance
954     https://alpha.gnu.org/gnu/gettext/libtextstyle-0.8.tar.gz
956   The option --color supports the following arguments:
957     - always, yes: Enable colors.
958     - never, no: Disable colors.
959     - auto, tty (default): Enable colors if the output device is a tty.
961   To customize the styles, create a CSS file similar to
963     /* bison-bw.css */
964     .warning   { }
965     .error     { font-weight: 800; text-decoration: underline; }
966     .note      { }
968   then invoke bison with --style=bison-bw.css, or set the BISON_STYLE
969   environment variable to "bison-bw.css".
971 *** Disabling output
973   When given -fsyntax-only, the diagnostics are reported, but no output is
974   generated.
976   The name of this option is somewhat misleading as bison does more than
977   just checking the syntax: every stage is run (including checking for
978   conflicts for instance), except the generation of the output files.
980 *** Include the generated header (yacc.c)
982   Before, when --defines is used, bison generated a header, and pasted an
983   exact copy of it into the generated parser implementation file.  If the
984   header name is not "y.tab.h", it is now #included instead of being
985   duplicated.
987   To use an '#include' even if the header name is "y.tab.h" (which is what
988   happens with --yacc, or when using the Autotools' ylwrap), define
989   api.header.include to the exact argument to pass to #include.  For
990   instance:
992     %define api.header.include {"parse.h"}
994   or
996     %define api.header.include {<parser/parse.h>}
998 *** api.location.type is now supported in C (yacc.c, glr.c)
1000   The %define variable api.location.type defines the name of the type to use
1001   for locations.  When defined, Bison no longer defines YYLTYPE.
1003   This can be used in programs with several parsers to factor their
1004   definition of locations: let one of them generate them, and the others
1005   just use them.
1007 ** Changes
1009 *** Graphviz output
1011   In conformance with the recommendations of the Graphviz team, if %require
1012   "3.4" (or better) is specified, the option --graph generates a *.gv file
1013   by default, instead of *.dot.
1015 *** Diagnostics overhaul
1017   Column numbers were wrong with multibyte characters, which would also
1018   result in skewed diagnostics with carets.  Beside, because we were
1019   indenting the quoted source with a single space, lines with tab characters
1020   were incorrectly underlined.
1022   To address these issues, and to be clearer, Bison now issues diagnostics
1023   as GCC9 does.  For instance it used to display (there's a tab before the
1024   opening brace):
1026     foo.y:3.37-38: error: $2 of ‘expr’ has no declared type
1027      expr: expr '+' "number"        { $$ = $1 + $2; }
1028                                          ^~
1029   It now reports
1031     foo.y:3.37-38: error: $2 of ‘expr’ has no declared type
1032         3 | expr: expr '+' "number" { $$ = $1 + $2; }
1033           |                                     ^~
1035   Other constructs now also have better locations, resulting in more precise
1036   diagnostics.
1038 *** Fix-it hints for %empty
1040   Running Bison with -Wempty-rules and --update will remove incorrect %empty
1041   annotations, and add the missing ones.
1043 *** Generated reports
1045   The format of the reports (parse.output) was improved for readability.
1047 *** Better support for --no-line.
1049   When --no-line is used, the generated files are now cleaner: no lines are
1050   generated instead of empty lines.  Together with using api.header.include,
1051   that should help people saving the generated files into version control
1052   systems get smaller diffs.
1054 ** Documentation
1056   A new example in C shows an simple infix calculator with a hand-written
1057   scanner (examples/c/calc).
1059   A new example in C shows a reentrant parser (capable of recursive calls)
1060   built with Flex and Bison (examples/c/reccalc).
1062   There is a new section about the history of Yaccs and Bison.
1064 ** Bug fixes
1066   A few obscure bugs were fixed, including the second oldest (known) bug in
1067   Bison: it was there when Bison was entered in the RCS version control
1068   system, in December 1987.  See the NEWS of Bison 3.3 for the previous
1069   oldest bug.
1072 * Noteworthy changes in release 3.3.2 (2019-02-03) [stable]
1074 ** Bug fixes
1076   Bison 3.3 failed to generate parsers for grammars with unused nonterminal
1077   symbols.
1080 * Noteworthy changes in release 3.3.1 (2019-01-27) [stable]
1082 ** Changes
1084   The option -y/--yacc used to imply -Werror=yacc, which turns uses of Bison
1085   extensions into errors.  It now makes them simple warnings (-Wyacc).
1088 * Noteworthy changes in release 3.3 (2019-01-26) [stable]
1090   A new mailing list was created, Bison Announce.  It is low traffic, and is
1091   only about announcing new releases and important messages (e.g., polls
1092   about major decisions to make).
1094   https://lists.gnu.org/mailman/listinfo/bison-announce
1096 ** Backward incompatible changes
1098   Support for DJGPP, which has been unmaintained and untested for years, is
1099   removed.
1101 ** Deprecated features
1103   A new feature, --update (see below) helps adjusting existing grammars to
1104   deprecations.
1106 *** Deprecated directives
1108   The %error-verbose directive is deprecated in favor of '%define
1109   parse.error verbose' since Bison 3.0, but no warning was issued.
1111   The '%name-prefix "xx"' directive is deprecated in favor of '%define
1112   api.prefix {xx}' since Bison 3.0, but no warning was issued.  These
1113   directives are slightly different, you might need to adjust your code.
1114   %name-prefix renames only symbols with external linkage, while api.prefix
1115   also renames types and macros, including YYDEBUG, YYTOKENTYPE,
1116   yytokentype, YYSTYPE, YYLTYPE, etc.
1118   Users of Flex that move from '%name-prefix "xx"' to '%define api.prefix
1119   {xx}' will typically have to update YY_DECL from
1121     #define YY_DECL int xxlex (YYSTYPE *yylval, YYLTYPE *yylloc)
1123   to
1125     #define YY_DECL int xxlex (XXSTYPE *yylval, XXLTYPE *yylloc)
1127 *** Deprecated %define variable names
1129   The following variables, mostly related to parsers in Java, have been
1130   renamed for consistency.  Backward compatibility is ensured, but upgrading
1131   is recommended.
1133     abstract           -> api.parser.abstract
1134     annotations        -> api.parser.annotations
1135     extends            -> api.parser.extends
1136     final              -> api.parser.final
1137     implements         -> api.parser.implements
1138     parser_class_name  -> api.parser.class
1139     public             -> api.parser.public
1140     strictfp           -> api.parser.strictfp
1142 ** New features
1144 *** Generation of fix-its for IDEs/Editors
1146   When given the new option -ffixit (aka -fdiagnostics-parseable-fixits),
1147   bison now generates machine readable editing instructions to fix some
1148   issues.  Currently, this is mostly limited to updating deprecated
1149   directives and removing duplicates.  For instance:
1151     $ cat foo.y
1152     %error-verbose
1153     %define parser_class_name "Parser"
1154     %define api.parser.class "Parser"
1155     %%
1156     exp:;
1158   See the "fix-it:" lines below:
1160     $ bison -ffixit foo.y
1161     foo.y:1.1-14: warning: deprecated directive, use '%define parse.error verbose' [-Wdeprecated]
1162      %error-verbose
1163      ^~~~~~~~~~~~~~
1164     fix-it:"foo.y":{1:1-1:15}:"%define parse.error verbose"
1165     foo.y:2.1-34: warning: deprecated directive, use '%define api.parser.class {Parser}' [-Wdeprecated]
1166      %define parser_class_name "Parser"
1167      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1168     fix-it:"foo.y":{2:1-2:35}:"%define api.parser.class {Parser}"
1169     foo.y:3.1-33: error: %define variable 'api.parser.class' redefined
1170      %define api.parser.class "Parser"
1171      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1172     foo.y:2.1-34:     previous definition
1173      %define parser_class_name "Parser"
1174      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1175     fix-it:"foo.y":{3:1-3:34}:""
1176     foo.y: warning: fix-its can be applied.  Rerun with option '--update'. [-Wother]
1178   This uses the same output format as GCC and Clang.
1180 *** Updating grammar files
1182   Fixes can be applied on the fly.  The previous example ends with the
1183   suggestion to re-run bison with the option -u/--update, which results in a
1184   cleaner grammar file.
1186     $ bison --update foo.y
1187     [...]
1188     bison: file 'foo.y' was updated (backup: 'foo.y~')
1190     $ cat foo.y
1191     %define parse.error verbose
1192     %define api.parser.class {Parser}
1193     %%
1194     exp:;
1196 *** Bison is now relocatable
1198   If you pass '--enable-relocatable' to 'configure', Bison is relocatable.
1200   A relocatable program can be moved or copied to a different location on
1201   the file system.  It can also be used through mount points for network
1202   sharing.  It is possible to make symbolic links to the installed and moved
1203   programs, and invoke them through the symbolic link.
1205 *** %expect and %expect-rr modifiers on individual rules
1207   One can now document (and check) which rules participate in shift/reduce
1208   and reduce/reduce conflicts.  This is particularly important GLR parsers,
1209   where conflicts are a normal occurrence.  For example,
1211       %glr-parser
1212       %expect 1
1213       %%
1215       ...
1217       argument_list:
1218         arguments %expect 1
1219       | arguments ','
1220       | %empty
1221       ;
1223       arguments:
1224         expression
1225       | argument_list ',' expression
1226       ;
1228       ...
1230   Looking at the output from -v, one can see that the shift/reduce conflict
1231   here is due to the fact that the parser does not know whether to reduce
1232   arguments to argument_list until it sees the token _after_ the following
1233   ','.  By marking the rule with %expect 1 (because there is a conflict in
1234   one state), we document the source of the 1 overall shift/reduce conflict.
1236   In GLR parsers, we can use %expect-rr in a rule for reduce/reduce
1237   conflicts.  In this case, we mark each of the conflicting rules.  For
1238   example,
1240       %glr-parser
1241       %expect-rr 1
1243       %%
1245       stmt:
1246         target_list '=' expr ';'
1247       | expr_list ';'
1248       ;
1250       target_list:
1251         target
1252       | target ',' target_list
1253       ;
1255       target:
1256         ID %expect-rr 1
1257       ;
1259       expr_list:
1260         expr
1261       | expr ',' expr_list
1262       ;
1264       expr:
1265         ID %expect-rr 1
1266       | ...
1267       ;
1269   In a statement such as
1271       x, y = 3, 4;
1273   the parser must reduce x to a target or an expr, but does not know which
1274   until it sees the '='.  So we notate the two possible reductions to
1275   indicate that each conflicts in one rule.
1277   This feature needs user feedback, and might evolve in the future.
1279 *** C++: Actual token constructors
1281   When variants and token constructors are enabled, in addition to the
1282   type-safe named token constructors (make_ID, make_INT, etc.), we now
1283   generate genuine constructors for symbol_type.
1285   For instance with these declarations
1287     %token           ':'
1288        <std::string> ID
1289        <int>         INT;
1291   you may use these constructors:
1293     symbol_type (int token, const std::string&);
1294     symbol_type (int token, const int&);
1295     symbol_type (int token);
1297   Correct matching between token types and value types is checked via
1298   'assert'; for instance, 'symbol_type (ID, 42)' would abort.  Named
1299   constructors are preferable, as they offer better type safety (for
1300   instance 'make_ID (42)' would not even compile), but symbol_type
1301   constructors may help when token types are discovered at run-time, e.g.,
1303      [a-z]+   {
1304                 if (auto i = lookup_keyword (yytext))
1305                   return yy::parser::symbol_type (i);
1306                 else
1307                   return yy::parser::make_ID (yytext);
1308               }
1310 *** C++: Variadic emplace
1312   If your application requires C++11 and you don't use symbol constructors,
1313   you may now use a variadic emplace for semantic values:
1315     %define api.value.type variant
1316     %token <std::pair<int, int>> PAIR
1318   in your scanner:
1320     int yylex (parser::semantic_type *lvalp)
1321     {
1322       lvalp->emplace <std::pair<int, int>> (1, 2);
1323       return parser::token::PAIR;
1324     }
1326 *** C++: Syntax error exceptions in GLR
1328   The glr.cc skeleton now supports syntax_error exceptions thrown from user
1329   actions, or from the scanner.
1331 *** More POSIX Yacc compatibility warnings
1333   More Bison specific directives are now reported with -y or -Wyacc.  This
1334   change was ready since the release of Bison 3.0 in September 2015.  It was
1335   delayed because Autoconf used to define YACC as `bison -y`, which resulted
1336   in numerous warnings for Bison users that use the GNU Build System.
1338   If you still experience that problem, either redefine YACC as `bison -o
1339   y.tab.c`, or pass -Wno-yacc to Bison.
1341 *** The tables yyrhs and yyphrs are back
1343   Because no Bison skeleton uses them, these tables were removed (no longer
1344   passed to the skeletons, not even computed) in 2008.  However, some users
1345   have expressed interest in being able to use them in their own skeletons.
1347 ** Bug fixes
1349 *** Incorrect number of reduce/reduce conflicts
1351   On a grammar such as
1353      exp: "num" | "num" | "num"
1355   bison used to report a single RR conflict, instead of two.  This is now
1356   fixed.  This was the oldest (known) bug in Bison: it was there when Bison
1357   was entered in the RCS version control system, in December 1987.
1359   Some grammar files might have to adjust their %expect-rr.
1361 *** Parser directives that were not careful enough
1363   Passing invalid arguments to %nterm, for instance character literals, used
1364   to result in unclear error messages.
1366 ** Documentation
1368   The examples/ directory (installed in .../share/doc/bison/examples) has
1369   been restructured per language for clarity.  The examples come with a
1370   README and a Makefile.  Not only can they be used to toy with Bison, they
1371   can also be starting points for your own grammars.
1373   There is now a Java example, and a simple example in C based on Flex and
1374   Bison (examples/c/lexcalc/).
1376 ** Changes
1378 *** Parsers in C++
1380   They now use noexcept and constexpr.  Please, report missing annotations.
1382 *** Symbol Declarations
1384   The syntax of the variation directives to declare symbols was overhauled
1385   for more consistency, and also better POSIX Yacc compliance (which, for
1386   instance, allows "%type" without actually providing a type).  The %nterm
1387   directive, supported by Bison since its inception, is now documented and
1388   officially supported.
1390   The syntax is now as follows:
1392     %token TAG? ( ID NUMBER? STRING? )+ ( TAG ( ID NUMBER? STRING? )+ )*
1393     %left  TAG? ( ID NUMBER? )+ ( TAG ( ID NUMBER? )+ )*
1394     %type  TAG? ( ID | CHAR | STRING )+ ( TAG ( ID | CHAR | STRING )+ )*
1395     %nterm TAG? ID+ ( TAG ID+ )*
1397   where TAG denotes a type tag such as ‘<ival>’, ID denotes an identifier
1398   such as ‘NUM’, NUMBER a decimal or hexadecimal integer such as ‘300’ or
1399   ‘0x12d’, CHAR a character literal such as ‘'+'’, and STRING a string
1400   literal such as ‘"number"’.  The post-fix quantifiers are ‘?’ (zero or
1401   one), ‘*’ (zero or more) and ‘+’ (one or more).
1404 * Noteworthy changes in release 3.2.4 (2018-12-24) [stable]
1406 ** Bug fixes
1408   Fix the move constructor of symbol_type.
1410   Always provide a copy constructor for symbol_type, even in modern C++.
1413 * Noteworthy changes in release 3.2.3 (2018-12-18) [stable]
1415 ** Bug fixes
1417   Properly support token constructors in C++ with types that include commas
1418   (e.g., std::pair<int, int>).  A regression introduced in Bison 3.2.
1421 * Noteworthy changes in release 3.2.2 (2018-11-21) [stable]
1423 ** Bug fixes
1425   C++ portability issues.
1428 * Noteworthy changes in release 3.2.1 (2018-11-09) [stable]
1430 ** Bug fixes
1432   Several portability issues have been fixed in the build system, in the
1433   test suite, and in the generated parsers in C++.
1436 * Noteworthy changes in release 3.2 (2018-10-29) [stable]
1438 ** Backward incompatible changes
1440   Support for DJGPP, which has been unmaintained and untested for years, is
1441   obsolete.  Unless there is activity to revive it, it will be removed.
1443 ** Changes
1445   %printers should use yyo rather than yyoutput to denote the output stream.
1447   Variant-based symbols in C++ should use emplace() rather than build().
1449   In C++ parsers, parser::operator() is now a synonym for the parser::parse.
1451 ** Documentation
1453   A new section, "A Simple C++ Example", is a tutorial for parsers in C++.
1455   A comment in the generated code now emphasizes that users should not
1456   depend upon non-documented implementation details, such as macros starting
1457   with YY_.
1459 ** New features
1461 *** C++: Support for move semantics (lalr1.cc)
1463   The lalr1.cc skeleton now fully supports C++ move semantics, while
1464   maintaining compatibility with C++98.  You may now store move-only types
1465   when using Bison's variants.  For instance:
1467     %code {
1468       #include <memory>
1469       #include <vector>
1470     }
1472     %skeleton "lalr1.cc"
1473     %define api.value.type variant
1475     %%
1477     %token <int> INT "int";
1478     %type <std::unique_ptr<int>> int;
1479     %type <std::vector<std::unique_ptr<int>>> list;
1481     list:
1482       %empty    {}
1483     | list int  { $$ = std::move($1); $$.emplace_back(std::move($2)); }
1485     int: "int"  { $$ = std::make_unique<int>($1); }
1487 *** C++: Implicit move of right-hand side values (lalr1.cc)
1489   In modern C++ (C++11 and later), you should always use 'std::move' with
1490   the values of the right-hand side symbols ($1, $2, etc.), as they will be
1491   popped from the stack anyway.  Using 'std::move' is mandatory for
1492   move-only types such as unique_ptr, and it provides a significant speedup
1493   for large types such as std::string, or std::vector, etc.
1495   If '%define api.value.automove' is set, every occurrence '$n' is replaced
1496   by 'std::move ($n)'.  The second rule in the previous grammar can be
1497   simplified to:
1499     list: list int  { $$ = $1; $$.emplace_back($2); }
1501   With automove enabled, the semantic values are no longer lvalues, so do
1502   not use the swap idiom:
1504     list: list int  { std::swap($$, $1); $$.emplace_back($2); }
1506   This idiom is anyway obsolete: it is preferable to move than to swap.
1508   A warning is issued when automove is enabled, and a value is used several
1509   times.
1511     input.yy:16.31-32: warning: multiple occurrences of $2 with api.value.automove enabled [-Wother]
1512     exp: "twice" exp   { $$ = $2 + $2; }
1513                                    ^^
1515   Enabling api.value.automove does not require support for modern C++.  The
1516   generated code is valid C++98/03, but will use copies instead of moves.
1518   The new examples/c++/variant-11.yy shows these features in action.
1520 *** C++: The implicit default semantic action is always run
1522   When variants are enabled, the default action was not run, so
1524     exp: "number"
1526   was equivalent to
1528     exp: "number"  {}
1530   It now behaves like in all the other cases, as
1532     exp: "number"  { $$ = $1; }
1534   possibly using std::move if automove is enabled.
1536   We do not expect backward compatibility issues.  However, beware of
1537   forward compatibility issues: if you rely on default actions with
1538   variants, be sure to '%require "3.2"' to avoid older versions of Bison to
1539   generate incorrect parsers.
1541 *** C++: Renaming location.hh
1543   When both %defines and %locations are enabled, Bison generates a
1544   location.hh file.  If you don't use locations outside of the parser, you
1545   may avoid its creation with:
1547     %define api.location.file none
1549   However this file is useful if, for instance, your parser builds an AST
1550   decorated with locations: you may use Bison's location independently of
1551   Bison's parser.  You can now give it another name, for instance:
1553     %define api.location.file "my-location.hh"
1555   This name can have directory components, and even be absolute.  The name
1556   under which the location file is included is controlled by
1557   api.location.include.
1559   This way it is possible to have several parsers share the same location
1560   file.
1562   For instance, in src/foo/parser.hh, generate the include/ast/loc.hh file:
1564     %locations
1565     %define api.namespace {foo}
1566     %define api.location.file "include/ast/loc.hh"
1567     %define api.location.include {<ast/loc.hh>}
1569   and use it in src/bar/parser.hh:
1571     %locations
1572     %define api.namespace {bar}
1573     %code requires {#include <ast/loc.hh>}
1574     %define api.location.type {bar::location}
1576   Absolute file names are supported, so in your Makefile, passing the flag
1577   -Dapi.location.file='"$(top_srcdir)/include/ast/location.hh"' to bison is
1578   safe.
1580 *** C++: stack.hh and position.hh are deprecated
1582   When asked to generate a header file (%defines), the lalr1.cc skeleton
1583   generates a stack.hh file.  This file had no interest for users; it is now
1584   made useless: its content is included in the parser definition.  It is
1585   still generated for backward compatibility.
1587   When in addition to %defines, location support is requested (%locations),
1588   the file position.hh is also generated.  It is now also useless: its
1589   content is now included in location.hh.
1591   These files are no longer generated when your grammar file requires at
1592   least Bison 3.2 (%require "3.2").
1594 ** Bug fixes
1596   Portability issues on MinGW and VS2015.
1598   Portability issues in the test suite.
1600   Portability/warning issues with Flex.
1603 * Noteworthy changes in release 3.1 (2018-08-27) [stable]
1605 ** Backward incompatible changes
1607   Compiling Bison now requires a C99 compiler---as announced during the
1608   release of Bison 3.0, five years ago.  Generated parsers do not require a
1609   C99 compiler.
1611   Support for DJGPP, which has been unmaintained and untested for years, is
1612   obsolete. Unless there is activity to revive it, the next release of Bison
1613   will have it removed.
1615 ** New features
1617 *** Typed midrule actions
1619   Because their type is unknown to Bison, the values of midrule actions are
1620   not treated like the others: they don't have %printer and %destructor
1621   support.  It also prevents C++ (Bison) variants to handle them properly.
1623   Typed midrule actions address these issues.  Instead of:
1625     exp: { $<ival>$ = 1; } { $<ival>$ = 2; }   { $$ = $<ival>1 + $<ival>2; }
1627   write:
1629     exp: <ival>{ $$ = 1; } <ival>{ $$ = 2; }   { $$ = $1 + $2; }
1631 *** Reports include the type of the symbols
1633   The sections about terminal and nonterminal symbols of the '*.output' file
1634   now specify their declared type.  For instance, for:
1636     %token <ival> NUM
1638   the report now shows '<ival>':
1640     Terminals, with rules where they appear
1642     NUM <ival> (258) 5
1644 *** Diagnostics about useless rules
1646   In the following grammar, the 'exp' nonterminal is trivially useless.  So,
1647   of course, its rules are useless too.
1649     %%
1650     input: '0' | exp
1651     exp: exp '+' exp | exp '-' exp | '(' exp ')'
1653   Previously all the useless rules were reported, including those whose
1654   left-hand side is the 'exp' nonterminal:
1656     warning: 1 nonterminal useless in grammar [-Wother]
1657     warning: 4 rules useless in grammar [-Wother]
1658     2.14-16: warning: nonterminal useless in grammar: exp [-Wother]
1659      input: '0' | exp
1660                   ^^^
1661     2.14-16: warning: rule useless in grammar [-Wother]
1662      input: '0' | exp
1663                   ^^^
1664     3.6-16: warning: rule useless in grammar [-Wother]
1665      exp: exp '+' exp | exp '-' exp | '(' exp ')'
1666           ^^^^^^^^^^^
1667     3.20-30: warning: rule useless in grammar [-Wother]
1668      exp: exp '+' exp | exp '-' exp | '(' exp ')'
1669                         ^^^^^^^^^^^
1670     3.34-44: warning: rule useless in grammar [-Wother]
1671      exp: exp '+' exp | exp '-' exp | '(' exp ')'
1672                                       ^^^^^^^^^^^
1674   Now, rules whose left-hand side symbol is useless are no longer reported
1675   as useless.  The locations of the errors have also been adjusted to point
1676   to the first use of the nonterminal as a left-hand side of a rule:
1678     warning: 1 nonterminal useless in grammar [-Wother]
1679     warning: 4 rules useless in grammar [-Wother]
1680     3.1-3: warning: nonterminal useless in grammar: exp [-Wother]
1681      exp: exp '+' exp | exp '-' exp | '(' exp ')'
1682      ^^^
1683     2.14-16: warning: rule useless in grammar [-Wother]
1684      input: '0' | exp
1685                   ^^^
1687 *** C++: Generated parsers can be compiled with -fno-exceptions (lalr1.cc)
1689   When compiled with exceptions disabled, the generated parsers no longer
1690   uses try/catch clauses.
1692   Currently only GCC and Clang are supported.
1694 ** Documentation
1696 *** A demonstration of variants
1698   A new example was added (installed in .../share/doc/bison/examples),
1699   'variant.yy', which shows how to use (Bison) variants in C++.
1701   The other examples were made nicer to read.
1703 *** Some features are no longer 'experimental'
1705   The following features, mature enough, are no longer flagged as
1706   experimental in the documentation: push parsers, default %printer and
1707   %destructor (typed: <*> and untyped: <>), %define api.value.type union and
1708   variant, Java parsers, XML output, LR family (lr, ielr, lalr), and
1709   semantic predicates (%?).
1711 ** Bug fixes
1713 *** GLR: Predicates support broken by #line directives
1715   Predicates (%?) in GLR such as
1717     widget:
1718       %? {new_syntax} 'w' id new_args
1719     | %?{!new_syntax} 'w' id old_args
1721   were issued with #lines in the middle of C code.
1723 *** Printer and destructor with broken #line directives
1725   The #line directives were not properly escaped when emitting the code for
1726   %printer/%destructor, which resulted in compiler errors if there are
1727   backslashes or double-quotes in the grammar file name.
1729 *** Portability on ICC
1731   The Intel compiler claims compatibility with GCC, yet rejects its _Pragma.
1732   Generated parsers now work around this.
1734 *** Various
1736   There were several small fixes in the test suite and in the build system,
1737   many warnings in bison and in the generated parsers were eliminated.  The
1738   documentation also received its share of minor improvements.
1740   Useless code was removed from C++ parsers, and some of the generated
1741   constructors are more 'natural'.
1744 * Noteworthy changes in release 3.0.5 (2018-05-27) [stable]
1746 ** Bug fixes
1748 *** C++: Fix support of 'syntax_error'
1750   One incorrect 'inline' resulted in linking errors about the constructor of
1751   the syntax_error exception.
1753 *** C++: Fix warnings
1755   GCC 7.3 (with -O1 or -O2 but not -O0 or -O3) issued null-dereference
1756   warnings about yyformat being possibly null.  It also warned about the
1757   deprecated implicit definition of copy constructors when there's a
1758   user-defined (copy) assignment operator.
1760 *** Location of errors
1762   In C++ parsers, out-of-bounds errors can happen when a rule with an empty
1763   ride-hand side raises a syntax error.  The behavior of the default parser
1764   (yacc.c) in such a condition was undefined.
1766   Now all the parsers match the behavior of glr.c: @$ is used as the
1767   location of the error.  This handles gracefully rules with and without
1768   rhs.
1770 *** Portability fixes in the test suite
1772   On some platforms, some Java and/or C++ tests were failing.
1775 * Noteworthy changes in release 3.0.4 (2015-01-23) [stable]
1777 ** Bug fixes
1779 *** C++ with Variants (lalr1.cc)
1781   Fix a compiler warning when no %destructor use $$.
1783 *** Test suites
1785   Several portability issues in tests were fixed.
1788 * Noteworthy changes in release 3.0.3 (2015-01-15) [stable]
1790 ** Bug fixes
1792 *** C++ with Variants (lalr1.cc)
1794   Problems with %destructor and '%define parse.assert' have been fixed.
1796 *** Named %union support (yacc.c, glr.c)
1798   Bison 3.0 introduced a regression on named %union such as
1800     %union foo { int ival; };
1802   The possibility to use a name was introduced "for Yacc compatibility".
1803   It is however not required by POSIX Yacc, and its usefulness is not clear.
1805 *** %define api.value.type union with %defines (yacc.c, glr.c)
1807   The C parsers were broken when %defines was used together with "%define
1808   api.value.type union".
1810 *** Redeclarations are reported in proper order
1812   On
1814     %token FOO "foo"
1815     %printer {} "foo"
1816     %printer {} FOO
1818   bison used to report:
1820     foo.yy:2.10-11: error: %printer redeclaration for FOO
1821      %printer {} "foo"
1822               ^^
1823     foo.yy:3.10-11:     previous declaration
1824      %printer {} FOO
1825               ^^
1827   Now, the "previous" declaration is always the first one.
1830 ** Documentation
1832   Bison now installs various files in its docdir (which defaults to
1833   '/usr/local/share/doc/bison'), including the three fully blown examples
1834   extracted from the documentation:
1836    - rpcalc
1837      Reverse Polish Calculator, a simple introductory example.
1838    - mfcalc
1839      Multi-function Calc, a calculator with memory and functions and located
1840      error messages.
1841    - calc++
1842      a calculator in C++ using variant support and token constructors.
1845 * Noteworthy changes in release 3.0.2 (2013-12-05) [stable]
1847 ** Bug fixes
1849 *** Generated source files when errors are reported
1851   When warnings are issued and -Werror is set, bison would still generate
1852   the source files (*.c, *.h...).  As a consequence, some runs of "make"
1853   could fail the first time, but not the second (as the files were generated
1854   anyway).
1856   This is fixed: bison no longer generates this source files, but, of
1857   course, still produces the various reports (*.output, *.xml, etc.).
1859 *** %empty is used in reports
1861   Empty right-hand sides are denoted by '%empty' in all the reports (text,
1862   dot, XML and formats derived from it).
1864 *** YYERROR and variants
1866   When C++ variant support is enabled, an error triggered via YYERROR, but
1867   not caught via error recovery, resulted in a double deletion.
1870 * Noteworthy changes in release 3.0.1 (2013-11-12) [stable]
1872 ** Bug fixes
1874 *** Errors in caret diagnostics
1876   On some platforms, some errors could result in endless diagnostics.
1878 *** Fixes of the -Werror option
1880   Options such as "-Werror -Wno-error=foo" were still turning "foo"
1881   diagnostics into errors instead of warnings.  This is fixed.
1883   Actually, for consistency with GCC, "-Wno-error=foo -Werror" now also
1884   leaves "foo" diagnostics as warnings.  Similarly, with "-Werror=foo
1885   -Wno-error", "foo" diagnostics are now errors.
1887 *** GLR Predicates
1889   As demonstrated in the documentation, one can now leave spaces between
1890   "%?" and its "{".
1892 *** Installation
1894   The yacc.1 man page is no longer installed if --disable-yacc was
1895   specified.
1897 *** Fixes in the test suite
1899   Bugs and portability issues.
1902 * Noteworthy changes in release 3.0 (2013-07-25) [stable]
1904 ** WARNING: Future backward-incompatibilities!
1906   Like other GNU packages, Bison will start using some of the C99 features
1907   for its own code, especially the definition of variables after statements.
1908   The generated C parsers still aim at C90.
1910 ** Backward incompatible changes
1912 *** Obsolete features
1914   Support for YYFAIL is removed (deprecated in Bison 2.4.2): use YYERROR.
1916   Support for yystype and yyltype is removed (deprecated in Bison 1.875):
1917   use YYSTYPE and YYLTYPE.
1919   Support for YYLEX_PARAM and YYPARSE_PARAM is removed (deprecated in Bison
1920   1.875): use %lex-param, %parse-param, or %param.
1922   Missing semicolons at the end of actions are no longer added (as announced
1923   in the release 2.5).
1925 *** Use of YACC='bison -y'
1927   TL;DR: With Autoconf <= 2.69, pass -Wno-yacc to (AM_)YFLAGS if you use
1928   Bison extensions.
1930   Traditional Yacc generates 'y.tab.c' whatever the name of the input file.
1931   Therefore Makefiles written for Yacc expect 'y.tab.c' (and possibly
1932   'y.tab.h' and 'y.output') to be generated from 'foo.y'.
1934   To this end, for ages, AC_PROG_YACC, Autoconf's macro to look for an
1935   implementation of Yacc, was using Bison as 'bison -y'.  While it does
1936   ensure compatible output file names, it also enables warnings for
1937   incompatibilities with POSIX Yacc.  In other words, 'bison -y' triggers
1938   warnings for Bison extensions.
1940   Autoconf 2.70+ fixes this incompatibility by using YACC='bison -o y.tab.c'
1941   (which also generates 'y.tab.h' and 'y.output' when needed).
1942   Alternatively, disable Yacc warnings by passing '-Wno-yacc' to your Yacc
1943   flags (YFLAGS, or AM_YFLAGS with Automake).
1945 ** Bug fixes
1947 *** The epilogue is no longer affected by internal #defines (glr.c)
1949   The glr.c skeleton uses defines such as #define yylval (yystackp->yyval) in
1950   generated code.  These weren't properly undefined before the inclusion of
1951   the user epilogue, so functions such as the following were butchered by the
1952   preprocessor expansion:
1954     int yylex (YYSTYPE *yylval);
1956   This is fixed: yylval, yynerrs, yychar, and yylloc are now valid
1957   identifiers for user-provided variables.
1959 *** stdio.h is no longer needed when locations are enabled (yacc.c)
1961   Changes in Bison 2.7 introduced a dependency on FILE and fprintf when
1962   locations are enabled.  This is fixed.
1964 *** Warnings about useless %pure-parser/%define api.pure are restored
1966 ** Diagnostics reported by Bison
1968   Most of these features were contributed by Théophile Ranquet and Victor
1969   Santet.
1971 *** Carets
1973   Version 2.7 introduced caret errors, for a prettier output.  These are now
1974   activated by default.  The old format can still be used by invoking Bison
1975   with -fno-caret (or -fnone).
1977   Some error messages that reproduced excerpts of the grammar are now using
1978   the caret information only.  For instance on:
1980     %%
1981     exp: 'a' | 'a';
1983   Bison 2.7 reports:
1985     in.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
1986     in.y:2.12-14: warning: rule useless in parser due to conflicts: exp: 'a' [-Wother]
1988   Now bison reports:
1990     in.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
1991     in.y:2.12-14: warning: rule useless in parser due to conflicts [-Wother]
1992      exp: 'a' | 'a';
1993                 ^^^
1995   and "bison -fno-caret" reports:
1997     in.y: warning: 1 reduce/reduce conflict [-Wconflicts-rr]
1998     in.y:2.12-14: warning: rule useless in parser due to conflicts [-Wother]
2000 *** Enhancements of the -Werror option
2002   The -Werror=CATEGORY option is now recognized, and will treat specified
2003   warnings as errors. The warnings need not have been explicitly activated
2004   using the -W option, this is similar to what GCC 4.7 does.
2006   For example, given the following command line, Bison will treat both
2007   warnings related to POSIX Yacc incompatibilities and S/R conflicts as
2008   errors (and only those):
2010     $ bison -Werror=yacc,error=conflicts-sr input.y
2012   If no categories are specified, -Werror will make all active warnings into
2013   errors. For example, the following line does the same the previous example:
2015     $ bison -Werror -Wnone -Wyacc -Wconflicts-sr input.y
2017   (By default -Wconflicts-sr,conflicts-rr,deprecated,other is enabled.)
2019   Note that the categories in this -Werror option may not be prefixed with
2020   "no-". However, -Wno-error[=CATEGORY] is valid.
2022   Note that -y enables -Werror=yacc. Therefore it is now possible to require
2023   Yacc-like behavior (e.g., always generate y.tab.c), but to report
2024   incompatibilities as warnings: "-y -Wno-error=yacc".
2026 *** The display of warnings is now richer
2028   The option that controls a given warning is now displayed:
2030     foo.y:4.6: warning: type clash on default action: <foo> != <bar> [-Wother]
2032   In the case of warnings treated as errors, the prefix is changed from
2033   "warning: " to "error: ", and the suffix is displayed, in a manner similar
2034   to GCC, as [-Werror=CATEGORY].
2036   For instance, where the previous version of Bison would report (and exit
2037   with failure):
2039     bison: warnings being treated as errors
2040     input.y:1.1: warning: stray ',' treated as white space
2042   it now reports:
2044     input.y:1.1: error: stray ',' treated as white space [-Werror=other]
2046 *** Deprecated constructs
2048   The new 'deprecated' warning category flags obsolete constructs whose
2049   support will be discontinued.  It is enabled by default.  These warnings
2050   used to be reported as 'other' warnings.
2052 *** Useless semantic types
2054   Bison now warns about useless (uninhabited) semantic types.  Since
2055   semantic types are not declared to Bison (they are defined in the opaque
2056   %union structure), it is %printer/%destructor directives about useless
2057   types that trigger the warning:
2059     %token <type1> term
2060     %type  <type2> nterm
2061     %printer    {} <type1> <type3>
2062     %destructor {} <type2> <type4>
2063     %%
2064     nterm: term { $$ = $1; };
2066     3.28-34: warning: type <type3> is used, but is not associated to any symbol
2067     4.28-34: warning: type <type4> is used, but is not associated to any symbol
2069 *** Undefined but unused symbols
2071   Bison used to raise an error for undefined symbols that are not used in
2072   the grammar.  This is now only a warning.
2074     %printer    {} symbol1
2075     %destructor {} symbol2
2076     %type <type>   symbol3
2077     %%
2078     exp: "a";
2080 *** Useless destructors or printers
2082   Bison now warns about useless destructors or printers.  In the following
2083   example, the printer for <type1>, and the destructor for <type2> are
2084   useless: all symbols of <type1> (token1) already have a printer, and all
2085   symbols of type <type2> (token2) already have a destructor.
2087     %token <type1> token1
2088            <type2> token2
2089            <type3> token3
2090            <type4> token4
2091     %printer    {} token1 <type1> <type3>
2092     %destructor {} token2 <type2> <type4>
2094 *** Conflicts
2096   The warnings and error messages about shift/reduce and reduce/reduce
2097   conflicts have been normalized.  For instance on the following foo.y file:
2099     %glr-parser
2100     %%
2101     exp: exp '+' exp | '0' | '0';
2103   compare the previous version of bison:
2105     $ bison foo.y
2106     foo.y: conflicts: 1 shift/reduce, 2 reduce/reduce
2107     $ bison -Werror foo.y
2108     bison: warnings being treated as errors
2109     foo.y: conflicts: 1 shift/reduce, 2 reduce/reduce
2111   with the new behavior:
2113     $ bison foo.y
2114     foo.y: warning: 1 shift/reduce conflict [-Wconflicts-sr]
2115     foo.y: warning: 2 reduce/reduce conflicts [-Wconflicts-rr]
2116     $ bison -Werror foo.y
2117     foo.y: error: 1 shift/reduce conflict [-Werror=conflicts-sr]
2118     foo.y: error: 2 reduce/reduce conflicts [-Werror=conflicts-rr]
2120   When %expect or %expect-rr is used, such as with bar.y:
2122     %expect 0
2123     %glr-parser
2124     %%
2125     exp: exp '+' exp | '0' | '0';
2127   Former behavior:
2129     $ bison bar.y
2130     bar.y: conflicts: 1 shift/reduce, 2 reduce/reduce
2131     bar.y: expected 0 shift/reduce conflicts
2132     bar.y: expected 0 reduce/reduce conflicts
2134   New one:
2136     $ bison bar.y
2137     bar.y: error: shift/reduce conflicts: 1 found, 0 expected
2138     bar.y: error: reduce/reduce conflicts: 2 found, 0 expected
2140 ** Incompatibilities with POSIX Yacc
2142   The 'yacc' category is no longer part of '-Wall', enable it explicitly
2143   with '-Wyacc'.
2145 ** Additional yylex/yyparse arguments
2147   The new directive %param declares additional arguments to both yylex and
2148   yyparse.  The %lex-param, %parse-param, and %param directives support one
2149   or more arguments.  Instead of
2151     %lex-param   {arg1_type *arg1}
2152     %lex-param   {arg2_type *arg2}
2153     %parse-param {arg1_type *arg1}
2154     %parse-param {arg2_type *arg2}
2156   one may now declare
2158     %param {arg1_type *arg1} {arg2_type *arg2}
2160 ** Types of values for %define variables
2162   Bison used to make no difference between '%define foo bar' and '%define
2163   foo "bar"'.  The former is now called a 'keyword value', and the latter a
2164   'string value'.  A third kind was added: 'code values', such as '%define
2165   foo {bar}'.
2167   Keyword variables are used for fixed value sets, e.g.,
2169     %define lr.type lalr
2171   Code variables are used for value in the target language, e.g.,
2173     %define api.value.type {struct semantic_type}
2175   String variables are used remaining cases, e.g. file names.
2177 ** Variable api.token.prefix
2179   The variable api.token.prefix changes the way tokens are identified in
2180   the generated files.  This is especially useful to avoid collisions
2181   with identifiers in the target language.  For instance
2183     %token FILE for ERROR
2184     %define api.token.prefix {TOK_}
2185     %%
2186     start: FILE for ERROR;
2188   will generate the definition of the symbols TOK_FILE, TOK_for, and
2189   TOK_ERROR in the generated sources.  In particular, the scanner must
2190   use these prefixed token names, although the grammar itself still
2191   uses the short names (as in the sample rule given above).
2193 ** Variable api.value.type
2195   This new %define variable supersedes the #define macro YYSTYPE.  The use
2196   of YYSTYPE is discouraged.  In particular, #defining YYSTYPE *and* either
2197   using %union or %defining api.value.type results in undefined behavior.
2199   Either define api.value.type, or use "%union":
2201     %union
2202     {
2203       int ival;
2204       char *sval;
2205     }
2206     %token <ival> INT "integer"
2207     %token <sval> STRING "string"
2208     %printer { fprintf (yyo, "%d", $$); } <ival>
2209     %destructor { free ($$); } <sval>
2211     /* In yylex().  */
2212     yylval.ival = 42; return INT;
2213     yylval.sval = "42"; return STRING;
2215   The %define variable api.value.type supports both keyword and code values.
2217   The keyword value 'union' means that the user provides genuine types, not
2218   union member names such as "ival" and "sval" above (WARNING: will fail if
2219   -y/--yacc/%yacc is enabled).
2221     %define api.value.type union
2222     %token <int> INT "integer"
2223     %token <char *> STRING "string"
2224     %printer { fprintf (yyo, "%d", $$); } <int>
2225     %destructor { free ($$); } <char *>
2227     /* In yylex().  */
2228     yylval.INT = 42; return INT;
2229     yylval.STRING = "42"; return STRING;
2231   The keyword value variant is somewhat equivalent, but for C++ special
2232   provision is made to allow classes to be used (more about this below).
2234     %define api.value.type variant
2235     %token <int> INT "integer"
2236     %token <std::string> STRING "string"
2238   Code values (in braces) denote user defined types.  This is where YYSTYPE
2239   used to be used.
2241     %code requires
2242     {
2243       struct my_value
2244       {
2245         enum
2246         {
2247           is_int, is_string
2248         } kind;
2249         union
2250         {
2251           int ival;
2252           char *sval;
2253         } u;
2254       };
2255     }
2256     %define api.value.type {struct my_value}
2257     %token <u.ival> INT "integer"
2258     %token <u.sval> STRING "string"
2259     %printer { fprintf (yyo, "%d", $$); } <u.ival>
2260     %destructor { free ($$); } <u.sval>
2262     /* In yylex().  */
2263     yylval.u.ival = 42; return INT;
2264     yylval.u.sval = "42"; return STRING;
2266 ** Variable parse.error
2268   This variable controls the verbosity of error messages.  The use of the
2269   %error-verbose directive is deprecated in favor of "%define parse.error
2270   verbose".
2272 ** Deprecated %define variable names
2274   The following variables have been renamed for consistency.  Backward
2275   compatibility is ensured, but upgrading is recommended.
2277     lr.default-reductions      -> lr.default-reduction
2278     lr.keep-unreachable-states -> lr.keep-unreachable-state
2279     namespace                  -> api.namespace
2280     stype                      -> api.value.type
2282 ** Semantic predicates
2284   Contributed by Paul Hilfinger.
2286   The new, experimental, semantic-predicate feature allows actions of the
2287   form "%?{ BOOLEAN-EXPRESSION }", which cause syntax errors (as for
2288   YYERROR) if the expression evaluates to 0, and are evaluated immediately
2289   in GLR parsers, rather than being deferred.  The result is that they allow
2290   the programmer to prune possible parses based on the values of run-time
2291   expressions.
2293 ** The directive %expect-rr is now an error in non GLR mode
2295   It used to be an error only if used in non GLR mode, _and_ if there are
2296   reduce/reduce conflicts.
2298 ** Tokens are numbered in their order of appearance
2300   Contributed by Valentin Tolmer.
2302   With '%token A B', A had a number less than the one of B.  However,
2303   precedence declarations used to generate a reversed order.  This is now
2304   fixed, and introducing tokens with any of %token, %left, %right,
2305   %precedence, or %nonassoc yields the same result.
2307   When mixing declarations of tokens with a literal character (e.g., 'a') or
2308   with an identifier (e.g., B) in a precedence declaration, Bison numbered
2309   the literal characters first.  For example
2311     %right A B 'c' 'd'
2313   would lead to the tokens declared in this order: 'c' 'd' A B.  Again, the
2314   input order is now preserved.
2316   These changes were made so that one can remove useless precedence and
2317   associativity declarations (i.e., map %nonassoc, %left or %right to
2318   %precedence, or to %token) and get exactly the same output.
2320 ** Useless precedence and associativity
2322   Contributed by Valentin Tolmer.
2324   When developing and maintaining a grammar, useless associativity and
2325   precedence directives are common.  They can be a nuisance: new ambiguities
2326   arising are sometimes masked because their conflicts are resolved due to
2327   the extra precedence or associativity information.  Furthermore, it can
2328   hinder the comprehension of a new grammar: one will wonder about the role
2329   of a precedence, where in fact it is useless.  The following changes aim
2330   at detecting and reporting these extra directives.
2332 *** Precedence warning category
2334   A new category of warning, -Wprecedence, was introduced. It flags the
2335   useless precedence and associativity directives.
2337 *** Useless associativity
2339   Bison now warns about symbols with a declared associativity that is never
2340   used to resolve conflicts.  In that case, using %precedence is sufficient;
2341   the parsing tables will remain unchanged.  Solving these warnings may raise
2342   useless precedence warnings, as the symbols no longer have associativity.
2343   For example:
2345     %left '+'
2346     %left '*'
2347     %%
2348     exp:
2349       "number"
2350     | exp '+' "number"
2351     | exp '*' exp
2352     ;
2354   will produce a
2356     warning: useless associativity for '+', use %precedence [-Wprecedence]
2357      %left '+'
2358            ^^^
2360 *** Useless precedence
2362   Bison now warns about symbols with a declared precedence and no declared
2363   associativity (i.e., declared with %precedence), and whose precedence is
2364   never used.  In that case, the symbol can be safely declared with %token
2365   instead, without modifying the parsing tables.  For example:
2367     %precedence '='
2368     %%
2369     exp: "var" '=' "number";
2371   will produce a
2373     warning: useless precedence for '=' [-Wprecedence]
2374      %precedence '='
2375                  ^^^
2377 *** Useless precedence and associativity
2379   In case of both useless precedence and associativity, the issue is flagged
2380   as follows:
2382     %nonassoc '='
2383     %%
2384     exp: "var" '=' "number";
2386   The warning is:
2388     warning: useless precedence and associativity for '=' [-Wprecedence]
2389      %nonassoc '='
2390                ^^^
2392 ** Empty rules
2394   With help from Joel E. Denny and Gabriel Rassoul.
2396   Empty rules (i.e., with an empty right-hand side) can now be explicitly
2397   marked by the new %empty directive.  Using %empty on a non-empty rule is
2398   an error.  The new -Wempty-rule warning reports empty rules without
2399   %empty.  On the following grammar:
2401     %%
2402     s: a b c;
2403     a: ;
2404     b: %empty;
2405     c: 'a' %empty;
2407   bison reports:
2409     3.4-5: warning: empty rule without %empty [-Wempty-rule]
2410      a: {}
2411         ^^
2412     5.8-13: error: %empty on non-empty rule
2413      c: 'a' %empty {};
2414             ^^^^^^
2416 ** Java skeleton improvements
2418   The constants for token names were moved to the Lexer interface.  Also, it
2419   is possible to add code to the parser's constructors using "%code init"
2420   and "%define init_throws".
2421   Contributed by Paolo Bonzini.
2423   The Java skeleton now supports push parsing.
2424   Contributed by Dennis Heimbigner.
2426 ** C++ skeletons improvements
2428 *** The parser header is no longer mandatory (lalr1.cc, glr.cc)
2430   Using %defines is now optional.  Without it, the needed support classes
2431   are defined in the generated parser, instead of additional files (such as
2432   location.hh, position.hh and stack.hh).
2434 *** Locations are no longer mandatory (lalr1.cc, glr.cc)
2436   Both lalr1.cc and glr.cc no longer require %location.
2438 *** syntax_error exception (lalr1.cc)
2440   The C++ parser features a syntax_error exception, which can be
2441   thrown from the scanner or from user rules to raise syntax errors.
2442   This facilitates reporting errors caught in sub-functions (e.g.,
2443   rejecting too large integral literals from a conversion function
2444   used by the scanner, or rejecting invalid combinations from a
2445   factory invoked by the user actions).
2447 *** %define api.value.type variant
2449   This is based on a submission from Michiel De Wilde.  With help
2450   from Théophile Ranquet.
2452   In this mode, complex C++ objects can be used as semantic values.  For
2453   instance:
2455     %token <::std::string> TEXT;
2456     %token <int> NUMBER;
2457     %token SEMICOLON ";"
2458     %type <::std::string> item;
2459     %type <::std::list<std::string>> list;
2460     %%
2461     result:
2462       list  { std::cout << $1 << std::endl; }
2463     ;
2465     list:
2466       %empty        { /* Generates an empty string list. */ }
2467     | list item ";" { std::swap ($$, $1); $$.push_back ($2); }
2468     ;
2470     item:
2471       TEXT    { std::swap ($$, $1); }
2472     | NUMBER  { $$ = string_cast ($1); }
2473     ;
2475 *** %define api.token.constructor
2477   When variants are enabled, Bison can generate functions to build the
2478   tokens.  This guarantees that the token type (e.g., NUMBER) is consistent
2479   with the semantic value (e.g., int):
2481     parser::symbol_type yylex ()
2482     {
2483       parser::location_type loc = ...;
2484       ...
2485       return parser::make_TEXT ("Hello, world!", loc);
2486       ...
2487       return parser::make_NUMBER (42, loc);
2488       ...
2489       return parser::make_SEMICOLON (loc);
2490       ...
2491     }
2493 *** C++ locations
2495   There are operator- and operator-= for 'location'.  Negative line/column
2496   increments can no longer underflow the resulting value.
2499 * Noteworthy changes in release 2.7.1 (2013-04-15) [stable]
2501 ** Bug fixes
2503 *** Fix compiler attribute portability (yacc.c)
2505   With locations enabled, __attribute__ was used unprotected.
2507 *** Fix some compiler warnings (lalr1.cc)
2510 * Noteworthy changes in release 2.7 (2012-12-12) [stable]
2512 ** Bug fixes
2514   Warnings about uninitialized yylloc in yyparse have been fixed.
2516   Restored C90 compliance (yet no report was ever made).
2518 ** Diagnostics are improved
2520   Contributed by Théophile Ranquet.
2522 *** Changes in the format of error messages
2524   This used to be the format of many error reports:
2526     input.y:2.7-12: %type redeclaration for exp
2527     input.y:1.7-12: previous declaration
2529   It is now:
2531     input.y:2.7-12: error: %type redeclaration for exp
2532     input.y:1.7-12:     previous declaration
2534 *** New format for error reports: carets
2536   Caret errors have been added to Bison:
2538     input.y:2.7-12: error: %type redeclaration for exp
2539      %type <sval> exp
2540            ^^^^^^
2541     input.y:1.7-12:     previous declaration
2542      %type <ival> exp
2543            ^^^^^^
2545   or
2547     input.y:3.20-23: error: ambiguous reference: '$exp'
2548      exp: exp '+' exp { $exp = $1 + $3; };
2549                         ^^^^
2550     input.y:3.1-3:       refers to: $exp at $$
2551      exp: exp '+' exp { $exp = $1 + $3; };
2552      ^^^
2553     input.y:3.6-8:       refers to: $exp at $1
2554      exp: exp '+' exp { $exp = $1 + $3; };
2555           ^^^
2556     input.y:3.14-16:     refers to: $exp at $3
2557      exp: exp '+' exp { $exp = $1 + $3; };
2558                   ^^^
2560   The default behavior for now is still not to display these unless
2561   explicitly asked with -fcaret (or -fall). However, in a later release, it
2562   will be made the default behavior (but may still be deactivated with
2563   -fno-caret).
2565 ** New value for %define variable: api.pure full
2567   The %define variable api.pure requests a pure (reentrant) parser. However,
2568   for historical reasons, using it in a location-tracking Yacc parser
2569   resulted in a yyerror function that did not take a location as a
2570   parameter. With this new value, the user may request a better pure parser,
2571   where yyerror does take a location as a parameter (in location-tracking
2572   parsers).
2574   The use of "%define api.pure true" is deprecated in favor of this new
2575   "%define api.pure full".
2577 ** New %define variable: api.location.type (glr.cc, lalr1.cc, lalr1.java)
2579   The %define variable api.location.type defines the name of the type to use
2580   for locations.  When defined, Bison no longer generates the position.hh
2581   and location.hh files, nor does the parser will include them: the user is
2582   then responsible to define her type.
2584   This can be used in programs with several parsers to factor their location
2585   and position files: let one of them generate them, and the others just use
2586   them.
2588   This feature was actually introduced, but not documented, in Bison 2.5,
2589   under the name "location_type" (which is maintained for backward
2590   compatibility).
2592   For consistency, lalr1.java's %define variables location_type and
2593   position_type are deprecated in favor of api.location.type and
2594   api.position.type.
2596 ** Exception safety (lalr1.cc)
2598   The parse function now catches exceptions, uses the %destructors to
2599   release memory (the lookahead symbol and the symbols pushed on the stack)
2600   before re-throwing the exception.
2602   This feature is somewhat experimental.  User feedback would be
2603   appreciated.
2605 ** Graph improvements in DOT and XSLT
2607   Contributed by Théophile Ranquet.
2609   The graphical presentation of the states is more readable: their shape is
2610   now rectangular, the state number is clearly displayed, and the items are
2611   numbered and left-justified.
2613   The reductions are now explicitly represented as transitions to other
2614   diamond shaped nodes.
2616   These changes are present in both --graph output and xml2dot.xsl XSLT
2617   processing, with minor (documented) differences.
2619 ** %language is no longer an experimental feature.
2621   The introduction of this feature, in 2.4, was four years ago. The
2622   --language option and the %language directive are no longer experimental.
2624 ** Documentation
2626   The sections about shift/reduce and reduce/reduce conflicts resolution
2627   have been fixed and extended.
2629   Although introduced more than four years ago, XML and Graphviz reports
2630   were not properly documented.
2632   The translation of midrule actions is now described.
2635 * Noteworthy changes in release 2.6.5 (2012-11-07) [stable]
2637   We consider compiler warnings about Bison generated parsers to be bugs.
2638   Rather than working around them in your own project, please consider
2639   reporting them to us.
2641 ** Bug fixes
2643   Warnings about uninitialized yylval and/or yylloc for push parsers with a
2644   pure interface have been fixed for GCC 4.0 up to 4.8, and Clang 2.9 to
2645   3.2.
2647   Other issues in the test suite have been addressed.
2649   Null characters are correctly displayed in error messages.
2651   When possible, yylloc is correctly initialized before calling yylex.  It
2652   is no longer necessary to initialize it in the %initial-action.
2655 * Noteworthy changes in release 2.6.4 (2012-10-23) [stable]
2657   Bison 2.6.3's --version was incorrect.  This release fixes this issue.
2660 * Noteworthy changes in release 2.6.3 (2012-10-22) [stable]
2662 ** Bug fixes
2664   Bugs and portability issues in the test suite have been fixed.
2666   Some errors in translations have been addressed, and --help now directs
2667   users to the appropriate place to report them.
2669   Stray Info files shipped by accident are removed.
2671   Incorrect definitions of YY_, issued by yacc.c when no parser header is
2672   generated, are removed.
2674   All the generated headers are self-contained.
2676 ** Header guards (yacc.c, glr.c, glr.cc)
2678   In order to avoid collisions, the header guards are now
2679   YY_<PREFIX>_<FILE>_INCLUDED, instead of merely <PREFIX>_<FILE>.
2680   For instance the header generated from
2682     %define api.prefix "calc"
2683     %defines "lib/parse.h"
2685   will use YY_CALC_LIB_PARSE_H_INCLUDED as guard.
2687 ** Fix compiler warnings in the generated parser (yacc.c, glr.c)
2689   The compilation of pure parsers (%define api.pure) can trigger GCC
2690   warnings such as:
2692     input.c: In function 'yyparse':
2693     input.c:1503:12: warning: 'yylval' may be used uninitialized in this
2694                               function [-Wmaybe-uninitialized]
2695        *++yyvsp = yylval;
2696                 ^
2698   This is now fixed; pragmas to avoid these warnings are no longer needed.
2700   Warnings from clang ("equality comparison with extraneous parentheses" and
2701   "function declared 'noreturn' should not return") have also been
2702   addressed.
2705 * Noteworthy changes in release 2.6.2 (2012-08-03) [stable]
2707 ** Bug fixes
2709   Buffer overruns, complaints from Flex, and portability issues in the test
2710   suite have been fixed.
2712 ** Spaces in %lex- and %parse-param (lalr1.cc, glr.cc)
2714   Trailing end-of-lines in %parse-param or %lex-param would result in
2715   invalid C++.  This is fixed.
2717 ** Spurious spaces and end-of-lines
2719   The generated files no longer end (nor start) with empty lines.
2722 * Noteworthy changes in release 2.6.1 (2012-07-30) [stable]
2724  Bison no longer executes user-specified M4 code when processing a grammar.
2726 ** Future Changes
2728   In addition to the removal of the features announced in Bison 2.6, the
2729   next major release will remove the "Temporary hack for adding a semicolon
2730   to the user action", as announced in the release 2.5.  Instead of:
2732     exp: exp "+" exp { $$ = $1 + $3 };
2734   write:
2736     exp: exp "+" exp { $$ = $1 + $3; };
2738 ** Bug fixes
2740 *** Type names are now properly escaped.
2742 *** glr.cc: set_debug_level and debug_level work as expected.
2744 *** Stray @ or $ in actions
2746   While Bison used to warn about stray $ or @ in action rules, it did not
2747   for other actions such as printers, destructors, or initial actions.  It
2748   now does.
2750 ** Type names in actions
2752   For consistency with rule actions, it is now possible to qualify $$ by a
2753   type-name in destructors, printers, and initial actions.  For instance:
2755     %printer { fprintf (yyo, "(%d, %f)", $<ival>$, $<fval>$); } <*> <>;
2757   will display two values for each typed and untyped symbol (provided
2758   that YYSTYPE has both "ival" and "fval" fields).
2761 * Noteworthy changes in release 2.6 (2012-07-19) [stable]
2763 ** Future changes
2765   The next major release of Bison will drop support for the following
2766   deprecated features.  Please report disagreements to bug-bison@gnu.org.
2768 *** K&R C parsers
2770   Support for generating parsers in K&R C will be removed.  Parsers
2771   generated for C support ISO C90, and are tested with ISO C99 and ISO C11
2772   compilers.
2774 *** Features deprecated since Bison 1.875
2776   The definitions of yystype and yyltype will be removed; use YYSTYPE and
2777   YYLTYPE.
2779   YYPARSE_PARAM and YYLEX_PARAM, deprecated in favor of %parse-param and
2780   %lex-param, will no longer be supported.
2782   Support for the preprocessor symbol YYERROR_VERBOSE will be removed, use
2783   %error-verbose.
2785 *** The generated header will be included (yacc.c)
2787   Instead of duplicating the content of the generated header (definition of
2788   YYSTYPE, yyparse declaration etc.), the generated parser will include it,
2789   as is already the case for GLR or C++ parsers.  This change is deferred
2790   because existing versions of ylwrap (e.g., Automake 1.12.1) do not support
2791   it.
2793 ** Generated Parser Headers
2795 *** Guards (yacc.c, glr.c, glr.cc)
2797   The generated headers are now guarded, as is already the case for C++
2798   parsers (lalr1.cc).  For instance, with --defines=foo.h:
2800     #ifndef YY_FOO_H
2801     # define YY_FOO_H
2802     ...
2803     #endif /* !YY_FOO_H  */
2805 *** New declarations (yacc.c, glr.c)
2807   The generated header now declares yydebug and yyparse.  Both honor
2808   --name-prefix=bar_, and yield
2810     int bar_parse (void);
2812   rather than
2814     #define yyparse bar_parse
2815     int yyparse (void);
2817   in order to facilitate the inclusion of several parser headers inside a
2818   single compilation unit.
2820 *** Exported symbols in C++
2822   The symbols YYTOKEN_TABLE and YYERROR_VERBOSE, which were defined in the
2823   header, are removed, as they prevent the possibility of including several
2824   generated headers from a single compilation unit.
2826 *** YYLSP_NEEDED
2828   For the same reasons, the undocumented and unused macro YYLSP_NEEDED is no
2829   longer defined.
2831 ** New %define variable: api.prefix
2833   Now that the generated headers are more complete and properly protected
2834   against multiple inclusions, constant names, such as YYSTYPE are a
2835   problem.  While yyparse and others are properly renamed by %name-prefix,
2836   YYSTYPE, YYDEBUG and others have never been affected by it.  Because it
2837   would introduce backward compatibility issues in projects not expecting
2838   YYSTYPE to be renamed, instead of changing the behavior of %name-prefix,
2839   it is deprecated in favor of a new %define variable: api.prefix.
2841   The following examples compares both:
2843     %name-prefix "bar_"               | %define api.prefix "bar_"
2844     %token <ival> FOO                   %token <ival> FOO
2845     %union { int ival; }                %union { int ival; }
2846     %%                                  %%
2847     exp: 'a';                           exp: 'a';
2849   bison generates:
2851     #ifndef BAR_FOO_H                   #ifndef BAR_FOO_H
2852     # define BAR_FOO_H                  # define BAR_FOO_H
2854     /* Enabling traces.  */             /* Enabling traces.  */
2855     # ifndef YYDEBUG                  | # ifndef BAR_DEBUG
2856                                       > #  if defined YYDEBUG
2857                                       > #   if YYDEBUG
2858                                       > #    define BAR_DEBUG 1
2859                                       > #   else
2860                                       > #    define BAR_DEBUG 0
2861                                       > #   endif
2862                                       > #  else
2863     #  define YYDEBUG 0               | #   define BAR_DEBUG 0
2864                                       > #  endif
2865     # endif                           | # endif
2867     # if YYDEBUG                      | # if BAR_DEBUG
2868     extern int bar_debug;               extern int bar_debug;
2869     # endif                             # endif
2871     /* Tokens.  */                      /* Tokens.  */
2872     # ifndef YYTOKENTYPE              | # ifndef BAR_TOKENTYPE
2873     #  define YYTOKENTYPE             | #  define BAR_TOKENTYPE
2874        enum yytokentype {             |    enum bar_tokentype {
2875          FOO = 258                           FOO = 258
2876        };                                  };
2877     # endif                             # endif
2879     #if ! defined YYSTYPE \           | #if ! defined BAR_STYPE \
2880      && ! defined YYSTYPE_IS_DECLARED |  && ! defined BAR_STYPE_IS_DECLARED
2881     typedef union YYSTYPE             | typedef union BAR_STYPE
2882     {                                   {
2883      int ival;                           int ival;
2884     } YYSTYPE;                        | } BAR_STYPE;
2885     # define YYSTYPE_IS_DECLARED 1    | # define BAR_STYPE_IS_DECLARED 1
2886     #endif                              #endif
2888     extern YYSTYPE bar_lval;          | extern BAR_STYPE bar_lval;
2890     int bar_parse (void);               int bar_parse (void);
2892     #endif /* !BAR_FOO_H  */            #endif /* !BAR_FOO_H  */
2895 * Noteworthy changes in release 2.5.1 (2012-06-05) [stable]
2897 ** Future changes:
2899   The next major release will drop support for generating parsers in K&R C.
2901 ** yacc.c: YYBACKUP works as expected.
2903 ** glr.c improvements:
2905 *** Location support is eliminated when not requested:
2907   GLR parsers used to include location-related code even when locations were
2908   not requested, and therefore not even usable.
2910 *** __attribute__ is preserved:
2912   __attribute__ is no longer disabled when __STRICT_ANSI__ is defined (i.e.,
2913   when -std is passed to GCC).
2915 ** lalr1.java: several fixes:
2917   The Java parser no longer throws ArrayIndexOutOfBoundsException if the
2918   first token leads to a syntax error.  Some minor clean ups.
2920 ** Changes for C++:
2922 *** C++11 compatibility:
2924   C and C++ parsers use "nullptr" instead of "0" when __cplusplus is 201103L
2925   or higher.
2927 *** Header guards
2929   The header files such as "parser.hh", "location.hh", etc. used a constant
2930   name for preprocessor guards, for instance:
2932     #ifndef BISON_LOCATION_HH
2933     # define BISON_LOCATION_HH
2934     ...
2935     #endif // !BISON_LOCATION_HH
2937   The inclusion guard is now computed from "PREFIX/FILE-NAME", where lower
2938   case characters are converted to upper case, and series of
2939   non-alphanumerical characters are converted to an underscore.
2941   With "bison -o lang++/parser.cc", "location.hh" would now include:
2943     #ifndef YY_LANG_LOCATION_HH
2944     # define YY_LANG_LOCATION_HH
2945     ...
2946     #endif // !YY_LANG_LOCATION_HH
2948 *** C++ locations:
2950   The position and location constructors (and their initialize methods)
2951   accept new arguments for line and column.  Several issues in the
2952   documentation were fixed.
2954 ** liby is no longer asking for "rpl_fprintf" on some platforms.
2956 ** Changes in the manual:
2958 *** %printer is documented
2960   The "%printer" directive, supported since at least Bison 1.50, is finally
2961   documented.  The "mfcalc" example is extended to demonstrate it.
2963   For consistency with the C skeletons, the C++ parsers now also support
2964   "yyoutput" (as an alias to "debug_stream ()").
2966 *** Several improvements have been made:
2968   The layout for grammar excerpts was changed to a more compact scheme.
2969   Named references are motivated.  The description of the automaton
2970   description file (*.output) is updated to the current format.  Incorrect
2971   index entries were fixed.  Some other errors were fixed.
2973 ** Building bison:
2975 *** Conflicting prototypes with recent/modified Flex.
2977   Fixed build problems with the current, unreleased, version of Flex, and
2978   some modified versions of 2.5.35, which have modified function prototypes.
2980 *** Warnings during the build procedure have been eliminated.
2982 *** Several portability problems in the test suite have been fixed:
2984   This includes warnings with some compilers, unexpected behavior of tools
2985   such as diff, warning messages from the test suite itself, etc.
2987 *** The install-pdf target works properly:
2989   Running "make install-pdf" (or -dvi, -html, -info, and -ps) no longer
2990   halts in the middle of its course.
2993 * Noteworthy changes in release 2.5 (2011-05-14)
2995 ** Grammar symbol names can now contain non-initial dashes:
2997   Consistently with directives (such as %error-verbose) and with
2998   %define variables (e.g. push-pull), grammar symbol names may contain
2999   dashes in any position except the beginning.  This is a GNU
3000   extension over POSIX Yacc.  Thus, use of this extension is reported
3001   by -Wyacc and rejected in Yacc mode (--yacc).
3003 ** Named references:
3005   Historically, Yacc and Bison have supported positional references
3006   ($n, $$) to allow access to symbol values from inside of semantic
3007   actions code.
3009   Starting from this version, Bison can also accept named references.
3010   When no ambiguity is possible, original symbol names may be used
3011   as named references:
3013     if_stmt : "if" cond_expr "then" then_stmt ';'
3014     { $if_stmt = mk_if_stmt($cond_expr, $then_stmt); }
3016   In the more common case, explicit names may be declared:
3018     stmt[res] : "if" expr[cond] "then" stmt[then] "else" stmt[else] ';'
3019     { $res = mk_if_stmt($cond, $then, $else); }
3021   Location information is also accessible using @name syntax.  When
3022   accessing symbol names containing dots or dashes, explicit bracketing
3023   ($[sym.1]) must be used.
3025   These features are experimental in this version.  More user feedback
3026   will help to stabilize them.
3027   Contributed by Alex Rozenman.
3029 ** IELR(1) and canonical LR(1):
3031   IELR(1) is a minimal LR(1) parser table generation algorithm.  That
3032   is, given any context-free grammar, IELR(1) generates parser tables
3033   with the full language-recognition power of canonical LR(1) but with
3034   nearly the same number of parser states as LALR(1).  This reduction
3035   in parser states is often an order of magnitude.  More importantly,
3036   because canonical LR(1)'s extra parser states may contain duplicate
3037   conflicts in the case of non-LR(1) grammars, the number of conflicts
3038   for IELR(1) is often an order of magnitude less as well.  This can
3039   significantly reduce the complexity of developing of a grammar.
3041   Bison can now generate IELR(1) and canonical LR(1) parser tables in
3042   place of its traditional LALR(1) parser tables, which remain the
3043   default.  You can specify the type of parser tables in the grammar
3044   file with these directives:
3046     %define lr.type lalr
3047     %define lr.type ielr
3048     %define lr.type canonical-lr
3050   The default-reduction optimization in the parser tables can also be
3051   adjusted using "%define lr.default-reductions".  For details on both
3052   of these features, see the new section "Tuning LR" in the Bison
3053   manual.
3055   These features are experimental.  More user feedback will help to
3056   stabilize them.
3058 ** LAC (Lookahead Correction) for syntax error handling
3060   Contributed by Joel E. Denny.
3062   Canonical LR, IELR, and LALR can suffer from a couple of problems
3063   upon encountering a syntax error.  First, the parser might perform
3064   additional parser stack reductions before discovering the syntax
3065   error.  Such reductions can perform user semantic actions that are
3066   unexpected because they are based on an invalid token, and they
3067   cause error recovery to begin in a different syntactic context than
3068   the one in which the invalid token was encountered.  Second, when
3069   verbose error messages are enabled (with %error-verbose or the
3070   obsolete "#define YYERROR_VERBOSE"), the expected token list in the
3071   syntax error message can both contain invalid tokens and omit valid
3072   tokens.
3074   The culprits for the above problems are %nonassoc, default
3075   reductions in inconsistent states, and parser state merging.  Thus,
3076   IELR and LALR suffer the most.  Canonical LR can suffer only if
3077   %nonassoc is used or if default reductions are enabled for
3078   inconsistent states.
3080   LAC is a new mechanism within the parsing algorithm that solves
3081   these problems for canonical LR, IELR, and LALR without sacrificing
3082   %nonassoc, default reductions, or state merging.  When LAC is in
3083   use, canonical LR and IELR behave almost exactly the same for both
3084   syntactically acceptable and syntactically unacceptable input.
3085   While LALR still does not support the full language-recognition
3086   power of canonical LR and IELR, LAC at least enables LALR's syntax
3087   error handling to correctly reflect LALR's language-recognition
3088   power.
3090   Currently, LAC is only supported for deterministic parsers in C.
3091   You can enable LAC with the following directive:
3093     %define parse.lac full
3095   See the new section "LAC" in the Bison manual for additional
3096   details including a few caveats.
3098   LAC is an experimental feature.  More user feedback will help to
3099   stabilize it.
3101 ** %define improvements:
3103 *** Can now be invoked via the command line:
3105   Each of these command-line options
3107     -D NAME[=VALUE]
3108     --define=NAME[=VALUE]
3110     -F NAME[=VALUE]
3111     --force-define=NAME[=VALUE]
3113   is equivalent to this grammar file declaration
3115     %define NAME ["VALUE"]
3117   except that the manner in which Bison processes multiple definitions
3118   for the same NAME differs.  Most importantly, -F and --force-define
3119   quietly override %define, but -D and --define do not.  For further
3120   details, see the section "Bison Options" in the Bison manual.
3122 *** Variables renamed:
3124   The following %define variables
3126     api.push_pull
3127     lr.keep_unreachable_states
3129   have been renamed to
3131     api.push-pull
3132     lr.keep-unreachable-states
3134   The old names are now deprecated but will be maintained indefinitely
3135   for backward compatibility.
3137 *** Values no longer need to be quoted in the grammar file:
3139   If a %define value is an identifier, it no longer needs to be placed
3140   within quotations marks.  For example,
3142     %define api.push-pull "push"
3144   can be rewritten as
3146     %define api.push-pull push
3148 *** Unrecognized variables are now errors not warnings.
3150 *** Multiple invocations for any variable is now an error not a warning.
3152 ** Unrecognized %code qualifiers are now errors not warnings.
3154 ** Character literals not of length one:
3156   Previously, Bison quietly converted all character literals to length
3157   one.  For example, without warning, Bison interpreted the operators in
3158   the following grammar to be the same token:
3160     exp: exp '++'
3161        | exp '+' exp
3162        ;
3164   Bison now warns when a character literal is not of length one.  In
3165   some future release, Bison will start reporting an error instead.
3167 ** Destructor calls fixed for lookaheads altered in semantic actions:
3169   Previously for deterministic parsers in C, if a user semantic action
3170   altered yychar, the parser in some cases used the old yychar value to
3171   determine which destructor to call for the lookahead upon a syntax
3172   error or upon parser return.  This bug has been fixed.
3174 ** C++ parsers use YYRHSLOC:
3176   Similarly to the C parsers, the C++ parsers now define the YYRHSLOC
3177   macro and use it in the default YYLLOC_DEFAULT.  You are encouraged
3178   to use it.  If, for instance, your location structure has "first"
3179   and "last" members, instead of
3181     # define YYLLOC_DEFAULT(Current, Rhs, N)                             \
3182       do                                                                 \
3183         if (N)                                                           \
3184           {                                                              \
3185             (Current).first = (Rhs)[1].location.first;                   \
3186             (Current).last  = (Rhs)[N].location.last;                    \
3187           }                                                              \
3188         else                                                             \
3189           {                                                              \
3190             (Current).first = (Current).last = (Rhs)[0].location.last;   \
3191           }                                                              \
3192       while (false)
3194   use:
3196     # define YYLLOC_DEFAULT(Current, Rhs, N)                             \
3197       do                                                                 \
3198         if (N)                                                           \
3199           {                                                              \
3200             (Current).first = YYRHSLOC (Rhs, 1).first;                   \
3201             (Current).last  = YYRHSLOC (Rhs, N).last;                    \
3202           }                                                              \
3203         else                                                             \
3204           {                                                              \
3205             (Current).first = (Current).last = YYRHSLOC (Rhs, 0).last;   \
3206           }                                                              \
3207       while (false)
3209 ** YYLLOC_DEFAULT in C++:
3211   The default implementation of YYLLOC_DEFAULT used to be issued in
3212   the header file.  It is now output in the implementation file, after
3213   the user %code sections so that its #ifndef guard does not try to
3214   override the user's YYLLOC_DEFAULT if provided.
3216 ** YYFAIL now produces warnings and Java parsers no longer implement it:
3218   YYFAIL has existed for many years as an undocumented feature of
3219   deterministic parsers in C generated by Bison.  More recently, it was
3220   a documented feature of Bison's experimental Java parsers.  As
3221   promised in Bison 2.4.2's NEWS entry, any appearance of YYFAIL in a
3222   semantic action now produces a deprecation warning, and Java parsers
3223   no longer implement YYFAIL at all.  For further details, including a
3224   discussion of how to suppress C preprocessor warnings about YYFAIL
3225   being unused, see the Bison 2.4.2 NEWS entry.
3227 ** Temporary hack for adding a semicolon to the user action:
3229   Previously, Bison appended a semicolon to every user action for
3230   reductions when the output language defaulted to C (specifically, when
3231   neither %yacc, %language, %skeleton, or equivalent command-line
3232   options were specified).  This allowed actions such as
3234     exp: exp "+" exp { $$ = $1 + $3 };
3236   instead of
3238     exp: exp "+" exp { $$ = $1 + $3; };
3240   As a first step in removing this misfeature, Bison now issues a
3241   warning when it appends a semicolon.  Moreover, in cases where Bison
3242   cannot easily determine whether a semicolon is needed (for example, an
3243   action ending with a cpp directive or a braced compound initializer),
3244   it no longer appends one.  Thus, the C compiler might now complain
3245   about a missing semicolon where it did not before.  Future releases of
3246   Bison will cease to append semicolons entirely.
3248 ** Verbose syntax error message fixes:
3250   When %error-verbose or the obsolete "#define YYERROR_VERBOSE" is
3251   specified, syntax error messages produced by the generated parser
3252   include the unexpected token as well as a list of expected tokens.
3253   The effect of %nonassoc on these verbose messages has been corrected
3254   in two ways, but a more complete fix requires LAC, described above:
3256 *** When %nonassoc is used, there can exist parser states that accept no
3257     tokens, and so the parser does not always require a lookahead token
3258     in order to detect a syntax error.  Because no unexpected token or
3259     expected tokens can then be reported, the verbose syntax error
3260     message described above is suppressed, and the parser instead
3261     reports the simpler message, "syntax error".  Previously, this
3262     suppression was sometimes erroneously triggered by %nonassoc when a
3263     lookahead was actually required.  Now verbose messages are
3264     suppressed only when all previous lookaheads have already been
3265     shifted or discarded.
3267 *** Previously, the list of expected tokens erroneously included tokens
3268     that would actually induce a syntax error because conflicts for them
3269     were resolved with %nonassoc in the current parser state.  Such
3270     tokens are now properly omitted from the list.
3272 *** Expected token lists are still often wrong due to state merging
3273     (from LALR or IELR) and default reductions, which can both add
3274     invalid tokens and subtract valid tokens.  Canonical LR almost
3275     completely fixes this problem by eliminating state merging and
3276     default reductions.  However, there is one minor problem left even
3277     when using canonical LR and even after the fixes above.  That is,
3278     if the resolution of a conflict with %nonassoc appears in a later
3279     parser state than the one at which some syntax error is
3280     discovered, the conflicted token is still erroneously included in
3281     the expected token list.  Bison's new LAC implementation,
3282     described above, eliminates this problem and the need for
3283     canonical LR.  However, LAC is still experimental and is disabled
3284     by default.
3286 ** Java skeleton fixes:
3288 *** A location handling bug has been fixed.
3290 *** The top element of each of the value stack and location stack is now
3291     cleared when popped so that it can be garbage collected.
3293 *** Parser traces now print the top element of the stack.
3295 ** -W/--warnings fixes:
3297 *** Bison now properly recognizes the "no-" versions of categories:
3299   For example, given the following command line, Bison now enables all
3300   warnings except warnings for incompatibilities with POSIX Yacc:
3302     bison -Wall,no-yacc gram.y
3304 *** Bison now treats S/R and R/R conflicts like other warnings:
3306   Previously, conflict reports were independent of Bison's normal
3307   warning system.  Now, Bison recognizes the warning categories
3308   "conflicts-sr" and "conflicts-rr".  This change has important
3309   consequences for the -W and --warnings command-line options.  For
3310   example:
3312     bison -Wno-conflicts-sr gram.y  # S/R conflicts not reported
3313     bison -Wno-conflicts-rr gram.y  # R/R conflicts not reported
3314     bison -Wnone            gram.y  # no conflicts are reported
3315     bison -Werror           gram.y  # any conflict is an error
3317   However, as before, if the %expect or %expect-rr directive is
3318   specified, an unexpected number of conflicts is an error, and an
3319   expected number of conflicts is not reported, so -W and --warning
3320   then have no effect on the conflict report.
3322 *** The "none" category no longer disables a preceding "error":
3324   For example, for the following command line, Bison now reports
3325   errors instead of warnings for incompatibilities with POSIX Yacc:
3327     bison -Werror,none,yacc gram.y
3329 *** The "none" category now disables all Bison warnings:
3331   Previously, the "none" category disabled only Bison warnings for
3332   which there existed a specific -W/--warning category.  However,
3333   given the following command line, Bison is now guaranteed to
3334   suppress all warnings:
3336     bison -Wnone gram.y
3338 ** Precedence directives can now assign token number 0:
3340   Since Bison 2.3b, which restored the ability of precedence
3341   directives to assign token numbers, doing so for token number 0 has
3342   produced an assertion failure.  For example:
3344     %left END 0
3346   This bug has been fixed.
3349 * Noteworthy changes in release 2.4.3 (2010-08-05)
3351 ** Bison now obeys -Werror and --warnings=error for warnings about
3352    grammar rules that are useless in the parser due to conflicts.
3354 ** Problems with spawning M4 on at least FreeBSD 8 and FreeBSD 9 have
3355    been fixed.
3357 ** Failures in the test suite for GCC 4.5 have been fixed.
3359 ** Failures in the test suite for some versions of Sun Studio C++ have
3360    been fixed.
3362 ** Contrary to Bison 2.4.2's NEWS entry, it has been decided that
3363    warnings about undefined %prec identifiers will not be converted to
3364    errors in Bison 2.5.  They will remain warnings, which should be
3365    sufficient for POSIX while avoiding backward compatibility issues.
3367 ** Minor documentation fixes.
3370 * Noteworthy changes in release 2.4.2 (2010-03-20)
3372 ** Some portability problems that resulted in failures and livelocks
3373    in the test suite on some versions of at least Solaris, AIX, HP-UX,
3374    RHEL4, and Tru64 have been addressed.  As a result, fatal Bison
3375    errors should no longer cause M4 to report a broken pipe on the
3376    affected platforms.
3378 ** "%prec IDENTIFIER" requires IDENTIFIER to be defined separately.
3380   POSIX specifies that an error be reported for any identifier that does
3381   not appear on the LHS of a grammar rule and that is not defined by
3382   %token, %left, %right, or %nonassoc.  Bison 2.3b and later lost this
3383   error report for the case when an identifier appears only after a
3384   %prec directive.  It is now restored.  However, for backward
3385   compatibility with recent Bison releases, it is only a warning for
3386   now.  In Bison 2.5 and later, it will return to being an error.
3387   [Between the 2.4.2 and 2.4.3 releases, it was decided that this
3388   warning will not be converted to an error in Bison 2.5.]
3390 ** Detection of GNU M4 1.4.6 or newer during configure is improved.
3392 ** Warnings from gcc's -Wundef option about undefined YYENABLE_NLS,
3393    YYLTYPE_IS_TRIVIAL, and __STRICT_ANSI__ in C/C++ parsers are now
3394    avoided.
3396 ** %code is now a permanent feature.
3398   A traditional Yacc prologue directive is written in the form:
3400     %{CODE%}
3402   To provide a more flexible alternative, Bison 2.3b introduced the
3403   %code directive with the following forms for C/C++:
3405     %code          {CODE}
3406     %code requires {CODE}
3407     %code provides {CODE}
3408     %code top      {CODE}
3410   These forms are now considered permanent features of Bison.  See the
3411   %code entries in the section "Bison Declaration Summary" in the Bison
3412   manual for a summary of their functionality.  See the section
3413   "Prologue Alternatives" for a detailed discussion including the
3414   advantages of %code over the traditional Yacc prologue directive.
3416   Bison's Java feature as a whole including its current usage of %code
3417   is still considered experimental.
3419 ** YYFAIL is deprecated and will eventually be removed.
3421   YYFAIL has existed for many years as an undocumented feature of
3422   deterministic parsers in C generated by Bison.  Previously, it was
3423   documented for Bison's experimental Java parsers.  YYFAIL is no longer
3424   documented for Java parsers and is formally deprecated in both cases.
3425   Users are strongly encouraged to migrate to YYERROR, which is
3426   specified by POSIX.
3428   Like YYERROR, you can invoke YYFAIL from a semantic action in order to
3429   induce a syntax error.  The most obvious difference from YYERROR is
3430   that YYFAIL will automatically invoke yyerror to report the syntax
3431   error so that you don't have to.  However, there are several other
3432   subtle differences between YYERROR and YYFAIL, and YYFAIL suffers from
3433   inherent flaws when %error-verbose or "#define YYERROR_VERBOSE" is
3434   used.  For a more detailed discussion, see:
3436     http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html
3438   The upcoming Bison 2.5 will remove YYFAIL from Java parsers, but
3439   deterministic parsers in C will continue to implement it.  However,
3440   because YYFAIL is already flawed, it seems futile to try to make new
3441   Bison features compatible with it.  Thus, during parser generation,
3442   Bison 2.5 will produce a warning whenever it discovers YYFAIL in a
3443   rule action.  In a later release, YYFAIL will be disabled for
3444   %error-verbose and "#define YYERROR_VERBOSE".  Eventually, YYFAIL will
3445   be removed altogether.
3447   There exists at least one case where Bison 2.5's YYFAIL warning will
3448   be a false positive.  Some projects add phony uses of YYFAIL and other
3449   Bison-defined macros for the sole purpose of suppressing C
3450   preprocessor warnings (from GCC cpp's -Wunused-macros, for example).
3451   To avoid Bison's future warning, such YYFAIL uses can be moved to the
3452   epilogue (that is, after the second "%%") in the Bison input file.  In
3453   this release (2.4.2), Bison already generates its own code to suppress
3454   C preprocessor warnings for YYFAIL, so projects can remove their own
3455   phony uses of YYFAIL if compatibility with Bison releases prior to
3456   2.4.2 is not necessary.
3458 ** Internationalization.
3460   Fix a regression introduced in Bison 2.4: Under some circumstances,
3461   message translations were not installed although supported by the
3462   host system.
3465 * Noteworthy changes in release 2.4.1 (2008-12-11)
3467 ** In the GLR defines file, unexpanded M4 macros in the yylval and yylloc
3468    declarations have been fixed.
3470 ** Temporary hack for adding a semicolon to the user action.
3472   Bison used to prepend a trailing semicolon at the end of the user
3473   action for reductions.  This allowed actions such as
3475     exp: exp "+" exp { $$ = $1 + $3 };
3477   instead of
3479     exp: exp "+" exp { $$ = $1 + $3; };
3481   Some grammars still depend on this "feature".  Bison 2.4.1 restores
3482   the previous behavior in the case of C output (specifically, when
3483   neither %language or %skeleton or equivalent command-line options
3484   are used) to leave more time for grammars depending on the old
3485   behavior to be adjusted.  Future releases of Bison will disable this
3486   feature.
3488 ** A few minor improvements to the Bison manual.
3491 * Noteworthy changes in release 2.4 (2008-11-02)
3493 ** %language is an experimental feature.
3495   We first introduced this feature in test release 2.3b as a cleaner
3496   alternative to %skeleton.  Since then, we have discussed the possibility of
3497   modifying its effect on Bison's output file names.  Thus, in this release,
3498   we consider %language to be an experimental feature that will likely evolve
3499   in future releases.
3501 ** Forward compatibility with GNU M4 has been improved.
3503 ** Several bugs in the C++ skeleton and the experimental Java skeleton have been
3504   fixed.
3507 * Noteworthy changes in release 2.3b (2008-05-27)
3509 ** The quotes around NAME that used to be required in the following directive
3510   are now deprecated:
3512     %define NAME "VALUE"
3514 ** The directive "%pure-parser" is now deprecated in favor of:
3516     %define api.pure
3518   which has the same effect except that Bison is more careful to warn about
3519   unreasonable usage in the latter case.
3521 ** Push Parsing
3523   Bison can now generate an LALR(1) parser in C with a push interface.  That
3524   is, instead of invoking "yyparse", which pulls tokens from "yylex", you can
3525   push one token at a time to the parser using "yypush_parse", which will
3526   return to the caller after processing each token.  By default, the push
3527   interface is disabled.  Either of the following directives will enable it:
3529     %define api.push_pull "push" // Just push; does not require yylex.
3530     %define api.push_pull "both" // Push and pull; requires yylex.
3532   See the new section "A Push Parser" in the Bison manual for details.
3534   The current push parsing interface is experimental and may evolve.  More user
3535   feedback will help to stabilize it.
3537 ** The -g and --graph options now output graphs in Graphviz DOT format,
3538   not VCG format.  Like --graph, -g now also takes an optional FILE argument
3539   and thus cannot be bundled with other short options.
3541 ** Java
3543   Bison can now generate an LALR(1) parser in Java.  The skeleton is
3544   "data/lalr1.java".  Consider using the new %language directive instead of
3545   %skeleton to select it.
3547   See the new section "Java Parsers" in the Bison manual for details.
3549   The current Java interface is experimental and may evolve.  More user
3550   feedback will help to stabilize it.
3551   Contributed by Paolo Bonzini.
3553 ** %language
3555   This new directive specifies the programming language of the generated
3556   parser, which can be C (the default), C++, or Java.  Besides the skeleton
3557   that Bison uses, the directive affects the names of the generated files if
3558   the grammar file's name ends in ".y".
3560 ** XML Automaton Report
3562   Bison can now generate an XML report of the LALR(1) automaton using the new
3563   "--xml" option.  The current XML schema is experimental and may evolve.  More
3564   user feedback will help to stabilize it.
3565   Contributed by Wojciech Polak.
3567 ** The grammar file may now specify the name of the parser header file using
3568   %defines.  For example:
3570     %defines "parser.h"
3572 ** When reporting useless rules, useless nonterminals, and unused terminals,
3573   Bison now employs the terms "useless in grammar" instead of "useless",
3574   "useless in parser" instead of "never reduced", and "unused in grammar"
3575   instead of "unused".
3577 ** Unreachable State Removal
3579   Previously, Bison sometimes generated parser tables containing unreachable
3580   states.  A state can become unreachable during conflict resolution if Bison
3581   disables a shift action leading to it from a predecessor state.  Bison now:
3583     1. Removes unreachable states.
3585     2. Does not report any conflicts that appeared in unreachable states.
3586        WARNING: As a result, you may need to update %expect and %expect-rr
3587        directives in existing grammar files.
3589     3. For any rule used only in such states, Bison now reports the rule as
3590        "useless in parser due to conflicts".
3592   This feature can be disabled with the following directive:
3594     %define lr.keep_unreachable_states
3596   See the %define entry in the "Bison Declaration Summary" in the Bison manual
3597   for further discussion.
3599 ** Lookahead Set Correction in the ".output" Report
3601   When instructed to generate a ".output" file including lookahead sets
3602   (using "--report=lookahead", for example), Bison now prints each reduction's
3603   lookahead set only next to the associated state's one item that (1) is
3604   associated with the same rule as the reduction and (2) has its dot at the end
3605   of its RHS.  Previously, Bison also erroneously printed the lookahead set
3606   next to all of the state's other items associated with the same rule.  This
3607   bug affected only the ".output" file and not the generated parser source
3608   code.
3610 ** --report-file=FILE is a new option to override the default ".output" file
3611   name.
3613 ** The "=" that used to be required in the following directives is now
3614   deprecated:
3616     %file-prefix "parser"
3617     %name-prefix "c_"
3618     %output "parser.c"
3620 ** An Alternative to "%{...%}" -- "%code QUALIFIER {CODE}"
3622   Bison 2.3a provided a new set of directives as a more flexible alternative to
3623   the traditional Yacc prologue blocks.  Those have now been consolidated into
3624   a single %code directive with an optional qualifier field, which identifies
3625   the purpose of the code and thus the location(s) where Bison should generate
3626   it:
3628     1. "%code          {CODE}" replaces "%after-header  {CODE}"
3629     2. "%code requires {CODE}" replaces "%start-header  {CODE}"
3630     3. "%code provides {CODE}" replaces "%end-header    {CODE}"
3631     4. "%code top      {CODE}" replaces "%before-header {CODE}"
3633   See the %code entries in section "Bison Declaration Summary" in the Bison
3634   manual for a summary of the new functionality.  See the new section "Prologue
3635   Alternatives" for a detailed discussion including the advantages of %code
3636   over the traditional Yacc prologues.
3638   The prologue alternatives are experimental.  More user feedback will help to
3639   determine whether they should become permanent features.
3641 ** Revised warning: unset or unused midrule values
3643   Since Bison 2.2, Bison has warned about midrule values that are set but not
3644   used within any of the actions of the parent rule.  For example, Bison warns
3645   about unused $2 in:
3647     exp: '1' { $$ = 1; } '+' exp { $$ = $1 + $4; };
3649   Now, Bison also warns about midrule values that are used but not set.  For
3650   example, Bison warns about unset $$ in the midrule action in:
3652     exp: '1' { $1 = 1; } '+' exp { $$ = $2 + $4; };
3654   However, Bison now disables both of these warnings by default since they
3655   sometimes prove to be false alarms in existing grammars employing the Yacc
3656   constructs $0 or $-N (where N is some positive integer).
3658   To enable these warnings, specify the option "--warnings=midrule-values" or
3659   "-W", which is a synonym for "--warnings=all".
3661 ** Default %destructor or %printer with "<*>" or "<>"
3663   Bison now recognizes two separate kinds of default %destructor's and
3664   %printer's:
3666     1. Place "<*>" in a %destructor/%printer symbol list to define a default
3667        %destructor/%printer for all grammar symbols for which you have formally
3668        declared semantic type tags.
3670     2. Place "<>" in a %destructor/%printer symbol list to define a default
3671        %destructor/%printer for all grammar symbols without declared semantic
3672        type tags.
3674   Bison no longer supports the "%symbol-default" notation from Bison 2.3a.
3675   "<*>" and "<>" combined achieve the same effect with one exception: Bison no
3676   longer applies any %destructor to a midrule value if that midrule value is
3677   not actually ever referenced using either $$ or $n in a semantic action.
3679   The default %destructor's and %printer's are experimental.  More user
3680   feedback will help to determine whether they should become permanent
3681   features.
3683   See the section "Freeing Discarded Symbols" in the Bison manual for further
3684   details.
3686 ** %left, %right, and %nonassoc can now declare token numbers.  This is required
3687   by POSIX.  However, see the end of section "Operator Precedence" in the Bison
3688   manual for a caveat concerning the treatment of literal strings.
3690 ** The nonfunctional --no-parser, -n, and %no-parser options have been
3691   completely removed from Bison.
3694 * Noteworthy changes in release 2.3a (2006-09-13)
3696 ** Instead of %union, you can define and use your own union type
3697   YYSTYPE if your grammar contains at least one <type> tag.
3698   Your YYSTYPE need not be a macro; it can be a typedef.
3699   This change is for compatibility with other Yacc implementations,
3700   and is required by POSIX.
3702 ** Locations columns and lines start at 1.
3703   In accordance with the GNU Coding Standards and Emacs.
3705 ** You may now declare per-type and default %destructor's and %printer's:
3707   For example:
3709     %union { char *string; }
3710     %token <string> STRING1
3711     %token <string> STRING2
3712     %type  <string> string1
3713     %type  <string> string2
3714     %union { char character; }
3715     %token <character> CHR
3716     %type  <character> chr
3717     %destructor { free ($$); } %symbol-default
3718     %destructor { free ($$); printf ("%d", @$.first_line); } STRING1 string1
3719     %destructor { } <character>
3721   guarantees that, when the parser discards any user-defined symbol that has a
3722   semantic type tag other than "<character>", it passes its semantic value to
3723   "free".  However, when the parser discards a "STRING1" or a "string1", it
3724   also prints its line number to "stdout".  It performs only the second
3725   "%destructor" in this case, so it invokes "free" only once.
3727   [Although we failed to mention this here in the 2.3a release, the default
3728   %destructor's and %printer's were experimental, and they were rewritten in
3729   future versions.]
3731 ** Except for LALR(1) parsers in C with POSIX Yacc emulation enabled (with "-y",
3732   "--yacc", or "%yacc"), Bison no longer generates #define statements for
3733   associating token numbers with token names.  Removing the #define statements
3734   helps to sanitize the global namespace during preprocessing, but POSIX Yacc
3735   requires them.  Bison still generates an enum for token names in all cases.
3737 ** Handling of traditional Yacc prologue blocks is now more consistent but
3738   potentially incompatible with previous releases of Bison.
3740   As before, you declare prologue blocks in your grammar file with the
3741   "%{ ... %}" syntax.  To generate the pre-prologue, Bison concatenates all
3742   prologue blocks that you've declared before the first %union.  To generate
3743   the post-prologue, Bison concatenates all prologue blocks that you've
3744   declared after the first %union.
3746   Previous releases of Bison inserted the pre-prologue into both the header
3747   file and the code file in all cases except for LALR(1) parsers in C.  In the
3748   latter case, Bison inserted it only into the code file.  For parsers in C++,
3749   the point of insertion was before any token definitions (which associate
3750   token numbers with names).  For parsers in C, the point of insertion was
3751   after the token definitions.
3753   Now, Bison never inserts the pre-prologue into the header file.  In the code
3754   file, it always inserts it before the token definitions.
3756 ** Bison now provides a more flexible alternative to the traditional Yacc
3757   prologue blocks: %before-header, %start-header, %end-header, and
3758   %after-header.
3760   For example, the following declaration order in the grammar file reflects the
3761   order in which Bison will output these code blocks.  However, you are free to
3762   declare these code blocks in your grammar file in whatever order is most
3763   convenient for you:
3765     %before-header {
3766       /* Bison treats this block like a pre-prologue block: it inserts it into
3767        * the code file before the contents of the header file.  It does *not*
3768        * insert it into the header file.  This is a good place to put
3769        * #include's that you want at the top of your code file.  A common
3770        * example is '#include "system.h"'.  */
3771     }
3772     %start-header {
3773       /* Bison inserts this block into both the header file and the code file.
3774        * In both files, the point of insertion is before any Bison-generated
3775        * token, semantic type, location type, and class definitions.  This is a
3776        * good place to define %union dependencies, for example.  */
3777     }
3778     %union {
3779       /* Unlike the traditional Yacc prologue blocks, the output order for the
3780        * new %*-header blocks is not affected by their declaration position
3781        * relative to any %union in the grammar file.  */
3782     }
3783     %end-header {
3784       /* Bison inserts this block into both the header file and the code file.
3785        * In both files, the point of insertion is after the Bison-generated
3786        * definitions.  This is a good place to declare or define public
3787        * functions or data structures that depend on the Bison-generated
3788        * definitions.  */
3789     }
3790     %after-header {
3791       /* Bison treats this block like a post-prologue block: it inserts it into
3792        * the code file after the contents of the header file.  It does *not*
3793        * insert it into the header file.  This is a good place to declare or
3794        * define internal functions or data structures that depend on the
3795        * Bison-generated definitions.  */
3796     }
3798   If you have multiple occurrences of any one of the above declarations, Bison
3799   will concatenate the contents in declaration order.
3801   [Although we failed to mention this here in the 2.3a release, the prologue
3802   alternatives were experimental, and they were rewritten in future versions.]
3804 ** The option "--report=look-ahead" has been changed to "--report=lookahead".
3805   The old spelling still works, but is not documented and may be removed
3806   in a future release.
3809 * Noteworthy changes in release 2.3 (2006-06-05)
3811 ** GLR grammars should now use "YYRECOVERING ()" instead of "YYRECOVERING",
3812   for compatibility with LALR(1) grammars.
3814 ** It is now documented that any definition of YYSTYPE or YYLTYPE should
3815   be to a type name that does not contain parentheses or brackets.
3818 * Noteworthy changes in release 2.2 (2006-05-19)
3820 ** The distribution terms for all Bison-generated parsers now permit
3821   using the parsers in nonfree programs.  Previously, this permission
3822   was granted only for Bison-generated LALR(1) parsers in C.
3824 ** %name-prefix changes the namespace name in C++ outputs.
3826 ** The C++ parsers export their token_type.
3828 ** Bison now allows multiple %union declarations, and concatenates
3829   their contents together.
3831 ** New warning: unused values
3832   Right-hand side symbols whose values are not used are reported,
3833   if the symbols have destructors.  For instance:
3835      exp: exp "?" exp ":" exp { $1 ? $1 : $3; }
3836         | exp "+" exp
3837         ;
3839   will trigger a warning about $$ and $5 in the first rule, and $3 in
3840   the second ($1 is copied to $$ by the default rule).  This example
3841   most likely contains three errors, and could be rewritten as:
3843      exp: exp "?" exp ":" exp
3844             { $$ = $1 ? $3 : $5; free ($1 ? $5 : $3); free ($1); }
3845         | exp "+" exp
3846             { $$ = $1 ? $1 : $3; if ($1) free ($3); }
3847         ;
3849   However, if the original actions were really intended, memory leaks
3850   and all, the warnings can be suppressed by letting Bison believe the
3851   values are used, e.g.:
3853      exp: exp "?" exp ":" exp { $1 ? $1 : $3; (void) ($$, $5); }
3854         | exp "+" exp         { $$ = $1; (void) $3; }
3855         ;
3857   If there are midrule actions, the warning is issued if no action
3858   uses it.  The following triggers no warning: $1 and $3 are used.
3860      exp: exp { push ($1); } '+' exp { push ($3); sum (); };
3862   The warning is intended to help catching lost values and memory leaks.
3863   If a value is ignored, its associated memory typically is not reclaimed.
3865 ** %destructor vs. YYABORT, YYACCEPT, and YYERROR.
3866   Destructors are now called when user code invokes YYABORT, YYACCEPT,
3867   and YYERROR, for all objects on the stack, other than objects
3868   corresponding to the right-hand side of the current rule.
3870 ** %expect, %expect-rr
3871   Incorrect numbers of expected conflicts are now actual errors,
3872   instead of warnings.
3874 ** GLR, YACC parsers.
3875   The %parse-params are available in the destructors (and the
3876   experimental printers) as per the documentation.
3878 ** Bison now warns if it finds a stray "$" or "@" in an action.
3880 ** %require "VERSION"
3881   This specifies that the grammar file depends on features implemented
3882   in Bison version VERSION or higher.
3884 ** lalr1.cc: The token and value types are now class members.
3885   The tokens were defined as free form enums and cpp macros.  YYSTYPE
3886   was defined as a free form union.  They are now class members:
3887   tokens are enumerations of the "yy::parser::token" struct, and the
3888   semantic values have the "yy::parser::semantic_type" type.
3890   If you do not want or can update to this scheme, the directive
3891   '%define "global_tokens_and_yystype" "1"' triggers the global
3892   definition of tokens and YYSTYPE.  This change is suitable both
3893   for previous releases of Bison, and this one.
3895   If you wish to update, then make sure older version of Bison will
3896   fail using '%require "2.2"'.
3898 ** DJGPP support added.
3901 * Noteworthy changes in release 2.1 (2005-09-16)
3903 ** The C++ lalr1.cc skeleton supports %lex-param.
3905 ** Bison-generated parsers now support the translation of diagnostics like
3906   "syntax error" into languages other than English.  The default
3907   language is still English.  For details, please see the new
3908   Internationalization section of the Bison manual.  Software
3909   distributors should also see the new PACKAGING file.  Thanks to
3910   Bruno Haible for this new feature.
3912 ** Wording in the Bison-generated parsers has been changed slightly to
3913   simplify translation.  In particular, the message "memory exhausted"
3914   has replaced "parser stack overflow", as the old message was not
3915   always accurate for modern Bison-generated parsers.
3917 ** Destructors are now called when the parser aborts, for all symbols left
3918   behind on the stack.  Also, the start symbol is now destroyed after a
3919   successful parse.  In both cases, the behavior was formerly inconsistent.
3921 ** When generating verbose diagnostics, Bison-generated parsers no longer
3922   quote the literal strings associated with tokens.  For example, for
3923   a syntax error associated with '%token NUM "number"' they might
3924   print 'syntax error, unexpected number' instead of 'syntax error,
3925   unexpected "number"'.
3928 * Noteworthy changes in release 2.0 (2004-12-25)
3930 ** Possibly-incompatible changes
3932   - Bison-generated parsers no longer default to using the alloca function
3933     (when available) to extend the parser stack, due to widespread
3934     problems in unchecked stack-overflow detection.  You can "#define
3935     YYSTACK_USE_ALLOCA 1" to require the use of alloca, but please read
3936     the manual to determine safe values for YYMAXDEPTH in that case.
3938   - Error token location.
3939     During error recovery, the location of the syntax error is updated
3940     to cover the whole sequence covered by the error token: it includes
3941     the shifted symbols thrown away during the first part of the error
3942     recovery, and the lookahead rejected during the second part.
3944   - Semicolon changes:
3945     . Stray semicolons are no longer allowed at the start of a grammar.
3946     . Semicolons are now required after in-grammar declarations.
3948   - Unescaped newlines are no longer allowed in character constants or
3949     string literals.  They were never portable, and GCC 3.4.0 has
3950     dropped support for them.  Better diagnostics are now generated if
3951     forget a closing quote.
3953   - NUL bytes are no longer allowed in Bison string literals, unfortunately.
3955 ** New features
3957   - GLR grammars now support locations.
3959   - New directive: %initial-action.
3960     This directive allows the user to run arbitrary code (including
3961     initializing @$) from yyparse before parsing starts.
3963   - A new directive "%expect-rr N" specifies the expected number of
3964     reduce/reduce conflicts in GLR parsers.
3966   - %token numbers can now be hexadecimal integers, e.g., "%token FOO 0x12d".
3967     This is a GNU extension.
3969   - The option "--report=lookahead" was changed to "--report=look-ahead".
3970     [However, this was changed back after 2.3.]
3972   - Experimental %destructor support has been added to lalr1.cc.
3974   - New configure option --disable-yacc, to disable installation of the
3975     yacc command and -ly library introduced in 1.875 for POSIX conformance.
3977 ** Bug fixes
3979   - For now, %expect-count violations are now just warnings, not errors.
3980     This is for compatibility with Bison 1.75 and earlier (when there are
3981     reduce/reduce conflicts) and with Bison 1.30 and earlier (when there
3982     are too many or too few shift/reduce conflicts).  However, in future
3983     versions of Bison we plan to improve the %expect machinery so that
3984     these violations will become errors again.
3986   - Within Bison itself, numbers (e.g., goto numbers) are no longer
3987     arbitrarily limited to 16-bit counts.
3989   - Semicolons are now allowed before "|" in grammar rules, as POSIX requires.
3992 * Noteworthy changes in release 1.875 (2003-01-01)
3994 ** The documentation license has been upgraded to version 1.2
3995   of the GNU Free Documentation License.
3997 ** syntax error processing
3999   - In Yacc-style parsers YYLLOC_DEFAULT is now used to compute error
4000     locations too.  This fixes bugs in error-location computation.
4002   - %destructor
4003     It is now possible to reclaim the memory associated to symbols
4004     discarded during error recovery.  This feature is still experimental.
4006   - %error-verbose
4007     This new directive is preferred over YYERROR_VERBOSE.
4009   - #defining yyerror to steal internal variables is discouraged.
4010     It is not guaranteed to work forever.
4012 ** POSIX conformance
4014   - Semicolons are once again optional at the end of grammar rules.
4015     This reverts to the behavior of Bison 1.33 and earlier, and improves
4016     compatibility with Yacc.
4018   - "parse error" -> "syntax error"
4019     Bison now uniformly uses the term "syntax error"; formerly, the code
4020     and manual sometimes used the term "parse error" instead.  POSIX
4021     requires "syntax error" in diagnostics, and it was thought better to
4022     be consistent.
4024   - The documentation now emphasizes that yylex and yyerror must be
4025     declared before use.  C99 requires this.
4027   - Bison now parses C99 lexical constructs like UCNs and
4028     backslash-newline within C escape sequences, as POSIX 1003.1-2001 requires.
4030   - File names are properly escaped in C output.  E.g., foo\bar.y is
4031     output as "foo\\bar.y".
4033   - Yacc command and library now available
4034     The Bison distribution now installs a "yacc" command, as POSIX requires.
4035     Also, Bison now installs a small library liby.a containing
4036     implementations of Yacc-compatible yyerror and main functions.
4037     This library is normally not useful, but POSIX requires it.
4039   - Type clashes now generate warnings, not errors.
4041   - If the user does not define YYSTYPE as a macro, Bison now declares it
4042     using typedef instead of defining it as a macro.
4043     For consistency, YYLTYPE is also declared instead of defined.
4045 ** Other compatibility issues
4047   - %union directives can now have a tag before the "{", e.g., the
4048     directive "%union foo {...}" now generates the C code
4049     "typedef union foo { ... } YYSTYPE;"; this is for Yacc compatibility.
4050     The default union tag is "YYSTYPE", for compatibility with Solaris 9 Yacc.
4051     For consistency, YYLTYPE's struct tag is now "YYLTYPE" not "yyltype".
4052     This is for compatibility with both Yacc and Bison 1.35.
4054   - ";" is output before the terminating "}" of an action, for
4055     compatibility with Bison 1.35.
4057   - Bison now uses a Yacc-style format for conflict reports, e.g.,
4058     "conflicts: 2 shift/reduce, 1 reduce/reduce".
4060   - "yystype" and "yyltype" are now obsolescent macros instead of being
4061     typedefs or tags; they are no longer documented and are planned to be
4062     withdrawn in a future release.
4064 ** GLR parser notes
4066   - GLR and inline
4067     Users of Bison have to decide how they handle the portability of the
4068     C keyword "inline".
4070   - "parsing stack overflow..." -> "parser stack overflow"
4071     GLR parsers now report "parser stack overflow" as per the Bison manual.
4073 ** %parse-param and %lex-param
4074   The macros YYPARSE_PARAM and YYLEX_PARAM provide a means to pass
4075   additional context to yyparse and yylex.  They suffer from several
4076   shortcomings:
4078   - a single argument only can be added,
4079   - their types are weak (void *),
4080   - this context is not passed to ancillary functions such as yyerror,
4081   - only yacc.c parsers support them.
4083   The new %parse-param/%lex-param directives provide a more precise control.
4084   For instance:
4086     %parse-param {int *nastiness}
4087     %lex-param   {int *nastiness}
4088     %parse-param {int *randomness}
4090   results in the following signatures:
4092     int yylex   (int *nastiness);
4093     int yyparse (int *nastiness, int *randomness);
4095   or, if both %pure-parser and %locations are used:
4097     int yylex   (YYSTYPE *lvalp, YYLTYPE *llocp, int *nastiness);
4098     int yyparse (int *nastiness, int *randomness);
4100 ** Bison now warns if it detects conflicting outputs to the same file,
4101   e.g., it generates a warning for "bison -d -o foo.h foo.y" since
4102   that command outputs both code and header to foo.h.
4104 ** #line in output files
4105   - --no-line works properly.
4107 ** Bison can no longer be built by a K&R C compiler; it requires C89 or
4108   later to be built.  This change originally took place a few versions
4109   ago, but nobody noticed until we recently asked someone to try
4110   building Bison with a K&R C compiler.
4113 * Noteworthy changes in release 1.75 (2002-10-14)
4115 ** Bison should now work on 64-bit hosts.
4117 ** Indonesian translation thanks to Tedi Heriyanto.
4119 ** GLR parsers
4120   Fix spurious parse errors.
4122 ** Pure parsers
4123   Some people redefine yyerror to steal yyparse' private variables.
4124   Reenable this trick until an official feature replaces it.
4126 ** Type Clashes
4127   In agreement with POSIX and with other Yaccs, leaving a default
4128   action is valid when $$ is untyped, and $1 typed:
4130         untyped: ... typed;
4132   but the converse remains an error:
4134         typed: ... untyped;
4136 ** Values of midrule actions
4137   The following code:
4139         foo: { ... } { $$ = $1; } ...
4141   was incorrectly rejected: $1 is defined in the second midrule
4142   action, and is equal to the $$ of the first midrule action.
4145 * Noteworthy changes in release 1.50 (2002-10-04)
4147 ** GLR parsing
4148   The declaration
4149      %glr-parser
4150   causes Bison to produce a Generalized LR (GLR) parser, capable of handling
4151   almost any context-free grammar, ambiguous or not.  The new declarations
4152   %dprec and %merge on grammar rules allow parse-time resolution of
4153   ambiguities.  Contributed by Paul Hilfinger.
4155   Unfortunately Bison 1.50 does not work properly on 64-bit hosts
4156   like the Alpha, so please stick to 32-bit hosts for now.
4158 ** Output Directory
4159   When not in Yacc compatibility mode, when the output file was not
4160   specified, running "bison foo/bar.y" created "foo/bar.c".  It
4161   now creates "bar.c".
4163 ** Undefined token
4164   The undefined token was systematically mapped to 2 which prevented
4165   the use of 2 by the user.  This is no longer the case.
4167 ** Unknown token numbers
4168   If yylex returned an out of range value, yyparse could die.  This is
4169   no longer the case.
4171 ** Error token
4172   According to POSIX, the error token must be 256.
4173   Bison extends this requirement by making it a preference: *if* the
4174   user specified that one of her tokens is numbered 256, then error
4175   will be mapped onto another number.
4177 ** Verbose error messages
4178   They no longer report "..., expecting error or..." for states where
4179   error recovery is possible.
4181 ** End token
4182   Defaults to "$end" instead of "$".
4184 ** Error recovery now conforms to documentation and to POSIX
4185   When a Bison-generated parser encounters a syntax error, it now pops
4186   the stack until it finds a state that allows shifting the error
4187   token.  Formerly, it popped the stack until it found a state that
4188   allowed some non-error action other than a default reduction on the
4189   error token.  The new behavior has long been the documented behavior,
4190   and has long been required by POSIX.  For more details, please see
4191   Paul Eggert, "Reductions during Bison error handling" (2002-05-20)
4192   <http://lists.gnu.org/archive/html/bug-bison/2002-05/msg00038.html>.
4194 ** Traces
4195   Popped tokens and nonterminals are now reported.
4197 ** Larger grammars
4198   Larger grammars are now supported (larger token numbers, larger grammar
4199   size (= sum of the LHS and RHS lengths), larger LALR tables).
4200   Formerly, many of these numbers ran afoul of 16-bit limits;
4201   now these limits are 32 bits on most hosts.
4203 ** Explicit initial rule
4204   Bison used to play hacks with the initial rule, which the user does
4205   not write.  It is now explicit, and visible in the reports and
4206   graphs as rule 0.
4208 ** Useless rules
4209   Before, Bison reported the useless rules, but, although not used,
4210   included them in the parsers.  They are now actually removed.
4212 ** Useless rules, useless nonterminals
4213   They are now reported, as a warning, with their locations.
4215 ** Rules never reduced
4216   Rules that can never be reduced because of conflicts are now
4217   reported.
4219 ** Incorrect "Token not used"
4220   On a grammar such as
4222     %token useless useful
4223     %%
4224     exp: '0' %prec useful;
4226   where a token was used to set the precedence of the last rule,
4227   bison reported both "useful" and "useless" as useless tokens.
4229 ** Revert the C++ namespace changes introduced in 1.31
4230   as they caused too many portability hassles.
4232 ** Default locations
4233   By an accident of design, the default computation of @$ was
4234   performed after another default computation was performed: @$ = @1.
4235   The latter is now removed: YYLLOC_DEFAULT is fully responsible of
4236   the computation of @$.
4238 ** Token end-of-file
4239   The token end of file may be specified by the user, in which case,
4240   the user symbol is used in the reports, the graphs, and the verbose
4241   error messages instead of "$end", which remains being the default.
4242   For instance
4243     %token MYEOF 0
4244   or
4245     %token MYEOF 0 "end of file"
4247 ** Semantic parser
4248   This old option, which has been broken for ages, is removed.
4250 ** New translations
4251   Brazilian Portuguese, thanks to Alexandre Folle de Menezes.
4252   Croatian, thanks to Denis Lackovic.
4254 ** Incorrect token definitions
4255   When given
4256     %token 'a' "A"
4257   bison used to output
4258     #define 'a' 65
4260 ** Token definitions as enums
4261   Tokens are output both as the traditional #define's, and, provided
4262   the compiler supports ANSI C or is a C++ compiler, as enums.
4263   This lets debuggers display names instead of integers.
4265 ** Reports
4266   In addition to --verbose, bison supports --report=THINGS, which
4267   produces additional information:
4268   - itemset
4269     complete the core item sets with their closure
4270   - lookahead [changed to "look-ahead" in 1.875e through 2.3, but changed back]
4271     explicitly associate lookahead tokens to items
4272   - solved
4273     describe shift/reduce conflicts solving.
4274     Bison used to systematically output this information on top of
4275     the report.  Solved conflicts are now attached to their states.
4277 ** Type clashes
4278   Previous versions don't complain when there is a type clash on
4279   the default action if the rule has a midrule action, such as in:
4281     %type <foo> bar
4282     %%
4283     bar: '0' {} '0';
4285   This is fixed.
4287 ** GNU M4 is now required when using Bison.
4290 * Noteworthy changes in release 1.35 (2002-03-25)
4292 ** C Skeleton
4293   Some projects use Bison's C parser with C++ compilers, and define
4294   YYSTYPE as a class.  The recent adjustment of C parsers for data
4295   alignment and 64 bit architectures made this impossible.
4297   Because for the time being no real solution for C++ parser
4298   generation exists, kludges were implemented in the parser to
4299   maintain this use.  In the future, when Bison has C++ parsers, this
4300   kludge will be disabled.
4302   This kludge also addresses some C++ problems when the stack was
4303   extended.
4306 * Noteworthy changes in release 1.34 (2002-03-12)
4308 ** File name clashes are detected
4309   $ bison foo.y -d -o foo.x
4310   fatal error: header and parser would both be named "foo.x"
4312 ** A missing ";" at the end of a rule triggers a warning
4313   In accordance with POSIX, and in agreement with other
4314   Yacc implementations, Bison will mandate this semicolon in the near
4315   future.  This eases the implementation of a Bison parser of Bison
4316   grammars by making this grammar LALR(1) instead of LR(2).  To
4317   facilitate the transition, this release introduces a warning.
4319 ** Revert the C++ namespace changes introduced in 1.31, as they caused too
4320   many portability hassles.
4322 ** DJGPP support added.
4324 ** Fix test suite portability problems.
4327 * Noteworthy changes in release 1.33 (2002-02-07)
4329 ** Fix C++ issues
4330   Groff could not be compiled for the definition of size_t was lacking
4331   under some conditions.
4333 ** Catch invalid @n
4334   As is done with $n.
4337 * Noteworthy changes in release 1.32 (2002-01-23)
4339 ** Fix Yacc output file names
4341 ** Portability fixes
4343 ** Italian, Dutch translations
4346 * Noteworthy changes in release 1.31 (2002-01-14)
4348 ** Many Bug Fixes
4350 ** GNU Gettext and %expect
4351   GNU Gettext asserts 10 s/r conflicts, but there are 7.  Now that
4352   Bison dies on incorrect %expectations, we fear there will be
4353   too many bug reports for Gettext, so _for the time being_, %expect
4354   does not trigger an error when the input file is named "plural.y".
4356 ** Use of alloca in parsers
4357   If YYSTACK_USE_ALLOCA is defined to 0, then the parsers will use
4358   malloc exclusively.  Since 1.29, but was not NEWS'ed.
4360   alloca is used only when compiled with GCC, to avoid portability
4361   problems as on AIX.
4363 ** yyparse now returns 2 if memory is exhausted; formerly it dumped core.
4365 ** When the generated parser lacks debugging code, YYDEBUG is now 0
4366   (as POSIX requires) instead of being undefined.
4368 ** User Actions
4369   Bison has always permitted actions such as { $$ = $1 }: it adds the
4370   ending semicolon.  Now if in Yacc compatibility mode, the semicolon
4371   is no longer output: one has to write { $$ = $1; }.
4373 ** Better C++ compliance
4374   The output parsers try to respect C++ namespaces.
4375   [This turned out to be a failed experiment, and it was reverted later.]
4377 ** Reduced Grammars
4378   Fixed bugs when reporting useless nonterminals.
4380 ** 64 bit hosts
4381   The parsers work properly on 64 bit hosts.
4383 ** Error messages
4384   Some calls to strerror resulted in scrambled or missing error messages.
4386 ** %expect
4387   When the number of shift/reduce conflicts is correct, don't issue
4388   any warning.
4390 ** The verbose report includes the rule line numbers.
4392 ** Rule line numbers are fixed in traces.
4394 ** Swedish translation
4396 ** Parse errors
4397   Verbose parse error messages from the parsers are better looking.
4398   Before: parse error: unexpected `'/'', expecting `"number"' or `'-'' or `'(''
4399      Now: parse error: unexpected '/', expecting "number" or '-' or '('
4401 ** Fixed parser memory leaks.
4402   When the generated parser was using malloc to extend its stacks, the
4403   previous allocations were not freed.
4405 ** Fixed verbose output file.
4406   Some newlines were missing.
4407   Some conflicts in state descriptions were missing.
4409 ** Fixed conflict report.
4410   Option -v was needed to get the result.
4412 ** %expect
4413   Was not used.
4414   Mismatches are errors, not warnings.
4416 ** Fixed incorrect processing of some invalid input.
4418 ** Fixed CPP guards: 9foo.h uses BISON_9FOO_H instead of 9FOO_H.
4420 ** Fixed some typos in the documentation.
4422 ** %token MY_EOF 0 is supported.
4423   Before, MY_EOF was silently renumbered as 257.
4425 ** doc/refcard.tex is updated.
4427 ** %output, %file-prefix, %name-prefix.
4428   New.
4430 ** --output
4431   New, aliasing "--output-file".
4434 * Noteworthy changes in release 1.30 (2001-10-26)
4436 ** "--defines" and "--graph" have now an optional argument which is the
4437   output file name. "-d" and "-g" do not change; they do not take any
4438   argument.
4440 ** "%source_extension" and "%header_extension" are removed, failed
4441   experiment.
4443 ** Portability fixes.
4446 * Noteworthy changes in release 1.29 (2001-09-07)
4448 ** The output file does not define const, as this caused problems when used
4449   with common autoconfiguration schemes.  If you still use ancient compilers
4450   that lack const, compile with the equivalent of the C compiler option
4451   "-Dconst=".  Autoconf's AC_C_CONST macro provides one way to do this.
4453 ** Added "-g" and "--graph".
4455 ** The Bison manual is now distributed under the terms of the GNU FDL.
4457 ** The input and the output files has automatically a similar extension.
4459 ** Russian translation added.
4461 ** NLS support updated; should hopefully be less troublesome.
4463 ** Added the old Bison reference card.
4465 ** Added "--locations" and "%locations".
4467 ** Added "-S" and "--skeleton".
4469 ** "%raw", "-r", "--raw" is disabled.
4471 ** Special characters are escaped when output.  This solves the problems
4472   of the #line lines with path names including backslashes.
4474 ** New directives.
4475   "%yacc", "%fixed_output_files", "%defines", "%no_parser", "%verbose",
4476   "%debug", "%source_extension" and "%header_extension".
4478 ** @$
4479   Automatic location tracking.
4482 * Noteworthy changes in release 1.28 (1999-07-06)
4484 ** Should compile better now with K&R compilers.
4486 ** Added NLS.
4488 ** Fixed a problem with escaping the double quote character.
4490 ** There is now a FAQ.
4493 * Noteworthy changes in release 1.27
4495 ** The make rule which prevented bison.simple from being created on
4496   some systems has been fixed.
4499 * Noteworthy changes in release 1.26
4501 ** Bison now uses Automake.
4503 ** New mailing lists: <bug-bison@gnu.org> and <help-bison@gnu.org>.
4505 ** Token numbers now start at 257 as previously documented, not 258.
4507 ** Bison honors the TMPDIR environment variable.
4509 ** A couple of buffer overruns have been fixed.
4511 ** Problems when closing files should now be reported.
4513 ** Generated parsers should now work even on operating systems which do
4514   not provide alloca().
4517 * Noteworthy changes in release 1.25 (1995-10-16)
4519 ** Errors in the input grammar are not fatal; Bison keeps reading
4520 the grammar file, and reports all the errors found in it.
4522 ** Tokens can now be specified as multiple-character strings: for
4523 example, you could use "<=" for a token which looks like <=, instead
4524 of choosing a name like LESSEQ.
4526 ** The %token_table declaration says to write a table of tokens (names
4527 and numbers) into the parser file.  The yylex function can use this
4528 table to recognize multiple-character string tokens, or for other
4529 purposes.
4531 ** The %no_lines declaration says not to generate any #line preprocessor
4532 directives in the parser file.
4534 ** The %raw declaration says to use internal Bison token numbers, not
4535 Yacc-compatible token numbers, when token names are defined as macros.
4537 ** The --no-parser option produces the parser tables without including
4538 the parser engine; a project can now use its own parser engine.
4539 The actions go into a separate file called NAME.act, in the form of
4540 a switch statement body.
4543 * Noteworthy changes in release 1.23
4545 The user can define YYPARSE_PARAM as the name of an argument to be
4546 passed into yyparse.  The argument should have type void *.  It should
4547 actually point to an object.  Grammar actions can access the variable
4548 by casting it to the proper pointer type.
4550 Line numbers in output file corrected.
4553 * Noteworthy changes in release 1.22
4555 --help option added.
4558 * Noteworthy changes in release 1.20
4560 Output file does not redefine const for C++.
4562 -----
4564 LocalWords:  yacc YYBACKUP glr GCC lalr ArrayIndexOutOfBoundsException nullptr
4565 LocalWords:  cplusplus liby rpl fprintf mfcalc Wyacc stmt cond expr mk sym lr
4566 LocalWords:  IELR ielr Lookahead YYERROR nonassoc LALR's api lookaheads yychar
4567 LocalWords:  destructor lookahead YYRHSLOC YYLLOC Rhs ifndef YYFAIL cpp sr rr
4568 LocalWords:  preprocessor initializer Wno Wnone Werror FreeBSD prec livelocks
4569 LocalWords:  Solaris AIX UX RHEL Tru LHS gcc's Wundef YYENABLE NLS YYLTYPE VCG
4570 LocalWords:  yyerror cpp's Wunused yylval yylloc prepend yyparse yylex yypush
4571 LocalWords:  Graphviz xml nonterminals midrule destructor's YYSTYPE typedef ly
4572 LocalWords:  CHR chr printf stdout namespace preprocessing enum pre include's
4573 LocalWords:  YYRECOVERING nonfree destructors YYABORT YYACCEPT params enums de
4574 LocalWords:  struct yystype DJGPP lex param Haible NUM alloca YYSTACK NUL goto
4575 LocalWords:  YYMAXDEPTH Unescaped UCNs YYLTYPE's yyltype typedefs inline Yaccs
4576 LocalWords:  Heriyanto Reenable dprec Hilfinger Eggert MYEOF Folle Menezes EOF
4577 LocalWords:  Lackovic define's itemset Groff Gettext malloc NEWS'ed YYDEBUG YY
4578 LocalWords:  namespaces strerror const autoconfiguration Dconst Autoconf's FDL
4579 LocalWords:  Automake TMPDIR LESSEQ ylwrap endif yydebug YYTOKEN YYLSP ival hh
4580 LocalWords:  extern YYTOKENTYPE TOKENTYPE yytokentype tokentype STYPE lval pdf
4581 LocalWords:  lang yyoutput dvi html ps POSIX lvalp llocp Wother nterm arg init
4582 LocalWords:  TOK calc yyo fval Wconflicts parsers yystackp yyval yynerrs
4583 LocalWords:  Théophile Ranquet Santet fno fnone stype associativity Tolmer
4584 LocalWords:  Wprecedence Rassoul Wempty Paolo Bonzini parser's Michiel loc
4585 LocalWords:  redeclaration sval fcaret reentrant XSLT xsl Wmaybe yyvsp Tedi
4586 LocalWords:  pragmas noreturn untyped Rozenman unexpanded Wojciech Polak
4587 LocalWords:  Alexandre MERCHANTABILITY yytype emplace ptr automove lvalues
4588 LocalWords:  nonterminal yy args Pragma dereference yyformat rhs docdir bw
4589 LocalWords:  Redeclarations rpcalc Autoconf YFLAGS Makefiles PROG DECL num
4590 LocalWords:  Heimbigner AST src ast Makefile srcdir MinGW xxlex XXSTYPE
4591 LocalWords:  XXLTYPE strictfp IDEs ffixit fdiagnostics parseable fixits
4592 LocalWords:  Wdeprecated yytext Variadic variadic yyrhs yyphrs RCS README
4593 LocalWords:  noexcept constexpr ispell american deprecations backend Teoh
4594 LocalWords:  YYPRINT Mangold Bonzini's Wdangling exVal baz checkable gcc
4595 LocalWords:  fsanitize Vogelsgesang lis redeclared stdint automata yytname
4596 LocalWords:  yysymbol yytnamerr yyreport ctx ARGMAX yysyntax stderr LPAREN
4597 LocalWords:  symrec yypcontext TOKENMAX yyexpected YYEMPTY yypstate YYEOF
4598 LocalWords:  autocompletion bistromathic submessages Cayuela lexcalc hoc
4599 LocalWords:  yytoken YYUNDEF YYerror basename Automake's UTF ifdef ffile
4600 LocalWords:  gotos readline Imbimbo Wcounterexamples Wcex Nonunifying rcex
4602 Local Variables:
4603 ispell-dictionary: "american"
4604 mode: outline
4605 fill-column: 76
4606 End:
4608 Copyright (C) 1995-2015, 2018-2020 Free Software Foundation, Inc.
4610 This file is part of Bison, the GNU Parser Generator.
4612 Permission is granted to copy, distribute and/or modify this document
4613 under the terms of the GNU Free Documentation License, Version 1.3 or
4614 any later version published by the Free Software Foundation; with no
4615 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
4616 Texts.  A copy of the license is included in the "GNU Free
4617 Documentation License" file as part of this distribution.