1 2009-08-18 Joel E. Denny <jdenny@clemson.edu>
3 maint: update for gnulib's recent update-copyright changes
5 * .x-update-copyright (COPYING): Add as it's no longer implied
6 when .x-update-copyright is present.
7 * cfg.mk (update-copyright-local): Remove, now ignored.
8 (update-copyright): Declare update-b4-copyright as a dependency.
10 2009-08-17 Akim Demaille <demaille@gostai.com>
12 build: require gettext 0.17.
14 Suggested by Bruno Haible.
15 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00009.html
16 * configure.ac: require gettext 0.17 to ensure compatibility with
19 2009-08-17 Akim Demaille <demaille@gostai.com>
21 build: lower gettext requirements.
23 Bison was uselessly requiring the formatstring macros from
24 gettext, which resulted in mo files not being installed on systems
25 that perfectly supported Bison mo files. Lower the requirement.
26 http://lists.gnu.org/archive/html/bug-bison/2009-08/msg00006.html
28 * configure.ac: Require need-ngettext instead of
29 need-formatstring-macros.
30 Reported by Martin Jabocs.
31 Suggested by Bruno Haible.
32 * INSTALL: Restructure.
33 (Internationalization): New.
35 2009-08-14 Joel E. Denny <jdenny@clemson.edu>
37 maint: fix use of copyright year intervals.
39 * bootstrap.conf (gnulib_modules): Update getopt to getopt-gnu
40 as now recommended in gnulib/NEWS.
41 * build-aux/update-b4-copyright: Fix.
42 * cfg.mk (update-copyright-env): Configure update-copyright.
44 2009-08-13 Joel E. Denny <jdenny@clemson.edu>
46 Make it easier to write deterministic tests.
47 Continues Akim's work from his 2009-06-10 commits.
48 * src/reader.c (check_and_convert_grammar): Don't add any
49 symbols after the first symbols_do invocation.
50 * src/symtab.c (symbols_sorted): New static global.
51 (user_token_number_redeclaration): Update comments.
52 (symbol_from_uniqstr): If a new symbol is being created, assert
53 that symbols_sorted hasn't been allocated yet.
54 (symbols_free): Free symbols_sorted.
55 (symbols_cmp, symbols_cmp_qsort): New functions.
56 (symbols_do): Sort symbol_table into symbols_sorted on first
58 * tests/input.at (Numbered tokens): Recombine tests now that the
59 output should be deterministic across multiple numbers.
61 2009-08-12 Akim Demaille <demaille@gostai.com>
65 * examples/calc++/Makefile.am: (EXTRA_DIST): Ship calc.stamp.
67 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
69 * tests/Makefile.am (TESTSUITE_AT): Add named-refs.at.
71 2009-08-10 Joel E. Denny <jdenny@clemson.edu>
73 Miscellaneous code readability improvements.
75 * src/reader.c (reader): Move %define front-end variable
76 defaults and checking into...
77 (prepare_percent_define_front_end_variables): ... this new
80 * src/scan-gram.l (INITIAL): For consistency with string
81 literals, don't store open quote on character literal. It's
82 discarded before returning anyway.
83 (SC_ESCAPED_CHARACTER): Similarly, don't store close quote.
84 Make length test more readable, and make the character stored
85 for an empty literal more obvious while consistent with the
88 * src/symtab.c, src/symtab.h: Rename USER_NUMBER_ALIAS to
89 USER_NUMBER_HAS_STRING_ALIAS throughout.
90 * src/symtab.c (symbol_make_alias): Remove comment from symtab.c
91 that is repeated in symtab.h. Improve argument names to make it
92 clear which side of the symbol-string alias pair is which.
93 (symbol_check_alias_consistency): Improve local variable names
95 * src/symtab.h (struct symbol): Make comments about aliases
97 (symbol_make_alias): Improve comments and argument name.
98 * src/output.c (token_definitions_output): Update for rename to
99 USER_NUMBER_HAS_STRING_ALIAS and improve comments about aliases.
101 2009-08-08 Alex Rozenman <rozenman@gmail.com>
103 Convert "misleading reference" messages to warnings.
104 * src/scan-code.l: New function 'show_sub_messages', more
106 * tests/named-ref.at: Adjust tests.
108 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
110 maint: run "make update-copyright"
112 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
114 maint: make update-b4-copyright easier to use
115 * build-aux/update-b4-copyright: In warnings, report line
116 numbers rather than character positions.
117 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
118 that update-copyright runs it.
121 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
123 maint: clean up update-b4-copyright code
124 * build-aux/update-b4-copyright: Do not accept 2-digit
125 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
126 Don't accept a `[' in a b4_copyright argument.
127 Format code more consistently.
128 Don't assume b4*copyright never occurs.
130 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
132 maint: automate b4_copyright updates.
133 * Makefile.am (update-b4-copyright): New target rule.
134 * build-aux/Makefile.am (EXTRA_DIST): Add update-b4-copyright.
135 * build-aux/update-b4-copyright: New.
136 * data/yacc.c: Remove stray characters around b4_copyright
139 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
141 maint: automate annual package-wide copyright-year update.
142 * .x-update-copyright: New.
143 * Makefile.am (EXTRA_DIST): Remove maint.mk.
144 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
145 update-copyright. Remove gnumakefile, which is implied by
147 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
149 * maint.mk: Remove, now copied from gnulib.
150 * examples/extexi: Add missing "(C)" in copyright statement so
151 update-copyright can recognize it.
152 * src/LR0.h: Likewise.
153 * src/print.h: Likewise.
154 * src/print_graph.h: Likewise.
155 * src/gram.c: Add missing comma in copyright statement.
156 * src/gram.h: Likewise.
158 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
160 Fix "make distcheck".
161 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
164 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
166 Pacify "gcc -Wunused" for the input function from Flex.
167 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
169 * src/scan-code.l: Add "%option noinput", which I cannot find in
170 the Flex manual, but which Flex has supported since at least as
171 far back as 2.5.4. However, if any of our developers still use
172 Flex 2.5.4, they'll need to stop configuring with
173 --enable-gcc-warnings because "%option noinput" didn't work
174 correctly until Flex 2.5.6.
175 * src/scan-gram.l: Likewise.
176 * src/scan-skel.l: Likewise.
178 2009-07-31 Alex Rozenman <rozenman@gmail.com>
180 Fix --enable-gcc-warnings problems.
181 * src/reader.c: Adjust variable names.
182 * src/scan-code.l: Fix prototypes and adjust names.
183 * src/named-ref.c: Remove redundant "if".
185 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
187 Fix a --enable-gcc-warnings problem.
188 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
191 2009-07-24 Alex Rozenman <rozenman@gmail.com>
193 Fix some memory leaks.
194 * src/named-ref.c: Add a pointer check (named_ref_free).
195 * src/scan-code.l: New function (variant_table_free). Called in
197 * src/symlist.c: Call to named_ref_free (symbol_list_free).
199 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
201 Warn about character literals not of length one.
202 * NEWS (2.5): Document.
203 * src/scan-gram.l (INITIAL): Remove comment that we don't check
205 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
206 * tests/input.at (Bad character literals): New test group.
208 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
210 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
212 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
214 Some M4 cleanup in the testsuite.
215 Suggested by Eric Blake at
216 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
217 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
218 complicate the code by distinguishing between a missing value
219 and an empty string value for an optional argument. This fix is
220 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
221 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
222 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
223 arguments are not needed because of the following changes.
225 Bison developers should use GNU M4 and should not use
226 POSIXLY_CORRECT when building the test suite, so do not
227 complicate the code by avoiding $10 and above.
228 Do not quote an empty string value for an optional argument, and
229 do not distinguish between a missing value and an empty string
232 2009-07-21 Joel E. Denny <jdenny@ces.clemson.edu>
234 * m4/m4.m4: Make it a sym link to submodules/autoconf/m4/m4.m4.
236 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
238 Revert unnecessary column realignment in --help output.
239 Reported by Akim Demaille at
240 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
241 * src/getargs.c (usage): Here.
243 2009-07-04 Alex Rozenman <rozenman@gmail.com>
245 Alphabetical order in src/Makefile.am.
246 * src/Makefile.am: Adjust.
248 2009-07-04 Alex Rozenman <rozenman@gmail.com>
250 Style changes and factoring.
251 * src/named-ref.h: Add comments.
252 * src/parse-gram.y: Readability and style changes.
253 * src/reader.c: Factoring: assign_named_ref function.
254 * src/scan-code.l: Factoring and style changes. Rename
255 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
256 Use "unsigned" type for variant index. Improve readablity.
257 * src/scan-gram.l: Change error messages and add comments.
258 * src/symlist.h: symbol_list_null: New function decl.
259 * src/symlist.c: symbol_list_null: Implement here.
260 * tests/named-refs.at: Adjust for new error messages.
262 2009-06-29 Eric Blake <ebb9@byu.net>
264 scan-code: avoid compiler warnings
265 * src/scan-code.l (parse_named_ref): Use correct specifiers.
267 2009-06-29 Akim Demaille <demaille@gostai.com>
269 build: avoid concurrent extraction of calc++.
270 * examples/calc++/Makefile.am (calc.stamp): New.
271 Depend on it to create the sources of calc++ so that concurrent
272 builds don't launch several "extexi" in parallel.
273 Not only this is inefficient, this also builds incorrect sources
274 with several extractions mixed together.
276 2009-06-27 Alex Rozenman <rozenman@gmail.com>
278 Implement support for named symbol references.
279 * src/parse-gram.y: Add new syntax (named_ref.opt).
280 * src/reader.c: Store named refs in symbol lists.
281 * src/reader.h: New argument for symbol_append and
282 action_append functions.
283 * src/scan-code.h: Add new field (named_ref) into
284 code_props data structure. Keeps named ref of midrule
286 * src/scan-code.l: Support for named refs in semantic
287 action code. New function 'parse_named_ref'.
288 * src/scan-gram.l: Support bracketed id.
289 * src/symlist.c: Store named refs in symbol lists.
290 * src/symlist.h: New field in symbol list: named_ref.
291 * src/named-ref.h: New file, a struct for named_ref.
292 * src/named-ref.cp: New file, named_ref_new function.
293 * src/local.mk: Add two new files.
294 * tests/testsuite.at: Include new test group:
295 * tests/named-refs.at: this new file.
297 2009-06-25 Akim Demaille <demaille@gostai.com>
299 hash: check insertion for memory exhaustion.
300 * src/uniqstr.c (uniqstr_new): New.
302 2009-06-11 Akim Demaille <demaille@gostai.com>
305 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
306 * src/print-xml.c: Style changes.
307 * tests/conflicts.at: Comment changes.
309 2009-06-11 Akim Demaille <demaille@gostai.com>
311 xml: beware of user strings used to give a %prec to rules.
312 * tests/conflicts.at (%prec with user strings): New.
313 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
316 2009-06-11 Akim Demaille <demaille@gostai.com>
318 hash: check insertion for memory exhaustion.
319 * src/muscle-tab.c (muscle_insert, muscle_grow)
320 * src/state.c (state_hash_insert): Check the return value of
323 2009-06-10 Akim Demaille <demaille@gostai.com>
325 deterministic test suite.
326 Some consistency checks on symbols are performed after all the
327 symbols were read, by an iteration over the symbol table. This
328 traversal is nondeterministic, which can be a problem for test
331 Addresses another form of nondeterminism reported by Joel E. Denny.
332 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
334 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
336 Use different file names for the three tests to make the
339 2009-06-10 Akim Demaille <demaille@gostai.com>
341 deterministic user-token-number redeclaration errors.
342 Address nondeterminism reported by Joel E. Denny.
343 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
345 * src/uniqstr.h: Comment changes.
346 * src/location.h (boundary_cmp, location_cmp): New.
347 * src/symtab.c (user_token_number_redeclaration): New.
348 (symbol_translation): Use it.
349 * tests/input.at (Numbered tokens): Adjust the expected output.
351 2009-05-25 Akim Demaille <demaille@gostai.com>
354 * gnulib: Update to latest.
355 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
356 * m4/.gitignore: Regen.
357 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
358 Call xalloc_die on hash_insert failures.
359 Requested by the new __warn_unused_result__ attribute of
362 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
364 Convert multiple variable definition warnings to complaints.
365 * NEWS (2.5): Add a new entry for that change.
366 * doc/bison.texinfo (Decl Summary): Update %define entry.
367 (Bison Options): Update -D/--define/-F/--force-define entry.
368 * src/muscle_tab.c (muscle_percent_define_insert): Implement.
369 * src/muscle_tab.h (muscle_percent_define_insert): Update
371 * tests/input.at (`%define errors'): Update.
372 (`%define, --define, --force-define'): Update.
374 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
376 -F/--force-define and relative %define/-D/--define priorities.
377 * NEWS (2.5): Add documentation to -D/--define entry.
378 * build-aux/cross-options.pl: Hard-code association of
379 --force-define with %define.
380 * doc/bison.texinfo (Decl Summary): In %define entry,
381 cross-reference command-line options.
382 (Bison Options): Add documentation to -D/--define entry.
383 (Option Cross Key): Widen column for --force-define row.
384 * src/getargs.c (usage): Document -F/--force-define. Realign
386 (short_options, long_options, getargs): Parse -F/--force-define,
387 and update muscle_percent_define_insert invocation.
388 * src/muscle_tab.h (muscle_percent_define_how): New enum type.
389 (muscle_percent_define_insert): Add argument with that type.
390 * src/muscle_tab.c (muscle_percent_define_insert): Implement
391 -F/--force-define behavior and priorities.
392 * src/parse-gram.y (prologue_declaration): Update
393 muscle_percent_define_insert invocations.
394 * tests/input.at (`%define, --define'): Rename to...
395 (`%define, --define, --force-define'): ... this and extend.
397 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
399 Update some comments to make sense for -D.
400 * data/bison.m4 (b4_check_user_names): In header comments, say
401 "user occurrence" instead of "grammar occurrence".
402 * src/muscle_tab.h (muscle_percent_define_insert): Likewise.
403 (muscle_percent_code_grow): Likewise just for consistency.
405 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
407 * data/c++.m4: Update copyright year.
409 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
411 * data/c++.m4 (b4_namespace_close): Simplify slightly.
413 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
415 Handle a trailing `:' in a user-supplied C++ namespace better.
416 * data/c++.m4 (b4_namespace_close): Don't let it be printed
417 among the closing braces here. This fix might make the
418 generated code easier to debug, but otherwise it should be
419 insignificant because a trailing `:' is a C++ error already.
421 2009-05-19 Akim Demaille <demaille@gostai.com>
423 remove useless variable.
424 * src/getargs.c (skeleton_arg): Remove now useless variable.
425 Should help the compiler see that this printf-like call is sane.
427 2009-05-11 Akim Demaille <demaille@gostai.com>
429 doc: use C++ headers.
430 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
433 2009-05-05 Akim Demaille <demaille@gostai.com>
435 fix hexadecimal token number support.
436 * src/scan-gram.l: Catch incorrect ids after hexadecimal numbers.
438 2009-05-05 Akim Demaille <demaille@gostai.com>
440 tests: check token numbers.
441 * tests/input.at (Numbered tokens): New.
443 2009-05-04 Akim Demaille <demaille@gostai.com>
445 bison: catch bad symbol names.
446 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
447 * tests/input.at: Adjust.
449 2009-05-04 Akim Demaille <demaille@gostai.com>
452 * src/scan-gram.l: Untabify to be robust to zealous editors.
454 2009-05-04 Akim Demaille <demaille@gostai.com>
456 identifiers: dashes are letters.
457 Dashes can now start identifiers (symbols and directives).
459 * src/scan-gram.l ({letter}): Add dash.
461 * tests/input.at (Symbols): Adjust.
462 Remove stray comment.
463 * tests/regression.at (Invalid inputs): Adjust error message.
464 * doc/bison.texinfo (Symbols): Update.
466 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
468 Declare %code to be a permanent feature.
469 * NEWS (2.4.2): Here.
470 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
472 (Decl Summary): Likewise.
474 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
476 Convert underscores to dashes in some %define variable names.
477 For now, just api.push-pull and lr.keep-unreachable-states.
478 Maintain old names for backward compatibility.
479 * NEWS (2.5): Document.
480 * data/c.m4 (b4_identification): Update comment.
481 * data/yacc.c: Update access.
482 * doc/bison.texinfo: Update.
483 * etc/bench.pl.in (bench_grammar): Update use.
484 * src/files.c (tr): Move to...
485 * src/getargs.c, src/getargs.h (tr): ... here because I can't
486 think of a better place to expose it. My logic is that, for all
487 uses of tr so far, command-line arguments can be involved, and
488 getargs.h is already included.
489 * src/main.c (main): Update access.
490 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
491 variable names to new variable names before assigning value.
492 * src/reader.c (reader): Update setting default.
493 * tests/calc.at: Update uses.
494 * tests/conflicts.at (Unreachable States After Conflict
495 Resolution): Update use.
496 * tests/input.at (%define enum variables): Update use.
497 (%define backward compatibility): New test group.
498 * tests/push.at: Update uses.
499 * tests/reduce.at: Update uses.
500 * tests/torture.at: Update uses.
502 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
504 Set all front-end %define defaults in one place.
505 * src/main.c (main): Move lr.keep_unreachable_states default...
506 * src/reader.c (reader): ... to here.
508 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
510 Rename lr.default_reductions to lr.default-reductions.
512 * doc/bison.texinfo: Here.
513 * src/lalr.c (initialize_LA): Here.
514 * src/print.c (print_reductions): Here.
515 * src/reader.c (reader): Here.
516 * src/tables.c (action_row): Here.
517 * tests/input.at (%define enum variables): Here.
518 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
520 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
522 Pacify ./configure --enable-gcc-warnings.
523 * tests/input.at (Symbols): Prototype yyerror and yylex.
525 2009-04-21 Akim Demaille <demaille@gostai.com>
527 tests: check the use of dashes and periods in symbols.
528 * tests/input.at (Symbol): New test group.
530 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
532 Document how `%define "var" "value"' is not M4-friendly.
533 * src/parse-gram.y (variable): In comments here.
535 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
537 Add copyright updates missed during previous cherry pick.
538 * src/output.c: Here.
539 * src/parse-gram.y: Here.
540 * src/scan-gram.l: Here.
542 2009-04-20 Akim Demaille <demaille@gostai.com>
544 variables: accept dashes.
545 * src/scan-gram.l ({id}): Also accept dashes after the initial
547 ({directive}): Use {id}.
548 * src/parse-gram.y: Comment and formatting changes.
549 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
551 * src/complain.h, src/complain.c (yacc_at): New.
552 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
554 * src/output.c (token_definitions_output): Do not #define token
557 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
559 Clean up recent patches a little.
560 Reported by Akim Demaille.
561 * doc/bison.texinfo (Understanding): Fix typos.
562 * src/print.c (print_reductions): Don't use negated variable.
564 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
566 List accepted values for a %define enum variable with an invalid value.
567 Suggested by Akim Demaille at
568 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
569 * data/bison.m4 (_b4_percent_define_check_values): Implement.
570 * src/muscle_tab.c (muscle_percent_define_check_values): Implement.
571 * tests/input.at (%define lr.default_reductions invalid values): Merge
573 (%define enum variables): ... here, and update output.
575 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
577 Rename "default rule" to "default reduction".
578 This includes changing variable names in code, changing
579 comments, and renaming %define lr.default_rules to %define
580 lr.default_reductions.
581 * NEWS (2.5): Update IELR documentation.
582 * data/glr.c, data/lalr1.cc, data/lalr1.java, data/yacc.c:
583 Adjust YYDEFACT and yydefact_ documentation.
584 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
585 and lr.type documentation. Make some other wording
587 (Glossary): Adjust cross-references and Default Reduction
589 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
590 Remove a confusing comment pointed out by Akim Demaille.
591 (initialize_LA): Adjust code.
592 * src/print-xml.c (print_reductions): Adjust code.
593 * src/print.c (print_reductions): Adjust code.
594 * src/reader.c (reader): Adjust code.
595 * src/tables.c (action_row): Adjust code.
596 (token_actions): Adjust code.
597 * src/tables.h: Adjust YYDEFACT documentation.
598 * tests/input.at (%define lr.default_rules invalid values):
599 Rename test group to...
600 (%define lr.default_reductions invalid values): ... this, and
601 update grammar file and expected output.
602 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
603 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
605 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
607 Document %define lr.type and lr.default_rules.
608 * NEWS (2.5): Add an entry.
609 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
610 besides just LALR(1) and GLR(1).
611 * doc/bison.texinfo (Introduction): Likewise.
612 (Language and Grammar): Bison is no longer limited to LALR(1)
614 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
615 when trying to distinguish from GLR. Talk about LR(1) grammars
616 rather than LALR(1) grammars.
617 (Decl Summary): In %define api.push_pull entry, say it applies
618 to deterministic parsers in C rather than LALR(1) parsers in C.
619 Add lr.default_rules entry.
621 (Mystery Conflicts): Bison is no longer limited to LALR(1)
623 (Generalized LR Parsing): Same changes as for the previous GLR
625 (Memory Management): Say deterministic rather than LALR(1).
626 (Understanding): Correct some bison output.
627 Index discussion of "accepting state".
628 Say deterministic rather than LALR(1).
629 (Bison Options): In --yacc entry, say deterministic rather than
631 In --report, --graph, and --xml entries, just don't mention
633 (C++ Parsers): Say deterministic rather than LALR(1).
634 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
635 (Glossary): Add Accepting State, Consistent State, Default Rule,
636 and IELR(1) definitions.
637 In Generalized LR (GLR) definition, make same changes as in
638 previous GLR sections.
639 In LALR(1) definition, say Bison uses LALR(1) by default rather
640 than implying Bison is limited to LALR(1).
641 (LocalWords): Add IELR.
643 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
645 Finish implementing %define lr.type.
646 Its value can be "LALR", "IELR", or "canonical LR".
647 * lib/timevar.def (TV_IELR_PHASE1): New var.
648 (TV_IELR_PHASE2): New var.
649 (TV_IELR_PHASE3): New var.
650 (TV_IELR_PHASE4): New var.
651 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
652 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
653 Sbitset.h, ielr.h, and ielr.c.
654 * src/getargs.h, src/getargs.c (enum trace, trace_args,
655 trace_types): Add trace_ielr.
656 * src/lalr.h, src/lalr.c (ngotos): Export it.
658 (goto_follows): ... this, update all uses, and export it.
659 (set_goto_map): Export it.
660 (map_goto): Export it.
661 (compute_lookahead_tokens): Don't free goto_follows yet. Now
663 (initialize_LA): Export it. Move lookback allocation to...
664 (lalr): ... here because, for canonical LR, initialize_LA must
665 be invoked but lookback and much of the rest of LALR isn't
667 * main.c (main): Instead of lalr, invoke ielr, which invokes
669 * src/reader.c (reader): Default lr.type to "LALR".
670 Default lr.default_rules to "accepting" if lr.type is "canonical
671 LR". Leave the default as "all" otherwise.
672 Check for a valid lr.type value.
673 * src/state.h, src/state.c (struct state_list): Add state_list
675 (state_new): Initialize state_list member to NULL.
676 (state_new_isocore): New function, exported.
677 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
678 exercises all values of lr.type.
679 (GNU AWK Grammar): Rename test group to...
680 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
681 AT_TEST_EXISTING_GRAMMAR.
682 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
683 (GNU pic Grammar): Rename test group to...
684 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
685 AT_TEST_EXISTING_GRAMMAR.
686 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
687 all values of lr.type.
688 (Single State Split): New test groups using AT_TEST_LR_TYPE.
689 (Lane Split): Likewise.
690 (Complex Lane Split): Likewise.
691 (Split During Added Lookahead Propagation): Likewise.
693 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
695 Add new files for IELR and canonical LR implementation.
696 * src/AnnotationList.c: New.
697 * src/AnnotationList.h: New.
698 * src/InadequacyList.c: New.
699 * src/InadequacyList.h: New.
700 * src/Sbitset.c: New.
701 * src/Sbitset.h: New.
705 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
707 Implement %define lr.default_rules.
708 Its value describes the states that are permitted to contain
709 default rules: "all", "consistent", or "accepting".
710 * src/reader.c (reader): Default lr.default_rules to "all".
711 Check for a valid lr.default_rules value.
712 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
713 is "accepting", then only mark the accepting state as
715 (initialize_LA): Tell state_lookahead_tokens_count whether
716 lr.default_rules is "accepting".
717 * src/tables.c (action_row): If lr.default_rules is not "all",
718 then disable default rules in inconsistent states.
719 * src/print.c (print_reductions): Use this opportunity to
720 perform some assertions about whether lr.default_rules was
722 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
723 helps with checking the parser tables for a grammar.
724 * tests/input.at (%define lr.default_rules invalid values): New
726 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
727 AT_TEST_TABLES_AND_PARSE.
728 (`no %define lr.default_rules'): New test group generated by
729 AT_TEST_LR_DEFAULT_RULES.
730 (`%define lr.default_rules "all"'): Likewise.
731 (`%define lr.default_rules "consistent"'): Likewise.
732 (`%define lr.default_rules "accepting"'): Likewise.
734 2009-04-20 Akim Demaille <demaille@gostai.com>
736 Consistently refer to Yacc, not YACC.
737 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
739 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
741 Pacify make maintainer-check-posix.
742 * tests/input.at (%define, --define): Move bison command-line
743 options before grammar file name.
745 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
747 Document semicolon warnings.
750 2008-12-08 Akim Demaille <demaille@gostai.com>
752 Fix portability issue in the test suite.
753 * tests/local.at (AT_MATCHES_CHECK): New.
754 Based on Perl instead of Sed. Sed has too many portability
755 pitfalls, not ever Sed is GNU Sed.
756 * tests/actions.at (Fix user actions without a trailing semicolon):
759 2008-12-07 Di-an Jan <dianj@freeshell.org>
761 Implement the FIXME that ends an user action with a semicolon
762 if it seems necessary.
763 * src/scan-code.l (flex rules section): Flag cpp directive from
764 any `#' to the first unescaped end-of-line. Semicolon is not
765 needed after `;', `{', '}', or cpp directives and is needed after
766 any other token (whitespaces and comments have no effect).
767 * tests/actions.at (Fix user actions without a trailing semicolon):
769 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
770 to make user actions complete statements.
771 Adjust column numbers in error messages.
772 * tests/regression.at (Fix user actions without a trailing semicolon):
773 Remove. Covered by new test.
775 2009-04-14 Akim Demaille <demaille@gostai.com>
778 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
779 (Table of Symbols): Remove duplicate entry for %debug.
781 2009-04-10 Eric Blake <ebb9@byu.net>
783 submodules: update to latest
784 * submodules/autoconf: Use latest upstream Autoconf.
786 2009-04-06 Eric Blake <ebb9@byu.net>
788 Work around autoconf 2.63b bug in testsuite.
789 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
790 autoconf bug related to # in test.
792 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
794 * NEWS (2.5): Describe new -D/--define feature.
796 2008-11-10 Akim Demaille <demaille@gostai.com>
799 * src/getargs.h, src/getargs.c (trace_muscle): New.
800 (trace_types, trace_args): Support it.
801 * src/output.c (output_skeleton): Use it.
803 2008-11-10 Akim Demaille <demaille@gostai.com>
806 * src/output.c (muscles_output): New, extracted from...
807 (output_skeleton): here.
810 2008-11-21 Akim Demaille <demaille@gostai.com>
812 Display the changes in cross-options.texi.
813 * build-aux/cross-options.pl ($sep): New, to separate items.
814 * doc/Makefile.am ($(srcdir)/cross-options.texi): Use diff to display
817 2008-11-20 Di-an Jan <dianj@freeshell.org>
819 Improves options in the manual.
820 * doc/bison.texinfo (-g, -x): Add space before argument.
821 (Option Cross Key): Implement FIXME: listing directives also.
822 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
823 (Short Option): Special case -d. Put arguments inside @option.
824 (Bison Directive): Add column, automatically extracted from
825 src/scan-gram.l (actual name passed as the first argument)
826 with special case for %define.
827 * doc/Makefile.am (doc/cross-options.texi): Pass src/scan-gram.l
828 to build-aux/cross-options.pl.
829 * src/getargs.c (usage): Document limitations of cross-options.pl.
830 * src/scan-gram.l: Likewise.
832 2009-02-25 Akim Demaille <demaille@gostai.com>
835 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
837 2008-12-08 Akim Demaille <demaille@gostai.com>
839 Install autoconf as a submodule to get m4sugar.
840 * .gitmodules: Add submodules/autoconf.
841 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
844 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
846 Simplify last patch slightly.
847 * src/getargs.c (getargs): Here.
849 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
851 Fix last warning from --enable-gcc-warnings.
852 * src/getargs.c (getargs): Don't assign const address to non-const
855 2008-11-17 Di-an Jan <dianj@freeshell.org>
857 Handle --enable-gcc-warnings.
858 * src/getargs.c (command_line_location): Set parameters to void.
860 2008-11-11 Akim Demaille <demaille@gostai.com>
863 * tests/actions.at, tests/regression.at: Use it.
865 2008-11-07 Akim Demaille <demaille@gostai.com>
867 Pass command line location to skeleton_arg and language_argmatch.
868 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
869 The location argument is now mandatory.
870 Adjust all dependencies.
871 (getargs): Use command_line_location.
873 2008-11-07 Akim Demaille <demaille@gostai.com>
876 * src/getargs.c (usage): Document -D.
877 Fix help string for --locations.
878 (command_line_location): New.
879 (short_options, long_options, getargs): Support -D, --define.
880 (getargs): Move -d support at the right place.
881 * doc/bison.texinfo (Bison Options): Update.
882 * tests/input.at (%define, --define): New.
884 2008-11-07 Akim Demaille <demaille@gostai.com>
886 Initialize the muscle table before parsing the command line.
887 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
888 (getargs): Define file_name.
889 * src/main.c (main): Initialize muscle_tab before calling
891 * src/muscle_tab.c (muscle_init): No longer define file_name, as
892 its value is not available yet.
894 2008-11-09 Akim Demaille <demaille@gostai.com>
896 Require the generation of parse-gram.output.
897 * src/Makefile.am (YACC): Pass --report=all.
899 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
901 * NEWS (2.5): New stub.
903 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
905 Fix options documentation.
906 * build-aux/cross-options.pl: As in --help output, write optional
907 arguments as [=ARG] not =[ARG].
908 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
910 2008-11-07 Akim Demaille <demaille@gostai.com>
913 * src/getargs.c (usage): Fix help string for -W.
915 2008-11-07 Akim Demaille <demaille@gostai.com>
917 Handle more general types of option arguments.
918 * build-aux/cross-options.pl: The argument ends at the first
919 space, not the first non-symbol character.
920 Use @var for each word appearing the argument description.
922 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
924 Remove spurious initial empty lines.
925 * data/location.cc: End the @output lines with an @.
927 2008-11-04 Akim Demaille <demaille@gostai.com>
929 Remove spurious initial empty lines.
930 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
931 * data/yacc.c: End the @output lines with an @.
933 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
935 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
936 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
937 requirements for a correct m4 are stricter.
938 * m4/m4.m4: Replace with Autoconf 2.63's m4/m4.m4.
939 * configure.ac: Update to use AC_PROG_GNU_M4.
940 Reported by Eric Blake.
942 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
944 Help with updating web manual.
945 * HACKING: Incorporate instructions from gnulib/doc/README.
946 * bootstrap.conf (gnulib_modules): Add gendocs.
948 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
950 Fix strange %define locations for default values.
951 Reported by Akim Demaille at
952 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
953 and discussed again starting at
954 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
955 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
956 because location information is bogus.
957 Use angle brackets to delimit fake file name because square brackets
958 look like underexpanded m4. Choose a better fake file name.
959 Use negative line numbers.
960 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
961 * src/location.c (location_print): If line for a boundary is negative,
962 only print that boundary's file name.
963 * src/location.h: Document that.
964 * tests/skeletons.at (%define Boolean variables: invalid skeleton
965 defaults): Update output.
967 2008-11-07 Akim Demaille <demaille@gostai.com>
969 Locations without columns for command line arguments.
970 * src/location.c (location_print): Don't display negative columns.
971 * src/location.h: Document this.
973 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
975 Add reminder about uploading public key to keys.gnupg.net.
976 * HACKING (Release Procedure): Here.
978 2009-03-31 Akim Demaille <demaille@gostai.com>
980 bootstrap: --help to stdout.
981 * bootstrap (usage): Don't send --help to stderr.
982 Use a here doc instead of a long string.
984 2009-03-31 Akim Demaille <demaille@gostai.com>
986 bootstrap: README-hacking no longer exists
987 * bootstrap (checkout_only_file): Set to HACKING.
989 2009-03-26 Akim Demaille <demaille@gostai.com>
991 doc: merge HACKING and README-hacking.
992 Two files is confusing.
993 Reported by Alexandre Duret-Lutz.
995 * README-hacking: Merge into...
996 * HACKING (Working from the repository): here.
998 2009-03-26 Akim Demaille <demaille@gostai.com>
1000 doc: update README-hacking.
1001 * README-hacking: We now use git and git submodules.
1002 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
1004 2009-03-26 Akim Demaille <demaille@gostai.com>
1006 lalr1.cc: avoid GCC 4.3 warnings.
1007 GCC 4.3 now warns about "a || b && c" and asks for explicit
1009 Reported by Alexandre Duret-Lutz.
1010 * data/location.cc: Update copyright years.
1011 (Position::operator==): Use parens to make precedence explicit.
1012 Compare lines and columns first, as they are more likely to be
1013 different, and they are faster to compare.
1015 2009-03-26 Akim Demaille <demaille@gostai.com>
1018 * gnulib: Update to latest.
1019 * lib/Makefile.am (AM_CPPFLAGS): It is now defined by gnulib, so
1022 2009-01-08 Akim Demaille <demaille@gostai.com>
1024 Fix grep portability issues.
1025 Grep on Solaris does not support -q.
1026 Reported by Summum Bonum.
1028 * NEWS: Add a stub for 2.4.2.
1029 * THANKS: Add Summum Bonum.
1030 * tests/atlocal.in (EGREP): New.
1031 (CC, CXX, XSLTPROC): Make it possible to override them via
1033 * tests/java.at: Use $EGREP instead of egrep.
1034 Use AT_CHECK's ignore instead of grep's -q.
1036 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1039 * NEWS: Set version and date.
1040 * lib/Makefile.am: Update copyright year.
1041 * tests/atlocal.in: Update copyright year.
1043 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1045 Semicolon feature removal is not about future language support.
1046 * NEWS: The semicolon feature is no longer active for newer languages,
1047 so don't claim that it causes trouble for them.
1049 2008-12-11 Joel E. Denny <jdenny@ces.clemson.edu>
1051 * gnulib: Update submodule to HEAD.
1053 2008-12-09 Akim Demaille <demaille@gostai.com>
1056 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
1058 2008-12-05 Eric Blake <ebb9@byu.net>
1060 Build testsuite with newer autoconf.
1061 * tests/output.at (m4_expand): Don't override in newer autoconf,
1062 where the underlying implementation changed.
1063 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
1064 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
1065 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
1066 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
1067 since some of them contain unbalanced ')'.
1069 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
1071 * NEWS: Clarify a little.
1073 2008-11-19 Joel E. Denny <jdenny@ces.clemson.edu>
1075 * NEWS: Update for recent changes.
1077 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1079 Fix unexpanded macros in GLR defines file.
1080 Reported by Csaba Raduly at
1081 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
1082 * THANKS (Csaba Raduly): Add.
1083 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
1084 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
1085 lexer in a separate module that includes the defines file.
1086 (AT_CHECK_CALC): Use AT_FULL_COMPILE and request compilation of lexer
1088 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
1089 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
1090 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
1091 (AT_DATA_SOURCE_PROLOGUE): New.
1092 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
1093 (AT_DATA_SOURCE): New.
1094 (AT_FULL_COMPILE): New, copied from master branch and extended to
1095 support an additional source file.
1097 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1099 Don't let maintainer-*-check targets force a version update.
1100 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
1103 2008-11-17 Di-an Jan <dianj@freeshell.org>
1105 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
1106 Align menus. Adjust word wrapping. Use node names for menu names.
1107 (Examples): Don't abbreviate node names.
1108 (LocalWords): Remove abbreviations.
1109 (Copying): Make description a sentence.
1110 (Java Action Features): Remove period to match the rest of menu.
1112 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
1114 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
1115 * configure.ac: Adjust usage.
1116 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1117 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
1118 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
1120 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1122 Don't add a semicolon to actions for %skeleton or %language.
1123 It breaks Java test cases as reported by Akim Demaille.
1124 * src/scan-code.l: Implement.
1126 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
1128 Clean up %skeleton and %language priority implementation.
1129 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
1130 remove static qualifier because others will soon need to see it.
1131 (language_prio): Likewise.
1132 (getargs): Use command_line_prio rather than 0.
1133 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
1135 (skeleton_prio): Extern it.
1136 (language_prio): Extern it.
1137 * src/parse-gram.y: Use grammar_prio rather than 1.
1139 2008-11-04 Akim Demaille <demaille@gostai.com>
1141 * NEWS: Mention the trailing semicolon in action.
1143 2008-11-04 Akim Demaille <demaille@gostai.com>
1146 * NEWS: Use more outline-mode markup.
1147 Suggested by Jim Meyering.
1149 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
1151 Fix user actions without a trailing semicolon.
1152 Reported by Sergei Steshenko at
1153 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
1154 * THANKS (Sergei Steshenko): Add.
1155 * src/scan-code.l (SC_RULE_ACTION): Fix it.
1156 * tests/regression.at (Fix user actions without a trailing semicolon):
1159 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1161 Initiate further development.
1162 * NEWS: Create an empty section for new entries.
1163 * gnulib: Update submodule to HEAD.
1165 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1167 * NEWS: Version 2.4.
1169 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1171 Prepare for next release.
1172 * NEWS: Briefly mention changes since 2.3b.
1173 * README: Say GNU m4 1.4.6, which we've been requiring in release
1174 announcements already, not 1.4.3, which breaks the build.
1176 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
1178 Say %language is experimental.
1179 We're thinking of extending it's effect on output file naming. See the
1181 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
1182 * NEWS: Say it's experimental.
1183 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
1184 recommend it over %skeleton for now.
1185 (Bison Options): Likewise.
1186 (C++ Bison Interface): Use %skeleton not %language.
1187 (Calc++ Parser): Use %skeleton not %language.
1188 * src/getargs.c (usage): Say it's experimental.
1190 2008-11-01 Di-an Jan <dianj@freeshell.org>
1191 Paolo Bonzini <bonzini@gnu.org>
1193 Support all Java parser class modifiers.
1194 * data/java.m4 (b4_percent_define_get3): New.
1195 (b4_final_if, b4_strictfp_if): New.
1196 * data/lalr1.java (final, strictfp, extends, implements): Support.
1197 * doc/bison.texinfo (final, strictfp, extends, implements): Add
1199 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
1200 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
1201 (AT_CHECK_JAVA_GREP): New.
1202 (Java parser class modifiers): New test.
1203 (Java parser class extends and implements): New test.
1205 Model exception propagation better with throws and lex_throws.
1206 * data/java.m4 (b4_list2): New.
1207 (throws): Change default.
1208 * data/lalr1.java (yyaction): Add throws.
1209 (parse): Add lex_throws in addition to throws.
1210 * doc/bison.texinfo (throws, lex_throws): Add documentation.
1211 * tests/java.at (Java throws specifications): New test.
1213 Improve documentation for Java parsers.
1214 * doc/bison.texinfo (Java Parsers): Add subsections.
1215 Don't quote first argument of %define.
1216 (Java Bison Interface): Document output files. Move documentation
1217 of parser class and merge into Java Parser Interface. Document
1218 features that error out. Document directives with no effect.
1219 Move note about Javadoc higher.
1220 (Java Semantic Values): Explicitly mention stype.
1221 Document that generic types cannot be used.
1222 (Java Location Values): Use @deftypeivar. Document constructors.
1223 Correct return value for toString.
1224 (Java Parser Interface): List undocumented constants/fields.
1225 Move documentation of fields added by %parse-param closer to list
1226 of members. Document that token names are added as fields.
1227 Document constructors accurately. Remove error method.
1228 (Java Scanner Interface): Move note on %pure-parser to Java Bison
1229 Interface. Describe %code lexer and yylex accutately.
1230 Remove documentation that does not match the code.
1231 (Java Action Features): New.
1232 (Java Differences): Add reference. Add item on semantic values.
1233 Add note about @{ ... @}. Clarify %% epilogue placement.
1234 (Java Declarations Summary): New.
1237 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
1238 (b4_remove_comma): Quote test argument.
1239 (b4_identification): Remove "bison" field.
1240 * tests/java.at (Java parser class and package names): New test.
1241 (Java %parse-param and %lex-param): New test.
1242 (Java stype, position_class and location_class): New test.
1244 2008-10-31 Di-an Jan <dianj@freeshell.org>
1246 * data/lalr1.jave: Update copyright years.
1247 (YYParser): Correct name of "generated from" file in Javadoc:
1248 use b4_file_name instead of @ofile@.
1249 (Location constructor): Correct Javadoc parameter name.
1250 (yylloc): Add missing opening m4 quote after b4_location_if.
1251 This removes a stray [ in the Javadoc of Lexer.getStartPos.
1252 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
1253 (YYParser constructor): Correct Javadoc parameter name.
1255 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
1257 Always put auxiliary code files in the same dir as other output files.
1258 * src/files.c (compute_file_name_parts): When the user specifies
1259 --output but not --file-prefix, extract the directory prefix from the
1260 file prefix not from the grammar file name. This affects the location
1261 of files like location.hh generated by the C++ skeleton. The includes
1262 in the other output files require this fix.
1263 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
1264 for expected output files.
1265 (Output files): Add a test for the above.
1267 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
1269 * gnulib: Update submodule to HEAD.
1271 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
1273 Update copyright year.
1274 * src/files.c: Here.
1276 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
1278 Don't overwrite the input file.
1279 * src/files.c (output_file_name_check): Fatal error if using input file
1281 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
1283 (Conflicting output files): Add test.
1285 2008-10-28 Akim Demaille <demaille@gostai.com>
1288 * data/lalr1.cc: Formatting changes.
1290 2008-10-28 Akim Demaille <demaille@gostai.com>
1292 Don't define debugging functions when !YYDEBUG.
1293 * data/lalr1.cc (debug_stream, set_debug_stream)
1294 (debug_level_type, debug_level, set_debug_level): Don't
1295 declare them when YYDEBUG is not defined.
1296 The implementation are already YYDEBUG-aware.
1298 2008-10-28 Akim Demaille <demaille@gostai.com>
1300 Prefer "continue" for empty loop bodies.
1301 * etc/bench.pl.in: Use "continue" instead of {}.
1303 2008-10-28 Akim Demaille <demaille@gostai.com>
1305 Space and comments changes.
1306 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
1307 * data/c.m4, data/lalr1.cc: Space changes.
1309 2008-10-28 Akim Demaille <demaille@gostai.com>
1311 Make gnulib a submodule.
1313 * .gitmodules (gnulib): New.
1315 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1317 Fix yyerror_range for user-defined location type in C++. Reported by
1319 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
1320 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
1321 * THANKS (Georg Sauthoff): Add.
1323 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
1325 Update several administrative files mainly to facilitate releasing.
1326 * HACKING (Administrivia): Make the git-merge-changelog notes more
1328 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
1329 (Release Procedure): Update for git and add numerous details that were
1331 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
1332 * maint.mk (announcement): Don't list bison as a bootstrap tool so
1333 that announcements don't claim we bootstrapped with whatever bison
1334 happened to be in PATH. Add flex as a bootstrap tool.
1335 * Makefile.maint: Remove, previously replaced by maint.mk.
1336 * Makefile.cfg: Remove, and migrate settings to...
1337 * cfg.mk: ... here for the sake of `make announcement'.
1338 * bootstrap.conf (gnulib_modules): Add announce-gen.
1339 * README: Say GNU Bison instead of just Bison. Suggested by Karl
1342 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
1344 Small but important bugfixes for the Java skeleton.
1345 * data/lalr1.java (yyerror): Change Location to b4_location_type.
1346 (yy_symbol_print): Call toString on yyvaluep.
1348 2008-08-29 Akim Demaille <demaille@gostai.com>
1350 Clarify UPDATED use.
1351 * doc/bison.texinfo: It refers to the last edition of this file,
1352 not to the release date of Bison.
1353 Reported by Joel E. Denny.
1355 2008-08-29 Akim Demaille <demaille@gostai.com>
1357 * README: Update FAQ pointer.
1358 Reported by Joel E. Denny.
1360 2008-08-27 Eric Blake <ebb9@byu.net>
1362 Resync m4sugar from autoconf.
1363 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
1364 (m4_init): Adjust to latest m4.git changes.
1365 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
1367 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
1368 (_m4_list_cmp): Reduce side effects.
1370 2008-08-27 Akim Demaille <demaille@gostai.com>
1372 Check yyerrok in calc.at.
1373 * tests/calc.at (calc.y): Use yyerrok on "( error )".
1374 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
1377 2008-08-27 Akim Demaille <demaille@gostai.com>
1379 Support yyerrok in lalr1.cc.
1380 YYBACKUP is still to import back into lalr1.cc.
1381 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
1383 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1385 For maintainer-check*, don't recompile for a $(VERSION) update.
1387 (_is-dist-target): Override the one in GNUmakefile.
1388 * Makefile.am (EXTRA_DIST): Add cfg.mk.
1390 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
1392 Update for recent change to gnulib.
1393 * src/parse-gram.y: Don't include strverscmp.h. It comes from
1396 2008-08-15 Eric Blake <ebb9@byu.net>
1398 Remaining m4sugar merge from autoconf.
1399 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
1400 * data/m4sugar/foreach.m4: New file, copied from autoconf.
1401 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
1402 * src/output.c (output_skeleton): Tell m4 how to find it.
1404 Partial m4sugar merge from autoconf: m4_map.
1405 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
1406 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
1407 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
1408 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
1410 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
1412 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
1415 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
1417 Keep .version and PACKAGE_VERSION in sync.
1418 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
1419 dependency, and add comments justifying this in more detail. Discussed
1421 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
1423 2008-08-06 Eric Blake <ebb9@byu.net>
1425 Partial m4sugar merge from autoconf: m4_shiftn.
1426 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
1427 (m4_shift2, m4_shift3): New macros.
1428 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
1429 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
1430 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
1431 * data/java.m4 (b4_remove_comma): Likewise.
1433 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
1434 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
1435 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
1436 (m4_init): Consolidate wrapped text into single m4_wrap.
1437 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
1440 2008-08-05 Eric Blake <ebb9@byu.net>
1442 Partial m4sugar merge from autoconf: builtins, version.m4.
1443 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
1444 (m4_prepend): Remove, as it is unused and inherently quadratic,
1445 whereas m4_append is linear in newer m4.
1446 (m4_mkstemp): New builtin.
1447 (m4_symbols): Make rename conditional.
1448 (m4_version_prereq): Ensure fatal error if used in bison, which
1449 intentionally lacks version.m4.
1451 Fix comments in m4sugar.
1452 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
1454 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1456 Update for recent .gitignore fix in Gnulib.
1457 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
1458 anchored .gitignore entries.
1460 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
1462 Set gnu or gnits strictness.
1463 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
1464 development and gnits strictness for releases. Based on Eric Blake's
1466 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
1468 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1470 * NEWS: Clarify documentation of %language.
1472 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
1474 Support usage of git-merge-changelog.
1475 * .gitattributes: New.
1476 * HACKING: Document usage of git-merge-changelog.
1477 * bootstrap: Install git-merge-changelog entries in .git/config
1480 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1482 Remove remaining dependence on CVS Id keyword.
1483 * ChangeLog: For the sake of people still using CVS, don't use dollars
1485 * data/xslt/bison.xsl: Remove Id from header comments, where it was
1487 * data/xslt/xml2dot.xsl: Likewise.
1488 * data/xslt/xml2text.xsl: Likewise.
1489 * data/xslt/xml2xhtml.xsl: Likewise.
1490 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
1491 * doc/Makefile.am (neutralize): Remove, no longer needed.
1492 (.x.1): Don't use neutralize.
1493 (edit): Don't substitute for ID.
1494 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
1496 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
1498 Fix dependence on computed configure variables.
1499 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
1500 $(top_srcdir)/configure.ac so that changes to computed variables, such
1501 as PACKAGE_VERSION, are seen.
1502 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
1504 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
1506 Update copyright dates for recent changes.
1507 * Makefile.am: Here.
1508 * src/Makefile.am: Here.
1509 * src/reduce.c: Here.
1510 * tests/reduce.at: Here.
1512 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
1514 Use git-version-gen for version names between releases.
1515 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
1516 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
1517 * .prev-version: New.
1518 * .version.in: Remove.
1519 * ChangeLog: Remove the Id previously used for capturing the CVS
1521 * GNUmakefile: Remove, now copied from Gnulib.
1522 * Makefile.am: Add code suggested by comments in
1523 build-aux/git-version-gen.
1524 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
1525 .prev-version, and .version.
1526 * NEWS (2.3b+): Rename to...
1527 (?.?): ... this because we're dropping the "+" version naming scheme,
1528 but, in general, we still can't be sure of our next release name.
1529 * bootstrap: Add a quick hack to remove from .gitignore the
1530 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
1531 entry. This should really be fixed in gnulib instead.
1532 * bootstrap.conf (gnulib_modules): Add gnumakefile.
1533 * configure.ac (AC_INIT): Set version name by invoking
1534 build-aux/git-version-gen.
1535 (AC_CONFIG_FILES): Remove .version, now generated by
1536 build-aux/git-version-gen.
1537 * maint.mk: New, copied from coreutils.
1538 * doc/.cvsignore (bison.1): Add.
1539 * doc/.gitignore (/bison.1): Add.
1540 * doc/bison.1: Remove, generated.
1541 * src/.cvsignore (revision.c): Remove.
1542 * src/.gitignore (/revision.c): Remove.
1543 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
1544 (BUILT_SOURCES): Remove revision.c.
1545 (revision.c): Remove.
1546 * src/getargs.c (version): Don't print revision after the VERSION.
1547 * src/revision.h: Remove.
1549 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
1551 Fix untranslatable composition of sentences. Reported by Goran
1553 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
1554 * THANKS (Goran Uddeborg): Add.
1555 * src/reduce.c (reduce_print): Report the number of nonterminals and
1556 rules useless in the grammar in separate sentences.
1557 * tests/reduce.at (Useless Rules): Update output.
1558 (Reduced Automaton): Likewise.
1559 (Underivable Rules): Likewise.
1560 (Empty Language): Likewise.
1562 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1564 Fix some .gitignore and .cvsignore problems.
1565 * bootstrap (insert_sorted_if_absent): Replace all uses with...
1566 (insert_vc_ignore): ... this new function, which prepends `/' to all
1567 .gitignore entries before passing them to insert_sorted_if_absent.
1568 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
1569 .cvsignore files are maintained even though Bison developers run
1570 bootstrap while using Git.
1571 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
1574 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
1575 unneeded. Reported by Eric Blake.
1576 * lib/.gitignore (/*~): Add.
1577 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
1578 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
1580 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
1582 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
1584 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
1585 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
1586 * bootstrap.conf (gnulib_modules): Add unsetenv.
1587 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
1588 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
1590 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
1591 the first argument because it may become position-dependent, and unset
1592 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
1593 Add comments explaining these issues in more detail.
1595 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
1597 Add .gitignore everywhere based on .cvsignore.
1599 * build-aux/.gitignore: New.
1600 * data/.gitignore: New.
1601 * doc/.gitignore: New.
1602 * etc/.gitignore: New.
1603 * examples/.gitignore: New.
1604 * examples/calc++/.gitignore: New.
1605 * lib/.gitignore: New.
1606 * m4/.gitignore: New.
1607 * po/.gitignore: New.
1608 * runtime-po/.gitignore: New.
1609 * src/.gitignore: New.
1610 * tests/.gitignore: New.
1612 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1614 * NEWS (2.3b+): New section, empty for now.
1615 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
1617 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
1619 * NEWS (2.3b): Update release date since there has been a delay in
1620 getting the announcements and tarballs out.
1622 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1624 * NEWS: Version 2.3b.
1625 * configure.ac (AC_INIT): Likewise.
1626 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
1628 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
1630 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
1631 been doing it for years.
1632 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
1633 (Release Procedure): Add FIXME about make alpha being unmaintained.
1635 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
1637 * data/yacc.c: Reformat m4 a little for readability.
1638 * src/lalr.c (build_relations): Correct comment.
1640 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1642 DJGPP specific issue.
1643 * djgpp/config.sed: Fixes required to run configure scripts generated
1646 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
1648 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
1649 coordinator@translationproject.org.
1651 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
1653 * THANKS: Add Eric Blake.
1655 2008-04-23 Eric Blake <ebb9@byu.net>
1657 Revert prior patch, by working around autoconf regression.
1658 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
1659 ("Output file name: ("): Uncomment test.
1660 ("Output file name: )"): Likewise.
1661 Based on an idea from Noah Misch.
1663 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1665 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
1666 2.61. Reported by Juan Manuel Guerrero at
1667 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
1668 * tests/output.at ("Output file name: ("): Comment out test case for
1670 ("Output file name: )"): Likewise.
1672 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1674 * GNUmakefile: Update git-version-gen invocation so make dist
1677 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
1679 Update to the current gnulib CVS repository, and fix trigraph handling
1681 * bootstrap: Update gnulib CVS repository URL.
1682 (symlink_to_dir): Encapsulate the code that guarantees the destination
1683 directory exists into...
1684 (check_dst_dir): ... this new function, and...
1685 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
1686 fail when copying files into lib/uniwidth/.
1687 * src/output.c (prepare_symbols): When writing yytname muscles, where
1688 symbol names will be encoded in C-string literals, tell quotearg to
1689 escape trigraphs. This used to be the default in gnulib.
1690 * tests/regression.at (Token definitions): Because of the change in
1691 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
1692 escapes trigraphs in symbol names. Thus, yytname no longer has
1693 trigraphs unnecessarily doubly escaped. Update test case output.
1694 Extend test case to be sure Bison's own error messages will no longer
1695 have trigraphs in symbol names unnecessarily escaped once.
1697 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
1699 Fix make dist infinite loop reported by Juan Manuel Guerrero at
1700 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
1701 * .cvsignore: Add .version.
1703 * bootstrap.conf (gnulib_modules): Add git-version-gen.
1704 * configure.ac (AC_CONFIG_FILES): Add .version.
1705 * build-aux/.cvsignore: Add git-version-gen.
1707 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
1709 * NEWS (2.3a+): Mention that -g now takes an argument.
1710 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
1711 consistency. Update the -g and -x entries now that they take
1712 arguments. Use brackets to indicate optional arguments.
1713 * src/getargs.c (usage): Explain the relationship between arguments of
1714 long and short options more completely. Document --defines and -d
1715 separately since the former takes an argument but, for POSIX Yacc, the
1717 (short_options): Let -W take an optional argument like --warnings.
1718 (getargs): Sort cases.
1720 2008-02-28 Akim Demaille <demaille@gostai.com>
1722 * doc/bison.texinfo: Fix a few typos.
1724 2008-02-28 Akim Demaille <akim@epita.fr>
1726 * doc/bison.texinfo (Bison Options): Document -W.
1727 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
1729 2008-02-28 Akim Demaille <akim@epita.fr>
1731 * src/getargs.c (short_options): Split and sort for readability.
1732 -g and -x take optional arguments, just like their long options.
1733 * build-aux/cross-options.pl: Use /x to make the regexp easier to
1735 Fix the handling of $opt which resulted in all the argument to be
1736 considered as optional.
1738 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
1740 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
1741 say its interface is experimental.
1742 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
1744 (Bison Options): In the -L and --language entry, mention Java.
1745 (Java Bison Interface): Say the interface is experimental.
1746 * src/getargs.c (usage): Mention -L and --language.
1748 * NEWS (2.3a+): Say the push parsing interface is experimental.
1749 * doc/bison.texinfo (Push Decl): Likewise.
1750 (Decl Summary): Likewise in the "%define api.push_pull" entry.
1751 (Push Parser Function): Likewise.
1752 (Pull Parser Function): Likewise.
1753 (Parser Create Function): Likewise.
1754 (Parser Delete Function): Likewise.
1755 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
1756 yypull_parse, and yypush_parse entries.
1758 * NEWS (2.3a+): Mention XML support, and say the schema is
1760 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
1761 * src/getargs.c (usage): Say the XML schema is experimental.
1763 * NEWS (2.3a+): Say option instead of flag.
1765 2008-02-21 Wojciech Polak <polak@gnu.org>
1767 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
1770 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
1772 Fix impure push parser compile error reported by Bob Rossi at
1773 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
1774 * data/yacc.c: Clean up whitespace in the output a little.
1775 (yypstate_allocated): Define for impure push parsers regardless of
1776 whether the pull interface is also requested.
1777 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
1778 check impure push parsers without the pull interface.
1780 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
1781 yyerror takes arguments specified by %parse-param while yypstate_new
1783 * doc/bison.texinfo (Parser Create Function): Document that
1784 yypstate_new returns 0 for multiple impure parser instances.
1785 * tests/push.at (Push Parsing: Multiple impure instances): Update
1786 expected stderr output.
1788 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
1790 * runtime-po/POTFILES.in (push.c): Remove.
1792 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1794 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
1795 * data/push.c: Rename to...
1796 * data/yacc.c: ... this, overwriting it.
1797 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
1798 `%push-pull-parser' -> `%define api.push_pull "both"'.
1799 Remove old yacc.c tests, and update push.c tests to yacc.c.
1801 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
1803 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
1804 `"%code top" blocks' instead of `%code "top" blocks'.
1805 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
1806 Clean up whitespace in the output a little.
1808 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1810 Fix documentation problems reported by Tim Josling at
1811 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
1812 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
1813 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
1814 integers. Explain the effect of literal string aliases on error
1815 messages. Copy token 0 documentation from the C++ skeleton
1818 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
1820 Accept a token number in a %left, %right, or %nonassoc for POSIX
1821 conformance. Reported by Tim Josling at
1822 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
1823 * NEWS (2.3a+): Mention.
1824 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
1825 and code numbers are treated by precedence declarations.
1826 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
1828 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
1830 (symbol.prec): New, just like symbol but allows INT.
1831 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
1833 * tests/regression.at (Token number in precedence declaration): New
1836 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
1838 DJGPP specific issues.
1839 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
1840 be changed. Copyright timestamp adjusted.
1841 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
1842 be changed. Copyright timestamp adjusted.
1843 * djgpp/config.site: Copyright timestamp adjusted.
1844 * djgpp/config_h.sed: Copyright timestamp adjusted.
1845 * djgpp/djunpack.bat: Copyright timestamp adjusted.
1846 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
1847 filename translation list.
1848 * djgpp/subpipe.c (init_subpipe): Check the environment variables
1849 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
1850 files shall be created. Before trying to use the temp dir where the
1851 environment variable points to check that the dir really exists. If
1852 not default to the cwd as temp dir. Copyright timestamp adjusted.
1853 * djgpp/subpipe.h: Copyright timestamp adjusted.
1854 * djgpp/testsuite.sed: Copyright timestamp adjusted.
1856 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
1858 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
1860 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
1862 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
1863 Problem reported by Claudio Saavedra in
1864 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
1866 2008-01-05 Wojciech Polak <polak@gnu.org>
1868 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
1869 document's title with the input grammar file name.
1871 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
1873 Automate regression testing of the XML/XSLT implementation. Discussed
1875 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
1876 * configure.ac (XSLTPROC): New substitution.
1877 * Makefile.am (maintainer-xml-check): New phony target invoking...
1878 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
1879 invoking make maintainer-check with BISON_TEST_XML=1.
1880 * tests/atlocal.in (XSLTPROC): New.
1881 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
1882 not to report reachable memory when Bison is expected to have a
1883 non-zero exit status and (2) to compare XML/XSLT output with --graph
1884 and --report=all output for every working grammar when
1886 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
1887 (AT_BISON_CHECK_XML): New.
1888 (AT_QUELL_VALGRIND): New.
1889 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
1890 (AT_CHECK): ... don't redefine this since this was the old way to
1892 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
1893 AT_BISON_CHECK invocations.
1894 * tests/c++.at: Likewise.
1895 * tests/calc.at: Likewise.
1896 * tests/conflicts.at: Likewise.
1897 * tests/cxx-type.at: Likewise.
1898 * tests/existing.at: Likewise.
1899 * tests/glr-regression.at: Likewise.
1900 * tests/headers.at: Likewise.
1901 * tests/input.at: Likewise.
1902 * tests/java.at: Likewise.
1903 * tests/output.at: Likewise.
1904 * tests/push.at: Likewise.
1905 * tests/reduce.at: Likewise.
1906 * tests/regression.at: Likewise.
1907 * tests/sets.at: Likewise.
1908 * tests/skeletons.at: Likewise.
1909 * tests/synclines.at: Likewise.
1910 * tests/torture.at: Likewise.
1911 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
1912 tends to hang xsltproc.
1913 (Big horizontal): Likewise.
1915 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1917 In XML output, remove redundant class attribute on symbol element.
1918 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
1919 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
1920 look up a symbol to determine whether it's a nonterminal or terminal.
1921 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
1922 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
1924 Add prec/assoc information to XML output.
1925 * src/gram.c (grammar_rules_print_xml): For each rule that has a
1926 %prec, add a percent_prec attribute.
1927 * src/print-xml.c (print_grammar): For each terminal that has a
1928 precedence or associativity, add a prec or assoc attribute.
1930 (xml_puts): Use xml_indent.
1931 (xml_printf): Use xml_indent.
1932 * src/print-xml.h (xml_indent): Prototype.
1934 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
1935 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
1937 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
1939 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
1940 (bison:ruleByNumber): ... this for clarity.
1941 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
1942 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
1943 (xsl:template match="reduction"): Update.
1944 (xsl:template match="item"): Update.
1945 (xsl:template match="reduction"): Update.
1947 In the XML output, don't print the list of rules where symbols appear.
1948 Compute it in XSLT instead. Discussed at
1949 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
1950 * data/xslt/bison.xsl (bison:ruleByLhs): New.
1951 (bison:ruleByRhs): New.
1952 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
1954 (xsl:template match="terminal/rule"): Remove.
1955 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1957 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1959 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
1960 bison:ruleByRhs and mode="number-link" for rule template.
1961 (xsl:template match="terminal/rule"): Remove.
1962 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
1963 bison:ruleByRhs and mode="number-link" for rule template.
1964 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
1966 (xsl:template match="rule" mode="number-link"): ... this.
1967 * src/print-xml.c (print_grammar): Don't print the list of rules.
1969 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
1971 Don't let --report affect XML output; always print all information.
1973 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
1974 * src/conflicts.c (log_resolution): Implement.
1975 * src/print-xml.c (print_core): Implement.
1976 (print_state): Implement.
1977 (print_xml): Implement.
1979 * NEWS (2.3a+): Fix quotes.
1980 * src/parse-gram.y (prologue_declaration): For consistency with -v,
1981 don't let %verbose clear the list specified by --report.
1983 2007-11-26 Akim Demaille <akim@epita.fr>
1985 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
1987 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
1989 In the XML output, list useless and unused symbols and rules with the
1990 useful ones and add a "usefulness" attribute. Discussed starting at
1991 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
1992 * src/gram.c (grammar_rules_partial_print_xml): Remove.
1993 (grammar_rules_print_xml): Print all rules instead of just those
1994 useful in the grammar, and add a "usefulness" attribute.
1995 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
1996 * src/print-xml.c (print_rules_useless_in_parser): Remove.
1997 (print_grammar): Print all nonterminals instead of just useful ones,
1998 and add a "usefulness" attribute to nonterminals and terminals.
1999 (print_xml): Don't print a separate "reductions" or
2000 "rules-useless-in-parser" element.
2001 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
2002 (reduce_xml): Remove.
2003 (reduce_token_unused_in_grammar): New.
2004 (reduce_nonterminal_useless_in_grammar): New.
2005 * src/reduce.h (reduce_xml): Remove prototype.
2006 (reduce_token_unused_in_grammar): Add prototype.
2007 (reduce_nonterminal_useless_in_grammar): Add prototype.
2008 * data/xslt/xml2text.xsl: Update for XML changes.
2009 * data/xslt/xml2xhtml.xsl: Update for XML changes.
2010 * tests/reduce.at (Useless Terminals): Update output.
2011 (Useless Rules): Update output.
2012 (Reduced Automaton): Update output.
2014 Say "Terminals unused in grammar" instead of "Unused terminals".
2015 * NEWS (2.3a+): Update.
2016 * doc/bison.texinfo (Understanding): Update example output.
2017 * src/reduce.c (reduce_output): Implement.
2018 * data/xslt/xml2text.xsl: Implement.
2019 * data/xslt/xml2xhtml.xsl: Implement.
2021 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
2023 Accept --report-file=FILE to override the default `.output' filename.
2024 * NEWS (2.3a+): Mention.
2025 * doc/bison.texinfo (Bison Options): Add an entry.
2026 * src/files.c (compute_output_file_names): Don't override
2027 spec_verbose_file if already set.
2028 * src/getargs.c (usage): Document --report-file.
2029 (REPORT_FILE_OPTION): New anonymous enum member.
2030 (long_options): Add entry for it.
2031 (getargs): Add case for it setting spec_verbose_file.
2033 * build-aux/cross-options.pl: Don't record a short option just because
2035 * doc/.cvsignore: Add yacc.1.
2037 2007-11-14 Akim Demaille <akim@epita.fr>
2039 * doc/yacc.1.in: New.
2040 * configure.ac, doc/Makefile.am: Adjust.
2041 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
2043 Use AC_SUBST for assignments too.
2044 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
2046 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
2048 * src/gram.c: Remove comments that duplicate comments in gram.h.
2050 When reporting useless rules and nonterminals, say "useless in grammar"
2051 instead of "useless", and say "useless in parser" instead of "never
2052 reduced". Discussed starting at
2053 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
2054 * NEWS (2.3a+): Mention this change.
2055 * data/xslt/xml2text.xsl: Update output text and expected input XML
2056 element names to match changes below.
2057 * data/xslt/xml2xhtml.xsl: Likewise.
2058 (xsl:template match="bison-xml-report"): Add missing entry in Table of
2059 Contents: "Rules useless in parser due to conflicts".
2060 * doc/bison.texinfo (Decl Summary): Reword a little.
2061 (Understanding): Update example output for changes below.
2062 * src/gram.c: (rule_useful_p): Rename to...
2063 (rule_useful_in_grammar_p): ... this.
2064 (rule_useless_p): Rename to...
2065 (rule_useless_in_grammar_p): ... this.
2066 (rule_never_reduced_p): Rename to...
2067 (rule_useless_in_parser_p): ... this.
2068 (grammar_rules_print): Update for renames.
2069 (grammar_rules_print_xml): Update for renames.
2070 (grammar_rules_never_reduced_report): Rename to...
2071 (grammar_rules_useless_report): ... this since it is used for either
2072 kind of useless rule.
2073 * src/gram.h: Reword comments and update function names in prototypes.
2074 * src/main.c (main): Say "rule useless in parser due to conflicts".
2075 * src/print-xml.c (print_rules_never_reduced): Rename to...
2076 (print_rules_useless_in_parser): ... this, and rename output XML
2077 element "rules-never-reduced" to "rules-useless-in-parser".
2078 (print_xml): Update for rename.
2079 * src/print.c (print_results): Say "Rules useless in parser due to
2081 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
2082 (nonterminals_reduce): Say "nonterminal useless in grammar".
2083 (reduce_output): Say "Nonterminals useless in grammar".
2084 Say "Rules useless in grammar".
2085 (reduce_xml): Rename output XML element "useless" to
2086 "useless-in-grammar".
2087 (reduce_print): Don't report the count of grammatically useless rules
2088 as "rules never reduced" just because %yacc is specified.
2089 In the correct report of this count, say nonterminal(s) and rule(s)
2090 "useless in grammar".
2091 * tests/conflicts.at (S/R in initial): Update expected output.
2092 (Defaulted Conflicted Reduction): Likewise.
2093 (Unreachable States After Conflict Resolution): Likewise.
2094 * tests/existing.at (GNU pic Grammar): Likewise.
2095 * tests/reduce.at (Useless Nonterminals): Likewise.
2096 (Useless Rules): Likewise.
2097 (Reduced Automaton): Likewise.
2098 (Underivable Rules): Likewise.
2099 (Empty Language): Likewise.
2101 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
2103 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
2104 here document and before the EOF so that BSD's implementation of Bourne
2105 shell doesn't parse the delimiter as part of the here document.
2106 * doc/.cvsignore: Add cross-options.texi.
2107 * src/getargs.c (usage): Add a blank line after the warning categories.
2109 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
2111 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
2113 2007-11-05 Akim Demaille <akim@epita.fr>
2115 Remove Id: from bison.1.
2116 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
2117 (perl -0777 -pi -e 's/\.PP\nId): New.
2118 (.x.1): Use it to ignore the version control revision.
2120 2007-11-05 Akim Demaille <demaille@gostai.com>
2122 * build-aux/Makefile.am: Ship cross-options.pl.
2123 * doc/Makefile.am: Always refer to cross-options.texi with
2125 (MAINTAINERCLEANFILES): Add it.
2127 2007-11-04 Akim Demaille <demaille@gostai.com>
2129 Generate the long/short option cross-table.
2130 * build-aux/cross-options.pl: New.
2131 * doc/Makefile.am (cross-options.texi): New.
2132 * doc/bison.texinfo: Use it.
2134 2007-11-04 Akim Demaille <demaille@gostai.com>
2136 Generate bison.1 using help2man.
2137 * doc/common.x, doc/bison.x: New.
2138 * doc/Makefile.am (bison.1, .x.1): New.
2139 The code is taken from autoconf-2.61/man/Makefile.am.
2140 * configure.ac: Look for help2man.
2142 2007-11-04 Akim Demaille <demaille@gostai.com>
2145 * src/getargs.c (usage): Document -W, make it clear that -d,
2146 -g and -x have optional arguments.
2148 2007-11-04 Akim Demaille <demaille@gostai.com>
2150 Find sha1sum when named gsha1sum.
2151 * bootstrap (find_tool): New.
2154 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2156 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
2158 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
2159 * NEWS (2.3a+): Mention.
2160 * data/bison.m4 (b4_pure_if): Don't define it here.
2161 * data/c.m4 (b4_identification): Depend on individual skeletons to
2162 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
2163 values of the %define variables api.pure or api.push_pull. Define
2164 YYPURE, YYPUSH, and YYPULL accordingly.
2165 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
2166 glr.cc has already defined b4_pure_flag.
2167 * data/push.c: Define b4_pure_if based on `%define api.pure'.
2168 Remove YYPUSH and YYPULL since they're back in b4_identification again.
2169 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
2170 * doc/bison.texinfo (Pure Decl): Update.
2171 (Push Decl): Update.
2172 (Decl Summary): Add api.pure to %define entry.
2173 In %pure-parser entry, say it's deprecated and reference %define.
2174 (Pure Calling): Update.
2175 (Error Reporting): Update.
2176 (C++ Scanner Interface): Update.
2177 (How Can I Reset the Parser): Update.
2178 (Table of Symbols): In %pure-parser entry, say it's deprecated and
2180 * src/getargs.c (pure_parser): Remove global variable.
2181 * src/getargs.h (pure_parser): Remove extern.
2182 * src/output.c (prepare): Don't define pure_flag muscle.
2183 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
2184 wrapper around `%define api.pure'.
2185 * tests/calc.at (Simple LALR Calculator): Update.
2186 (Simple GLR Calculator): Update.
2187 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
2189 (GLR: Resolve ambiguity, pure, locations): Update.
2190 (GLR: Merge conflicting parses, pure, no locations): Update.
2191 (GLR: Merge conflicting parses, pure, locations): Update.
2192 * tests/glr-regression.at (Uninitialized location when reporting
2194 * tests/input.at (Unused %define api.pure): New test case.
2195 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
2196 AT_PURE_IF and AT_PURE_AND_LOC_IF.
2197 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2199 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
2201 %define push_pull -> %define api.push_pull. Discussed starting at
2202 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
2203 * data/push.c: Expect the new name.
2204 * data/yacc.c: Likewise.
2205 * doc/bison.texinfo (Push Decl): Update.
2206 (Decl Summary): Update %define entry.
2207 (Push Parser Function): Update.
2208 (Pull Parser Function): Update.
2209 (Parser Create Function): Update.
2210 (Parser Delete Function): Update.
2211 * tests/calc.at (Simple LALR Calculator): Update.
2212 * tests/input.at (%define enum variables): Update.
2213 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
2214 (Push Parsing: Multiple impure instances): Update.
2215 (Push Parsing: Unsupported Skeletons): Update.
2216 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
2217 (Exploding the Stack Size with Malloc): Update.
2219 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
2222 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
2224 For the XML output's terminal element, rename @number to @token-number,
2225 and add @symbol-number. In the nonterminal element, rename @number to
2226 @symbol-number. Discussed starting at
2227 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
2228 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
2230 (xsl:template match="nonterminal"): Likewise.
2231 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
2232 (xsl:template match="nonterminal"): Likewise.
2233 * src/print-xml.c (print_grammar): Implement.
2235 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
2237 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
2238 2007-10-11 change, the child elements here are items not rules.
2239 (xsl:template match="item"): New.
2240 (xsl:template match="rule"): Update for new reduced itemset.
2241 (xsl:template match="point"): Remove.
2242 (xsl:template match="empty"): For consistency with --graph, don't
2243 output "/* empty */".
2244 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
2245 line-wrap, don't pass a negative value as first-line-length since this
2246 won't work with the following changes.
2247 (xsl:template name="line-wrap"): Simplify slightly.
2248 (xsl:template name="ws-search"): Eliminate recursion.
2249 * src/print_graph.c (print_core): Don't print a reduction's lookahead
2250 set next to an item whose dot is not at the end of the RHS even if it
2251 happens to be associated with the same rule.
2253 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2255 Add %define lr.keep_unreachable_states.
2256 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
2257 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
2258 * src/main.c (main): Implement it.
2259 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2260 Extend to test it, and fix a typo.
2262 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
2264 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
2265 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
2266 the example .output text.
2267 * tests/regression.at (Extra lookahead sets in report): Improve wording
2270 2007-10-17 Wojciech Polak <polak@gnu.org>
2272 * src/print-xml.c (print_grammar): Renamed
2273 <terminal> and <nonterminal> attributes:
2274 "type" to "number" and "symbol" to "name".
2275 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
2276 Use new attribute names.
2277 (xsl:template match="nonterminal"): Likewise.
2278 * data/xslt/xml2xhtml.xsl: Likewise.
2280 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
2282 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
2283 (Option Cross Key): Likewise.
2285 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
2286 next to an item whose dot is not at the end of the RHS even if it
2287 happens to be associated with the same rule.
2288 * src/print.c (print_core): Likewise.
2289 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
2290 (Resolved SR Conflicts): Update output.
2291 * tests/regression.at (Extra lookahead sets in report): New test case.
2293 2007-10-11 Wojciech Polak <polak@gnu.org>
2295 * src/print-xml.c (print_core): Remove item set
2297 * data/xslt/bison.xsl (bison:ruleNumber): New key.
2298 Improve processing time. Suggested by Joel E. Denny.
2299 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
2300 Write xsl:param "required" attribute as comment.
2301 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
2302 (xsl:template match="rule"): Support new reduced itemset.
2303 (xsl:template match="point"): Remove.
2304 * data/xslt/xml2xhtml.xsl: Likewise.
2306 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2308 * src/getargs.c (version): Update copyright year.
2310 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
2312 Make xml2dot.xsl and --graph produce the same output.
2313 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a ` '
2314 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
2316 (xsl:template name="output-node"): Use the new escape template instead
2317 of the string-replace template directly.
2318 (xsl:template name="output-edge"): Likewise.
2319 (xsl:template name="escape"): New, escapes backslashes and newlines in
2320 addition to quotation marks.
2321 * src/graphviz.c (start_graph, output_node, output_edge): Add
2322 whitespace to output for legibility.
2324 Make xml2text.xsl and --report produce the same output, and remove the
2325 XML "conflicts" element since a conflict summary is easily extracted
2327 * data/xslt/bison.xsl: New.
2328 (xsl:template match="state" mode="bison:count-conflicts): New.
2329 * data/xslt/xml2text.xsl: Import bison.xsl.
2330 (xsl:template match="bison-xml-report"): Instead of styling the
2331 "conflicts" element, style the "automaton" element with mode
2332 "conflicts". Unlike the former, the latter lists S/R and R/R
2333 conflicts for a state on the same line.
2334 (xsl:template match="conflicts"): Remove.
2335 (xsl:template match="conflict"): Remove.
2336 (xsl:template match="terminal"): Line-wrap the list of rules in which
2337 the terminal is used.
2338 (xsl:template match="nonterminal"): Likewise for nonterminals.
2339 (xsl:template match="automaton" mode="conflicts"): New.
2340 (xsl:template match="state" mode="conflicts"): New.
2341 (xsl:template name="line-wrap"): New.
2342 (xsl:template name="ws-search"): New.
2343 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
2344 (xsl:template match="bison-xml-report"): Instead of styling the
2345 "conflicts" element, style the "automaton" element with mode
2347 (xsl:template match="conflicts"): Remove.
2348 (xsl:template match="conflict"): Remove.
2349 (xsl:template match="automaton" mode="conflicts"): New.
2350 (xsl:template match="state" mode="conflicts): New.
2351 * src/conflicts.c (conflicts_output_xml): Remove.
2352 * src/conflicts.h (conflicts_output_xml): Remove prototype.
2353 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
2354 * src/print.c (print_grammar): Consistently wrap at the 66th column so
2355 the corresponding XSLT is easier. Also, never wrap between a word and
2356 the comma that follows it.
2358 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2360 Improve C++ namespace support. Discussed starting at
2361 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
2362 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
2363 b4_namespace_close): New macros that interpret the %define variable
2364 "namespace" so its value can contain "::" to indicate nested
2366 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
2368 * data/lalr1.cc (b4_namespace): Likewise.
2369 * data/location.cc (b4_namespace): Likewise.
2370 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
2371 inside a new table in the general %define entry. Document `%define
2372 namespace' there as well. Point the %name-prefix entry to it since it
2373 explains it more completely in the case of C++.
2374 (C++ Bison Interface): Mention `%define namespace' instead of
2376 (Table of Symbols): Remove the `%define push_pull' entry. The %define
2378 * tests/c++.at (Relative namespace references): New test case.
2379 (Absolute namespace references): New test case.
2380 (Syntactically invalid namespace references): New test case.
2381 * tests/input.at (C++ namespace reference errors): New test case.
2383 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
2385 Add syncline support and location accessor to internal %define
2387 * data/bison.m4 (b4_percent_define_get_loc): New.
2388 (b4_percent_define_get_syncline): New.
2389 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
2390 (b4_percent_define_default): Record defining location as line 1 rather
2391 than 0 for the sake of synchronizing #line's, and define
2392 b4_percent_define_syncline(VARIABLE).
2393 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
2394 * src/muscle_tab.c (muscle_syncline_grow): New.
2395 (muscle_code_grow): Use muscle_syncline_grow.
2396 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
2397 define b4_percent_define_syncline(VARIABLE).
2398 (muscle_percent_define_get_loc): New.
2399 (muscle_percent_define_get_syncline): New.
2400 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
2401 remove some unused variables.
2402 (muscle_percent_define_default): Record defining location as line 1
2403 rather than 0 for the sake of synchronizing #line's, and define
2404 b4_percent_define_syncline(VARIABLE).
2405 (muscle_percent_define_check_values): Use
2406 muscle_percent_define_get_loc.
2407 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
2408 (muscle_percent_define_get_syncline): Prototype.
2409 * tests/skeletons.at (%define Boolean variables: invalid skeleton
2410 defaults): Update output for location change.
2411 (Complaining during macro argument expansion): Extend to test
2412 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
2414 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
2416 Fix some error-reporting macro bugs.
2417 * data/bison.m4 (b4_cat): New.
2418 (b4_error, b4_error_at): Use b4_cat to send error directives directly
2419 to stdout so they don't become arguments to other macros. Update
2420 comments and add examples.
2421 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
2423 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
2424 after printing the error directive so that M4 doesn't report subsequent
2425 problems that are induced by this problem.
2426 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
2427 instead of just in them. Recognize @\n in both places. Both expand to
2428 the empty string. Needed by b4_cat.
2429 * tests/skeletons.at (Complaining during macro argument expansion):
2431 (Fatal errors make M4 exit immediately): New test case.
2433 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
2435 Implement --print-datadir.
2436 * src/getargs.c (usage): Mention.
2437 (PRINT_DATADIR_OPTION): New anonymous enum member.
2438 (long_options): Add entry for it.
2439 (getargs): Add case for it calling compute_pkgdatadir.
2440 * src/output.c (output_skeleton): Encapsulate data directory
2441 computation from here...
2442 (prepare): ... and from here...
2443 (compute_pkgdatadir): ... into this new function.
2444 * src/output.h (compute_pkgdatadir): Prototype.
2446 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
2448 * src/print-xml.c (escape_bufs): New static global variable
2450 (xml_escape_n): ... the static local variable buf here.
2451 (print_xml): Free memory for escape_bufs.
2452 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
2454 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
2456 Replace `%push-parser' and `%push-pull-parser' with
2457 `%define push_pull "push"' and `%define push_pull "both"'.
2458 `%define push_pull "pull"' is the default.
2459 * doc/bison.texinfo (Push Decl, Push Parser Function,
2460 Pull Parser Function, Parser Create Function, Parser Delete Function):
2461 Update declarations.
2462 (Decl Summary, Table of Symbols): Replace %push-parser and
2463 %push-pull-parser entries with a %define push_pull entry.
2464 * data/bison.m4 (b4_percent_define_check_values): New macro.
2465 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
2467 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
2469 * data/push.c: ... to here and compute them from the value of the
2470 %define variable push_pull.
2471 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
2472 parsing requests here...
2473 * data/yacc.c: ... hack this to switch to push.c any time
2474 b4_use_push_pull_flag or the %define variable push_pull is set. This
2475 will go away when we mv push.c yacc.c.
2476 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
2477 push parsing is not supported since unused %define variables are
2479 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
2480 * src/muscle_tab.h (muscle_percent_define_check_values): Update
2481 comments for consistency with b4_percent_define_check_values.
2482 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
2484 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
2486 (prologue_declaration): Remove %push-parser and %push-pull-parser
2488 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
2489 * tests/calc.at: Update declarations.
2490 * tests/input.at (%define enum variables): New test case.
2491 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
2493 (Push Parsing: Multiple impure instances): Update declaration.
2494 (Push Parsing: Unsupported Skeletons): New test case.
2495 * tests/torture.at (Exploding the Stack Size with Alloca): Update
2497 (Exploding the Stack Size with Malloc): Update declaration.
2499 2007-09-24 Wojciech Polak <polak@gnu.org>
2501 Add XSLT transformations.
2503 * data/xslt/xml2dot.xsl: Transform XML into DOT.
2504 * data/xslt/xml2text.xsl: Transform XML into plain text.
2505 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
2506 * data/Makefile.am (xsltdir): New variable.
2507 (dist_xslt_DATA): Add xslt/*.xsl files.
2509 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
2511 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
2512 Problem reported by Wojciech Polak.
2513 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
2514 (xml_printf): Undo change I made on 21 September; that is,
2515 indent 2 spaces, not 1.
2517 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
2519 Pacify ./configure --enable-gcc-warnings.
2520 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
2521 `char const *' instead of `char *'.
2522 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
2523 local variable `sep'.
2525 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2527 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
2529 * src/print-xml.c: Prefer "const" after types; that's more consistent.
2530 (xml_printf): Indent just 1 space for level.
2531 (e_char, xlate_char): Remove.
2532 (xml_escape_string): Rewrite to avoid undefined behavior (used
2533 storage that was freed from the stack).
2534 (xml_escape_n): Don't bother checking for subscript error.
2536 2007-09-21 Wojciech Polak <polak@gnu.org>
2538 Add Bison XML Automaton Report.
2540 Add support for an -x option to generate an XML report.
2541 It is not documented yet.
2542 * src/print-xml.c: New file.
2543 * src/print-xml.h: Likewise.
2544 * lib/timevar.def (TV_XML): New var.
2545 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
2546 * src/conflicts.c: Include print-xml.h.
2547 (solved_conflicts_xml_obstack): New var.
2548 (log_resolution, conflicts_solve, conflicts_free):
2549 Add support for XML report.
2550 (conflicts_output_val): New function.
2551 * src/conflicts.h (conflicts_output_val): New decl.
2552 * src/files.c (spec_xml_file): New var.
2553 (compute_output_file_names, output_file_names_free): Add XML support.
2554 * src/files.h (spec_xml_file): New decl.
2555 * src/getargs.c (xml_flag): New var.
2556 (usage, short_options, long_options, getargs): Add XML support.
2557 * src/getargs.h (xml_flag): New decl.
2558 * src/gram.c: Include print-xml.h.
2559 (rule_lhs_print_xml, rule_rhs_print_xml):
2560 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
2562 * src/gram.h: Declare external ones.
2563 * src/main.c: Include print-xml.h.
2564 (main): Add XML support.
2565 * src/reduce.c: Include print-xml.h.
2566 (reduce_xml): New function.
2567 * src/reduce.h: Declare it.
2568 * src/state.c: Include print-xml.h.
2569 (state_new): Add XML support.
2570 (state_rule_lookahead_tokens_print_xml): New function.
2571 * src/state.h: Declare it.
2572 (struct state): New member solved_conflicts_xml.
2573 * src/symtab.c (symbol_class_get_string): New function.
2574 * src/symtab.h: Declare it.
2576 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
2578 * GNUmakefile: Switch to coreutils's version.
2579 * bootstrap: Likewise.
2580 * Makefile.cfg: Adjust to new GNUmakefile.
2581 * README-hacking: Likewise.
2585 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
2586 Bruno Haible <bruno@clisp.org>
2588 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
2589 and is a script that invokes bison. Tighten the code. Add comments.
2591 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
2593 Spell "boolean" as "Boolean". Reported by Akim Demaille.
2594 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
2595 * doc/bison.texinfo (Decl Summary): Fix.
2596 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
2597 * tests/input.at (Boolean %define variables): Update output.
2598 * tests/skeletons.at (%define boolean variables: invalid skeleton
2599 defaults): Rename to...
2600 (%define Boolean variables: invalid skeleton defaults): ... this and
2603 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
2605 In impure push mode, don't allow more than one yypstate to be allocated
2606 since multiple impure parsers would corrupt yynerrs.
2607 * data/push.c (yypstate_allocated): New static global variable
2609 (yypull_parse): If yypstate_new returns 0, don't report it as memory
2610 exhaustion if yypstate_allocated is 1, but still return 2.
2611 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
2612 already 1. Otherwise, set it to 1.
2613 (yypstate_delete): Set it to 0.
2614 * tests/push.at (Push Parsing: Multiple impure instances): New test
2617 2007-08-17 Bob Rossi <bob@brasko.net>
2619 * doc/bison.texinfo (Push Decl): Document the push parser.
2620 (Table of Symbols): Ditto.
2622 (Decl Summary): Ditto.
2623 (Multiple Parsers, Push Parser Function, Pull Parser Function,
2624 Parser Create Function, Parser Delete Function):
2625 Add new push parser symbols.
2626 (Table of Symbols): Document push-parser, push-pull-parser,
2627 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
2629 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
2632 * doc/gpl-3.0.texi: New file.
2633 * doc/gpl.texi: Remove.
2634 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
2635 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
2636 * README-hacking, TODO, bootstrap, bootstrap.conf:
2637 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
2638 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
2639 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
2640 * data/lalr1.cc, data/lalr1.java, data/location.cc:
2641 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
2642 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
2643 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
2644 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
2645 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
2646 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
2647 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
2648 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
2649 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
2650 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
2651 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
2652 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
2653 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
2654 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
2655 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
2656 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
2657 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
2658 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
2659 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
2660 * src/complain.c, src/complain.h, src/conflicts.c:
2661 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
2662 * src/files.h, src/flex-scanner.h, src/getargs.c:
2663 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
2664 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
2665 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
2666 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
2667 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
2668 * src/print.c, src/print.h, src/print_graph.c:
2669 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
2670 * src/reduce.h, src/relation.c, src/relation.h:
2671 * src/revision.h, src/scan-code.h, src/scan-code.l:
2672 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
2673 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
2674 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
2675 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
2676 * tests/Makefile.am, tests/actions.at, tests/c++.at:
2677 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
2678 * tests/existing.at, tests/glr-regression.at:
2679 * tests/headers.at, tests/input.at, tests/java.at:
2680 * tests/local.at, tests/output.at, tests/push.at:
2681 * tests/reduce.at, tests/regression.at, tests/sets.at:
2682 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
2686 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2688 Get rid of broken %no-parser, -n, and --no-parser implementation and
2690 * TODO: Don't mention them.
2691 * doc/bison.1: Likewise.
2692 * doc/bison.texinfo (Decl Summary): Likewise.
2693 (Bison Options): Likewise.
2694 (Option Cross Key): Likewise.
2695 * src/getargs.c (no_parser_flag): Remove global variable.
2696 (usage): Don't print description of -n and --no-parser.
2697 (long_options): Remove --no-parser entry here.
2698 (getargs): Remove -n case in the switch here.
2699 * src/getargs.h (no_parser_flag): Remove extern.
2700 * tests/regression.at (Web2c Actions): Remove comment that mentions
2703 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
2705 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
2706 name user variables starting with `yy'. Just pass NULL instead of a
2707 dummy local &yylval to yypush_parse.
2708 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
2711 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
2713 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
2714 true since it's then always used regardless of whether yyoverflow is
2715 defined. Reported by Christian Burger at
2716 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
2717 * THANKS: Add Christian Burger.
2719 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
2720 node names: say "Decl Summary" not "Bison Declaration Summary".
2722 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
2724 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
2725 determine whether this function has already complained about an invalid
2726 value for a %define boolean variable, don't check whether Bison has
2727 ever examined the value. As written, the check was a tautology.
2728 Instead, record and check for this complaint using a separate muscle.
2730 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
2732 Fix push parsing memory leak reported by Brandon Lucia at
2733 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
2734 * THANKS: Add Brandon Lucia.
2735 * data/push.c (yypstate_delete): Free the stack if it was reallocated
2736 but the parse never completed and thus freed it.
2737 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
2738 * tests/testsuite.at: Include push.at.
2739 * test/push.at: New.
2740 (Push Parsing: Memory Leak for Early Deletion): New test case.
2742 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
2744 Improve handling of multiple S/R conflicts in the same state and of S/R
2745 conflicts involving multiple reductions.
2746 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
2747 set for a state here or Bison will abort if it is reassigned on a
2748 later conflicted reduction in the same state.
2749 Similarly, don't finalize and assign the solved conflicts report here
2750 or it will be lost if it is reassigned on a later conflicted reduction
2752 (set_conflicts): Instead, assign them both here after all S/R conflicts
2753 in the state have been fully examined.
2754 * src/print.c (shift_set): Rename to...
2755 (no_reduce_set): ... this.
2756 (print_reductions): Update for rename, and add %nonassoc error action
2757 tokens to no_reduce_set so that, when printing the first remaining
2758 reduction on an error action token, the reduction is enclosed in
2760 (print_results): Update for rename.
2761 * tests/conflicts.at (Solved conflicts report for multiple reductions
2762 in a state): New test case.
2763 (%nonassoc error actions for multiple reductions in a state): New test
2766 * src/main.c (main): Don't depend on C99 features.
2768 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
2770 * build-aux/.cvsignore: Add compile.
2771 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
2774 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
2776 * bootstrap (slurp): Create target directories that don't exist.
2777 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
2779 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
2781 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
2783 * closure.c (closure): Likewise.
2784 * state.h (reductions): Comment sorting of rules.
2785 (state): Comment sorting of items.
2787 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
2789 Fix C++ test cases after recent Gnulib changes. Discussed starting at
2790 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
2791 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
2792 definition in order to avoid Gnulib headers since we don't use config.h
2794 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
2795 rather than AT_DATA so that config.h is included.
2797 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
2799 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
2800 instead of fprintf. Guard these functions with #if YYDEBUG instead of
2801 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
2802 and so that YYFPRINTF is guaranteed to be defined here.
2804 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
2806 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
2808 (muscle_percent_define_check_values): ... this more helpful function.
2809 Again, it's not used yet, but it will be.
2810 * src/muscle_tab.h: Likewise.
2812 Improve some comments in parser table construction.
2813 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
2814 (generate_states): Don't mention ruleset, which is internal to closure.
2815 * src/closure.c (closure): Explain sorting of core and itemset, which
2816 is required for this function to behave correctly.
2817 * src/closure.h (closure): Mention sorting.
2819 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
2821 * src/lalr.c (state_lookahead_tokens_count): For code readability,
2822 move the check for disabled transitions to an aver since conflict
2823 resolution hasn't happened yet.
2825 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
2826 labels a state as inconsistent just because it has error transitions.
2827 The original form of this check appeared in revision 1.1 of lalr.c,
2828 which was committed on 1991-12-21. Now (at least), changing the
2829 consistency label on such a state appears to have no useful effect in
2830 any of the places it is examined, which I enumerate below. The key
2831 point to understanding each item in this enumeration is that a state
2832 with an error transition is labelled consistent in the first place only
2833 if it has no rules, so the check cannot matter for states that have
2834 rules. (1) Labelling a state as inconsistent will cause set_conflicts
2835 to try to identify its conflicts, and a state must have *rules* to have
2836 conflicts. (2) Labelling a state as inconsistent will affect how
2837 action_row sets the default *rule* for the state. (3) Labelling a
2838 state as inconsistent will cause build_relations to add lookback edges
2839 to *rules* in that state.
2840 * src/state.h (struct state): Word the comment for member consistent
2843 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
2845 Don't depend on C99 features.
2846 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
2847 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
2848 * src/reader.c (check_and_convert_grammar): Fix for-loop.
2849 * src/state.c (state_mark_reachable_states): Fix for-loop.
2850 (state_remove_unreachable_states): Fix for-loop.
2852 Don't widen struct state with member reachable just to temporarily
2853 record reachability. Instead, use a local bitset.
2854 * src/state.h (struct state): Remove member.
2855 * src/state.c (state_new): Don't initialize it.
2856 (state_mark_reachable_states): Rename to...
2857 (state_record_reachable_states): ... this, and use bitset.
2858 (state_remove_unreachable_states): Use bitset.
2860 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
2862 * src/Makefile.am (yacc): Quote target action commands properly so
2863 that the yacc script isn't corrupt. Reported by Hans Aberg at
2864 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
2866 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
2867 the case of pure parsers. Reported by Frans Englich at
2868 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
2869 * THANKS: Add Frans Englich.
2871 * NEWS (2.3a+): In the %code entry, reference section `Bison
2872 Declaration Summary' from the manual now since the %code summary has
2874 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
2875 in the rules section must be terminated by semicolons.
2877 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
2879 Extend the front-end API for %define variables to more completely
2880 mirror the back-end. This will be useful in the future.
2881 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
2882 Update comments to mention the new front-end counterparts of these
2884 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
2885 for muscle_string_decode and muscle_location_decode.
2886 (muscle_string_decode): New static function.
2887 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
2888 (muscle_percent_define_get, muscle_percent_define_ifdef): New
2890 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
2891 muscle_percent_define_get to mimic the b4_percent_define_flag_if
2892 implementation more closely.
2893 (muscle_percent_define_invalid_value): New function.
2894 * src/muscle_tab.h (muscle_percent_define_get,
2895 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
2898 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
2900 * NEWS (2.3a+): Mention yesterday's state-removal change.
2901 (2.3a): Remove the %language entry, which was added after 2.3a.
2902 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
2903 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
2904 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
2905 tests/existing.at: Update copyright date.
2907 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2909 If conflict resolution makes states unreachable, remove those states,
2910 report rules that are then unused, and don't report conflicts in those
2912 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
2913 New global function.
2914 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
2916 * src/main.c (main): After conflict resolution, remove the unreachable
2917 states and update all data structures that reference states by number.
2918 * src/state.c (state_new): Initialize each state's reachable member to
2920 (state_mark_reachable_states): New static function.
2921 (state_remove_unreachable_states): New global function.
2922 * src/state.h (struct state): Add member bool reachable.
2923 (state_remove_unreachable_states): Prototype.
2924 * tests/conflicts.at (Unreachable States After Conflict Resolution):
2926 * tests/existing.at (GNU pic Grammar): Update test case output now that
2927 an unused rule is discovered.
2929 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
2931 Minor code cleanup in parser table construction.
2932 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
2933 (new_itemsets, save_reductions): Update for rename to nitemset.
2934 * src/closure.c (nritemset): Rename to...
2935 (nitemset): ... this since the "r" appears to meaningless and isn't
2936 used in the comments.
2937 (closure): Update for rename.
2938 * src/closure.h (nritemset): Update extern to...
2939 (nitemset): ... this.
2940 * src/lalr.c (LA): Fix a typo in comments.
2941 * src/print.c (print_core): Update for rename to nitemset.
2942 * src/print_graph.c (print_graph): Likewise.
2943 * src/state.h: Fix some typos in header comments.
2945 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
2947 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
2948 still sticks to ASCII. Sorry!
2950 * README-hacking: New file, taken mostly from coreutils, with changes
2951 for Bison. Contains much of the contents of:
2952 * README-cvs: Remove.
2953 * bootstrap: Sync from gnulib.
2954 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
2955 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
2957 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
2959 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
2961 (Java Differences): Fix some typos.
2962 * THANKS: Add Sebastian Setzer.
2964 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
2966 * data/java.m4 (b4_single_class_if): Remove.
2967 (b4_abstract_if): Look at "%define abstract".
2969 (b4_union_name): Rename...
2970 (b4_yystype): ... to this. Map to "%define stype".
2971 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
2972 b4_maybe_throws): Fix quoting.
2973 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
2974 * data/lalr1.java (Lexer interface): Always define.
2975 (Lexer interface within parser class): Remove.
2976 (YYLexer class): New, used when "%code lexer" is present.
2977 (constructor): When "%code lexer" is used, pass %lex-param
2978 to the lexer constructor.
2979 (yylex, yyparse): Remove %lex-param from method invocations
2980 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
2982 * doc/bison.texinfo (Java Bison Interface): Mention "%define
2983 abstract". Rename "%define union_name" to "%define stype".
2984 Rename method names according to previous patch.
2985 (Java Scanner Interface): Describe "%code lexer" instead of
2986 "%pure-parser" and "%define single_class".
2987 (Java Differences): Mention "%code lexer".
2989 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
2990 Include scanner here, using macros from tests/local.at.
2991 (AT_DATA_CALC_Y): Remove final argument.
2992 (_AT_CHECK_JAVA_CALC): Likewise.
2993 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
2994 of %locations and %error-verbose.
2995 (main): Test with and without %lex-param.
2996 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
2997 (AT_BISON_OPTION_POPDEFS): Pop it.
2999 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3001 DJGPP spefic issue. Inhibit the use of disallowed characters for
3002 file name genertion on Win98, WinXP, etc. These are |<>":?*\
3003 and concern testsuite case 46.
3004 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
3005 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
3006 * djgpp/config.bat: Inhibit the use of disallowed characters.
3008 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
3010 Miscellaneous %define and %code cleanup.
3011 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
3012 values are interpreted.
3013 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
3014 documentation a little more.
3015 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
3016 muscle_percent_define_insert, muscle_percent_code_grow): New
3018 * src/muscle_tab.h (muscle_percent_define_insert,
3019 muscle_percent_code_grow): Prototype.
3020 * src/parse-gram.y (prologue_declaration): Use
3021 muscle_percent_define_insert and muscle_percent_code_grow when parsing
3022 %define and %code directives.
3024 Make it easy to share %define boolean variables between the front-end
3025 and back-end. Though not used yet, this will be useful in the future.
3026 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
3027 Bison uses of names rather than just skeleton uses of names.
3028 (b4_percent_define_get, b4_percent_define_ifdef): Rename
3029 b4_percent_define_skeleton_variables(VARIABLE) to
3030 b4_percent_define_bison_variables(VARIABLE).
3031 (b4_percent_code_get, b4_percent_code_ifdef): Rename
3032 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
3033 b4_percent_code_bison_qualifiers(QUALIFIER).
3034 (b4_check_user_names_wrap): Update for renames.
3035 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
3036 muscle_percent_define_default): New functions mimicking
3037 b4_percent_define_flag_if and b4_percent_define_default.
3039 For %define variables, report locations for invalid values and
3041 * data/bison.m4 (b4_percent_define_flag_if): Read
3042 b4_percent_define_loc(VARIABLE) to report the location of an invalid
3044 (b4_percent_define_default): Save a special location in
3045 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
3046 must later be reported as invalid.
3047 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
3049 (muscle_percent_define_insert): Record the location of VARIABLE in
3050 muscle percent_define_loc(VARIABLE), and use it to report the previous
3051 location for a redefinition.
3052 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
3053 (muscle_percent_define_default): Update like b4_percent_define_default.
3054 (muscle_grow_user_name_list): Rename to...
3055 (muscle_user_name_list_grow): ... this for consistency and use
3056 muscle_location_grow.
3057 * src/muscle_tab.h (muscle_location_grow): Prototype.
3058 * tests/input.at (%define errors): Update expected output.
3059 * tests/skeletons.at (%define boolean variables: invalid skeleton
3060 defaults): New test case.
3062 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
3064 * src/print.c (lookahead_set, state_default_rule): Remove.
3065 (print_reductions): Replace state_default_rule invocation with
3066 equivalent use of yydefact, which was computed in token_actions in
3068 (print_results): Don't allocate lookahead_set.
3070 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
3072 * data/lalr1.java: Prefix all private members with yy.
3074 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
3076 Use YYFPRINTF instead of fprintf where appropriate. Reported by
3077 Sebastien Fricker at
3078 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
3079 * THANKS: Add Sebastien Fricker.
3080 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
3081 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
3082 accept a variable number of arguments.
3084 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3086 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
3088 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3090 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
3091 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
3092 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
3094 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
3096 Undo my 2007-02-07 change, switching back to the c-strcase module
3097 introduced in the 2007-02-03 change. Bruno Haible reported that
3098 the 2007-02-07 change would be dangerous in Turkish if we add a
3099 language whose name contains "i", since "i" is not lowercase "I"
3101 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
3102 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
3103 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
3104 * m4/.cvsignore: Remove strcase.m4.
3105 * src/getargs.c: Revert 2007-02-07 change, as follows.
3106 Include c-strcase.h.
3107 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
3109 2007-02-11 Bruno Haible <bruno@clisp.org>
3111 Enable the Java related testsuite tests when the only Java compiler
3112 found is a gcj < 4.3. Discussed at
3113 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
3114 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
3116 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
3118 * data/Makefile.am: Update copyright date.
3119 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
3120 yypstate_new returns NULL.
3121 (yypstate_new): Return NULL if malloc does.
3122 * src/reader.c (packgram): Move translation of rule actions from the
3123 beginning of packgram to...
3124 (check_and_convert_grammar): ... here right before packgram is invoked
3125 so it's easier to write more complete comments, and remove redundant
3128 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
3130 As in semantic actions, make @$ in %initial-action, %destructor, and
3131 %printer imply %locations.
3132 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
3134 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
3135 (@$ in %initial-action implies %locations,
3136 @$ in %destructor implies %locations,
3137 @$ in %printer implies %locations): ... these new test cases.
3139 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
3141 Undo most of the 2007-02-03 change, switching to the strcase module
3142 now that gnulib strcase has been fixed.
3143 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
3144 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
3145 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
3146 * m4/.cvsignore: Add strcase.m4.
3147 * src/getargs.c: Revert 2007-02-03 change, as follows.
3148 Don't include c-strcase.h.
3149 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
3150 strcasecmp has "unspecified behavior" outside the POSIX locale,
3151 but it works fine in practice if at least one argument is ASCII,
3152 as is the case in Bison.
3154 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
3156 * tests/java.at: Skip tests if only one of javac/java is present.
3157 Reported by Joel E. Denny.
3158 * tests/atlocal.in: Adjust copyright years.
3160 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
3162 * data/lalr1.java (Stack): Work around old verifiers that disallow
3163 access to the private fields of an inner class, from the outer class.
3164 We can make Stack's fields public because user code doesn't have access
3165 to the instance of Stack used by parse(). Reported by Paul Eggert.
3167 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
3169 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
3170 the right spot for these files?
3171 * bootstrap.conf (gnulib_modules): Add c-strcase.
3172 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
3174 * src/getargs.c: Include c-strcase.h.
3175 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
3176 to avoid unspecified behavior.
3178 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
3180 * doc/bison.texinfo (Decl Summary): Correct typo.
3182 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
3184 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
3185 Complain if the value does not match empty, "true" or "false".
3186 * data/c++.m4: Adjust default definitions of %define variables.
3187 * data/java.m4: Adjust default definitions of %define variables.
3188 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
3190 * tests/input.at (Boolean %define variables): Test new behavior.
3192 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
3194 * NEWS: Mention java.
3195 * TODO: Remove things that are done.
3196 * bootstrap.conf: Add javacomp-script and javaexec-script.
3197 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
3199 * data/Makefile.am: Add new files.
3200 * data/java-skel.m4: New.
3201 * data/java.m4: New.
3202 * data/lalr1.java: New.
3204 * doc/bison.texinfo: Put "A Complete C++ Example" under
3205 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
3206 under Other Languages.
3208 * src/getargs.c (valid_languages): Add Java.
3209 * src/getargs.h (struct bison_language): Update size of string fields.
3211 * tests/Makefile.am: Add java.at.
3212 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
3213 * tests/java.at: New.
3214 * tests/testsuite.at: Include it.
3216 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
3219 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
3220 at_directive_argv arguments so these no longer have to be global
3221 variables. Also, update the implementation for the following changes.
3222 (fail_for_at_directive_too_many_args,
3223 fail_for_at_directive_too_few_args): Add at_directive_name argument.
3224 (at_directive_name): Remove as at_directive_argv[0] will be used for
3226 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
3227 for the directive name.
3228 (at_directive_argc, at_directive_argv): Make these local within
3229 skel_lex instead of global.
3230 (INITIAL): Update directive start action for above changes.
3231 (SC_AT_DIRECTIVE_ARG): Rename to...
3232 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
3233 (SC_AT_DIRECTIVE_SKIP_WS): Update.
3234 (scan_skel): Move yylex_destroy to...
3235 (skel_scanner_free): ... here.
3236 * tests/skeletons.at (installed skeleton file name): Rename to...
3237 (installed skeleton file names): ... this.
3239 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
3241 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
3242 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
3243 Summary" not "Directives".
3244 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
3245 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
3246 since the former is now the more complete one.
3247 (Prologue Alternatives): Likewise and do the same for %defines.
3248 (Table of Symbols): Add summary of %code, add summary of %define, and
3249 move full %code documentation to...
3250 (Decl Summary): ... here for consistency with other entries in these
3252 Move %define entry in order to keep this list alphabetized.
3253 Reword %define entry a little to put less emphasis on the skeleton
3254 concept, which most users shouldn't have to think about.
3256 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
3258 Adjust to recent gnulib changes.
3259 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
3260 Add string.h, string_.h, unistd_.h, wchar_.h.
3261 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
3262 * src/system.h: Don't include <stpcpy.h>; this is now done by
3265 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
3267 Simplify implementation of unqualified %code, implement macros for
3268 uniform treatment of boolean %define flags. Document %define.
3269 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
3270 b4_percent_code_ifdef): New.
3271 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
3272 * data/c++.m4: Define default value for global_tokens_and_yystype.
3273 * data/glr.cc: Likewise.
3274 * data/location.cc: Use b4_percent_define_flag_if.
3276 * doc/bison.texinfo (Decl Summary): Document %define.
3278 * src/parse-gram.y (Unqualified %code): Change muscle name to
3280 (content.opt): Default to empty.
3282 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3284 Implement support for relative and absolute skeleton file names.
3285 Discussed starting at
3286 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
3287 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
3288 (Bison Options): Document in --skeleton entry.
3289 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
3290 full_skeleton can't necessarily hold all of pkgdatadir.
3291 If the specified skeleton file name contains a `/', don't prepend
3293 * src/parse-gram.y (prologue_declaration): If the specified skeleton
3294 file name contains a `/', prepend the grammar file directory.
3295 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
3296 * skeletons.at: New file.
3297 (relative skeleton file names): New test case.
3298 (installed skeleton file names): New test case.
3299 * tests/testsuite.at: Include skeletons.at.
3301 * bootstrap: Update copyright to 2007.
3303 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
3305 * bootstrap: Remove occurrences of .#bootmp from the files.
3307 2007-01-17 Akim Demaille <akim@epita.fr>
3309 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
3311 Use per-type %printer.
3313 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
3315 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
3316 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3317 djgpp/config.site, src/files.c, src/files.h, src/main.c,
3318 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
3319 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
3320 tests/glr-regression.at, tests/input.at, tests/local.at,
3321 tests/output.at, tests/torture.at: Update copyright to 2007.
3323 2007-01-16 Akim Demaille <akim@epita.fr>
3325 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
3327 (Calc++ Scanner): Exit with failure if we can't open the input
3329 Accept "-" standing for stdin.
3330 (Calc++ Top Level): Print the result only if the parsing was
3333 2007-01-16 Akim Demaille <akim@epita.fr>
3335 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
3337 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
3338 and Joel E. Denny <jdenny@ces.clemson.edu>
3340 Clean up %define and %code implementation in M4 some. Most
3341 importantly, rename all related macros to be in the b4_percent_define
3342 and b4_percent_code namespaces. Also, complete support for `.' in
3343 %define variable names and %code qualifiers.
3344 * data/bison.m4 (b4_check_user_names): Check for special
3345 "SKELETON-NAMESPACE(name)" macros instead of using two nested
3347 (b4_get_percent_define, b4_get_percent_code): Rename to...
3348 (b4_percent_define_get, b4_percent_code_get): ... these.
3349 Extend documentation with examples.
3350 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
3351 b4_percent_define_skeleton_variables and
3352 b4_percent_code_skeleton_qualifiers.
3353 Expect any value for the %define variable `foo' to be stored in the
3354 macro named `b4_percent_define(foo)'; expect any %code blocks for the
3355 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
3356 expect any unqualified %code blocks to be stored in a macro named
3357 `b4_percent_code_unqualified'.
3358 Use m4_indir so that %define variable names and %code qualifiers can
3359 contain `.', which is allowed by the grammar parser.
3360 (b4_percent_define_default): New macro to set a default value for a
3362 (m4_wrap): Update wrapped code, and fix some underquoting.
3363 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
3364 Expect grammar uses of %define variables and %code qualifiers to be
3365 defined in b4_percent_define_user_variables and
3366 b4_percent_code_user_qualifiers.
3367 * data/c++.m4: Use b4_percent_define_default rather than
3368 m4_define_default. Fix some underquoting. Skeleton usage of %define
3369 variable define_location_comparison now implies skeleton usage of
3370 %define variable filename_type.
3371 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3372 data/push.c, data/yacc.c: Update macro names.
3373 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
3376 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3378 DJGPP specific issues.
3380 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
3381 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
3383 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3385 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
3386 run parsers in all tests so that Valgrind is invoked during
3387 maintainer-check-valgrind.
3388 (Duplicate representation of merged trees): Free all semantic values.
3389 (Duplicated user destructor for lookahead): Likewise.
3391 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3393 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
3394 command-line prefix.
3395 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
3396 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
3397 miss Valgrind messages.
3398 (Exploding the Stack Size with Malloc): Likewise.
3400 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
3402 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
3403 locals. Reported by Juan Manuel Guerrero at
3404 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
3405 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
3406 Fix some indentation also.
3407 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
3408 explaining this issue.
3410 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
3411 and Joel E. Denny <jdenny@ces.clemson.edu>
3413 Simplify union and prologue handling, and escape union and lex/parse
3414 params with digraphs.
3415 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
3416 values to the empty string since these are no longer guaranteed
3417 initialized by the front-end.
3418 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
3419 braces around b4_user_stype since this is no longer done by the
3421 * src/files.c, src/files.h (pre_prologue_obstack,
3422 post_prologue_obstack): Remove.
3423 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
3424 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
3425 with digraphs. This fixes lex params and parse params.
3426 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
3427 * src/output.c (prepare): Remove muscle insertion of the prologues.
3428 (output): Remove freeing of pre_prologue_obstack and
3429 post_prologue_obstack.
3430 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
3431 than prologue_augment for prologue parsing so you don't need prologue
3433 (grammar_declaration): For %union RHS, use `braceless' instead of
3434 "{...}" so that braces are already stripped and code is escaped with
3436 * src/reader.c (prologue_augment): Remove.
3437 (reader): Remove initialization of pre_prologue_obstack and
3438 post_prologue_obstack.
3439 * src/reader.h (prologue_augment): Remove.
3441 * data/c.m4: Remove stray parenthesis.
3443 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3445 Remove quotes from variables names in %define directives and from
3446 qualifiers in %code directives, and restrict the characters that are
3447 allowed in them to M4-friendly ones. For %define, continue to support
3448 the quoted form as a deprecated feature. Discussed starting at
3449 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
3450 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
3452 * doc/bison.texinfo (Prologue Alternatives): Update.
3453 (Decl Summary): In %defines entry, update mention of `%code requires'
3454 and `%code provides'.
3455 (C++ Location Values): Update %define uses.
3456 (Calc++ Parser Interface): Likewise.
3457 (Calc++ Parser): Likewise, and update `%code requires' uses.
3458 (Table of Symbols): Update %code documentation.
3459 * src/parse-gram.y (prologue_declaration): For %define variables, use
3460 `variable' instead of `STRING'.
3461 (grammar_declaration): For %code qualifiers, use `ID' instead of
3463 (variable): New nonterminal that takes an `ID' or a `STRING'.
3464 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
3466 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
3467 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
3468 (%define errors): Update %define uses.
3470 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3472 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
3473 instead of muscle_insert for %define values so that M4-special
3474 characters are replaced with digraphs.
3475 * tests/input.at (%define errors): Extend to check weird values.
3477 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
3479 Instead of having skeletons declare all valid %define variables and
3480 %code qualifiers, provide macros that retrieve the associated values
3481 and build these lists automatically. Thus Bison will now warn when a
3482 variable or qualifier is not used by the skeleton in the current
3483 invocation regardless of whether it might sometimes be used by that
3484 skeleton in other invocations. Also, move all %define value macros to
3485 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
3486 form, which is replaced by %code.
3487 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
3488 (b4_check_user_names): ... this, and change the series of valid name
3489 arguments to a single list argument for names used in the skeleton
3490 similar to the existing list argument for names used in the grammar.
3491 Warn instead of complaining.
3492 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
3493 values and %code code, to format %code code properly, and to build
3494 lists of all %define variables and %code qualifiers used in the
3495 skeleton: b4_skeleton_percent_define_variables and
3496 b4_skeleton_percent_code_qualifiers.
3497 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
3499 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
3500 the skeleton names lists can finish building first. In place of
3501 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
3502 expect the lists b4_user_percent_define_variables and
3503 b4_user_percent_code_qualifiers.
3504 * data/c++.m4: Where setting default values for b4_parser_class_name,
3505 b4_location_type, b4_filename_type, b4_namespace, and
3506 b4_define_location_comparison, update their names to the
3507 b4_percent_define_ namespace.
3508 * data/glr.c: Don't use b4_check_percent_define_variables and
3509 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3510 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
3511 (b4_parser_class_name, b4_namespace): Define these using
3512 b4_get_percent_define for parser_class_name and namespace.
3513 * data/location.cc: Use b4_get_percent_define.
3514 * data/push.c: Don't use b4_check_percent_define_variables and
3515 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
3516 * data/yacc.c: Likewise, and don't call m4_exit in
3517 b4_use_push_for_pull_if or m4_wrap code will never execute.
3518 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
3520 (muscle_grow_user_name_list): ... this for consistency with the
3521 terminology used in bison.m4.
3522 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
3523 %define variable names, and rename muscle used_percent_define_variables
3524 to user_percent_define_variables.
3525 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
3526 user_percent_code_qualifiers.
3528 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
3529 {CODE} form is no longer accepted.
3530 * tests/input.at (Reject bad %code qualifiers): Rename to...
3531 (Reject unused %code qualifiers): ... this, and update test output.
3532 (%define error): Update test output.
3534 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
3536 Check for unrecognized %define variables similar to checking for
3537 unrecognized %code qualifiers. Check for redefined %define variables.
3538 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
3540 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
3541 (b4_check_percent_define_variables): New, also wraps it.
3542 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
3543 variables using b4_check_percent_define_variables.
3544 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
3545 all those exercised in the test suite and all those listed in the
3546 `Default values' section of c++.m4. Are there others?
3547 * data/push.c, data/yacc.c: Declare no valid %define variables.
3548 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
3549 similar to muscle_find, but it works even when the muscle stores a
3551 (muscle_grow_used_name_list): New function for constructing the used
3552 name list muscles that b4_check_for_unrecognized_names requires.
3553 * src/parse-gram.y (prologue_declaration): Warn if a variable is
3554 %define'd more than once. Define the b4_used_percent_define_variables
3555 muscle with muscle_grow_used_name_list.
3556 (grammar_declaration): Abbreviate %code code with
3557 muscle_grow_used_name_list.
3558 * tests/input.at (%define errors): New.
3560 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3562 Provide warn_at, complain_at, and fatal_at function callbacks to the
3563 skeletons, and use this for %code qualifier complaints.
3564 * data/bison.m4 (b4_error_at): New, invoked by...
3565 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
3566 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
3567 @fatal_at(...@) directives.
3568 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
3569 qualifiers in b4_used_percent_code_qualifiers and to use
3571 * src/location.c, src/location.h (boundary_set_from_string): New global
3573 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
3575 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
3576 to b4_used_percent_code_qualifiers.
3577 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
3579 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
3580 (lineno): Rename to...
3581 (out_lineno): ... this so I don't misunderstand it again.
3582 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
3583 here; these newlines are in the input but not the output file.
3584 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
3585 (at_directive_perform): ... this new static function, and add handling
3586 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
3588 * tests/input.at (Reject bad %code qualifiers): Update test output with
3589 locations and extend.
3591 * tests/output.at (Output file name: [, Output file name: ]): Remove
3592 bogus comment about these tests failing.
3594 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
3596 Clean up b4_check_percent_code_qualifiers a little.
3597 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
3598 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
3599 documentation and add examples.
3600 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
3603 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
3605 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
3606 unreliable -- especially when they're hidden inside another macro.
3607 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
3608 data/c.m4: Remove m4_divert(-1).
3609 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
3610 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
3611 m4_divert_push(0) and m4_divert_pop(0).
3612 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
3613 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
3614 pushed and popped by m4sugar, should be first on the stack.
3616 Provide warn, complain, and fatal function callbacks to the skeletons.
3617 This provides more flexibility than m4_fatal, improves the error
3618 message format, and captures messages for translation. Discussed
3620 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
3621 * data/bison.m4 (b4_error): New, invoked by...
3622 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
3623 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
3624 directives. Because these M4 macros might be called when the current
3625 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
3626 the previous removal of uses of m4_divert, which caused trouble.
3627 (b4_check_percent_code_qualifiers): Use b4_complain instead of
3628 m4_fatal to report unrecognized %code qualifiers.
3629 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
3630 push parser requests.
3631 * data/glr.c: Use b4_complain instead of m4_fatal to report
3632 non-deterministic push parser requests.
3633 Update @output usage to @output(...@) form.
3634 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
3635 report missing %defines. Update @output usage to @output(...@) form.
3636 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
3638 * src/main.c (main): Invoke skel_scanner_free.
3639 * src/scan-skel.h (skel_scanner_free): Prototype new function.
3640 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
3641 obstack_for_string from flex-scanner.h.
3642 (YY_DECL): Use to declare skel_lex static.
3643 (decode_at_digraphs): Remove; now handled in the new
3644 SC_AT_DIRECTIVE_ARG start condition.
3645 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
3647 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
3648 at_directive_argv): New static globals.
3649 (INITIAL): Use fail_for_invalid_at.
3650 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
3651 recognize the start of a generalized `@directive(...@)' form and
3653 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
3654 directive args (using the new obstack_for_string), to decode the
3655 contained @ diagraphs, and to perform the directive. It recognizes
3656 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
3658 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
3659 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
3661 (scan_skel): Initialize obstack_for_string on the first call.
3662 (skel_scanner_free): New function to free obstack_for_string.
3663 * tests/input.at (Reject bad %code qualifiers): Update test output.
3665 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
3667 Consolidate the 4 prologue alternative directives (%code, %requires,
3668 %provides, and %code-top) into a single %code directive with an
3669 optional qualifier field. Discussed at
3670 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
3671 * NEWS (2.3a+): Rewrite the existing entry for the prologue
3673 * doc/bison.texinfo (Prologue Alternatives): Update.
3674 (Decl Summary): Update to %code "requires" and %code "provides".
3675 (Calc++ Parser): Update to %code "requires".
3676 (Table of Symbols): Remove entries for %requires, %provides, and
3677 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
3678 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
3679 are replaced by b4_percent_code_provides and b4_percent_code_requires,
3680 which are skeleton-specific.
3681 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
3682 declare what %code qualifiers it supports and to complain if any other
3683 qualifiers were used in the grammar.
3684 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
3685 and b4_user_code([b4_percent_code_provides]) in place of
3686 b4_user_requires and b4_user_provides.
3687 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
3688 Add b4_user_code([b4_percent_code_top]) and
3689 b4_user_code([b4_percent_code]).
3690 Invoke b4_check_percent_code_qualifiers.
3691 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3692 PERCENT_REQUIRES): Remove.
3693 (grammar_declaration): Remove RHS's for %code-top, %provides, and
3694 %requires. Rewrite the %code RHS as the unqualified form defining the
3695 muscle b4_percent_code. Add another RHS for the qualified %code form,
3696 which defines muscles of the form b4_percent_code_QUALIFIER and the
3697 b4_used_percent_code_qualifiers muscle.
3698 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
3699 PERCENT_REQUIRES): Remove.
3700 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
3701 %code "requires" and %code "provides".
3702 * tests/input.at (Reject bad %code qualifiers): New.
3704 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3706 Use the new code_props interface for destructors and printers.
3707 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
3708 printer_location members, and change the type of the destructor and
3709 printer members to code_props.
3710 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
3711 symbol_printer_get, semantic_type_destructor_set,
3712 semantic_type_printer_set, default_tagged_destructor_set,
3713 default_tagless_destructor_set, default_tagged_printer_set,
3714 default_tagless_printer_set): Use code_props in arguments and return
3715 types in place of char const * and location.
3716 (symbol_destructor_location_get, symbol_printer_location_get): Remove
3717 since the locations are now contained in the return of
3718 symbol_destructor_get and symbol_printer_get.
3719 * src/output.c (symbol_destructors_output, symbol_printers_output):
3721 (symbol_code_props_output): ... this to eliminate duplicate code.
3722 (output_skeleton): Update to use symbol_code_props_output.
3723 * src/reader.c (symbol_should_be_used): Update use of
3724 symbol_destructor_get.
3725 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
3726 Update uses of the various _destructor_set and _printer_set functions.
3727 * src/symtab.c: (default_tagged_destructor_location,
3728 default_tagless_destructor_location, default_tagged_printer_location,
3729 default_tagless_printer_location): Remove since we...
3730 (default_tagged_destructor, default_tagless_destructor,
3731 default_tagged_printer, default_tagless_printer): ... change the type
3732 of these to code_props.
3733 (symbol_new, semantic_type_new, symbol_destructor_set,
3734 semantic_type_destructor_set, symbol_destructor_get,
3735 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
3736 symbol_check_alias_consistency, default_tagged_destructor_set,
3737 default_tagless_destructor_set, default_tagged_printer_set,
3738 default_tagless_printer_set): Update.
3739 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
3740 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
3742 (symbol_print): Use SYMBOL_CODE_PRINT.
3744 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
3746 Use the new code_props interface for rule actions.
3747 * src/symlist.h (symbol_list): Replace action, action_location, and
3748 used members with a code_props action_props member.
3749 * src/reader.c (symbol_should_be_used, grammar_rule_check,
3750 grammar_midrule_action, grammar_current_rule_merge_set,
3751 grammar_current_rule_symbol_append, packgram): Update.
3752 * src/scan-code.h (translate_rule_action): Remove, no longer used.
3753 * src/scan-code.l (handle_action_dollar): Update.
3754 (translate_rule_action): Remove, no longer used.
3755 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
3757 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3759 Use the new code_props interface in parse-gram.y.
3760 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
3761 Update all uses of translate_* functions to use the new code_props
3762 interface and to use gram_scanner_last_string_free and
3763 code_scanner_last_string_free where possible.
3764 (grammar_declaration): symbol_list_destructor_set and
3765 symbol_list_printer_set now perform the translation, so don't do it
3766 here. Use gram_scanner_last_string_free where possible.
3767 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
3768 translate_code): Remove, no longer used.
3769 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
3770 symbol_list_printer_set): Perform code translation here rather than
3771 depending on the caller to do so.
3773 * src/symlist.h (struct symbol_list): Correct some documentation typos.
3774 * src/scan-gram.h (gram_last_string): Remove declaration.
3775 * src/scan-gram.l (last_string): Declare it static.
3777 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
3779 Encapsulate code properties and related functionality for the various
3780 destructors, printers, and actions into a code_props structure and
3781 interface. This patch merely implements code_props in scan-code.h and
3782 scan-code.l. Future patches will rewrite other modules to use it.
3783 Discussed starting at
3784 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
3785 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
3786 consistently initialize const structs that have an empty location
3788 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
3789 to ensure consistency.
3790 * src/scan-code.h (code_props): New structure.
3791 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
3792 function, macro, and const global variable for initializing a
3793 code_props with no code.
3794 (code_props_plain_init, code_props_symbol_action_init,
3795 code_props_rule_action_init, code_props_translate_code): The rest of
3796 the new code_props functional interface. Among other things, the init
3797 functions set the code_props kind field so that
3798 code_props_translate_code will know whether to behave like
3799 translate_symbol_action, translate_rule_action, or translate_code.
3800 These old translate functions must remain until all other modules are
3801 updated to use the new code_props interface.
3802 (code_scanner_last_string_free): New function similar to
3803 gram_scanner_last_string_free.
3804 (code_scanner_free): Add documentation.
3805 * src/scan-code.l: Implement the new interface.
3806 (code_lex): Make it static, add a code_props* argument, and remove the
3808 (last_string): New static global similar to the one in scan-gram.l.
3809 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
3811 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
3812 code_props since Bison may one day use this information for destructors
3814 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
3815 (handle_action_dollar): Use symbol_list_n_get and set used flag
3816 directly since symbol_list_n_used_set is removed.
3817 (translate_action): Add a code_props* argument and remove the rule,
3818 action, and location arguments. Pass the code_props* on to code_lex.
3819 (translate_rule_action, translate_symbol_action, translate_code):
3820 Rewrite as wrappers around the new code_props interface.
3821 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
3822 it would eventually need to break the encapsulation of code_props.
3824 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3826 * etc/.cvsignore: New.
3828 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
3830 Add maintainer-push-check to run maintainer-check using push parsing in
3831 place of pull parsing where available.
3832 * Makefile.am (maintainer-push-check): New.
3833 * data/bison.m4 (b4_use_push_for_pull_if): New.
3834 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
3835 appropriately based on their existing values.
3836 (yypush_parse): Don't print push-parser-specific diagnostics if push
3837 parsing is being used in place of pull parsing.
3838 * data/yacc.c: If push parsing should replace pull parsing, redirect to
3840 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
3841 variable, and insert b4_use_push_for_pull_flag into muscles.
3842 * tests/Makefile.am (maintainer-push-check): New.
3844 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3846 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
3847 (whether successful or failed) so that yypush_parse can be invoked
3848 again to start a new parse using the same yypstate.
3849 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
3850 check multiple yypull_parse invocations on the same yypstate. For pull
3851 mode, extend to check multiple yyparse invocations.
3852 (Exploding the Stack Size with Alloca): Extend to try with
3854 (Exploding the Stack Size with Malloc): Likewise.
3856 * tests/calc.at (Simple LALR Calculator): Don't specify
3857 %skeleton "push.c" since %push-pull-parser implies that now.
3858 * tests/headers.at (export YYLTYPE): Don't check for the push
3859 declarations. Otherwise, this test case can't be used to see if push
3860 mode can truly emulate pull mode.
3861 * tests/input.at (Torturing the Scanner): Likewise.
3862 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
3863 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
3864 AT_YACC_IF, which now includes the case of push mode since %skeleton
3865 need not be used for push mode. This will be more intuitive once
3866 push.c is renamed to yacc.c.
3868 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
3870 For push mode, convert yyparse from a macro to a function, invoke yylex
3871 instead of passing a yylexp argument to yypull_parse, and don't
3872 generate yypull_parse or yyparse unless %push-pull-parser is declared.
3873 Discussed starting at
3874 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
3875 * data/bison.m4 (b4_pull_if): New.
3876 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
3877 * data/push.c: Improve M4 quoting a little.
3878 (b4_generate_macro_args, b4_parenthesize): Remove.
3879 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
3880 any time a pull parser is requested.
3881 Don't #define this as a wrapper around yypull_parse. Instead, when
3882 both push and pull are requested, make it a function that does that
3884 (yypull_parse): If there's a b4_prefix, #define this to
3885 b4_prefix[pull_parse] when both push and pull are requested.
3886 Don't define this as a function unless both push and pull are
3888 Remove the yylexp argument and hard-code yylex invocation instead.
3889 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
3891 * src/getargs.c (pull_parser): New global initialized to true.
3892 * getargs.h (pull_parser): extern it.
3893 * src/output.c (prepare): Insert pull_flag muscle.
3894 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
3895 (prologue_declaration): Set both push_parser and pull_parser = true for
3896 %push-pull-parser. Set push_parser = true and pull_parser = false for
3898 * src/scan-gram.l: Don't accept %push_parser as an alternative to
3899 %push-parser since there's no backward-compatibility concern here.
3900 Scan %push-pull-parser.
3901 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
3902 instead of %push-parser.
3903 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
3904 prototype it in the module that calls yyparse.
3905 * tests/input.at (Torturing the Scanner): Likewise.
3906 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
3908 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
3910 Update etc/bench.pl. Optimize push mode a little (the yyn change
3911 deserves most of the credit).
3912 * Makefile.am (SUBDIRS): Add etc subdirectory.
3913 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
3914 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
3915 yytoken, yyval, and yyloc declarations to...
3916 (yyparse or yypush_parse): ... here to improve performance. For
3917 yypush_parse invocations after the first, be sure to assign yyn its old
3919 (yypstate_new): Don't bother initializing the yyresult field since the
3920 initial value isn't used.
3921 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
3922 remove the #define that, in push mode, set it to yyps->NAME.
3923 * etc/Makefile.am: New.
3924 * etc/bench.pl: Remove and build it instead from...
3925 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
3926 "tests/bison" from the build directory by default rather than just
3927 invoking "bison" from $PATH.
3928 (calc_grammar): Update push parser code: don't declare yylval globally,
3929 don't define yyparse_wrapper, and don't #define yyparse.
3930 (bench_grammar): Update to check all working combinations of yacc.c,
3931 push.c, impure, pure, pull, and push.
3933 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3935 For push mode, add pull wrappers around yypush_parse.
3936 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
3937 (yypull_parse): New function wrapping yypush_parse.
3938 (yyparse): New #define wrapping yypull_parse.
3939 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
3941 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
3942 prototype yylex in the module that calls yyparse, and don't prototype
3943 yyparse there. Otherwise, the yyparse expansion won't compile.
3944 * tests/input.at (Torturing the Scanner): Likewise.
3946 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
3948 Enable push parsers to operate in impure mode. Thus, %push-parser no
3949 longer implies %pure-parser. The point of this change is to move
3950 towards being able to test the push parser code by running the entire
3951 test suite as if %push-parser had been declared.
3952 * data/push.c (yypush_parse): For impure mode, remove the
3953 yypushed_char, yypushed_val, and yypushed_loc arguments.
3954 Instead, declare these as local variables initialized to the global
3955 yychar, yylval, and yylloc.
3956 For the first yypush_parse invocation only, restore the initial values
3957 of these global variables when it's time to read a token since they
3958 have been overwritten.
3959 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
3961 * tests/calc.at (Simple LALR(1) Calculator): Always declare
3962 %pure-parser along with %push-parser since this test case was designed
3963 for pure push parsers.
3964 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
3965 (AT_YACC_OR_PUSH_IF): New.
3966 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
3967 add a note that it's still wrong for some cases (as it has been for a
3969 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
3970 %push-parser no longer implies %pure-parser.
3972 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3974 Remove some unnecessary differences between the pull parser code and
3975 the push parser code. This patch enables yynerrs in push mode.
3976 * data/push.c: Reformat M4 a little.
3977 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
3978 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
3979 because push mode is on. Instead, if pure mode is on, move yynerrs
3981 (b4_declare_parser_state_variables): ... here.
3982 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
3983 to yyps->NAME so it can be used in yypush_parse.
3984 (yypush_parse): Don't omit uses of yynerrs in push mode.
3986 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
3988 Fix bug such that the first pushed token's value and location are
3989 sometimes overwritten (sometimes by %initial-action) before being used.
3990 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
3991 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
3992 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
3993 more closely mimic the pull parser logic.
3994 Don't copy the pushed token to yychar, yylval, and yylloc until it's
3995 time to read a token, which is after any initialization of yylval and
3997 (gottoken): Rename label to...
3998 (yyread_pushed_token): ... for clarity and to avoid infringing on the
4001 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
4003 Rearrange initialization of the parser state variables so that the
4004 skeleton doesn't have to have a copy for pull mode and another for push
4005 mode. This patch also fixes at least a bug such that yylloc was not
4006 initialized (with b4_location_initial_line and
4007 b4_location_initial_column) upon calling yypush_parse. However, that
4008 initialization now overwrites the first token's location;
4009 %initial-action assigning @$ already did the same thing, and both bugs
4010 will be fixed in a later patch.
4011 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
4012 (b4_declare_parser_state_variables): Remove initialization of yytoken,
4013 yyss, yyvs, yyls, and yystacksize.
4014 (yypstate_new): Remove initialization of some yypstate fields: yystate,
4015 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
4017 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
4018 yyps->NAME so it can be used in yypush_parse.
4019 (yyparse or yypush_parse): For yypush_parse, don't print the
4020 "Starting parse" diagnostic for invocations after the first.
4021 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
4022 yypush_parse, only do it for the first invocation.
4023 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
4024 initialization to occur in yypush_parse but only on the first
4027 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4029 * data/push.c: Add CPP guards around push parser declarations in both
4030 the header and the code file.
4031 In the code file, move the push parser declarations to the same place
4032 they appear in the header file.
4033 Clean up the M4 some, especially the inconsistent underquoting in
4034 some b4_c_function_def and b4_c_function_decl uses.
4036 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4038 Encapsulate the push parser state variables into an M4 macro so the
4039 push skeleton doesn't have to list them again for pull mode's yyparse.
4040 For push mode, remove yypush_parse's local equivalents of these
4041 variables to eliminate unnecessary copying between the two sets at
4042 run-time. This patch also fixes at least a bug related to multiple
4043 %initial-action invocations in push mode.
4044 * data/push.c (b4_declare_parser_variables): Rename to...
4045 (b4_declare_scanner_communication_variables): ... this for clarity and
4047 (b4_declare_yyparse_variables): Remove and move its contents to the one
4048 spot where it was invoked.
4049 (b4_declare_parser_state_variables): New macro containing the parser
4050 state variables required by push mode.
4051 (struct yypstate): Replace all fields but yynew with
4052 b4_declare_parser_state_variables.
4053 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
4054 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
4055 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
4056 (yyparse or yypush_parse): For yyparse in pull mode, replace local
4057 parser state variable declarations with
4058 b4_declare_parser_state_variables.
4059 Don't initialize parser state variables when calling yypush_parse since
4060 yypstate_new already does that.
4061 Invoke the user's initial action only upon the first yypush_parse
4063 Remove all code that copies between the local parser state variables
4066 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
4068 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
4069 prevent a name collision in a future patch where these names will
4070 sometimes be #define'd.
4071 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
4072 since it no longer has the same name as the existing argument.
4073 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
4075 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
4076 and Joel E. Denny <jdenny@ces.clemson.edu>
4078 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
4079 that the argument is case-insensitive, and there's no `=' here.
4080 For the %skeleton entry, mention that %language is better.
4081 (Bison Options): Likewise for --language and --skeleton. Move the
4082 --skeleton entry so that the `Tuning the parser' section is sorted
4083 alphabetically on long options.
4084 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
4085 %language directive in detail here; cross-reference the %language
4086 documentation instead.
4087 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
4088 `%require "2.3b"' so that the example is always up-to-date.
4089 (Table of Symbols): Add entries for %language and %skeleton.
4090 * examples/extexi (normalize): Instead of replacing every %require
4091 argument with the current Bison version, just substitute for
4092 `@value{VERSION}'. This guarantees that we're testing what actually
4093 appears in the documentation.
4094 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
4095 rather than `@VERSION@'.
4097 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4099 * NEWS: Reword the %language news a bit, and put it earlier.
4101 * src/getargs.c (skeleton_arg): Last arg is now location const *.
4102 Rewrite to simplify the logic.
4103 (language_argmatch): Likewise.
4104 (program_name): We now own this var.
4105 * src/getargs.h (struct bison_language): Use char[] rather than
4108 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
4110 * src/complain.c (program_name): Remove decl; no longer needed.
4111 * src/main.c (program_name): Remove; now belongs to getargs.
4113 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
4115 * NEWS: Document %language.
4117 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
4119 * data/c-skel.m4, data/c++-skel.m4: New files.
4120 * data/glr.c: Complain on push parsers.
4122 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
4124 (Decl Summary): Document %language and %skeleton.
4125 (Command line): Document -L.
4127 * examples/extexi: Rewrite %require directive.
4128 * examples/calc++/Makefile.am: Pass VERSION to extexi.
4130 * src/files.c (compute_exts_from_gc): Look in language structure
4132 (compute_file_name_parts): Check whether .tab should be added.
4133 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
4134 (language, skeleton_arg, language_argmatch): New.
4135 (long_options): Add --language.
4136 (getargs): Use skeleton_arg, add -L/--language.
4137 * src/getargs.h: Include location.h.
4138 (struct bison_language, language, skeleton_arg, language_argmatch): New.
4139 * src/output.c (prepare): Pick default skeleton from struct language.
4140 Don't dispatch C skeletons here.
4141 * src/parse-gram.y (PERCENT_LANGUAGE): New.
4142 (prologue_declaration): Add "%language" rule, use skeleton_arg.
4143 * src/scan-gram.l ("%language"): New rule.
4145 * tests/calc.at: Test %skeleton and %language.
4146 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
4147 (AT_GLR_IF): Look for %skeleton "glr.cc".
4148 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
4149 (AT_YACC_IF): Reject %language.
4151 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
4153 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
4154 since it wasn't used; only the typedef name 'semantic_type' is needed.
4155 Also, omit trailing white space.
4157 * bootstrap: Sync from coreutils.
4158 (gnulib_extra_files): Add build-aux/announce.gen.
4159 (slurp): Adjust .gitignore files like .cvsignore files.
4160 * build-aux/announce-gen: Remove from CVS, since bootstrap
4163 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
4165 Make %push-parser imply %pure-parser. This fixes several bugs; see
4166 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
4167 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
4169 * data/push.c: Don't bother testing b4_push_if when deciding whether
4170 to expand b4_declare_parser_variables globally.
4171 (yypush_parse): Likewise in here.
4173 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
4174 (yy_reduce_print): Reformat M4 for readability.
4176 2006-12-15 Bob Rossi <bob@brasko.net>
4177 and Joel Denny <jdenny@ces.clemson.edu>
4179 * data/push.c (yypstate): Add typedef, and update all uses of
4180 struct yypstate to just yypstate.
4181 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
4183 2006-12-14 Bob Rossi <bob@brasko.net>
4185 * data/push.c (yypush_parse): Declare prototype regardless of
4188 2006-12-14 Bob Rossi <bob@brasko.net>
4190 * data/push.c (yyparse): Remove the prototype and the #define when in
4193 2006-12-13 Bob Rossi <bob@brasko.net>
4195 * data/push.c (yypstate_init): Rename to...
4196 (yypstate_new): ... this and use b4_c_function_def.
4197 (yypstate_delete): New.
4198 (yypush_parse): Change parameters yynval and yynlloc to be const.
4199 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
4200 yypstate_delete functions.
4202 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
4204 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
4205 strange test case titles. Reported by Bob Rossi.
4207 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
4209 * TODO: Add pointer to Sylvain Schmitz's work on static detection
4210 of potential ambiguities in GLR grammers.
4212 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
4214 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
4215 `bison ', use m4_index instead of m4_substr since chopping up a string
4216 containing M4-special characters causes problems here.
4218 Fix a couple of bugs related to special characters in user-specified
4219 file names, and make it easier for skeletons to compute output file
4220 names with the same file name prefix as Bison-computed output file
4222 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
4223 b4_parser_file_name and b4_spec_defines_file instead of
4224 @output_parser_name@ and @output_header_name@, which are now redundant.
4225 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
4226 b4_parser_file_name, b4_spec_defines_file, and the new
4227 @basename(FILENAME@) instead of @output_parser_name@ and
4228 @output_header_name@, which inappropriately escaped the file names as
4230 * src/files.c (all_but_ext): Remove static qualifier.
4231 (compute_output_file_names): Move `free (all_but_ext)' to...
4232 (output_file_names_free): ... here since all_but_ext is needed later.
4233 * src/files.h (all_but_ext): Extern.
4234 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
4235 exactly what MUSCLE_INSERT_STRING used to do.
4236 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
4237 characters are escaped properly.
4238 * src/output.c (prepare): Define muscle file_name_all_but_ext as
4240 For pkgdatadir muscle, maintain previous functionality by using
4241 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
4242 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
4243 digraphs would never be expanded. Hopefully no one has M4-special
4244 characters in his Bison installation path.
4245 * src/scan-skel.l: Don't parse @output_header_name@ and
4246 @output_parser_name@ anymore since they're now redundant.
4247 In @output, use decode_at_digraphs.
4248 Parse a new @basename command that invokes last_component.
4249 (decode_at_digraphs): New.
4250 (BASE_QPUTS): Remove unused.
4251 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
4252 (Output file name): New tests.
4254 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
4256 Warn about output files that are generated by the skeletons and that
4257 conflict with other output files.
4258 * data/glr.c: Don't generate the header file here when glr.cc does.
4259 * src/files.c (file_names, file_names_count): New static globals.
4260 (compute_output_file_names): Invoke output_file_name_check for files
4261 not generated by the skeletons and remove existing checks.
4262 (output_file_name_check): New function that warns about conflicting
4264 (output_file_names_free): Free file_names.
4265 * src/files.h (output_file_name_check): Declare.
4266 * src/scan-skel.l: Invoke output_file_name_check for files generated by
4268 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
4269 (Conflicting output files): New tests.
4271 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4273 * doc/bison.texinfo: Fix a couple of typos.
4275 2006-12-08 Bob Rossi <bob@brasko.net>
4277 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
4279 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
4281 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
4282 (yypush_parse): Rename yypvars argument to yyps and remove redundant
4284 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
4285 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
4287 2006-12-07 Bob Rossi <bob@brasko.net>
4288 and Joel Denny <jdenny@ces.clemson.edu>
4290 * data/push.c (yypvarsinit): Change return type from void* to struct
4291 yypvars*. No longer cast to void* on return.
4292 (struct yypvars): Remove yylen since it need not be remembered between
4293 yypushparse invocations.
4294 (yypushparse): Don't copy between yylen and pv->yylen.
4296 2006-12-05 Bob Rossi <bob@brasko.net>
4298 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
4299 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
4300 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
4301 (struct yypvars): Remove b4_declare_parser_variables.
4302 (yypvarsinit): Remove init code for removed variables.
4303 (global scope): Do not declare b4_declare_parser_variables if
4305 (yypushparse): Add b4_declare_parser_variables.
4306 Init new local variables, and remove init code for removed
4309 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
4310 and yyparse for other modes.
4311 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
4312 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
4313 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
4314 (AT_PURE_LEX_IF): True if pure or push parser.
4316 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
4318 Document Yacc prologue alternatives and default %destructor's and
4319 %printer's as experimental. Don't mention Java yet. Discussed at
4320 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
4321 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
4322 (2.3a): Annotate this entry to say the old forms of these features were
4324 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
4325 Table of Symbols): Say they're experimental. Comment out any mention
4326 of Java (we'll want this back eventually).
4328 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
4330 Support a file name argument to %defines. Deprecate `=' in
4331 %file-prefix, %name-prefix, and %output. Discussed at
4332 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
4333 * NEWS (2.3a+): Mention.
4334 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
4335 form of %defines, and remove `=' from entries for %file-prefix,
4336 %name-prefix, and %output.
4337 * src/parse-gram.y (prologue_declaration): Implement.
4338 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
4339 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
4340 all but one occurrence of %name-prefix.
4341 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
4342 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
4343 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
4344 occurrence of each of %file-prefix and %output. Add check for %defines
4346 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
4347 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
4348 Remove the `=' from %output.
4350 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
4352 Don't escape $ in test case titles since Autoconf 2.61 now does that
4354 * tests/actions.at (Default %printer and %destructor are not for error
4355 or $undefined): Here.
4356 (Default %printer and %destructor are not for $accept): Here.
4357 * tests/input.at (Invalid $n and @n): Here.
4359 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
4361 Rename <!> to <>. Discussed starting at
4362 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
4363 * NEWS (2.3a+): Update.
4364 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
4366 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
4367 * src/scan-gram.l (INITIAL): Implement.
4368 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
4369 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
4371 * tests/actions.at (Default tagless %printer and %destructor,
4372 Default tagged and per-type %printer and %destructor,
4373 Default %printer and %destructor are not for error or $undefined,
4374 Default %printer and %destructor are not for $accept,
4375 Default %printer and %destructor for mid-rule values): Update.
4376 * tests/input.at (Default %printer and %destructor redeclared,
4377 Unused values with default %destructor): Update.
4379 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
4381 Don't let %prec take a nonterminal.
4382 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
4384 * tests/input.at (%prec takes a token): New test checking that %prec
4385 won't take a nonterminal.
4387 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4389 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
4390 it was double-quoted.
4391 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
4392 grammar is maintained with Bison's highest standards.
4393 * src/getargs.c: Fix some typos in Doxygen comments.
4395 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4397 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
4398 later. Reported by Paul Eggert in
4399 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
4400 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
4401 * src/scan-code.l (translate_action): Don't bother invoking
4402 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
4403 (code_scanner_free): Instead of invoking
4404 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
4406 * src/scan-gram.l (gram_scanner_free): Likewise.
4407 * src/scan-skel.l (scan_skel): Likewise.
4409 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4411 * src/files.c (tr): Change return type to void.
4412 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
4413 has been called previously for the same key.
4414 (muscle_find): Return storage instead of value so that
4415 --enable-gcc-warnings doesn't produce warnings that the return discards
4416 const. aver that the value and storage are the same since storage
4417 could potentially be NULL when value is not.
4418 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
4421 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4423 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
4424 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
4425 us a slightly cleaner distribution, and also works.
4426 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
4429 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
4430 and Paul Eggert <eggert@cs.ucla.edu>
4432 Don't let Bison leak memory except when it complains.
4433 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
4434 (spec_defines_file, dir_prefix): Now char *, not const char *,
4435 since they are freed.
4436 * src/files.c: Likewise.
4437 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
4439 (tr): Now operates in-place. All uses changed.
4440 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
4442 (compute_file_name_parts, compute_output_file_names): Don't store
4443 read-only data in variables that will be freed.
4444 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
4445 src_extension, and header_extension.
4446 (output_file_names_free): New public function to free
4447 spec_verbose_file, spec_graph_file, spec_defines_file,
4448 parser_file_name, and dir_prefix.
4449 * src/getargs.c (getargs): Don't store read-only data in variables that
4451 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
4452 (which previously existed but was unused), and quotearg_free.
4453 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
4454 * src/muscle_tab.c: Likewise.
4455 (muscle_entry): Make the value char const *,
4456 and add a new storage member that is char * and can be freed.
4457 (muscle_entry_free): New private function.
4458 (muscle_init): Use it instead of free.
4459 (muscle_insert, muscle_grow): Update and use new storage member.
4460 (muscle_code_grow): Free the string passed to muscle_grow
4461 since it's not needed anymore.
4462 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
4463 add a new `char *code' member.
4464 ("{...}"): Declare semantic type as code.
4465 * src/scan-code.h (translate_rule_action):
4466 (translate_symbol_action, translate_code, translate_action): Return
4467 `char const *' rather than `char *' since external code should not free
4469 * src/scan-code.l: Likewise.
4470 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
4471 which is "{...}" in the parser.
4472 * tests/Makefile.am (maintainer-check-valgrind): Set
4473 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
4475 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
4477 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
4478 expecting a non-zero exit status sets --leak-check=summary and
4479 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
4480 this case, and we don't want to hear about it.
4482 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
4484 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
4485 instead of from the template, to simplify configuration a bit.
4486 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
4487 and m4/wint_t.m4, as they are needed with the latest gnulib.
4489 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4491 Disable unset/unused mid-rule value warnings by default, and recognize
4492 --warnings=midrule-values to enable them. Discussed starting at
4493 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
4494 * NEWS (2.3a+): Mention.
4495 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
4496 warnings): Add entry for midrule-values subargument.
4497 * src/reader.c (symbol_should_be_used): Don't return true just because
4498 the value is a set/used mid-rule value unless
4499 --warnings=midrule-values was specified.
4500 * tests/input.at (Unused values, Unused values before symbol
4501 declarations): Run tests with and without --warnings=midrule-values.
4503 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
4504 than LIST_FREE directly.
4506 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4508 Finish implementing --warnings=error, which should not be implied by
4509 --warnings=all (or by its synonyms -W and --warnings without
4511 * src/complain.c (set_warning_issued): New function to report that
4512 warnings are being treated as errors and to record an error if so.
4514 (warn_at, warn): ... here.
4515 * src/getargs.c (warnings_args, warnings_types): Reorder so that
4516 "error - warnings are errors" does not appear above "all - all of the
4518 (getargs): For -W and --warnings without subarguments, don't let
4519 FLAGS_ARGMATCH set warnings_error in warnings_flag.
4520 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
4522 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
4524 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
4525 empty subargument list. For example: `bison --warnings= parser.y'.
4527 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4529 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
4530 the parser header file so that gcc doesn't warn.
4532 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4534 Split the default %destructor/%printer into two kinds: <*> and <!>.
4535 Discussed starting at
4536 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
4537 * NEWS (2.3a+): Mention.
4538 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
4539 previous change today related to mid-rules.
4540 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
4541 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
4542 (TYPE_TAG_ANY): Add as <*>.
4543 (TYPE_TAG_NONE): Add as <!>.
4544 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
4546 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
4547 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
4548 * src/symlist.c (symbol_list_default_new): Split into tagged and
4550 (symbol_list_destructor_set, symbol_list_printer_set): Split
4551 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
4552 SYMLIST_DEFAULT_TAGLESS.
4553 * src/symlist.h: Update symbol_list_default*_new prototypes.
4554 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
4555 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
4556 * src/symtab.c (default_destructor, default_destructor_location,
4557 default_printer, default_printer_location): Split each into tagged and
4559 (symbol_destructor_get, symbol_destructor_location_get,
4560 symbol_printer_get, symbol_printer_location_get): Implement tagged
4561 default and tagless default cases.
4562 (default_destructor_set, default_printer_set): Split each into tagged
4563 and tagless versions.
4564 * src/symtab.h: Update prototypes.
4565 * tests/actions.at (Default %printer and %destructor): Rename to...
4566 (Default tagless %printer and %destructor): ... this, and extend.
4567 (Per-type %printer and %destructor): Rename to...
4568 (Default tagged and per-type %printer and %destructor): ... this, and
4570 (Default %printer and %destructor for user-defined end token): Extend.
4571 (Default %printer and %destructor are not for error or $undefined):
4573 (Default %printer and %destructor are not for $accept): Update.
4574 (Default %printer and %destructor for mid-rule values): Extend.
4575 * tests/input.at (Default %printer and %destructor redeclared): Extend.
4576 (Unused values with default %destructor): Extend.
4578 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4580 Don't apply the default %destructor/%printer to an unreferenced midrule
4582 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
4583 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
4584 like $@n instead of just @n so that the default %destructor/%printer
4585 logic doesn't see them as user-defined symbols.
4586 (symbol_is_dummy): Check for both forms of the name.
4587 * src/reader.c (packgram): Remove the `$' from each midrule symbol
4588 name for which the midrule value is referenced in any action.
4589 * tests/actions.at (Default %printer and %destructor for mid-rule
4591 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
4592 for change to dummy symbol names.
4594 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4596 Warn about unset midrule $$ if the corresponding $n is used.
4597 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
4599 (packgram): Before invoking grammar_rule_check on any rule, make sure
4600 all actions have already been scanned in order to set `used' flags.
4601 Otherwise, checking that a midrule's $$ is set will not always work
4602 properly because the midrule check must forward-reference the midrule's
4604 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
4607 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
4609 More improvements to the documentation of the prologue alternatives:
4610 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
4612 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
4613 some text to clarify the relative importance of the new directives and
4614 to show how these directives may be viewed as code labels.
4616 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
4618 Similar to the recently removed %before-header, add %code-top as the
4619 alternative to the pre-prologue. Mentioned at
4620 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
4621 Also, let the prologue alternatives appear in the grammar section.
4622 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
4623 (prologue_declaration): Move the existing prologue alternatives to...
4624 (grammar_declaration): ... here and add %code-top.
4625 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
4627 Clean up and extend documentation for the prologue alternatives.
4628 * NEWS (2.3a+): Describe prologue alternatives.
4629 * doc/bison.texinfo (Prologue): Move discussion of prologue
4631 (Prologue Alternatives): ... this new section, and extend it to discuss
4632 all 4 directives in detail.
4633 (Table of Symbols): Clean up discussion of prologue alternatives and
4636 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
4638 DJGPP specific issues.
4640 * djgpp/config.bat: config.hin has been moved to lib. Adjust
4641 config.bat accordingly.
4642 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
4643 * djgpp/config.site: Likewise.
4645 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
4647 Replace %*-header with %provides, %requires, %code. See discussion at
4648 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
4650 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
4651 (b4_user_start_header): Remove.
4652 * data/glr.c: Use new macros instead of b4_*start_header
4654 * data/glr.cc: Likewise.
4655 * data/lalr1.cc: Likewise.
4656 * data/push.c: Likewise.
4657 * data/yacc.c: Likewise.
4659 * doc/bison.texinfo: Remove %before-header, rename
4660 %{start,end,after}-header to %requires, %provides, %code.
4662 * src/parse-gram.y: Likewise (also rename token names accordingly).
4663 * src/scan-gram.l: Likewise.
4664 * tests/actions.at: Likewise.
4666 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
4668 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
4669 Problem reported by Joel E. Denny.
4671 2006-10-14 Jim Meyering <jim@meyering.net>
4673 (Sync from coreutils.)
4674 Work also when the working directory (with e.g. coreutils sources)
4675 is version controlled with git, rather than CVS.
4676 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
4678 In messages and comments, say e.g., "checked-out sources",
4679 rather than "CVS sources".
4680 (version_controlled_file): New function. Work for git as well as
4681 for CVS. Don't use grep's -q option.
4682 (slurp): Call it here, in place of CVS-specific code.
4684 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
4686 Fix testsuite for ./configure --enable-gcc-warnings:
4687 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
4688 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
4689 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
4690 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
4691 * test/regression.at (Diagnostic that expects two alternatives):
4694 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4696 * bootstrap.conf (gnulib_modules): Add config-h.
4697 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
4698 worry about HAVE_CONFIG_H.
4699 * lib/abitset.c: Likewise.
4700 * lib/bitset.c: Likewise.
4701 * lib/bitset_stats.c: Likewise.
4702 * lib/bitsetv-print.c: Likewise.
4703 * lib/bitsetv.c: Likewise.
4704 * lib/ebitset.c: Likewise.
4705 * lib/get-errno.c: Likewise.
4706 * lib/lbitset.c: Likewise.
4707 * lib/subpipe.c: Likewise.
4708 * lib/timevar.c: Likewise.
4709 * lib/vbitset.c: Likewise.
4710 * lib/bitset.c: Include "bitset.h" first, to test interface.
4711 * lib/bitset_stats.c: Include "bitset_stats.h" first.
4712 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
4713 * lib/bitsetv.c: Include "bitsetv.h" first.
4714 * lib/get-errno.c: Include "get-errno.h" first.
4715 * m4/.cvsignore: Add config-h.m4.
4716 * tests/actions.at (Default %printer and %destructor for ...):
4717 Adjust expected line numbers in output to reflect removal of #if
4718 HAVE_CONFIG_H lines.
4719 * tests/glr-regression.at (Missed %merge type warnings when ...):
4721 * tests/regression.at (Braced code in declaration in rules section):
4723 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
4724 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
4725 Include <config.h> unconditionally.
4727 * bootstrap: Sync from coreutils, as follows:
4729 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4731 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
4732 variable was sometimes used without being initialized. This
4733 messed up the installation of the INSTALL file in some cases.
4735 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4737 * bootstrap (usage, main program, symlink_to_gnulib): Add option
4738 --copy. Inspired by a suggestion from Bruno Haible.
4740 2006-10-03 Jim Meyering <jim@meyering.net>
4742 * bootstrap: Undo last change to this file, since now gnulib-tool
4743 sticks with the automake default in generating dependencies.
4745 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
4747 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
4748 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
4750 * doc/bison.1: Add copyright notice.
4752 * data/glr.c: Don't include <stdarg.h>; not used.
4754 * NEWS: The -g and --graph options now output graphs in Graphviz
4755 DOT format, not VCG format.
4756 * doc/bison.1: Likewise.
4757 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
4758 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
4760 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
4761 * TODO: Remove Graphviz entry.
4762 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
4763 remove vcg.c, vcg.h, vcg_defaults.h.
4764 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
4765 * src/graphviz.c, src/graphviz.h: New files.
4766 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
4767 * src/files.h: Make comment more generic.
4768 * src/main.c (main): Likewise.
4769 * src/print_graph.h: Likewise.
4770 * src/getargs.c (usage): Make usage description more generic.
4771 * src/print_graph.c: Include graphviz.h rather than vcg.h.
4772 (static_graph, fgraph): Remove. All uses changed to pass
4773 arguments instead of sharing a static var.
4774 (print_core, print_actions, print_state, print_graph):
4775 Output graphviz format rather than VCG format.
4776 * tests/.cvsignore: Remove *.vcg; add *.dot.
4777 * tests/output.at: Expect *.dot files, not *.vcg files.
4779 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
4780 accommodates the 2006-10-08 change.
4782 2006-10-11 Bob Rossi <bob@brasko.net>
4784 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
4785 (b4_yyssa, b4_yyerror_range): New macros.
4786 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
4787 (yypvarsinit): Remove init of removed fields.
4788 (yypushparse): Remove use of removed fields; use new macros instead.
4790 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
4792 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
4793 in a push parser. Reindent slightly to match yacc.c better.
4795 2006-10-11 Bob Rossi <bob@brasko.net>
4797 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
4799 (yypvarsinit, yypushparse): Remove init of removed fields.
4800 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
4802 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
4804 * THANKS: Add Paolo Bonzini and Bob Rossi.
4806 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
4808 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
4809 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
4810 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
4811 b4_define_user_cde and uses): Remove.
4812 (b4_comment, b4_prefix, b4_sync_start): New.
4813 * data/bison.m4: New file, with most of the content removed from c.m4.
4814 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
4815 * src/output.c (output_skeleton): Pass bison.m4.
4816 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
4819 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
4821 Fix test failure reported by Tom Lane in
4822 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
4823 and try to make such failures easier to catch in the future.
4824 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
4825 that's now the caller's responsibility.
4826 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
4827 Set yychar = YYEOF if it's negative.
4828 * tests/actions.at (yylex): Abort if asked to read past EOF.
4829 * tests/conflicts.at (yylex): Likewise.
4830 * tests/cxx-type.at (yylex): Likewise.
4831 * tests/glr-regression.at (yylex): Likewise.
4832 * tests/input.at (yylex): Likewise.
4833 * tests/regression.at (yylex): Likewise.
4834 * tests/torture.at (yylex): Likewise.
4836 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
4838 Fix problems with translating English-language diagnostics.
4839 * bootstrap: Fix bug introduced in recent bootstrap changes, with
4840 respect to bison-runtime pot generation. The YY_ stuff
4841 wasn't being captured.
4842 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
4843 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
4844 * runtime-po/POTFILES.in: Add data/push.c.
4846 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
4848 Merge bootstrap changes from coreutils.
4850 2006-09-28 Jim Meyering <jim@meyering.net>
4852 Automatically generated dependencies are important even
4853 when all of the sources in a directory come from gnulib.
4854 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
4855 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
4857 2006-09-23 Jim Meyering <jim@meyering.net>
4859 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
4861 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4863 * bootstrap: Add support for --force.
4864 (usage): New function. Describe usage less tersely.
4865 (CVS_only_file): New var.
4867 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
4869 * data/push.c (YYPUSH_MORE): Make it an enum instead.
4870 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
4871 Adjust white space and comments to match GNU style better.
4873 2006-09-20 Bob Rossi <bob@brasko.net>
4875 * data/push.c (yyresult_get): Remove function.
4876 (YYPUSH_MORE): Add #define.
4877 (yypushparse): Modify return value.
4879 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4881 * stamp-h.in: Remove; no longer needed.
4882 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
4883 Remove config.h, config.hin, intl (no longer created).
4884 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
4887 Sync bootstrap from coreutils, as follows:
4889 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
4891 * bootstrap (symlink_to_gnulib): New function.
4892 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
4893 to copies-of-gnulib.
4894 (cp_mark_as_generated, slurp, gnulib_files):
4895 Avoid making a copy if it's the same as the old version.
4896 (gnulib_files): Add support for this variable (used by Bison).
4898 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
4900 * src/getargs.c (usage): Rework to use conventions similar to
4901 coreutils, to make translation a bit easier and the code a bit
4902 smaller. Problem reported by Tim Van Holder.
4904 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
4906 Use some of gnulib's new modules, taken from coreutils.
4908 * bootstrap: Sync from coreutils, except add support for gnulib_files.
4909 * bootstrap.conf: New file.
4910 (gnulib_modules): Add configmake, inttypes, unistd.
4911 (XGETTEXT_OPTIONS): Add complain, complain_at,
4912 fatal, fatal_at, warn, warn_at, unexpected_end.
4913 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
4914 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
4916 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
4918 (GNULIB_AUTOCONF_SNIPPET): Remove.
4919 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
4921 * lib/.cvsignore: Add inttypes_.h.
4922 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
4923 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
4924 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
4925 no-longer-necessary initializations.
4926 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
4927 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
4928 use the unistd module.
4929 * src/system.h: Likewise.
4930 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
4931 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
4932 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
4933 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
4934 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
4935 * src/system.h: Include inttypes.h unconditionally, now that we
4936 use the inttypes module. Don't bother to include stdint.h, since
4937 inttypes.h now does that for us.
4938 (LOCALEDIR): Remove, now that we use the configmake module.
4939 * src/getargs.c: Include configmake.h.
4940 * src/main.c: Likewise.
4941 * src/output.c: Likewise.
4942 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
4943 not from $abs_top_builddir, since config.h moved.
4946 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
4947 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
4949 * src/parse-gram.y (symbol_declaration): Don't put statements
4950 before declarations; it's not portable to C89.
4951 * src/scan-code.l (handle_action_at): Likewise.
4953 * src/scan-code.l: Always initialize braces_level; the old code
4954 left it uninitialized and therefore had undefined behavior.
4956 Don't attempt to redefine 'assert', since it runs afoul of
4957 systems where standard headers (mistakenly) include <assert.h>.
4958 Instead, define and use our own alternative, called 'aver'.
4959 * src/reader.c: Don't include assert.h, since we no longer
4961 * src/scan-code.l: Likewise.
4962 * src/system.h (assert): Remove, replacing with....
4963 (aver): New function, taking a bool arg. All uses changed.
4964 * src/tables.c (pack_vector): Ensure that aver arg is bool,
4965 not merely an integer.
4967 2006-09-15 Bob Rossi <bob@brasko.net>
4969 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
4970 * data/c.m4 (YYPUSH): New.
4971 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
4972 * src/getargs.c (push_parser): New var.
4973 * src/getargs.h (push_parser): New declaration.
4974 * src/output.c (prepare): Add macro insertion of `push_flag'.
4975 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
4976 (prologue_declaration): Parse %push-parser.
4977 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
4978 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
4979 list of removed lines from the traces observed.
4980 (AT_CHECK_CALC_LALR): Added push parser tests.
4982 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
4984 * NEWS: Version 2.3a.
4985 * configure.ac (AC_INIT): Likewise.
4987 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
4988 "#define YYSTYPE int" that caused "make maintainer-check" to fail
4989 due to header ordering dependencies. I don't know why the #define
4992 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
4993 runtime cost when YYDEBUG is not defined, and so that some tests
4994 that used to fail now work. Problem and initial suggestion by
4996 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
4997 * data/glr.cc (b4_parser_class_name):
4998 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
4999 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
5000 (yydebug_) [YYDEBUG]: New member.
5001 (yycdebug_): Now defined only if YYDEBUG.
5002 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
5003 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
5004 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
5006 (debug_stream, set_debug_stream, debug_level, set_debug_level):
5007 Define only if YYDEBUG.
5008 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
5010 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
5011 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
5012 AT_CHECK_CALC_GLR_CC that are working now.
5014 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
5016 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
5017 We don't need them in glr.cc, and glr.c defines them.
5018 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
5019 assumes that defining it to anything is the same as defining
5020 it to 1. Problem reported by Paolo Bonzini.
5022 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
5024 * data/c.m4 (b4_null, b4_case): Define.
5025 * src/output.c (prepare_symbols): Use b4_null.
5026 (user_actions_output): Use b4_case.
5028 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5030 * data/glr.c (b4_shared_declarations): Put start-header first,
5031 before any #includes that we generate, so that feature-test
5032 macros work. Problem reported by Michael Deutschmann in
5033 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
5034 * data/lalr1.cc: Likewise.
5035 * doc/bison.texinfo (Prologue): Document that feature-test macros
5036 should be defined before any Bison declarations.
5037 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
5038 that depend on location.hh after, not before, Bison decls, since
5039 we now include location.hh after the first user prologue.
5041 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
5042 Sander Brandenburg in
5043 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
5044 Also, fix minor white space and comment issues.
5045 (Prologue): Mention that it's better to define feature-test macros
5046 before Bison declarations. Problem reported by Michael Deutschmann.
5048 * README-cvs: Fix typo: "&" should be "&&". Problem reported
5050 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
5051 This adjusts to recent gnulib changes.
5053 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5055 Finish implementation of per-type %destructor/%printer. Discussed
5057 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
5059 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
5060 * NEWS (2.3+): Add a description of this feature to the default
5061 %destructor/%printer description.
5062 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
5063 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5064 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
5065 list node contains a semantic type.
5066 * src/symtab.c, src/symtab.h: Extend with a table that associates
5067 semantic types with their %destructor's and %printer's.
5068 (semantic_type_from_uniqstr, semantic_type_get,
5069 semantic_type_destructor_set, semantic_type_printer_set): New functions
5070 composing the public interface of that table.
5071 (symbol_destructor_get, symbol_destructor_location_get,
5072 symbol_printer_get, symbol_printer_location_get): If there's no
5073 per-symbol %destructor/%printer, look up the per-type before trying
5075 * tests/actions.at (Per-type %printer and %destructor): New test case.
5076 * tests/input.at (Default %printer and %destructor redeclared):
5077 Extend to check that multiple occurrences of %symbol-default in a
5078 single %destructor/%printer declaration is an error.
5079 (Per-type %printer and %destructor redeclared, Unused values with
5080 per-type %destructor): New test cases.
5082 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
5084 Require default %destructor/%printer to be declared using
5085 %symbol-default instead of an empty symbol list, and start working on
5086 new per-type %destructor/%printer. Discussed at
5087 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
5088 * NEWS (2.3+): Add %symbol-default to example.
5089 * bison.texinfo (Freeing Discarded Symbols): Likewise.
5090 (Table of Symbols): Add entry for %symbol-default.
5091 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
5092 (generic_symlist, generic_symlist_item): New nonterminals for creating
5093 a list in which each item is a symbol, semantic type, or
5095 (grammar_declaration): Use generic_symlist in %destructor and %printer
5096 declarations instead of symbols.1 or an empty list.
5097 (symbol_declaration, precedence_declaration, symbols.1): Update actions
5098 for changes to symbol_list.
5099 * src/reader.c: Update for changes to symbol_list.
5100 * src/scan-code.l: Likewise.
5101 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
5102 * src/symlist.c, src/symlist.h: Extend such that a list node may
5103 represent a semantic type or a %symbol-default in addition to just an
5104 ordinary symbol. Add switched functions for setting %destructor's and
5106 * tests/actions.at, tests/input.at: Add %symbol-default to all default
5107 %destructor/%printer declarations.
5109 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
5111 Whether the default %destructor/%printer applies to a particular symbol
5112 isn't a question of whether the user *declares* that symbol (in %token,
5113 for example). It's a question of whether the user by any means
5114 *defines* the symbol at all (by simply using a char token, for
5115 example). $end is defined by Bison whereas any other token with token
5116 number 0 is defined by the user. The error token is always defined by
5117 Bison regardless of whether the user declares it with %token, but we
5118 may one day let the user define error as a nonterminal instead.
5119 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
5120 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
5121 the meaning of "user-defined".
5122 * tests/actions.at (Default %printer and %destructor for user-declared
5123 end token): Rename to...
5124 (Default %printer and %destructor for user-defined end token): ...
5127 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
5128 computation of whether to apply the default, don't maintain a list of
5129 every Bison-defined symbol. Instead, just check for a first character
5130 of '$', which a user symbol cannot have, and check for the error token.
5132 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
5134 Don't apply the default %destructor or %printer to the error token,
5135 $undefined, or $accept. This change fits the general rule that the
5136 default %destructor and %printer are only for user-declared symbols,
5137 and it solves several difficulties that are described in the new test
5139 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
5140 * tests/actions.at (Default %printer and %destructor are not for error
5141 or $undefined, Default %printer and %destructor are not for $accept):
5144 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
5146 Allow %start after the first rule.
5147 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
5148 when parsing the first rule.
5149 (check_and_convert_grammar): Search for it here after all grammar
5150 declarations have been parsed. Skip midrules, which have dummy LHS
5152 * src/symtab.c (symbol_is_dummy): New function.
5153 * src/symtab.h (symbol_is_dummy): Declare it.
5154 * tests/input.at (%start after first rule): New test.
5156 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5158 Redo some of the previous commit: add back the ability to use
5159 non-aliased/undeclared string literals since it might be useful to
5160 those declaring %token-table.
5161 * src/reader.c (check_and_convert_grammar): Undo changes in previous
5162 commit: don't worry about complaints from symbols_pack.
5163 * src/symtab.c (symbol_new, symbol_class_set,
5164 symbol_check_alias_consistency): Undo changes in previous commit: count
5165 each string literal as a new symbol and token, assign it a symbol
5166 number, and don't complain about non-aliased string literals.
5167 (symbols_pack): Since symbol_make_alias still does not decrement symbol
5168 and token counts but does still set aliased tokens to the same number,
5169 symbol_pack_processor now leaves empty slots in the symbols array.
5171 * tests/regression.at (Undeclared string literal): Remove test case
5172 added in previous commit since non-aliased string literals are allowed
5174 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
5175 remove unnecessary string literal declarations.
5176 * tests/sets.at (Firsts): Likewise.
5178 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
5180 Don't allow an undeclared string literal, but allow a string literal to
5181 be used before its declaration.
5182 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
5183 symbols_pack complained.
5184 * src/symtab.c (symbol_new): Don't count a string literal as a new
5186 (symbol_class_set): Don't count a string literal as a new token, and
5187 don't assign it a symbol number since symbol_make_alias does that.
5188 (symbol_make_alias): It's not necessary to decrement the symbol and
5189 token counts anymore. Don't assume that an alias declaration occurs
5190 before any uses of the identifier or string, and thus don't assert that
5191 one of them has the highest symbol number so far.
5192 (symbol_check_alias_consistency): Complain if there's a string literal
5193 that wasn't declared as an alias.
5194 (symbols_pack): Bail if symbol_check_alias_consistency failed since
5195 symbol_pack asserts that every token has been assigned a symbol number
5196 although undeclared string literals have not.
5197 * tests/regression.at (String alias declared after use, Undeclared
5198 string literal): New test cases.
5199 (Characters Escapes, Web2c Actions): Declare string literals as
5201 * tests/sets.at (Firsts): Likewise.
5203 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
5205 In the grammar scanner, STRING_FINISH unclosed constructs and return
5206 them to the parser in order to improve error messages.
5207 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
5208 SC_BRACED_CODE, SC_PROLOGUE): Implement.
5209 * tests/input.at (Unclosed constructs): New test case.
5210 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
5213 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
5216 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
5218 Handle string aliases for character tokens correctly.
5219 * src/symtab.c (symbol_user_token_number_set): If the token has an
5220 alias, check and set its alias's user token number instead of its own,
5221 which is set to indicate the alias. Previously, every occurrence of
5222 the character token in the grammar overwrote that alias indicator with
5224 * tests/input.at (String aliases for character tokens): New test.
5226 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
5228 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
5230 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
5232 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
5233 to prevent failures when building on older platforms.
5234 Check for autopoint failure.
5235 Set XGETTEXT_OPTIONS to values that check for C format strings,
5236 so that translators are warned about them (this also helps
5237 prevent core dumps).
5239 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
5240 function, since it simplifies our code a bit.
5242 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
5243 rather than -W, so we don't get bogus warnings about sign comparisons.
5244 Add -Wpointer-arith, since that warning is useful (it reports code
5245 that does not conform to C89 and that some compilers reject).
5246 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
5247 since it's no longer needed.
5249 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
5251 Clean up scanners a bit.
5252 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
5253 definitions so gcc won't warn when obstack_for_string is unused.
5254 * src/scan-code.l: config.h and system.h are already #include'd by
5255 scan-code-c.c, so get rid of them here.
5256 * src/scan-gram.l: Likewise.
5257 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
5258 definitions rather than duplicating the rest of it.
5259 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
5261 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
5263 Suppress signed/unsigned comparison warnings for yycheck.
5264 * data/c.m4 (b4_safest_int_type): New macro.
5265 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
5266 a signed int type, cast it to b4_safest_int_type first.
5267 * data/yacc.c: Likewise.
5268 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
5271 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
5273 * doc/bison.texinfo: Fix some typos.
5275 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
5277 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
5278 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
5280 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
5281 the latest gnulib does this a different way.
5282 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
5283 translation was patched, so stop omitting it.
5285 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5287 Enable declaration of default %printer/%destructor. Make the parser
5288 use these for all user-declared grammar symbols for which the user does
5289 not declare a specific %printer/%destructor. Thus, the parser uses it
5290 for token 0 if the user declares it but not if Bison generates it as
5291 $end. Discussed starting at
5292 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
5293 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
5295 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
5296 * NEWS (2.3+): Mention.
5297 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
5298 declare a %destructor for a mid-rule's semantic value. It's just
5299 impossible to declare one specific to it.
5300 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
5301 code. Describe default %destructor form.
5302 * src/parse-gram.y (grammar_declaration): Parse default
5303 %printer/%destructor declarations.
5304 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
5305 and symbol_destructor_location_get rather than accessing the destructor
5306 and destructor_location members of struct symbol.
5307 (symbol_printers_output): Likewise but for %printer's.
5308 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
5310 * src/symtab.c (default_destructor, default_destructor_location,
5311 default_printer, default_printer_location): New static global
5312 variables to record the default %destructor and %printer.
5313 (symbol_destructor_get, symbol_destructor_location_get,
5314 symbol_printer_get, symbol_printer_location_get): New functions to
5315 compute the appropriate %destructor and %printer for a symbol.
5316 (default_destructor_set, default_printer_set): New functions to set the
5317 default %destructor and %printer.
5318 * src/symtab.h: Prototype all those new functions.
5319 * tests/actions.at (Default %printer and %destructor): New test to
5320 check that the right %printer and %destructor are called, that they're
5321 not called for $end, and that $$ and @$ work correctly.
5322 (Default %printer and %destructor for user-declared end token): New
5323 test to check that the default %printer and %destructor are called for
5324 a user-declared end token.
5325 * tests/input.at (Default %printer and %destructor redeclared, Unused
5326 values with default %destructor): New tests to check related grammar
5327 warnings and errors.
5329 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
5331 Clean up handling of %destructor for the end token (token 0).
5332 Discussed starting at
5333 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
5335 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
5337 Make the skeletons consistent in how they pop the end token and invoke
5339 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
5340 state, which has token number 0, since this would invoke the
5341 %destructor for the end token.
5342 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
5343 until after shifting the end token, or else it won't be popped.
5344 * data/yacc.c (yyparse): Likewise.
5346 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
5347 it's the end token. Upon termination, destroy an unshifted lookahead
5348 even when it's the end token.
5349 * data/lalr1.cc (yy::parser::parse): Likewise.
5350 * data/yacc.c (yyparse): Likewise.
5352 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
5353 value warnings for the end token when the user gives the end token a
5356 * tests/actions.at (Printers and Destructors): Test all the above.
5358 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
5360 Update to latest gnulib and gettext versions.
5361 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
5363 (gnulib_files): Add m4/warning.m4. Don't worry about files
5364 overwritten by autopoint.
5365 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
5366 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
5368 Don't use autoreconf; instead, invoke autopoint etc. by hand,
5369 so that we can remove the intl files at a better time.
5370 (intl_files_to_remove): Remove aclocal.m4, since it gets
5371 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
5372 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
5373 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5374 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
5375 Remove datarootdir hack; no longer needed.
5376 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
5377 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
5378 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
5380 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
5381 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
5383 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
5385 * bootstrap: Adjust to today's change to gnulib-tool by invoking
5386 it with --assume-autoconf='latest-stable'.
5388 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
5390 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
5391 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
5393 * src/muscle_tab.h (muscle_grow): Replace the header comments with
5394 those from muscle_tab.c since the old ones are misleading.
5396 2006-07-13 Akim Demaille <akim@epita.fr>
5398 Support %define "KEY" {VALUE}.
5399 * src/scan-code.h, src/scan-code.l (translate_action)
5400 (translate_rule_action, translate_symbol_action, translate_code):
5401 Return char *, not const char *.
5402 * src/parse-gram.y (declaration): Rename as...
5403 (prologue_declaration): this.
5404 (string_content): Remove this nonterminal, use STRING.
5405 (braceless, content, content.opt): New nonterminal.
5407 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
5409 * src/scan-gram.l (getargs.h): Don't include it.
5411 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
5413 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
5414 rather than a for-loop that declares a local bool variable. This
5415 should work around a compatibility problem with a Cray x1e C++
5416 compiler reported by Hung Nguyen in
5417 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
5418 The for-loop was introduced in the 2004-11-17 change but I don't
5419 know why it was needed.
5421 2006-07-12 Akim Demaille <akim@epita.fr>
5423 * data/c.m4: Comment changes.
5425 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
5427 * src/complain.c (error_message, ERROR_MESSAGE): New.
5429 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
5430 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
5432 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5434 * NEWS: Instead of %union, you can define and use your own union type
5435 YYSTYPE if your grammar contains at least one <type> tag.
5436 Your YYSTYPE need not be a macro; it can be a typedef.
5437 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
5438 (Union Decl, Decl Summary): Document this.
5439 * data/glr.c (YYSTYPE): Implement this.
5440 * data/glr.cc (YYSTYPE): Likewise.
5441 * data/lalr1.cc (YYSTYPE): Likewise.
5442 * data/yacc.c (YYSTYPE): Likewise.
5443 * src/output.c (prepare): Output tag_seen_flag.
5444 * src/parse-gram.y (declaration, grammar_declaration):
5445 Use 'union_seen' rather than 'typed' to determine whether
5446 %union has been seen, since grammars can now be typed without
5448 (symbol_declaration, type.opt, symbol_def):
5449 Keep track of whether a tag has been seen.
5450 * src/reader.c (union_seen, tag_seen): New vars.
5452 * src/reader.h (union_seen, tag_seen, typed): Likewise.
5453 * src/scan-code.l (untyped_var_seen): New variable.
5454 (handle_action_dollar): Adjust to above changes.
5455 (handle_action_dollar, handle_action_at):
5456 Improve overflow checking for outlandish numbers.
5457 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
5458 avoid new diagnostics generated by above changes.
5459 * tests/regression.at (YYSTYPE typedef): Add test to check
5460 for type tags without %union.
5462 * src/symlist.c (symbol_list_length): Return int, not unsigned
5463 int, since callers expect int. This may need to get revisited
5464 once we have proper integer overflow checking.
5466 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
5467 object is now static.
5469 * src/getargs.c (flags_argmatch): Return void, not int,
5470 to pacify ./configure --enable-gcc-warnings.
5472 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
5473 since last_string is already defined to FLEX_PREFIX (last_string).
5475 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5477 Implement --warnings/-W.
5478 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
5480 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
5482 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
5483 (warnings_args, warnings_types): New.
5484 (getargs, short_options, long_options): Accept -W/--warnings.
5485 Sort the options by alphabetical order, upper case letter right
5486 before its lower case.
5488 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
5490 Change %merge result type clash warnings to errors. Discussed at
5491 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
5492 * src/reader.c (record_merge_function_type): Use complain_at.
5493 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5494 declared later): Update test case results.
5496 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
5498 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
5499 to be in alphabetical order.
5500 (trace_args): Spelling fixes.
5502 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
5504 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
5505 so they don't collide with user-defined macros.
5506 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
5507 this was never guaranteed, and now that we're using gnulib stdint,
5508 which defines int_fast16_t to long int, the problem is exposed.
5510 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
5512 * data/c.m4 (b4_basename): Simplify a bit, since we don't
5513 need the full POSIX semantics (and weren't implementing them
5516 Adjust to Autoconf 2.60 and today's gnulib.
5517 * bootstrap (gnulib_modules): Add stdint.
5518 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
5519 no longer copies it.
5520 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
5521 since stdint needs the former and wcwidth (which is now required
5522 by mbswidth) needs the latter.
5523 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
5524 work around a compatibility glitch between gettext 0.14.6 and
5526 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
5527 Do not check for uintptr_t, since new stdint module does the right
5529 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
5530 Add stdint.h, stdint_.h, wcwidth.h.
5531 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
5532 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
5533 stdint.m4, wchar_t.m4, wcwidth.m4.
5534 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
5535 usual order for ../lib/*.h files.
5536 (file_name_split): Use last_component, not base_name, to adjust
5538 * src/parse-gram.h: Include <strverscmp.h> in the usual order
5539 for ../lib/*.h files.
5540 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
5541 Define unconditionally, since we now assume the stdint module.
5542 * src/scan-skel.l: Include <dirname.h>.
5543 (BASE_QPUTS): Use last_component, not base_name.
5544 * src/system.h: Include <unlocked-io.h> in the usual order
5545 for ../lib/*.h files. Include <stdint.h> unconditionally,
5546 since we now use the stdint module.
5547 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
5548 HAVE_UINTPTR_T, since we now use the stdint module.
5549 (base_name): Remove decl, since files now include <dirname.h>
5552 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5554 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
5556 * data/yacc.c, data/glr.c, data/location.cc: Use them.
5557 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
5559 * tests/calc.at: Adjust.
5561 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
5563 * data/c.m4 (b4_basename): New.
5564 (b4_syncline): Also output the location of its invocation (from
5566 (b4_user_action, b4_define_user_action, b4_user_actions)
5567 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
5568 (b4_user_stype): New.
5569 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
5571 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5573 In the grammar file, the first column is 1 not 0 on the first line as
5574 on every other line.
5575 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
5576 * tests/input.at (Torturing the Scanner): Update output.
5578 * src/scan-gram.l (scanner_cursor): Declare it static.
5580 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
5582 In warnings, say "previous declaration" rather than "first
5584 * src/symtab.c (redeclaration): Do that here.
5585 * src/reader.c (record_merge_function_type): In the case of a result
5586 type clash, report the previous declaration rather than the very first
5587 one in the grammar file.
5588 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5589 declared later): Add a third declaration to check this behavior.
5590 * tests/input.at (Incompatible Aliases): Update output.
5592 2006-06-27 Akim Demaille <akim@epita.fr>
5594 * doc/Doxyfile.in: New.
5595 * doc/Makefile.am: Use it.
5596 * src/lalr.h, src/symtab.h: Initial doxygenation.
5598 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5600 Don't miss %merge result type warnings just because the LHS types are
5601 declared after the %merge. This continues the effort of the previous
5603 * src/reader.c (get_merge_function): Don't set the merger type yet.
5604 (record_merge_function_type): New function for setting the merger type
5605 and checking for clashes.
5606 (grammar_current_rule_merge_set): Set the location of the %merge for
5608 (packgram): Invoke record_merge_function_type for each rule now that
5609 all symbol type declarations have been parsed.
5610 * src/reader.h (merger_list.type_declaration_location): New member
5611 storing the location of the first %merge from which the type for this
5612 merging function was derived.
5613 * src/symlist.h (symbol_list.merger_declaration_location): New member
5614 storing the location of a rule's %merge, if any.
5615 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
5616 declared later): New test to catch the error fixed by the above patch.
5618 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5620 Get action warnings (grammar_rule_check) right even when symbol
5621 declarations appear after the rules. Discussed at
5622 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
5624 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
5625 Don't mistake the type of $$ in a midrule to be that of its parent
5627 * src/reader.c (grammar_current_rule_end): Don't invoke
5628 grammar_rule_check yet since not all symbol declarations may have been
5630 (grammar_midrule_action): Likewise.
5631 Don't record whether the midrule's $$ has been used yet since actions
5632 haven't been translated yet.
5633 Record the midrule's parent rule and its RHS index within the parent
5635 (grammar_current_rule_action_append): Don't translate the action yet
5636 since not all symbol declarations may have been parsed yet and, thus,
5637 warnings about types for $$, $n, @$, and @n can't be reported yet.
5638 (packgram): Translate the action and invoke grammar_rule_check now that
5639 all symbol declarations have been parsed.
5640 * src/scan-code.l (handle_action_dollar): Now that this is invoked
5641 after parsing the entire grammar file, the symbol list here in the case
5642 of a midrule is actually the midrule's empty RHS, so reference its
5643 parent rule's RHS where necessary.
5644 On the other hand, now that you can already know it's a midrule, you
5645 aren't forced to think $$ has the same type as its parent rule's $$.
5646 (handle_action_at): In the case of a midrule, reference the parent rule
5648 * src/symlist.c (symbol_list_new): Initialize new midrule-related
5650 (symbol_list_length): Now that this is invoked after all rules have
5651 been parsed, a NULL symbol (rather than a NULL symbol list node)
5652 terminates a rule. symbol_list_print already does this correctly.
5653 * src/symlist.h (symbol_list.midrule_parent_rule,
5654 symbol_list.midrule_parent_rhs_index): New members so that midrules can
5655 remember their relationships with their parents.
5656 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
5657 fixed by the above patch.
5658 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
5660 (Unused values): ... this old test case and...
5661 (Unused values before symbol declarations): ... this new test case.
5662 This one is the same as `Unused values' except that all symbol
5663 declarations appear after the rules in order to catch the rest of the
5664 errors fixed by the above patch.
5666 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
5669 * src/reader.c (current_rule): Declare it static since it's no longer
5670 used outside this file.
5671 (grammar_current_rule_action_append): Remove redundant arguments from
5672 translate_rule_action invocation.
5673 * src/reader.h (current_rule): Remove this unused extern.
5674 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
5675 * src/scan-code.l (translate_rule_action): Likewise.
5677 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
5679 Clean up yesterday's patch.
5680 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
5682 * src/reader.c (grammar_current_rule_action_append): ... here for
5683 consistency with grammar_current_rule_symbol_append.
5684 * tests/regression.at (Braced code in declaration in rules section):
5685 Make yyerror and yylex static as usual.
5687 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
5689 Fix bug that mistakes braced code in a declaration in the rules section
5690 to be a rule action. Mentioned at
5691 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
5692 * src/scan-gram.l: Move midrule action detection from the start of the
5693 scanning of any braced code to...
5694 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
5695 action. For readability, use $2 and @2 rather than the equivalent
5697 * tests/regression.at (Braced code in declaration in rules section):
5698 New test to catch the error fixed by the above patch.
5700 Work on code readability some.
5701 * src/scan-code.l (current_rule): Get rid of this misleading and
5702 redundant declaration: it's actually extern'ed in reader.h.
5703 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
5704 translate_action): Add a rule argument and use it instead of the global
5706 (translate_rule_action): This already receives current_rule through an
5707 argument, so pass it on to translate_action instead of assigning
5708 current_rule to current_rule.
5709 (translate_symbol_action, translate_code): Pass rule = NULL to
5712 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
5714 Rename %before-definitions to %start-header and %after-definitions to
5715 %end-header. Don't use these declarations to separate pre-prologue
5716 blocks from post-prologue blocks. Add new order-independent
5717 declarations %before-header and %after-header as alternatives to the
5718 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
5719 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
5720 * NEWS (2.3+): Update for these changes.
5721 * data/glr.c (b4_before_definitions): Update to...
5722 (b4_start_header): ... this.
5723 (b4_after_definitions): Update to...
5724 (b4_end_header): ... this.
5725 * data/glr.cc: Likewise.
5726 * data/lalr1.cc: Likewise.
5727 * data/yacc.c: Likewise.
5728 * doc/bison.texinfo (The prologue): Update names, and replace remaining
5729 prologue blocks with %*-header declarations.
5730 (Calc++ Parser): Likewise.
5731 (Decl Summary): Update names.
5732 (Table of Symbols): Update description.
5733 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
5734 (PERCENT_END_HEADER): ... this.
5735 (PERCENT_BEFORE_DEFINITIONS): Update to...
5736 (PERCENT_START_HEADER): ... this.
5737 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5738 (declaration): Update token names and m4 macro names.
5739 When parsing %end-header and %start-header, invoke translate_code
5740 before muscle_code_grow, and no longer set global booleans to remember
5741 whether these declarations have been seen.
5742 Parse new %after-header and %before-header.
5743 * src/reader.c (before_definitions, after_definitions): Remove.
5744 (prologue_augment): Accept a new bool argument to specify whether to
5745 augment the pre-prologue or post-prologue.
5746 * src/reader.h (before_definitions, after_definitions): Remove these
5748 (prologue_augment): Add new bool argument.
5749 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
5750 (PERCENT_END_HEADER): ... this.
5751 (PERCENT_BEFORE_DEFINITIONS): Update to...
5752 (PERCENT_START_HEADER): ... this.
5753 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
5754 * tests/actions.at (Printers and Destructors): Update names.
5756 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
5758 Add comparison operators for C++ location classes. Discussed at
5759 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
5760 * data/c++.m4 (b4_define_location_comparison): New boolean %define
5761 declaration indicating whether filename_type has an operator==. If
5762 filename_type is `std::string', it defaults to `1', `0' otherwise.
5763 * data/location.cc: Iff b4_define_location_comparison is `1', add
5764 operator== and operator!= for class position and for class location.
5767 * src/scan-action.l: Remove unused file.
5768 * src/symtab.c (symbol_printer_set): Use printer_location not
5769 destructor_location.
5770 * src/symtab.h (struct symbol): Replace incorrect source comment for
5772 * tests/input.at (Incompatible Aliases): Update output with correct
5775 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
5777 Don't put the pre-prologue in the header file. For the yacc.c code
5778 file and the glr.c header and code files, move the pre-prologue before
5779 the token definitions. Add new %before-definitions and
5780 %after-definitions to declare code that will go in both the header file
5781 and code file. Discussed at
5782 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
5783 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
5785 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
5786 * NEWS (2.3+): Describe these changes.
5787 * data/glr.c (b4_pre_prologue): Move from within to before...
5788 (b4_shared_declarations): ... this.
5789 Add new b4_before_definitions before b4_token_enums.
5790 Add new b4_after_definitions at the end.
5791 * data/glr.cc (b4_pre_prologue): Replace with...
5792 (b4_before_definitions): ... this in the header file.
5793 (b4_after_definitions): New near the end of the header file.
5794 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
5795 code file right before including the header file.
5796 (b4_before_definitions): New in the previous position of
5797 b4_pre_prologue in the header file.
5798 (b4_after_definitions): New near the end of the header file.
5799 * data/yacc.c: Clean up some m4 quoting especially in the header file.
5800 (b4_token_enums_defines): In the code file, move to right before
5801 YYSTYPE for consistency with the header file.
5802 (b4_before_definitions): New right before b4_token_enums_defines in
5803 both the header and code file.
5804 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
5805 header and code file.
5806 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
5807 of prologues for %union dependencies.
5808 (Decl Summary): In %defines description, mention the effect of
5809 %before-definitions and %after-definitions on the header file.
5810 (Calc++ Parser): Forward declare driver in a %before-definitions rather
5811 than in the pre-prologue so that make check succeeds.
5812 (Table of Symbols): Add entries for %before-definitions and
5814 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
5815 %before-definitions.
5816 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
5817 (declaration): Parse those declarations and append to
5818 b4_before_definitions and b4_after_definitions, respectively.
5819 * src/reader.c (before_definitions, after_definitions): New bools to
5820 track whether those declarations have been seen.
5821 (prologue_augment): Add to the post-prologue if %union,
5822 %before-definitions, or %after-definitions has been seen.
5823 * src/reader.h (before_definitions, after_definitions): New extern's.
5824 * src/scan-gram.l: Scan the new declarations.
5825 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
5826 prologue block in a %before-definitions or a %after-definitions based
5827 on whether the %union is declared.
5828 * tests/regression.at (Early token definitions with --yacc, Early token
5829 definitions without --yacc): Move tests for token definitions into the
5830 post-prologue since token names are no longer defined in the
5833 2006-06-20 Akim Demaille <akim@epita.fr>
5835 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
5836 (symbol_get): Use it.
5837 * src/parse-gram.y: Use it.
5839 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
5841 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
5842 build succeeds when configured with --enable-gcc-warnings.
5844 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
5846 * src/parse-gram.y (char_name): New function.
5847 (CHAR, STRING, string_content): For %printer, properly escape.
5848 (ID): Prefer fputs to fprintf.
5849 (id): Reindent to be consistent with other rules.
5850 Properly quote char.
5852 The Translation Project changed its way of publishing translations
5853 to maintainers. I haven't received any responses to my request
5854 for supporting the old way, or for documenting the new way. I
5855 have modified 'bootstrap' to use screen scraping
5856 (in this case, HTML scraping). This is unreliable and inelegant,
5857 but I don't see any better way. Yuck.
5858 * bootstrap (TP_URL, WGET_COMMAND): New vars.
5859 (get_translations): New function, which uses HTML scraping to
5860 deduce locations of latest translations.
5861 Use this function to grab both bison and bison-runtime .po files.
5862 Don't bother priming the pump for the runtime-po domain any more,
5863 as it's now translated better than bison is.
5865 2006-06-19 Akim Demaille <akim@epita.fr>
5867 * src/scan-gram.l: No longer "parse" things after `%union' until
5868 `{'. Rather, return a single "%union" token.
5869 No longer make symbols: return strings, and leave the conversion
5870 to symbols to the parser.
5871 (SC_PRE_CODE, token_type): Remove.
5872 * src/parse-gram.y (%union): New field `character'.
5875 (ID, ID_COLON): Now that the scanner no longer makes them
5876 identifiers, adjust all uses to invoke symbol_get.
5877 (id_colon): New, wraps the conversion from string to symbol.
5878 (%union): Accept a possible union_name.
5879 (symbol): Now can be a char.
5880 * data/c.m4 (b4_union_name): Leave a default value.
5881 * data/glr.c, data/yacc.c: Use it.
5883 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
5885 For associating token numbers with token names for "yacc.c", don't use
5886 #define statements unless `--yacc' is specified; always use enum
5887 yytokentype. Most important discussions start at:
5888 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
5889 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
5891 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
5892 * NEWS (2.3+): Mention.
5893 * data/c.m4 (b4_yacc_if): New.
5894 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
5896 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
5897 on token name definitions.
5898 * src/getargs.c (usage): Capitalize `Yacc' in English.
5899 * src/output.c (prepare): Define b4_yacc_flag.
5900 * tests/regression.at (Early token definitions): Test that tokens names
5901 are defined before the pre-prologue not just before the post-prologue.
5902 Remove this test case and copy to...
5903 (Early token definitions with --yacc): ... this to test #define's.
5904 (Early token definitions without --yacc): ... and this to test enums.
5906 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
5908 * NEWS: Reword the post-2.3 change to not be so optimistic about
5909 removing the old "look-ahead" spelling.
5910 Update previous look-ahead/lookahead change reports.
5911 * REFERENCES: look-ahead -> lookahead (since that's
5912 what he actually wrote).
5913 * doc/refcard.tex: look ahead -> lookahead,
5914 look-ahead -> lookahead
5916 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
5918 For consistency, use `lookahead' instead of `look-ahead' or
5919 `look_ahead'. Discussed starting at
5920 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
5922 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
5923 * NEWS: For the next release, note the change to `--report'.
5924 * TODO, doc/bison.1: Update English.
5925 * doc/bison.texinfo: Update English.
5926 (Understanding Your Parser, Bison Options): Document as
5927 `--report=lookahead' rather than `--report=look-ahead'.
5928 * src/conflicts.c: Update English in comments.
5929 (lookahead_set): Rename from look_ahead_set.
5930 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
5931 (resolve_sr_conflict): Rename local look_ahead_tokens to
5932 lookahead_tokens, and update other uses.
5933 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
5934 count_rr_conflicts, conflicts_free): Update uses.
5935 * src/getargs.c (report_args): Move "lookahead" before alternate
5937 (report_types): Update uses.
5938 (usage): For `--report' usage description, state `lookahead' spelling
5939 rather than `look-ahead'.
5940 * src/getargs.h (report.report_lookahead_tokens): Rename from
5941 report_look_ahead_tokens.
5942 * src/lalr.c: Update English in comments.
5943 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
5944 (state_lookahead_tokens_count): Rename from
5945 state_look_ahead_tokens_count.
5946 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5947 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
5948 Rename local n_look_ahead_tokens to n_lookahead_tokens.
5950 Update English in output.
5951 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
5952 * src/print.c: Update English in comments.
5953 (lookahead_set): Rename from look_ahead_set.
5954 (print_reduction): Rename argument lookahead_token from
5956 (print_core, state_default_rule, print_reductions, print_results):
5958 * src/print_graph.c: Update English in comments.
5959 (print_core): Update uses.
5960 * src/state.c: Update English in comments.
5961 (reductions_new): Update uses.
5962 (state_rule_lookahead_tokens_print): Rename from
5963 state_rule_look_ahead_tokens_print, and update other uses.
5964 * src/state.h: Update English in comments.
5965 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
5966 (state_rule_lookahead_tokens_print): Rename from
5967 state_rule_look_ahead_tokens_print.
5968 * src/tables.c: Update English in comments.
5969 (conflict_row, action_row): Update uses.
5970 * tests/glr-regression.at
5971 (Incorrect lookahead during deterministic GLR,
5972 Incorrect lookahead during nondeterministic GLR): Rename
5973 print_look_ahead to print_lookahead.
5974 * tests/torture.at: Update English in comments.
5975 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
5976 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
5977 (Many lookahead tokens): Update uses.
5978 * data/glr.c: Update English in comments.
5979 * lalr1.cc: Likewise.
5981 * src/conflicts.h: Likewise.
5982 * src/lalr.h: Likewise.
5983 * src/main.c: Likewise.
5984 * src/output.c: Likewise.
5985 * src/parse-gram.c: Likewise.
5986 * src/tables.h: Likewise.
5987 * tests/calc.at: Likewise.
5989 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
5991 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
5993 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
5995 * TODO: Add request from Nelson H. F. Beebe to be able to install
5996 Bison without installing the yacc script.
5998 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6000 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
6001 and yytext if they're already #define'd.
6002 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
6003 * src/scan-code-c.c: ... here.
6004 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
6007 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
6009 Get Bison to build again when configured with --enable-gcc-warnings.
6010 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
6012 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
6013 loc argument as it shadows a global.
6014 * src/scan-gram.l: Remove stray comma that prevents boundary_set
6017 * src/.cvsignore: Add scan-code.c.
6019 2006-06-07 Akim Demaille <akim@epita.fr>
6021 * src/scan-gram.l: Move the "add a trailing ; to actions" code
6023 * src/scan-code.l: here.
6024 * tests/input.at (Torturing the Scanner): Fix another location
6027 2006-06-07 Akim Demaille <akim@epita.fr>
6029 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
6031 2006-06-06 Akim Demaille <akim@epita.fr>
6033 Extract the parsing of user actions from the grammar scanner.
6034 As a consequence, the relation between the grammar scanner and
6035 parser is much simpler. We can also split "composite tokens" back
6037 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
6038 * src/scan-gram.l (add_column_width, adjust_location): Move to and
6040 * src/location.h, src/location.c (add_column_width)
6041 (location_compute): these.
6042 Fix the column count: the initial column is 0.
6043 (location_print): Be robust to ending column being 0.
6044 * src/location.h (boundary_set): New.
6045 * src/main.c: Adjust to scanner_free being renamed as
6047 * src/output.c: Include scan-code.h.
6048 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
6050 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
6051 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
6052 which is now, again, a separate token.
6053 Adjust all dependencies.
6054 Whereever actions with $ and @ are used, use translate_code.
6055 (action): Remove this nonterminal which is now useless.
6056 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
6057 (grammar_current_rule_action_append): Use translate_code.
6058 (packgram): Bound check ruleno, itemno, and rule_length.
6059 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
6060 (last_string, last_braced_code_loc, max_left_semantic_context)
6061 (scanner_initialize, scanner_free, scanner_last_string_free)
6062 (gram_out, gram_lineno, YY_DECL_): Move to...
6063 * src/scan-gram.h: this new file.
6064 (YY_DECL): Rename as...
6066 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
6067 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
6068 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
6069 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
6070 Move these declarations, and...
6071 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
6073 * src/flex-scanner.h: this new file.
6074 * src/scan-gram.l (rule_length, rule_length_overflow)
6075 (increment_rule_length): Remove.
6076 (last_braced_code_loc): Rename as...
6077 (gram_last_braced_code_loc): this.
6078 Adjust to the changes of the parser.
6079 Move all the handling of $ and @ into...
6080 * src/scan-code.l: here.
6081 * src/scan-gram.l (handle_dollar, handle_at): Remove.
6082 (handle_action_dollar, handle_action_at): Move to...
6083 * src/scan-code.l: here.
6084 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
6085 scan-code.h, scan-code-c.c, scan-gram.h.
6086 (EXTRA_bison_SOURCES): Add scan-code.l.
6087 (BUILT_SOURCES): Add scan-code.c.
6088 (yacc): Be robust to white spaces.
6090 * tests/conflicts.at, tests/input.at, tests/reduce.at,
6091 * tests/regression.at: Adjust the column numbers.
6092 * tests/regression.at: Adjust the error message.
6094 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6096 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6097 Use Akim's wording from
6098 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
6100 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
6102 Between Bison releases, manually append `+' to the previous Bison
6103 release number, and use that as a signal to automatically print the
6104 ChangeLog's CVS Id keyword from --version. Discussed starting at
6105 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
6106 * ChangeLog: Add Id header.
6107 * configure.ac (AC_INIT): Append `+' to `2.3'.
6108 * src/.cvsignore: Add revision.c.
6109 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
6110 (BUILT_SOURCES): Add revision.c.
6111 (revision.c): New target rule. This file defines a new global variable
6112 named revision. It initializes it with either the Id from ChangeLog
6113 or, if VERSION doesn't contain `+', with the empty string.
6114 * src/getargs.c (version): Print the value of revision.
6115 * src/revision.h: Extern revision.
6117 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
6119 * NEWS: Version 2.3.
6120 * configure.ac (AC_INIT): Likewise.
6122 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
6124 * data/glr.c (YYRECOVERING): Define to be a function-like macro
6125 with no arguments, not as an object-like macro. This is for
6126 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
6127 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
6128 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
6131 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
6133 * src/getargs.c (usage): Back out yesterday's modification of the
6134 --help output so that we don't have to wait for translation before
6137 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
6139 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
6140 Problem reported by Akim Demaille.
6142 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
6144 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
6146 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
6148 * data/yacc.c (yy_reduce_print): Omit trailing white space in
6149 generated source code. Problem reported by Frans Englich in
6150 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
6152 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
6154 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
6155 shell, not within 'make', so that 'make' by an ordinary builder
6156 (using GNU make) does not worry about configuring gzip. This also
6157 works around a bug reported independently by Keith Thompson and by
6158 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
6159 stderr rather than stdout, messing up the build logs.
6161 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6163 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
6164 to make sure that YYID will never be unused. This fixes a 'make
6165 maintainer-check' failure caused by the recent changes to the 'Trivial
6166 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
6168 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
6170 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
6172 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
6173 state before an empty RHS is always resolved here. Only the location
6174 of that state is guaranteed to be resolved, and that's enough. This
6175 fixes the remaining bug reported by Derek M. Jones in
6176 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6177 * tests/glr-regression.at (Uninitialized location when reporting
6178 ambiguity): Test the above case.
6179 Also, the embedded comments in this test case claim it checks the case
6180 of an empty RHS that has inherited the initial location. However, the
6181 corresponding LHS was already resolved, so yyresolveLocations didn't
6182 actually have reason to modify it. Fix this by forcing
6183 nondeterministic operation at the beginning of the parse.
6185 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
6187 * data/c.m4 (b4_yy_symbol_print_generate):
6188 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
6189 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
6190 of the bugs reported today by Derek M Jones in
6191 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
6192 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
6193 defined to be a type name without parens or brackets.
6194 (Location Type): Similarly for YYLTYPE.
6195 * tests/regression.at (Trivial grammars): Put in a test for this
6196 bug that will be caught by 'make maintainer-check' (though not,
6197 alas, by 'make check' unless your compiler is picky).
6199 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
6201 * NEWS: Version 2.2.
6202 * configure.ac (AC_INIT): Likewise.
6204 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
6206 * data/glr.c (yyreportTree): Make room in yystates for the state
6207 preceding the RHS. This fixes the segmentation fault reported by Derek
6209 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
6210 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
6211 to the user. Reported for yyreportTree by Derek M. Jones later in the
6213 * THANKS: Add Derek M. Jones.
6214 Update my email address.
6215 Fix typo in Steve Murphy's name.
6217 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
6219 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
6220 checking against YYLAST that caused the parser to miss a potential
6221 alternative in its diagnostic.
6222 Problem reported by Maria Jose Moron Fernandez in
6223 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
6224 * data/lalr1.cc (yysyntax_error_): Likewise.
6225 * data/yacc.c (yysyntax_error): Likewise.
6226 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
6227 tokens, in case we run into an older C compiler.
6228 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
6229 Use them to check for the off-by-one error fixed above.
6231 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
6232 YYSIZE_T, not size_t.
6233 * tests/regression.at (Trivial grammars): New test, to catch
6234 the error fixed by the above patch.
6236 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6238 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
6240 Reported by Steve Murphy.
6242 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6244 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
6245 * data/glr.cc: b4_location_flag is now b4_locations_flag.
6247 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6249 Implement --trace=m4.
6250 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
6251 * src/output.c (output_skeleton): When set, pass -dV to m4.
6253 Factor the handling of flags in m4.
6254 * src/output.c (prepare): Rename the muscle names debug, defines,
6255 error_verbose to debug_flag, defines_flag, error_verbose_flag.
6256 * data/c.m4: Adjust.
6257 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
6258 Use b4_define_flag_if to define other b4_FLAG_if macros.
6259 (b4_location_if): As a consequence, rename as...
6260 (b4_locations_if): this, for consistency.
6261 Adjust all the skeletons.
6263 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6265 * etc/bench.pm: Shorten bench names.
6267 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
6269 * src/output.h, src/output.c (error_verbose): Move to...
6270 * src/getargs.h, src/getargs.c: here.
6272 Adjust dependencies.
6274 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
6276 * data/c.m4 (b4_copyright): Put the special exception for Bison
6277 skeletons here, so we don't have to put it in each skeleton. All
6278 uses changed. Suggested by Akim Demaille. Also, wrap the
6279 copyright notice, in case it is longer than 80 columns. Replace
6280 comma by newline after title.
6282 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
6284 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
6285 incompatibility, not a bug. Mention that it wasn't fixed as of
6288 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6290 * examples/extexi: Enforce the precedence of concatenation over
6292 Reported by Tommy Nordgren.
6294 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
6296 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
6297 with the member "token".
6298 Reported by Martin Nylin.
6300 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
6302 * data/glr.c: Switch to Bison 2.2 special-exception language in
6303 the copyright notice. Use more-regular format for titles and
6305 * data/glr.cc: Likewise.
6306 * data/location.cc: Likewise.
6307 * data/yacc.cc: Likewise.
6308 * doc/bison.texinfo (Conditions): Document this.
6309 * NEWS: likewise. Upgrade version to 2.2.
6311 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
6313 * data/glr.cc: Remove dead code.
6315 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
6317 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
6318 that variable and the line breaks the bootstrap. Problem reported
6319 by Juan M. Guerrero.
6321 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6323 * doc/bison.texinfo (Multiple start-symbols): New.
6325 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
6327 * etc/README, etc/bench.pl: New.
6329 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
6331 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
6333 Reported by Mickael Labau.
6334 * tests/input.at (Torturing the Scanner): Test it.
6336 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
6338 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
6339 Problem reported by Bob Rossi.
6341 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
6343 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
6344 and didn't really work.
6345 For the index, use @ifnotinfo, not @iftex.
6346 Minor cleanups of spacing and terminology.
6348 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6350 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
6351 of AT_NAME_PREFIX when %name-prefix is not used.
6353 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
6355 Apply --prefix to C++ skeletons too: they change the namespace.
6356 The test suite already exercize these cases.
6357 * data/c++.m4 (b4_namespace): New.
6358 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
6359 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
6360 * data/yacc.c, data/glr.c: Remove a useless `[]'.
6361 * doc/bison.texinfo: Document it.
6362 (Option Cross Key): Use @multitable in all formats. It looks
6363 nicer, even in TeX outputs.
6364 (Rules): Use the same code whatever the output type is.
6365 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
6366 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
6367 * tests/calc.at: Use it, instead of hard coding `yy'.
6369 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6371 * TODO: Remove dead items.
6373 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6375 * doc/FAQ: Remove, merged into...
6376 * doc/bison.texinfo (FAQ): this.
6377 * doc/Makefile.am (EXTRA_DIST): Adjust.
6379 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
6381 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
6383 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
6384 * doc/bison.texinfo (Calc++ Scanner): Use it.
6386 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
6388 Fix two nits reported by twlevo, plus one more that I discovered.
6390 * src/assoc.h (assoc_to_string): Give a name to the arg, as
6391 this is the usual Bison style.
6392 * src/location.h (location_print): Likewise.
6394 * src/reader.h (token_name): Likewise.
6396 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
6398 Fix some nits reported by twlevo.
6399 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
6400 and "POSIX". Use more-modern syntax for URLs. Mention C++
6401 and ask for Java. Don't hardwire OS version numbers. Add
6403 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
6404 * src/conflicts.c (solved_conflicts_obstack): Now static.
6406 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
6408 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
6409 page. Say "you can use it" not "you may use it" as on the web page;
6410 we're describing capabilities not granting permission.
6412 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
6414 * data/glr.c (yyresolveLocations): Rename local variables to avoid
6415 shadowing warnings. Use usual patter for iterating through RHS.
6416 * tests/glr-regression.at
6417 (Uninitialized location when reporting ambiguity):
6418 Modify yylex so that it uses its argument, rather than trying
6419 to rely on ARGSUSED (which doesn't work for gcc with warnings).
6420 const char -> char const.
6422 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
6423 Don't use tabs inside commands; it messes up 'ps'.
6424 Problem reported by twlevo.
6426 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
6428 * tests/glr-regression.at (Uninitialized location when reporting
6429 ambiguity): New test case.
6430 * data/glr.c (yyresolveLocations): New function, which uses
6432 (yyresolveValue): Invoke yyresolveLocations before reporting an
6434 * doc/bison.texinfo (Default Action for Locations): Note
6435 YYLLOC_DEFAULT's usage for ambiguity locations.
6436 (GLR Semantic Actions): Cross-reference those notes.
6438 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
6440 * tests/glr-regression.at (Leaked semantic values when reporting
6441 ambiguity): Remove unnecessary union and type declarations.
6442 (Leaked lookahead after nondeterministic parse syntax error): New test
6444 * data/glr.c (yyparse): Check for zero stacks remaining before
6445 attempting to shift the lookahead so that you don't lose it.
6447 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6449 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
6450 * tests/glr-regression.at (Leaked semantic values when reporting
6451 ambiguity): New test case.
6452 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
6453 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
6454 now unnecessary yystackp parameter.
6455 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
6456 destructors can be called.
6458 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
6459 in existing testcases.
6461 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
6463 Don't leak semantic values for parent RHS when a user action cuts the
6464 parser, and clean up related code a bit.
6465 * tests/glr-regression.at (Leaked merged semantic value if user action
6466 cuts parse): Rename to...
6467 (Leaked semantic values if user action cuts parse): ... this. Add check
6468 for leaked parent RHS values.
6469 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
6470 between an unresolved state (non-empty chain of semantic options) and
6471 an incomplete one (signaled by an empty chain).
6472 (yyresolveStates): Document the interface. Move all manipulation of a
6473 successfully or unsuccessfully resolved yyGLRState to...
6474 (yyresolveValue): ... here so that yyresolveValue always leaves a
6475 yyGLRState with consistent data and thus is easier to understand.
6476 Remove the yyvalp and yylocp parameters since they are always just
6477 taken from the yys parameter. When reporting a discarded merged value
6478 in debugging output, note that it is incompletely merged. Document the
6480 (yyresolveAction): If resolving any of the RHS states fails, destroy
6481 them all rather than leaking them. Thus, as long as user actions are
6482 written to clean up the RHS correctly, yyresolveAction always cleans up
6483 the RHS of a semantic option. Document the interface.
6485 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
6487 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
6488 led to a segmentation fault in GNU Pascal. Problem reported
6491 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
6493 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
6494 mid-rule action inside a nonterminal symbol in order to declare a
6495 destructor for its semantic value.
6497 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
6499 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
6500 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
6501 __cplusplus && ! defined _STDLIB_H && !
6502 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
6503 defined free))]: Include <stdlib.h> rather than rolling our own
6504 declarations of malloc and free, to avoid problems with
6505 incompatible declarations (using 'throw') C++'s stdlib.h. This
6506 should fix Debian bug 340012
6507 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
6508 reported by Guillaume Melquiond.
6510 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6512 * NEWS: Clarify symbols versus types in unused-value warnings.
6514 * configure.ac (AC_INIT): Bump version number.
6516 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
6518 * NEWS: Version 2.1a.
6519 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
6520 since C99 requires this.
6522 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
6524 * m4/c-working.m4: New file.
6525 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
6527 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
6529 * Makefile.maint: Merge from coreutils.
6531 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
6533 More portability fixes for problems summarized by Nelson H. F. Beebe.
6535 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
6536 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
6537 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
6538 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
6539 messes up because C++ code is compiled in 32-bit mode but linked
6542 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
6544 More portability fixes for problems summarized by Nelson H. F. Beebe.
6546 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
6547 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
6549 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
6550 nodist_PROGRAMS, since we don't need to actually compile the
6551 example if we're just doing a plain 'make'. This avoids bothering
6552 the installer unnecessarily about problems due to weird C++
6555 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
6557 More portability fixes for problems summarized by Nelson H. F. Beebe.
6559 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
6560 than #include "...", and compile with -I'.'. The old method was
6561 not portable, according to Posix and the C standard, and it does
6562 not work with Sun C 5.7, where previous #line directives affect
6563 the working directory used in later #include "..." directives.
6565 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6567 Various DJGGP specific issues in /djgpp
6569 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
6571 More portability fixes for problems summarized by Nelson H. F. Beebe.
6573 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
6574 '#include <map>' works and that you can apply ++ to iterators.
6576 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
6578 Work around portability problems summarized by Nelson H. F. Beebe in
6579 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
6581 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6582 that '#include <string>' works.
6584 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
6585 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
6586 "warning: sorry: semantics of inline function static data `const
6587 unsigned char translate_table[262]' are wrong (you'll wind up with
6590 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
6591 or, xor to not_, and_, or_, and xor_, respectively. This works
6592 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
6593 random system header somewhere that includes the equivalent of
6596 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
6597 -E" works; it apparently doesn't work with PathScale EKO Compiler
6600 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
6602 During deterministic GLR operation, user actions should be able to
6603 influence the parse by changing yychar. To make this easier to fix and
6604 to make glr.c easier to evolve in general, don't maintain yytoken in
6605 parallel with yychar; just compute yytoken when needed.
6606 * tests/glr-regression.at (Incorrect lookahead during deterministic
6607 GLR): Check that setting yychar in a user action has the intended
6609 * data/glr.c (yyGLRStack): Remove yytokenp member.
6610 (yyclearin): Don't set *yytokenp.
6611 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
6612 yychar rather than *yytokenp to determine the current lookahead.
6613 Compute yytoken locally when needed.
6614 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
6617 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
6618 after `--report' documentation.
6620 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
6622 * src/parse-gram.y (grammar_declaration): Location of printer
6623 symbol is @1, not list->location. Bug reported by twlevo.
6624 * tests/input.at (Incompatible Aliases): Adjust to above change.
6626 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
6628 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
6629 all the test at once. This makes the output easier to read in the
6632 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
6633 got from <http://bro-ids.org/download.html>. The bug is that
6634 when two actions appeared in succession, the second one was
6635 scanned before the first one was added to the grammar rule
6636 as a midrule action. Bison then output the incorrect warning
6637 "parse.y:905.17-906.36: warning: unused value: $3".
6638 * src/parse-gram.y (BRACED_CODE, action): These are no longer
6639 associated with a value.
6640 (rhs): Don't invoke grammar_current_rule_action_append.
6641 (action): Invoke it here instead.
6642 * src/reader.c (grammar_midrule_action): Now extern.
6643 (grammar_current_rule_action_append): Don't invoke
6644 grammar_midrule_action; that is now the scanner's job.
6645 * src/reader.h (last_string, last_braced_code_loc):
6646 (grammar_midrule_action): New decls.
6647 * src/scan-gram.l (last_string): Now extern, sigh.
6648 (last_braced_code_loc): New extern variable.
6649 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
6650 rule already has an action.
6651 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
6652 * tests/input.at (AT_CHECK_UNUSED_VALUES):
6653 Add some tests to check that the above changes fixed the bug.
6655 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
6657 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
6658 All used changed. Check whether the symbol has a destructor,
6659 not whether it is typed.
6660 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
6661 that the values are still reported as unused. All line numbers
6664 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
6666 Work around a bug in bro 0.8, which underparenthesizes its
6667 definition of YYLLOC_DEFAULT.
6668 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
6670 * data/lalr1.cc: Likewise.
6671 * data/yacc.cc: Likewise.
6673 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
6675 Work around a bug in Pike 7.0, and give the Pike folks a
6676 better way to override the usual int widths.
6677 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
6678 user can override the types.
6679 (short): #undef, to work around a bug in Pike 7.0.
6680 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
6681 (union yyalloc.yyss): Use yytype_int16 rather than short.
6683 (yysigned_char): Remove.
6684 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
6685 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
6686 * tests/regression.at (Web2c Actions): Adjust to above changes.
6688 * src/reader.c (check_and_convert_grammar): New function.
6689 (reader): Close the input file even if something went wrong during
6690 parsing. Minor file descriptor leak reported by twlevo.
6692 * src/assoc.c (assoc_to_string): Use a default: abort (); case
6693 to pacify gcc -Wswitch-default.
6694 * src/scan-gram.l (adjust_location): Use a default: break; case
6695 to pacify gcc -Wswitch-default.
6696 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
6697 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
6698 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
6699 Move these decls to scan-skel.l, since they don't need to be
6701 * src/scan-skel.l: Accept the above decls.
6702 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
6705 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
6707 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
6708 since we don't want to insist on a version number at the start
6709 of the changelog every time.
6710 * Makefile.maint: Sync from coreutils a bit better.
6711 (sc_trailing_blank): Renamed from sc_trailing_space.
6713 (sc_no_if_have_config_h, sc_require_config_h):
6714 (sc_prohibit_assert_without_use): New rules.
6715 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
6716 (sc_dd_max_sym_length): Fix leading spaces in rule.
6717 (sc_system_h_headers): Prefix with @.
6718 (sc_useless_cpp_parens, m4-check): Output line numbers.
6719 (changelog-check): Allow version only in head.
6720 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
6721 satisfy new Makefile.maint rule.
6722 * data/glr.c: Likewise.
6723 * data/glr.cc: Likewise.
6724 * data/lalr1.cc: Likewise.
6725 * data/yacc.c: Likewise.
6726 * lib/ebitsetv.c: Likewise.
6727 * lib/lbitset.c: Likewise.
6728 * lib/subpipe.c: Likewise.
6729 * lib/timevar.c: Likewise.
6730 * src/system.h: Likewise.
6731 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
6732 * djgpp/Makefile.maint: Add copyright notice.
6733 * djgpp/README.in: Likewise.
6734 * djgpp/config.bat: Likewise.
6735 * djgpp/config.site: Likewise.
6736 * djgpp/config_h.sed: Likewise.
6737 * djgpp/djunpack.bat: Likewise.
6738 * djgpp/config.sed: Fix copyright notice to match standard format.
6739 * djgpp/subpipe.h: Likewise.
6740 * lib/bitsetv-print.c: Likewise.
6741 * lib/bitsetv.c: Likewise.
6742 * lib/subpipe.h: Likewise.
6743 * lib/timevar.c: Likewise.
6744 * lib/timevar.h: Likewise.
6745 * djgpp/subpipe.c: Use standard recipe for config.h.
6746 * lib/abitset.c: Likewise.
6747 * lib/bitset.c: Likewise.
6748 * lib/bitset_stats.c: Likewise.
6749 * lib/bitsetv-print.c: Likewise.
6750 * lib/bitsetv.c: Likewise.
6751 * lib/ebitsetv.c: Likewise.
6752 * lib/get-errno.c: Likewise.
6753 * lib/lbitset.c: Likewise.
6754 * lib/subpipe.c: Likewise.
6755 * lib/timevar.c: Likewise.
6756 * lib/vbitset.c: Likewise.
6757 * tests/local.at: Likewise.
6758 * src/scan-gram.l: Don't include verify.h, since system.h does
6760 * .x-sc_require_config_h: New file.
6761 * .x-sc_unmarked_diagnostics: New file.
6763 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
6765 Be a bit more systematic about using 'abort'.
6766 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
6767 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
6768 Put 'default: abort ();' before some other case, to satisfy older
6770 * lib/bitset_stats.c (bitset_stats_init): Likewise.
6771 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
6772 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
6773 * src/conflicts.c (resolve_sr_conflict): Likewise.
6774 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
6775 (get_decision_str, get_orientation_str, get_node_alignment_str):
6776 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
6777 (get_linestyle_str, get_arrowstyle_str): Likewise.
6778 * src/conflicts.c (resolve_sr_conflict):
6779 Use a default case rather than one for the one remaining enum
6780 value, to catch invalid enum values as well.
6781 * src/lalr.c (set_goto_map, map_goto):
6782 Prefer "assert (FOO);" to "if (!FOO) abort ();".
6783 * src/nullable.c (nullable_compute, token_definitions_output):
6785 * src/reader.c (packgram, reader): Likewise.
6786 * src/state.c (transitions_to, state_new, state_reduction_find):
6788 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
6789 (symbol_pack): Likewise.
6790 * src/tables.c (conflict_row, pack_vector): Likewise.
6791 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
6792 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
6793 * src/system.h: Don't include <assert.h>.
6794 (assert): New macro.
6796 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
6797 (Destructor Decl, Parser Function, Pure Calling):
6798 Describe rules for braces inside C code more carefully.
6800 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
6802 Fix some porting glitches found by Nelson H. F. Beebe.
6803 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
6804 compilers that don't understand that abort () does not return.
6805 * src/state.c (transitions_to): Likewise.
6806 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
6807 that '#include <cstdlib>' works.
6808 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
6809 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
6810 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
6811 for the benefit of some pre-C99 compilers.
6813 * bootstrap: Undo changes to gnulib files that autoreconf made.
6815 Minor fixups to get 'make maintainer-check' to work.
6816 * configure.ac: Don't use -Wnested-externs, as it's incompatible
6817 with the new verify.h implementation.
6818 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
6819 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
6820 * data/yacc.c (YYUSE): Likewise.
6821 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
6822 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
6823 * src/parse-gram.y (declaration): Don't pass a string constant
6824 to a function that expects char *, since GCC might complain
6825 about the constant value.
6826 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
6827 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
6828 before #defining them.
6829 * tests/glr-regression.at
6830 (Incorrectly initialized location for empty right-hand side in GLR):
6831 In yyerror, use the msg arg.
6832 (Corrupted semantic options if user action cuts parse):
6833 (Incorrect lookahead during deterministic GLR):
6834 (Incorrect lookahead during nondeterministic GLR):
6835 Don't name a local var 'index'; it shadows string.h's 'index'.
6837 2006-01-19 Akim Demaille <akim@epita.fr>
6839 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
6840 location, not just parts of it.
6842 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
6844 * NEWS: Document the fact that multiple %unions are now allowed.
6845 * doc/bison.texinfo (Union Decl): Likewise.
6846 * TODO: This feature is now implemented, so remove it from
6849 * Makefile.maint: Merge with coreutils Makefile.maint.
6850 (CVS_LIST): Use build-aux version if available.
6851 (VERSION_REGEXP): New macro.
6852 (syntax-check-rules): Add sc_no_if_have_config_h,
6853 sc_prohibit_assert_without_use, sc_require_config_h,
6854 sc_useless_cpp_parens.
6855 (sc_obsolete_symbols): Check for O_NDELAY.
6856 (sc_dd_max_sym_length): Track coreutils.
6857 (sc_unmarked_diagnostics): Look in all files, not just *.c.
6858 (sc_useless_cpp_parens): New rule.
6859 (news-date-check): Look for version or today's date.
6860 (changelog-check): Don't require version number near head.
6861 (copyright-check): Use current year instead of hardwiring 2005.
6862 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
6863 (announcement): Add --gpg-key-ID.
6865 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
6868 Avoid undefined behavior that addressed just before the start of an
6869 array. Problem reported by twlevo.
6870 * src/reader.c (packgram): Prepend a new sentinel before ritem.
6871 * src/lalr.c (build_relations): Rely on new sentinel.
6872 * src/gram.c (gram_free): Adjust to new sentinel.
6874 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
6876 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
6877 yylookaheadNeeds. All uses updated.
6878 (yysplitStack): Rename local yynewLookaheadStatuses to
6879 yynewLookaheadNeeds.
6880 * data/glr-regression.at (Incorrect lookahead during nondeterministic
6881 GLR): In comments, change `lookahead status' to `lookahead need'.
6883 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6885 * data/glr.c (yysplitStack): A little stylistic rewrite.
6887 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
6889 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
6891 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
6893 * doc/bison.texinfo: Fix some typos.
6894 (GLR Semantic Actions): New subsection discussing special
6895 considerations because GLR semantic actions might be deferred.
6896 (Actions): Mention look-ahead usage of yylval.
6897 (Actions and Locations): Mention look-ahead usage of yylloc.
6898 (Special Features for Use in Actions): Add YYEOF entry and mention it
6899 in the yychar entry.
6900 In the yychar entry, remove mention of the local yychar case (pure
6901 parser) since this is irrelevant information when writing semantic
6902 actions and since it's already discussed in `Table of Symbols' where
6903 yychar is otherwise described as an external variable.
6904 In the yychar entry, don't call it the `current' look-ahead since it
6905 isn't when semantic actions are deferred.
6906 In the yychar and yyclearin entries, add note about deferred semantic
6908 Add yylloc and yylval entries discussing look-ahead usage.
6909 (Look-Ahead Tokens): When discussing yychar, don't call it the
6910 `current' look-ahead, and do mention yylval and yylloc.
6911 (Error Recovery): Cross-reference `Action Features' when mentioning
6913 (Table of Symbols): In the yychar entry, don't call it the `current'
6915 In the yylloc and yylval entries, mention look-ahead usage.
6917 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
6919 * tests/glr-regression.at: Update copyright year to 2006.
6921 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6923 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
6924 use during nondeterministic operation to track which stacks have
6925 actually needed the current lookahead.
6926 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
6927 Allocate, deallocate, resize, and otherwise shuffle space for
6928 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
6929 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
6930 appropriately during nondeterministic operation.
6931 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
6932 members to store the current lookahead to be used by the deferred
6934 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
6935 from which the RHS is taken. Set the lookahead members of the new
6936 yySemanticOption according to the lookahead status for stack yyk.
6937 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
6938 yyaddDeferredAction.
6939 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
6940 members of yySemanticOption before invoking yyuserAction, and then set
6941 them back to their current values afterward.
6942 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
6943 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
6944 * tests/glr-regression.at: Remove `.' from the ends of recent test case
6945 titles for consistency.
6946 (Leaked merged semantic value if user action cuts parse): In order to
6947 suppress lint warnings, use arguments in merge function, and assign
6948 char value < 128 in main.
6949 (Incorrect lookahead during deterministic GLR): New test case.
6950 (Incorrect lookahead during nondeterministic GLR): New test case.
6952 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6954 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
6955 !yyvaluep as signal that no semantic value is available to print.
6956 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
6957 to print a semantic value.
6959 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
6961 * tests/glr-regression.at: For consistency with my newer test cases,
6964 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
6966 * data/glr.c (yyresolveValue): When merging semantic options, if at
6967 least one user action succeeds but a later one cuts the parse, then
6968 destroy the semantic value before returning rather than leaking it.
6969 (yyresolveStates): If a user action cuts the parse and thus
6970 yyresolveValue fails, ignore the (unset) semantic value rather than
6971 corrupting the yyGLRState, and empty the semantic options list since
6972 the user actions should have called all necessary destructors.
6973 Simplify code with YYCHK.
6974 * tests/glr-regression.at (Corrupted semantic options if user action
6975 cuts parse): New test case.
6976 (Undesirable destructors if user action cuts parse): New test case.
6977 Before applying any of this patch, this test case never actually failed
6978 for me... but only because the corrupted semantic options usually
6980 (Leaked merged semantic value if user action cuts parse): New test
6983 2006-01-05 Akim Demaille <akim@epita.fr>
6985 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
6987 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
6989 * data/c.m4 (b4_c_modern): New macro, with a new provision for
6990 _MSC_VER. Problem reported by Cenzato Marco.
6991 (b4_c_function_def): Use it.
6992 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
6994 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
6995 than rolling our own.
6997 2006-01-04 Akim Demaille <akim@epita.fr>
6999 Also warn about non-used mid-rule values.
7000 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
7002 (symbol_list_new): Adjust.
7003 * src/reader.c (symbol_typed_p): New.
7004 (grammar_rule_check): Use it.
7005 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
7007 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
7009 * tests/actions.at (Exotic Dollars): Adjust.
7011 2006-01-04 Akim Demaille <akim@epita.fr>
7013 * src/reader.c (grammar_midrule_action): If $$ is set in a
7014 mid-rule, move the `used' bit to its lhs.
7015 * tests/input.at (Unused values): New.
7016 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
7018 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
7020 * doc/bison.texinfo (Bison Options): Say more accurately what
7022 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
7023 about declarations in the grammar when in Yacc mode, as POSIX does
7024 not require a diagnostic when the grammar uses extensions.
7026 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
7028 Warn about dubious constructions like "%token T T".
7030 * src/symtab.h (struct symbol.declared): New member.
7031 * src/symtab.c (symbol_new): Initialize it to false.
7032 (symbol_class_set): New arg DECLARING, specifying whether
7033 this is a declaration that we want to warn about, if there
7034 is more than one of them. All uses changed.
7036 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
7037 Allow multiple %union directives, whose contents concatenate.
7038 * src/parse-gram.y (grammar_declaration): Likewise.
7039 Use muscle_code_grow, so that we don't need stype_line any more.
7042 * src/muscle_tab.c (muscle_grow): Fix comment.
7044 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
7045 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
7046 Update copyright year to 2006.
7048 2006-01-03 Akim Demaille <akim@epita.fr>
7050 Have glr.cc pass (some of) the calc.at tests.
7051 * data/glr.cc (b4_parse_param_orig): New.
7052 (b4_parse_param): Improve its definition, and bound it more
7053 clearly in the skeleton.
7054 (b4_epilogue): Append, instead of prepending, in order to keep
7056 Simplify the generation of auxiliary functions: locations and
7057 purity are mandated.
7058 (b4_global_tokens_and_yystype): Honor it.
7059 * data/location.cc (c++.m4): Don't include it.
7060 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
7062 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
7064 Be sure to initialize the first position's filename.
7065 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
7067 (AT_CHECK_CALC_GLR_CC): New.
7068 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
7070 2006-01-02 Akim Demaille <akim@epita.fr>
7072 * src/output.c (output_skeleton): Don't hard wire the inclusion of
7074 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
7075 * data/glr.cc: Do not include stack.hh.
7077 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
7079 * data/glr.c: Reformat whitespace with tabs.
7080 (b4_lpure_formals): Remove this unused m4 macro.
7081 * tests/cxx-type.at: Reformat whitespace with tabs.
7082 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
7083 since it's a member. Rename type to isNterm for clarity.
7085 2005-12-29 Akim <akim@sulaco.local>
7087 Let glr.cc catch up with symbol_value_print.
7088 * data/glr.cc (b4_yysymprint_generate): Replace by...
7089 (b4_yy_symbol_print_generate): this.
7090 (yy_symbol_print, yy_symbol_value_print): Declare them.
7092 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
7094 * src/location.h (boundary): Note that a line or column equal
7095 to INT_MAX indicates an overflow.
7096 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
7097 (rule_length_overflow, increment_rule_length, add_column_width):
7099 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
7100 (<SC_BRACED_CODE>"}"):
7101 Use increment_rule_length rather than incrementing it by hand.
7102 (adjust_location, handle_syncline): Diagnose overflow.
7103 (handle_action_dollar, handle_action_at):
7104 Fix bug with monstrosities like $-2147483648.
7105 Remove now-unnecessary checks.
7106 (scan_integer): Verify assumptions and remove now-unnecessary checks.
7107 (convert_ucn_to_byte): Verify assumptions.
7108 (handle_syncline): New arg LOC. All callers changed.
7109 Don't store through a value derived from char const * pointer.
7111 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
7114 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
7116 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
7117 Remove unnecessary forward static decls.
7119 2005-12-27 Akim Demaille <akim@epita.fr>
7121 * src/reader.c (grammar_current_rule_check): Also check that $$
7123 Take the rule to check as argument, hence rename as...
7124 (grammar_rule_check): this.
7125 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
7127 (grammar_rule_begin, grammar_rule_end): these, for consistency.
7128 (grammar_midrule_action, grammar_symbol_append): Now static.
7129 * tests/torture.at (input): Don't rely on the default action
7130 being always performed.
7131 * tests/calc.at: "Set" $$ even when the action is "cut" with
7133 * tests/actions.at (Exotic Dollars): Instead of using unused
7134 values, check that the warning is issued.
7136 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
7138 * NEWS: Improve wording for unused-value warnings.
7140 2005-12-22 Akim Demaille <akim@epita.fr>
7142 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
7143 (b4_yysymprint_generate): Rename as...
7144 (b4_yy_symbol_print_generate): this.
7145 Generate yy_symbol_print instead of yysymprint.
7146 Generate also yy_symbol_value_print, and use it.
7148 2005-12-22 Akim Demaille <akim@epita.fr>
7150 * NEWS: Warn about unused values.
7151 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
7153 (symbol_list_n_get, symbol_list_n_used_set): New.
7154 (symbol_list_n_type_name_get): Use symbol_list_n_get.
7155 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
7156 * src/reader.c (grammar_current_rule_check): Check that values are
7158 * src/symtab.c (symbol_print): Accept 0.
7159 * tests/existing.at: Remove the type information.
7161 Remove useless actions (beware of mid-rule actions: perl -000
7162 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
7163 * tests/actions.at (Exotic Dollars): Use unused values.
7164 * tests/calc.at: Likewise.
7165 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7168 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
7171 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
7173 Undo 2005-12-01 tentative license wording change. The wording is
7174 still being reviewed by the lawyers, and we don't want to wait for
7175 them before publishing a test release. For now, revert to the
7177 * NEWS: Undo 2005-12-01 change.
7178 * data/glr.c: Revert to previous license wording.
7179 * data/glr.cc: Likewise.
7180 * data/lalr1.cc: Likewise.
7181 * data/location.cc: Likewise.
7182 * data/yacc.c: Likewise.
7184 * NEWS: Reword %destructor vs YYABORT etc.
7185 * data/glr.c: Use American spacing, for consistency.
7186 * data/glr.cc: Likewise.
7187 * data/lalr1.cc: Likewise.
7188 * data/yacc.c: Likewise.
7189 * data/yacc.c: Reformat comments slightly.
7190 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
7191 for consistency. Fix some spelling errors and reword recently-included
7193 * tests/cxx-type.at: Cast results of malloc, for C++.
7195 2005-12-21 Joel E. Denny <address@hidden>
7197 * tests/cxx-type.at: Construct a tree, count the parents of shared
7198 nodes, and free each node once and only once. Previously, the memory
7199 for semantic values was leaked instead.
7201 2005-12-21 Joel E. Denny <address@hidden>
7203 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
7204 (yylval, yylloc): If pure, #define to yystackp->yyval and
7205 yystackp->yyloc similar to yychar and yynerrs.
7206 (yyparse): If pure, remove local yylval and yylloc. Add local
7207 yystackp to accommodate pure definitions of yylval and yylloc.
7208 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
7209 yylvalp and yyllocp to &yylval and &yylloc.
7210 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
7211 namespace. Previously, nerrs and char were missing, but lval and lloc
7213 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
7214 yylvalp and yyllocp parameters since, if pure, these are now always
7215 accessible through yystackp. If not pure, they are still accessible
7217 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
7218 `if (YYID (N))' to pacify lint.
7220 2005-12-21 Akim Demaille <akim@epita.fr>
7222 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
7223 destroy the RHS symbols of a rule.
7224 * data/yacc.c (yylen): Initialize to 0.
7225 Keep its value to the number of items to possibly shift.
7226 In particular, a regular successful parse that ends on YYFINAL by
7227 a (internal) YYACCEPT must not have yylen != 0.
7228 (yyerrorlab, yyreturn): Pop the RHS.
7229 Reorder a bit to emphasize the `shifting' bits of code.
7230 (YYPOPSTACK): Now accept a number of items to pop.
7231 * data/lalr1.cc: Likewise.
7232 * data/glr.c: Formatting changes.
7233 Use goto instead of fall through.
7234 * doc/bison.texinfo (Destructor Decl): Complete.
7236 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7238 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7239 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
7240 * djgpp/config.bat: Replace every occurence of the file name
7241 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7242 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7243 * djgpp/config.sed: Replace every occurence of the file name
7244 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
7245 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
7246 * djgpp/djunpack.bat: DJGPP specific file.
7247 * djgpp/fnchange.lst: DJGPP specific file.
7248 * djgpp/README.in: Add new information about how to unpack the bison
7249 source on MSDOS and other systems which have 8.3 file name restrictions
7250 using djunpack.bat and fnchange.lst.
7252 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
7254 * bootstrap (build_cvs_prefix): Remove; unused.
7255 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
7256 when getting gnulib.
7258 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
7260 * data/glr.c: Reorder typedef declarations for structs to match order
7261 of struct declarations.
7262 Rename yystack everywhere to yystackp except in yyparse where it's not
7264 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
7266 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
7267 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
7268 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
7271 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
7273 * tests/sets.at (Accept): Fix typos in regular expression used to
7274 sed out the final state number.
7276 Work around portability problem on Solaris 10: flex-generated
7277 files include <stdio.h> before <config.h>, which messes up
7278 because the latter defines __EXTENSIONS__. Address the problem
7279 by creating two new little files that include <config.h> first,
7280 then include the flex-generated files. Rewrite everyone else
7281 to include <config.h> first, as well.
7282 * lib/timevar.c: Always include "config.h".
7283 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
7284 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
7285 (EXTRA_bison_SOURCES): New macro.
7286 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
7287 * src/system.h: Don't include config.h.
7288 * src/LR0.c: Include <config.h> first.
7289 * src/assoc.c: Likewise.
7290 * src/closure.c: Likewise.
7291 * src/complain.c: Likewise.
7292 * src/conflicts.c: Likewise.
7293 * src/derives.c: Likewise.
7294 * src/files.c: Likewise.
7295 * src/getargs.c: Likewise.
7296 * src/gram.c: Likewise.
7297 * src/lalr.c: Likewise.
7298 * src/location.c: Likewise.
7299 * src/main.c: Likewise.
7300 * src/muscle_tab.c: Likewise.
7301 * src/nullable.c: Likewise.
7302 * src/output.c: Likewise.
7303 * src/parse-gram.y: Likewise.
7304 * src/print.c: Likewise.
7305 * src/print_graph.c: Likewise.
7306 * src/reader.c: Likewise.
7307 * src/reduce.c: Likewise.
7308 * src/relation.c: Likewise.
7309 * src/state.c: Likewise.
7310 * src/symlist.c: Likewise.
7311 * src/symtab.c: Likewise.
7312 * src/tables.c: Likewise.
7313 * src/uniqstr.c: Likewise.
7314 * src/vcg.c: Likewise.
7316 * src/parse-gram.y: Fix minor problems uncovered by lint.
7317 (current_lhs, current_lhs_location): Now static.
7318 (current_assoc): Remove unused variable.
7320 Cleanups so that Bison-generated parsers have less lint.
7321 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
7322 Prepend /*ARGSUSED*/, for lint's sake.
7323 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
7324 definition if 'lint' is defined.
7325 (YYID): New macro (or function, if lint).
7326 All uses of /*CONSTCOND*/0 replaced by YYID(0).
7327 * data/yacc.c: Likewise.
7328 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
7329 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
7330 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
7332 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
7333 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
7334 Use YYID(0) rather than 0, for lint.
7335 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
7336 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
7338 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
7340 * tests/glr-regression.at
7341 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
7342 Close memory leak reported by twlevo.
7344 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
7346 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
7348 (yyparse): Iterate another stack in order to call user destructors.
7349 * tests/glr-regression.at (No users destructors if stack 0 deleted):
7351 (Duplicated user destructor for lookahead): This test now is expected
7354 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
7356 * NEWS: Document the following change.
7357 * data/yacc.c: Say "parser skeleton" rather than "file", since
7358 it's no longer just a file.
7359 * data/glr.c: Grant a special exception for C GLR parsers, that
7360 reads like the already-existing exception for C LALR(1) parsers.
7361 * data/glr.cc: Likewise.
7362 * data/lalr1.cc: Likewise.
7363 * data/location.cc: Likewise.
7364 * data/yacc.c: Reword the "written by" statement to clarify that
7365 it was the parser skeleton, not the entire output file.
7366 * data/glr.c: Written by Paul Hilfinger.
7367 * data/glr.cc: Written by Akim Demaille.
7368 * data/lalr1.cc: Likewise.
7370 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
7372 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
7373 Fix typos in previous change that broke 'make check'.
7374 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
7376 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
7377 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
7378 We can revert this once things settle down.
7380 * src/conflicts.c (conflicts_print): Don't print file name twice
7381 when %expect fails because there were no conflicts.
7382 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
7384 * tests/conflicts.at (%expect not enough, %expect too much):
7385 (%expect with reduce conflicts): Adjust to new behavior.
7387 2005-11-18 Akim Demaille <akim@epita.fr>
7389 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
7391 * NEWS: Document this.
7392 * doc/bison.texinfo (Expect Decl): Likewise.
7394 2005-11-16 Akim Demaille <akim@epita.fr>
7396 Generalize the display of semantic values and locations in traces.
7397 * data/glr.c (yy_reduce_print): Fix indices (again).
7398 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
7400 * data/lalr1.cc (yyreduce_print): Rename as...
7401 (yy_reduce_print): this.
7402 Display values and locations.
7403 * data/yacc.c (yy_reduce_print): Likewise.
7404 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
7405 (yysymprint): Move higher to be visible from yy_reduce_print).
7407 * tests/calc.at: Adjust the expected length of the traces.
7409 2005-11-14 Akim Demaille <akim@epita.fr>
7411 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
7412 from 1 to N, while values and location start at 0.
7413 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
7415 2005-11-14 Akim Demaille <akim@epita.fr>
7417 * data/glr.c (yy_reduce_print): Fix the $ number.
7419 2005-11-14 Akim Demaille <akim@epita.fr>
7421 "Use" parse parameters.
7422 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
7423 * data/glr.c, data/glr.cc: Use them.
7424 * data/glr.c (YYUSE): Have a C++ definition that supports
7427 2005-11-14 Akim Demaille <akim@epita.fr>
7429 * data/glr.c (yyexpandGLRStack): Declare only if defined.
7431 2005-11-14 Akim Demaille <akim@epita.fr>
7434 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
7436 2005-11-12 Akim Demaille <akim@epita.fr>
7438 Let position and location be PODs.
7439 * data/location.cc (position::initialize, location::initialize): New.
7440 (position::position, location::location): Define only if
7441 b4_location_constructors is defined.
7442 * data/lalr1.cc (b4_location_constructors): Define it for backward
7444 * doc/bison.texinfo (Initial Action Decl): Use initialize.
7446 2005-11-12 Akim Demaille <akim@epita.fr>
7448 * data/lalr1.cc: Move the body of the ctor and dtor into the
7449 parser file (instead of the header).
7450 Wrap the implementations in a "namespace yy".
7452 2005-11-12 Akim Demaille <akim@epita.fr>
7454 Have glr.c include its header file when created.
7455 * data/glr.c (b4_shared_declarations): New.
7456 Output them verbatim in the parser if !%defines, otherwise
7457 output then in the header file, and include it instead.
7459 2005-11-11 Akim Demaille <akim@epita.fr>
7461 * data/glr.c: Comment changes.
7463 2005-11-11 Akim Demaille <akim@epita.fr>
7465 When yydebug, report semantic and location values for reductions.
7466 * data/glr.c (yy_reduce_print): Report the semantic values and the
7468 (YY_REDUCE_PRINT): Adjust.
7469 (yyglrReduce): Use them.
7470 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
7471 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
7472 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
7475 2005-11-10 Akim Demaille <akim@epita.fr>
7477 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
7478 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
7479 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
7481 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
7483 * m4/cxx.m4, examples/Makefile.am: Don't build
7484 examples/calc++ if no C++ compiler is available. (trivial change)
7486 2005-11-09 Akim Demaille <akim@epita.fr>
7488 * src/scan-skel.l: Use a couple of asserts.
7490 2005-11-03 Akim Demaille <akim@epita.fr>
7492 In some (weird) cases, the final state number is incorrect.
7493 Reported by Alexandre Duret-Lutz.
7494 * src/LR0.c (state_list_append): Remove the computation of
7496 (save_reductions): Do it here.
7497 (get_state): Alpha conversion.
7498 (generate_states): Use a for loop.
7499 * src/gram.h (item_number_is_rule_number)
7500 (item_number_is_symbol_number): New.
7501 * src/state.c: Use assert.
7502 * src/system.h: Include assert.h.
7503 * tests/sets.at (Accept): New.
7505 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
7507 * data/glr.c (yyfill): Adjust comment.
7508 (yyresolveAction): Initialize default location properly
7509 for empty right-hand sides.
7510 (yydoAction): Ditto.
7511 Add comment explaining apparently dead code.
7512 * tests/glr-regression.at
7513 (Incorrectly initialized location for empty right-hand side in GLR):
7516 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
7518 * bootstrap (cleanup_gnulib): New function. Use it to clean up
7519 gnulib when interrupted. This fixes some race conditions and
7520 works around some portability problems (one noted by Paul
7523 2005-10-22 Akim <akim@epita.fr>
7525 * Makefile.cfg: Adjust to config -> build-aux.
7528 2005-10-21 Akim Demaille <akim@epita.fr>
7530 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
7532 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
7533 * data/yacc.c (b4_Pure_if): Rename as...
7534 (b4_yacc_pure_if): this.
7535 (YY_SYMBOL_PRINT, yyparse): Adjust.
7536 * doc/bison.texinfo: Formatting changes.
7538 2005-10-21 Akim Demaille <akim@epita.fr>
7540 Finish the transition config -> build-aux.
7541 * configure.ac, Makefile.am: Use build-aux.
7542 * config/prev-version, config/announce-gen, config/Makefile.am:
7544 * build-aux/prev-version, build-aux/announce-gen,
7545 * build-aux/Makefile.am: here.
7547 2005-10-14 Akim Demaille <akim@epita.fr>
7549 * examples/calc++/test: Use set -x only when VERBOSE.
7551 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
7553 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
7554 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
7556 2005-10-13 Akim Demaille <akim@epita.fr>
7558 * src/scan-skel.l: Output the base name parts of the parser and
7560 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
7562 Use this to exercise C++ outputs in subdirs.
7563 Reported by Oleg Smolsky.
7565 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
7567 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
7568 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
7569 Problem reported by John P. Hartmann.
7570 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
7573 2005-10-12 Akim Demaille <akim@epita.fr>
7575 * src/parse-gram.y (version_check): Exit 63 to please missing
7576 (stands for "version mismatch).
7577 * tests/input.at, doc/bison.texinfo: Adjust.
7579 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
7581 Work around portability problems with Visual Age C compiler
7582 (xlc and xlC_r) reported by John P. Hartmann.
7583 * data/location.cc (initial_column, initial_line): Remove.
7584 All uses replaced by 0 and 1.
7585 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
7586 that xlc complains about.
7587 * src/scan-skel.l (skel_wrap): Likewise.
7588 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
7590 * data/yacc.c (YYMODERN_C): New macro, which also looks at
7591 __STDC_VERSION__. Use it everywhere instead of looking at
7592 __STDC__ and __cplusplus.
7594 2005-10-10 Akim Demaille <akim@epita.fr>
7596 * examples/calc++/test: Be quiet unless VERBOSE.
7598 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
7600 * data/c.m4 (yydestruct, yysymprint):
7601 Use YYUSE instead of casting to void.
7602 * data/glr.c (YYUSE): New macro.
7603 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7604 Use it instead of rolling our own.
7605 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7607 Use /*CONSTCOND*/ to suppress lint warnings.
7608 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
7609 (YY_STACK_PRINT): Use 'false' not '0'.
7611 (yysymprint_, yydestruct_): Use it instead of rolling our own.
7612 * data/yacc.c (YYUSE): New macro.
7613 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
7614 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
7615 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
7618 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
7619 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
7621 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
7623 Undo the parts of the unlocked-I/O change that substituted
7624 putc or puts for printf. This might hurt performance a bit,
7625 but some people prefer the printf style.
7626 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
7627 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
7628 All uses replaced by YYFPRINTF and YYDPRINTF.
7629 * data/yacc.c: Likewise.
7630 * lib/bitset.c (bitset_print): Likewise.
7631 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
7633 * lib/lbitset.c (debug_lbitset): Likewise.
7634 * src/closure.c (print_firsts, print_fderives): Likewise.
7635 * src/gram.c (grammar_dump): Likewise.
7636 * src/lalr.c (look_ahead_tokens_print): Likewise.
7637 * src/output.c (escaped_output): Likewise.
7638 (user_actions_output): Break apart two printfs.
7639 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
7640 * src/reduce.c (reduce_print): Likewise.
7641 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7642 * src/system.h: Include unlocked-io.h rathe than stdio.h.
7644 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
7645 Use assignments rather than casts-to-void to suppress
7646 unused-variable warnings. This pacifies 'lint'.
7647 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
7648 unused-variable warnings.
7650 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7652 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
7654 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
7656 Use unlocked I/O for a minor performance improvement on hosts like
7657 GNU/Linux and Solaris that support unlocked I/O. The basic idea
7658 is to use the gnlib unlocked-io module, and to prefer putc and
7659 puts to printf when either will work (since the latter doesn't
7660 come in an unlocked flavor).
7661 * bootstrap (gnulib_modules): Add unlocked-io.
7662 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
7663 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
7664 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
7665 and similarly for puts and putc and printf.
7666 * data/yacc.c: Likewise.
7667 * lib/bitset.c (bitset_print): Likewise.
7668 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
7669 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
7671 * lib/lbitset.c (debug_lbitset): Likewise.
7672 * src/closure.c (print_firsts, print_fderives): Likewise.
7673 * src/gram.c (grammar_dump): Likewise.
7674 * src/lalr.c (look_ahead_tokens_print): Likewise.
7675 * src/output.c (escaped_output): Likewise.
7676 (user_actions_output): Coalesce two printfs.
7677 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
7678 * src/reduce.c (reduce_print): Likewise.
7679 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
7680 * src/system.h: Include unlocked-io.h rather than stdio.h.
7682 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
7683 this confuses xgettext.
7685 2005-10-02 Akim Demaille <akim@epita.fr>
7687 * bootstrap (gnulib_modules): Add strverscmp.
7688 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
7689 * m4/.cvsignore: Add strverscmp.m4.
7690 * src/parse-gram.y (%require): New token, new rule.
7691 (version_check): New.
7692 * src/scan-gram.l (%require): Adjust.
7693 * tests/input.at (AT_REQUIRE): New.
7695 * doc/bison.texinfo (Require Decl): New.
7696 (Calc++ Parser): Use %require.
7698 2005-10-02 Akim Demaille <akim@epita.fr>
7700 * data/location.cc: New.
7702 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
7703 Akim Demaille <akim@epita.fr>
7705 Make sure -odir/foo.cc creates dir/location.hh etc.
7706 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
7707 (spec_file_prefix, spec_verbose_file, spec_graph_file)
7708 (spec_defines_file): Now const.
7710 (short_base_name): Remove.
7711 * src/files.c: Adjust.
7712 (dirname.h): Include.
7713 (base_name): Don't prototype it.
7714 (finput): Remove, duplicates gram_in.
7715 (full_base_name, short_base_name): Replace by...
7716 (all_but_ext, all_but_tab_ext): these.
7717 (compute_base_names): Rename as...
7718 (compute_file_name_parts): this.
7719 Update to compute the new variables, including dir_prefix.
7720 Adjust dependencies.
7721 * src/output.c (prepare): Output them.
7722 * src/reader.c: Adjust to use gram_in, not finput.
7723 * src/scan-skel.l (@dir_prefix@): New.
7725 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
7727 * lib/subpipe.c: New function end_of_output_subpipe() added
7728 to allow support for non-posix systems. This is a no-op function
7731 * lib/subpipe.h: New function end_of_output_subpipe() added
7732 to allow support for non-posix systems. This is a no-op function
7735 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
7736 handle the lack of pipe/fork functionality on non-posix systems.
7738 * djgpp/Makefile.maint: DJGPP specific file.
7740 * djgpp/README.in: DJGPP specific file.
7742 * djgpp/config.bat: DJGPP specific configuration file.
7744 * djgpp/config.sed: DJGPP specific configuration file.
7746 * djgpp/config.site: DJGPP specific configuration file.
7748 * djgpp/config_h.sed: DJGPP specific configuration file.
7750 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
7752 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
7754 2005-10-02 Akim Demaille <akim@epita.fr>
7756 * data/location.cc: New, extract from...
7757 * data/lalr1.cc: here.
7758 (location.hh): Include it after the user prologue, in case the
7759 filename type is defined by the user.
7760 Forward declation location and position before the pre-prologue.
7761 (yyresult_): Rename as...
7762 (yyresult): this, it's a local variable, not an attribute.
7763 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
7765 2005-10-01 Akim Demaille <akim@epita.fr>
7767 * examples/extexi: Restore the #line generation.
7769 2005-09-30 Akim Demaille <akim@epita.fr>,
7770 Alexandre Duret-Lutz <adl@gnu.org>
7772 Move the token type and YYSTYPE in the parser class.
7773 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
7774 (parser::token): New, from the moved free definition of tokens.
7775 (parser::semantic_value): Now a full definition instead of an
7776 indirection to YYSTYPE.
7777 (b4_post_prologue): No longer included in the header file, but
7778 in the implementation file.
7779 * doc/bison.texi (C+ Language Interface): Update.
7780 * src/parse-gram.y: Support unary %define.
7781 * tests/actions.at: Define global_tokens_and_yystype for backward
7782 compatibility until we update the tests.
7783 * tests/calc.at: Idem.
7784 (first_line, first_column, last_line, last_column): Define for lalr1.cc
7785 to simplify the code.
7787 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
7789 Port to SunOS 4.1.4, which lacks strtoul and strerror.
7790 Ah, the good old days! Problem reported by Peter Klein.
7791 * bootstrap (gnulib_modules): Add strerror, strtoul.
7792 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
7793 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
7795 2005-09-29 Akim Demaille <akim@epita.fr>
7797 * data/c.m4 (b4_error_verbose_if): New.
7798 * data/lalr1.cc: Use it.
7799 (YYERROR_VERBOSE_IF): Remove.
7800 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
7801 parser members, replaced by...
7802 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
7804 (yysyntax_error_): Takes the state number as argument.
7805 (yyreduce_print_): Use the argument yyrule, not the former
7808 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
7810 * bootstrap (gnulib_modules): Add verify.
7811 * lib/.cvsignore: Add verify.h.
7812 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
7813 * src/system.h (verify): Remove.
7814 Include verify.h instead.
7815 * src/tables.c (tables_generate): Use new API for 'verify'.
7817 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
7819 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
7820 local variables whose names begin with 'yy'.
7821 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
7822 Trivial changes from Joel E. Denny.
7824 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
7826 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
7827 don't use alloca any more.
7829 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
7830 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
7831 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
7832 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
7833 to match yacc.c, to test more hosts.
7835 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
7837 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
7838 doesn't affect behavior.
7839 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
7841 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
7842 This works a bit better with glibc, if user code has already included
7844 * doc/bison.texinfo (Bison Parser): Document that users can't
7845 arbitrarily use malloc and free for other purposes. Document
7846 that <alloca.h> and <malloc.h> might be included.
7847 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
7848 user must declare alloca.
7850 * HACKING (release): Forwarn the Translation Project about
7853 2005-09-20 Akim Demaille <akim@epita.fr>
7855 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
7857 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
7859 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
7860 (YYSTACK_ALLOC_MAXIMUM): Use it.
7861 (yysyntax_error): New function.
7862 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
7863 multiple syntax errors are reported, and alloca is being used.
7864 Instead, reallocate buffers twice as big each time, so that
7865 we waste at most half the allocated memory. Start with a small
7866 (128-byte) buffer that will suffice in most cases anyway.
7867 Use yysyntax_error to do most of the work.
7869 * doc/bison.texinfo (Error Reporting, Table of Symbols):
7870 yynerrs is the number of errors reported, not the number of
7873 * tests/glr-regression.at (Duplicated user destructor for lookahead):
7874 Mark it as expected to fail.
7875 Cast result of malloc; problem reported by twlevo@xs4all.nl.
7876 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
7877 Don't start user-code symbols with "yy", to avoid name space problems.
7879 2005-09-19 Akim Demaille <akim@epita.fr>
7881 Remove the traits, failed experiment.
7882 It never proved useful, and anyway because of the current
7883 definition, it was not possible to have several specialization of
7884 this traits, making it useless.
7885 * data/lalr1.cc (yy:traits): Remove.
7886 Inline its definitions in the parser class.
7888 2005-09-19 Akim Demaille <akim@epita.fr>
7890 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
7891 least Mac OSX with a /usr/local install of gettext.
7893 2005-09-19 Akim Demaille <akim@epita.fr>
7895 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
7896 and yytoken for similarity with the other skeletons.
7898 2005-09-19 Akim Demaille <akim@epita.fr>
7900 * NEWS, configure.ac: update version number to 2.1a.
7902 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
7904 * NEWS: Version 2.1.
7906 * NEWS: Remove notice of yytname change, since it was never in an
7908 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
7910 * src/output.c (prepare): Likewise.
7911 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
7912 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
7913 is not defined. This is an awful hack, but it's enough for now.
7914 All callers changed.
7915 * tests/glr-regression-at (make_value): Args are const pointers now,
7916 to avoid GCC warning.
7917 (Duplicated user destructor for lookahead): New test. Currently
7918 skipped. It fails on my host but I'm not sure it'll always fail.
7920 2005-09-16 Akim Demaille <akim@epita.fr>
7922 * src/symtab.h (struct symbol): Declare the printer and destructor
7923 as const, to avoid accidental calls to free.
7924 (symbol_destructor_set, symbol_printer_set): Adjust.
7925 * src/symtab.c: Adjust.
7927 2005-09-16 Akim Demaille <akim@epita.fr>
7929 * data/c.m4 (b4_token_enums): New.
7930 (b4_token_defines): Rename as...
7931 (b4_token_enums_defines): this.
7932 (b4_token_defines): New, output only the #defines.
7933 * data/yacc.c, data/glr.c: Adjust.
7934 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
7935 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
7938 2005-09-16 Akim Demaille <akim@epita.fr>
7940 * data/lalr1.cc (yylex_): Remove, inline its code.
7941 (yyreport_syntax_error_): Remove, replaced by...
7942 (yysyntax_error_): this which returns a string and leaves to the
7943 caller the call to the users' error function.
7944 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
7945 Move from members of the parser object...
7946 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
7947 to local variables of the parse function.
7949 2005-09-16 Akim Demaille <akim@epita.fr>
7951 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
7952 since it's in Bison's name space.
7954 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
7956 * data/glr.c (yyresolveValue): Add default case to pacify
7957 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
7959 * NEWS: Document when yyparse started to return 2.
7960 * doc/bison.texinfo (Parser Function): Document when yyparse
7963 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
7964 (b4_filename_type): Renamed back from b4_file_name_type. All uses
7966 (class position): file_name -> filename (reverting). All uses changed.
7968 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
7970 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
7971 do anything if $@ exists. This reverts part of the 2005-07-07
7974 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
7976 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
7977 contains obsolete information and isn't worth distributing as a
7978 separate file anyway.
7979 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
7980 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
7981 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
7982 (yyparse): Abort if user code uses longjmp to throw an unexpected
7985 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
7987 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
7988 Suggested by twlevo@xs4all.nl.
7990 * data/glr.c (YYCHK1): Do not assume YYE is in range.
7991 This avoids a diagnostic from gcc -Wswitch-enum.
7992 Problem reported by twlevo@xs4all.nl.
7994 * doc/bison.texinfo: Don't use "filename", as per GNU coding
7995 standards. Use "file name" or "file" or "name", depending on
7997 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
7998 not to hack/foo.tab.c.
7999 (Calc++ Top Level): 2nd arg of main is not const.
8000 * data/glr.c: b4_filename -> b4_file_name.
8001 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
8003 (class position): filename -> file_name. All uses changed.
8004 * data/yacc.c: b4_filename -> b4_file_name.
8005 * lib/bitset.h: filename -> file_name in local vars.
8006 * lib/bitset_stats.c: Likewise.
8007 * src/files.c: Likewise.
8008 * src/scan-skel.l ("@output ".*\n): Likewise.
8009 * src/files.c (file_name_split): Renamed from filename_split.
8010 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
8012 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
8014 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
8015 to accommodate latest gnulib.
8017 * tests/glr-regression.at (Duplicate representation of merged trees):
8018 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
8020 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
8023 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
8025 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
8026 All uses changed. Invoke user destructor after an error during a
8027 split parse (trivial change from Joel E. Denny).
8029 * tests/glr-regression.at
8030 (User destructor after an error during a split parse): New test case.
8031 Problem reported by Joel E. Denny in:
8032 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
8034 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
8036 * README-cvs: Give URLs for recommended tools.
8037 Mention Gzip version problem, and bootstrapping issues.
8038 Remove troubleshooting section, as it's somewhat obsolete.
8040 * bootstrap (no_cache): New var, to accommodate different wget
8041 variants. Use it instead of '-C off'. Problem reported by
8044 * data/glr.c (yydestroyStackItem): New function.
8045 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
8046 debugging information. Problem reported by Joel E. Denny.
8048 2005-08-25 Akim Demaille <akim@epita.fr>
8050 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
8052 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
8054 * data/glr.c (yyrecoverSyntaxError, yyreturn):
8055 Don't invoke destructor on unresolved entries.
8056 * tests/glr-regression.at
8057 (User destructor for unresolved GLR semantic value): New test case.
8058 Problem reported by Joel E. Denny in:
8059 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
8061 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
8063 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
8065 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
8066 lib-prefix.m4, po.m4.
8068 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
8069 in yydestruct diagnostic, since it might not be an error.
8070 Problem reported by Joel Denny near end of
8071 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8072 * data/lalr1.cc (yyerturn): Likewise.
8073 * data/yacc.c (yyreturn): Likewise.
8074 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
8076 * src/files.c: Remove obsolete FIXME comment.
8078 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
8079 with the other templates, and to fix bogus run-on messages such
8080 as the one reported at the end of
8081 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
8082 All callers changed to avoid the newline.
8083 (yyprocessOneStack): Output two lines rather than one, to accommodate
8084 the above change. This changes the debug output format slightly.
8086 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
8087 reported by Joel E. Denny in
8088 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
8090 * tests/glr-regression.at (Duplicate representation of merged trees):
8091 New test, from Joel E. Denny in:
8092 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
8093 * THANKS: Add Joel E. Denny.
8095 * configure.ac (AC_INIT): Bump to 2.0c.
8097 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
8099 * NEWS: Version 2.0b.
8101 * Makefile.am (SUBDIRS): Put examples before tests, so that
8102 "make check" doesn't finish with "All 1 tests passed".
8104 * tests/regression.at (Token definitions): Don't rely on
8105 AT_PARSER_CHECK for data that contains backslashes. It currently
8106 uses 'echo', and 'echo' isn't portable if its argument contains
8107 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
8108 that the byte '\0xff' is not printable in the C locale; it is,
8109 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
8110 not printable, so use '\0x81' to test.
8112 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
8113 version of GCC, since the macro is used with non-GCC compilers.
8115 Fix core dump reported by Pablo De Napoli in
8116 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
8117 * tests/regression.at (Invalid inputs with {}): New test.
8118 * src/parse-gram.y (token_name): Translate type before using
8121 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
8122 the user's name space. All uses changed to __attribute__
8124 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
8125 Add __attribute__ ((__noreturn__)).
8127 * etc/clcommit: Remove. We weren't using it, and it failed
8128 "make maintainer-distcheck".
8129 * Makefile.maint: Merge from coreutils.
8130 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
8131 (syntax-check-rules): Change list of rules as described below.
8132 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
8133 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
8134 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
8135 (sc_trailing_space): New rules.
8136 (sc_xalloc_h_in_src): Remove.
8137 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
8138 (sc_space_tab, sc_error_exit_success, sc_changelog):
8139 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
8140 (makefile-check, po-check, author_mark_check):
8141 (makefile_path_separator_check, copyright-check):
8142 Use grep -n, to make it easier to find violations.
8143 Use CVS_LIST and CVS_LIST_EXCEPT.
8144 (header_regexp, h_re): Remove.
8146 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
8147 (my-distcheck): Use more-modern GCC flags.
8148 (signatures, %.asc): Remove.
8149 (rel-files, announcement): Remove signatures.
8150 Restore old updating code, even though we don't use it, so
8151 that we're the same as coreutils.
8152 (alpha, beta, major): Depend on news-date-check.
8153 Make the upload commands.
8155 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
8156 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
8157 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
8158 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
8159 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
8160 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
8161 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
8162 * tests/sets.at: Likewise.
8164 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
8165 we comment out the Autoconf version number.
8166 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
8167 it's error-prone and "make maintainer-distcheck" rejects it.
8169 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
8170 Indent calls to "error" to pacify "make maintainer-distcheck",
8171 when the calls are not intended to be translated.
8172 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
8174 * src/Makefile.am (DEFS): Use +=, to pacify
8175 "make maintainer-distcheck".
8176 (bison_SOURCES): Add scan-skel.h.
8177 (sc_tight_scope): New rule, from coreutils.
8179 * src/files.c (src_extension, header_extension):
8180 Now static, not extern.
8181 * src/getargs.c (short_options): Likewise.
8182 * src/muscle_tab.c (muscle_table): Likewise.
8183 * src/parse-gram.y (current_class, current_type, current_prec):
8185 * src/reader.c (grammar_end, previous_rule_end): Likewise.
8186 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
8187 * src/main.c (main): Cast bindtextdomain and textdomain calls to
8188 void, to avoid warning when NLS is disabled.
8189 * src/output.c: Include scan-skel.h.
8190 (scan_skel): Remove decl, since scan-skel.h does this.
8192 Indent calls to "error" to pacify "make maintainer-distcheck".
8193 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
8194 * src/reader.h (gram_end, gram_lineno): New decls to pacify
8195 "make maintainer-distcheck".
8196 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
8197 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
8198 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
8199 (skel_lex_destroy, scan_skel): Move these decls to...
8200 * src/scan-skel.h: New file.
8201 * src/uniqstr.c (uniqstr_assert):
8202 Indent calls to "error" to pacify "make maintainer-distcheck".
8204 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
8207 * tests/torture.at: Revamp to avoid misuse of atoi that
8208 "make maintainer-distcheck" complained about.
8210 * examples/extexi (message): Don't print a message more than once,
8211 and omit line-number decoration that makes Emacs compile think
8212 that informative messages are worth worrying about.
8214 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
8216 * configure.ac: Update version number.
8218 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
8220 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
8221 autogenerated by the maintainer.
8222 * examples/calc++/.cvsignore: Add *.yy.
8224 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
8225 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8226 * lib/bitsetv.c (bitsetv_alloc): Likewise.
8228 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
8230 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
8231 from maintainer-distcheck about casting the argument of 'free'.
8233 * NEWS: Mention recent yytname changes.
8234 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
8236 * bootstrap: For translations that have not yet been upgraded to
8237 the new runtime-po domain, prime the pump by extracting the
8238 relevant strings from the obsolete translations. This code can be
8239 removed once the bison-runtime domain has been translated by each
8242 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
8243 now that token names are already quoted.
8245 Fix problem reported by Anthony Heading.
8246 * data/glr.c (YYTOKEN_TABLE): New macro.
8247 (yytname): Define if YYTOKEN_TABLE.
8248 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
8249 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
8250 (YYERROR_VERBOSE): Define the same way the other skeletons do.
8251 * src/output.c (prepare_symbols): Output token_table_flag.
8253 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
8255 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
8256 again if the first call fails.
8258 * data/glr.c (yytnamerr): New function.
8259 (yyreportSyntaxError): Use it to dequote most string literals.
8260 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
8261 with other skeletons. All uses changed.
8262 (yytnameerr_): New function.
8263 (yyreport_syntax_error): Use it to dequote most string literals.
8264 * data/yacc.c (yytnamerr): New function.
8265 (yyerrlab): Use it to decode most string literals.
8266 * doc/bison.texinfo (Decl Summary, Calling Convention):
8267 Clarify quoting convention of yytname.
8268 * src/output.c (prepare_symbols): Quote all names. This undoes
8269 the 2005-04-17 change, which is now accomplished (mostly) via
8270 changes in the parsers as described above.
8271 * tests/regression.at (Token definitions, Web2c Actions):
8272 Undo most 2005-04-17 change here, too.
8274 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
8276 Fix more problems reported by twlevo@xs4all.nl.
8277 * tests/cxx-type.at: Don't pipe output of ./types through sed to
8278 remove trailing spaces. This loses the exit status of ./types,
8279 and isn't needed since ./types shouldn't be emitting trailing
8281 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
8282 as the stack isn't valid in that case.
8284 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8285 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8286 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8287 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
8289 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
8290 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8291 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8294 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
8295 overly-picky compilers that reject 'char *foo = "bar";'.
8297 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
8298 to FILE * parameter, not to stderr. This fixes a typo introduced
8299 in the 2005-07-12 change.
8301 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
8302 warnings from GCC 4.
8304 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
8305 (yyglrShiftDefer, yysplitStack):
8306 Remove unused parameters b4_pure_formals. All uses changed.
8307 (yyglrShift): Remove unused parameters b4_user_formals.
8309 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
8311 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
8313 Destructor cleanups and regularization among the three skeletons.
8314 * NEWS: Document the behavior changes.
8315 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
8316 stack before failing, as the cleanup code will do it for us now.
8317 * data/lalr1.cc (yyerrlab): Likewise.
8318 * data/glr.c (yyparse): Pop everything off the stack before
8319 freeing it, so that destructors get called properly.
8320 * data/lalr1.cc (yyreturn): Likewise.
8321 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
8322 This is more consistent.
8323 * doc/bison.texinfo (Destructor Decl): Mention more reasons
8324 why destructors might be called. 1.875 -> 2.1.
8325 (Destructor Decl, Decl Summary, Table of Symbols):
8326 Some English-language cleanups for %destructor.
8327 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
8328 Add output line for destructor of start symbol.
8329 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
8330 because of that same extra output line.
8332 * NEWS: Document minor wording changes in diagnostics of
8333 Bison-generated parsers.
8334 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
8335 Remove unused formals. All uses changed.
8336 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
8337 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
8338 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
8339 Rename yyoverflowab to yyexhaustedlab.
8340 When memory exhaustion occurs during syntax-error reporting,
8341 report it separately rather than in a single diagnostic; this
8343 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
8344 (Memory Exhausted): Renamed from Parser Stack Overflow.
8345 Revamp wording slightly to prefer "memory exhaustion".
8346 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
8348 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
8350 Add i18n support to the GLR skeleton. Partially fix the C++
8351 skeleton; a C++ expert needs to finish this. Remove debugging
8352 msgids; there's little point to having them translated, since they
8353 can be understood only by someone who can read the
8354 (English-language) source code.
8356 Generate runtime-po/bison-runtime.pot automatically, so that we
8357 don't have to worry about garbage getting in that file. We'll
8358 make sure after the next official release that old msgids don't
8360 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
8362 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
8364 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
8365 Fix typos in explanations of the runtime file.
8366 * bootstrap: Change gettext keyword from YYI18N to YY_.
8367 Use standard Makefile.in.in in runtime-po, since we'll arrange
8368 for backward-compatible bison-runtime.po files in a different way.
8369 * data/glr.c (YY_): New macro, from yacc.c.
8370 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
8371 Translate messages intended for users.
8372 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
8373 the wording in the other skeletons. We don't know that the memory
8375 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
8376 Use same method that yacc.c uses.
8377 Don't translate debugging messages.
8378 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
8379 it doesn't work (yet), and requires C++ expertise to fix.
8380 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
8381 Move defn to a more logical place, to be consistent with other
8383 Don't translate debugging messages.
8384 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
8385 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
8386 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
8387 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
8389 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
8390 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
8392 * tests/glr-regression.at (Badly Collapsed GLR States):
8394 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8395 yylex should return 0 at EOF rather than aborting.
8397 Improve tests for stack overflow in GLR parser.
8398 Problem reported by twlevo@xs4all.nl.
8399 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
8401 (yyStackOverflow): Just longjmp, but with value 2 so that caller
8402 can handle the problem.
8403 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
8404 (yyparse): New local variable yyresult to record the result.
8405 Use result of setjmp to set it, rather than storing itinto
8407 (yyDone): Remove label.
8408 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
8409 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
8410 if YYABORT is used).
8411 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
8412 yyparse status; put status > 1 into diagnostic.
8413 Check that status==2 works.
8414 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
8415 Use exit status 3 for failure to open (which shouldn't happen).
8417 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
8419 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
8420 1 on syntax error; just let yyparse do its thing.
8421 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
8422 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
8423 (Exploding the Stack Size with Alloca):
8424 (Exploding the Stack Size with Malloc):
8425 Expect exit status 2, not 1, since the parser is supposed to blow
8426 its stack. Problem reported by twlevo@xs4all.nl.
8428 * data/glr.c (yyparse): Don't assume that the initial calls
8429 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
8430 Print a stack-overflow message and fail instead.
8431 Initialize the line-number information before creating the stack,
8432 so that the stack-overflow message can report line zero safely.
8434 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
8436 Fix problems reported by twlevo@xs4all.nl.
8437 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
8438 (yyuserMerge): Provide a default case if b4_mergers is empty.
8439 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
8440 * tests/glr-regression.at
8441 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
8442 Add casts to pacify C++ compilers.
8443 * tests/glr-regression.at (Improper merging of GLR delayed action
8444 sets): Declare yylex before using it.
8445 * tests/Makefile.am (maintainer-check-g++): Fix a stray
8446 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
8447 test for valgrind; valgrind is independent of g++.
8448 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
8449 for compatibility with POSIX 1003.1-2001 (if running coreutils).
8450 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
8451 Use a destructor, so that we can expand the stack. Change
8452 YYSTYPE to char * so that we can free it. Cast result of malloc.
8454 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8456 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
8457 a valgrind failure. Problem reported by twlevo@xs4all.nl.
8459 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
8461 * PACKAGING: New file, suggested by Bruno Haible and taken from
8462 similar wording in gettext's PACKAGING file.
8463 * NEWS: Mention PACKAGING.
8464 * Makefile.am (EXTRA_DIST): Add PACKAGING.
8466 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
8468 * NEWS: Document recent i18n improvements.
8469 * bootstrap: Get runtime translations into runtime-po.
8470 Create runtime-po files automatically, if possible.
8471 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
8472 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
8473 does not infringe on the user's name space.
8474 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
8475 * doc/bison.texinfo (Internationalization): Revamp the English
8476 and Texinfo syntax a bit, to try to make it clearer.
8477 (Bison Options, Option Cross Key): Mention --print-localedir.
8478 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
8479 YYENABLE_NLS. Quote a bit more.
8480 * runtime-po/.cvsignore: New file.
8481 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
8482 * runtime-po/Rules-quot: Remove; now created by bootstrap.
8483 * runtime-po/quot.sed: Likewise.
8484 * runtime-po/boldquot.sed: Likewise.
8485 * runtime-po/en@quot.header: Likewise.
8486 * runtime-po/en@boldquot.header: Likewise.
8487 * runtime-po/insert-header.sin: Likewise.
8488 * runtime-po/remove-potcdate.sin: Likewise.
8489 * runtime-po/Makevars: Likewise.
8490 * runtime-po/LINGUAS: Likewise.
8491 * runtime-po/de.po: Likewise; we will rely on the translation project
8492 to maintain this, so "bootstrap" should get it.
8493 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
8495 * src/main.c (main): Bind the bison-runtime domain, too.
8497 2005-07-12 Bruno Haible <bruno@clisp.org>
8499 * data/yacc.c: Include <libintl.h> when NLS is enabled.
8500 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
8501 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
8502 * runtime-po: New directory.
8503 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
8504 $(DOMAIN).pot-update rule, so that old messages are never dropped.
8505 * runtime-po/Rules-quot: New file, copied from po/.
8506 * runtime-po/quot.sed: Likewise.
8507 * runtime-po/boldquot.sed: Likewise.
8508 * runtime-po/en@quot.header: Likewise.
8509 * runtime-po/en@boldquot.header: Likewise.
8510 * runtime-po/insert-header.sin: Likewise.
8511 * runtime-po/remove-potcdate.sin: Likewise.
8512 * runtime-po/Makevars: New file.
8513 * runtime-po/POTFILES.in: New file.
8514 * runtime-po/LINGUAS: New file.
8515 * runtime-po/bison-runtime.pot: New file.
8516 * runtime-po/de.po: New file.
8517 * m4/bison.m4: New file.
8518 * Makefile.am (SUBDIRS): Add runtime-po.
8519 (aclocaldir, aclocal_DATA): New variables.
8520 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
8522 * src/getargs.c (usage): Document --print-localedir option.
8523 (PRINT_LOCALEDIR_OPTION): New enum item.
8524 (long_options): Add --print-localedir option.
8525 (getargs): Handle --print-localedir option.
8526 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
8527 (Internationalization): New section.
8529 2005-07-12 Akim Demaille <akim@epita.fr>
8531 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
8532 for consistency with the rest of the code.
8533 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
8536 2005-07-12 Akim Demaille <akim@epita.fr>
8538 * src/parse-gram.y: Use %printer instead of YYPRINT.
8540 2005-07-12 Akim Demaille <akim@epita.fr>
8542 * src/symtab.h, src/symtab.c (symbol_print): New.
8543 * src/symlist.h, src/symlist.c (symbol_list_print): New.
8544 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
8546 2005-07-12 Akim Demaille <akim@epita.fr>
8548 * data/glr.c (b4_syncline): Fix (swap) the definitions of
8549 b4_at_dollar and b4_dollar_dollar.
8551 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
8553 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
8554 and Pennello's paper.
8556 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
8558 * data/yacc.c (yyparse): Undo previous patch. Instead,
8559 set yylsp[0] and yyvsp[0] only if the initial action
8560 sets yylloc and yylval, respectively.
8562 * data/yacc.c (yyparse): In the initial action, set
8563 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
8564 This avoids the use of undefined variables if the initial
8565 action does not set yylloc and/or yylval.
8567 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
8569 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
8570 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
8571 Remove from CVS. These files are automatically generated.
8572 * examples/extexi: Clarify that this file is now part of Bison,
8573 not GNU M4, and that it works with any POSIX-compatible Awk.
8574 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
8575 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
8576 so that we also get calc++-parser.yy. Geneate it.
8577 Use $(AWK), not gawk, since any conforming Awk will do.
8578 Put comment before action, since older 'make' can't handle comment
8580 $(BUILT_SOURCES): List all built sources, not just some of them.
8581 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
8582 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
8583 $($(calc_sources_generated)): Remove unnecessary test for existence
8584 of target. (This had a shell syntax error anyway; a stray "x".)
8585 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
8587 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
8589 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
8590 implied by the other modules.
8592 2005-07-06 Akim Demaille <akim@epita.fr>
8594 Bind examples/calc++ to the package.
8595 * examples/calc++/Makefile: Remove, replaced by...
8596 * examples/calc++/Makefile.am: ... this new file.
8597 * examples/calc++/test: Remove input.
8598 * examples/calc++/compile: Remove.
8599 * examples/Makefile.am: New.
8600 * configure.ac, Makefile.am: Adjust.
8601 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
8603 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
8605 * data/glr.c (yyFail): Drastically simplify; since the format argument
8606 never had any % directives, we can simply pass it to yyerror.
8607 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
8608 be modified later, as that is the usual style in glr.c.
8609 Problems reported by Paul Hilfinger.
8611 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
8612 and size overflow errors.
8613 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
8614 in case the user prolog sets feature-test macros like _GNU_SOURCE.
8615 (YYSIZEMAX): New macro.
8616 (yystpcpy): New function, taken from yacc.c.
8617 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
8618 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
8619 so that we don't have to maintain their signatures.
8620 (yyFail): Check for buffer overflow, by using vsnprintf rather
8621 than vsprintf. Allocate a bigger buffer if possible.
8622 Report an error if buffer allocation fails.
8623 (yyStackOverflow): New function.
8624 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
8625 the initialization was successful. It might fail if storage was
8627 (yyexpandGLRStack): Add more checks for storage allocation failure.
8628 Use yyStackOverflow to report failures.
8629 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
8630 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
8631 Don't assume stack number fits in int.
8632 (yysplitStack): Check for storage allocation failure.
8633 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
8634 can print diagnostics on storage allocation failure. All callers
8636 (yyresolveValue): Use yybool for boolean.
8637 (yyreportSyntaxError): Check for size-calculation overflow.
8638 This code is taken from yacc.c.
8639 (yyparse): Check for storage allocation errors when allocating
8642 2005-07-05 Akim Demaille <akim@epita.fr>
8644 Extract calc++ from the documentation.
8645 * doc/bison.texinfo (Calc++): Add the extraction marks.
8646 * examples/extexi: New, from the aborted GNU Programming 2E.
8647 Separate the different paragraph of a file with empty lines.
8648 * examples/Makefile: Use it to extract the whole calc++ example.
8650 2005-06-24 Akim Demaille <akim@epita.fr>
8652 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
8655 2005-06-22 Akim Demaille <akim@epita.fr>
8657 * doc/bison.texinfo (C++ Language Interface): First stab.
8658 (C++ Parsers): Remove.
8660 2005-06-22 Akim Demaille <akim@epita.fr>
8662 * data/lalr1.cc (yylex_): Honor %lex-param.
8664 2005-06-22 Akim Demaille <akim@epita.fr>
8666 Start a set of simple examples.
8667 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
8668 * examples/calc++/calc++-driver.hh,
8669 * examples/calc++/calc++-parser.yy,
8670 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
8671 * examples/calc++/compile, examples/calc++/test: New.
8673 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
8675 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
8676 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
8677 which stems from the 2005-05-27 patch.
8679 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8681 * data/glr.c: Modify treatment of unused parameters to permit use
8682 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
8684 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
8686 Fix infringement on user name space reported by Janos Zoltan Szabo.
8687 * data/yacc.c (yyparse): strlen -> yystrlen.
8689 2005-05-30 Akim Demaille <akim@epita.fr>
8691 * data/lalr1.cc (_): New.
8692 Translate the various messages.
8694 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
8696 Fix infringement on user name space reported by Bruno Haible.
8697 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
8698 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
8699 the user's name space.
8700 (alloca): Include <stdlib.h> to get it, if it's not built in.
8701 (YYMALLOC, YYFREE): Define only if needed.
8702 (malloc, free): Declare, but only if needed, as this infringes on
8703 the user name space.
8705 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
8707 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
8708 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
8710 * lib/ebitset.c (min, max): Undef before defining.
8711 * lib/vbitset.c (min, max): Likewise.
8712 * lib/subpipe.c (create_subpipe): Save local variables in case
8713 vfork clobbers them.
8715 2005-05-24 Bruno Haible <bruno@clisp.org>
8717 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
8718 error message syntax used by gcc-4.0.
8720 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
8722 * README: Mention m4 1.4.3. Remove obsolete advice about
8723 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
8725 * bootstrap: Remove workaround for problem I encountered with
8726 gettext 0.14.1; it seems to be fixed now.
8728 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
8730 * NEWS: Version 2.0a.
8732 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
8733 the previous change.
8735 Various maintainer cleanups.
8736 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
8737 conftest*, for benefit of CVS commands run at the same time as
8738 "configure". Add build-aux, since "bootstrap" now creates it and
8740 * Makefile.cfg (move_if_change): Remove.
8741 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
8742 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
8743 (po_repo, do-po-update, po-update, wget_files, get-targets):
8744 (config.guess-url_prefix, config.sub-url_prefix):
8745 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
8746 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
8747 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
8749 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
8750 this is now the recommended name.
8751 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
8752 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
8753 ylwrap. These files now go into build-aux.
8754 * config/move-if-change: Remove.
8755 * config/prev-version.txt: Bump from 1.75 to 2.0.
8757 * bootstrap: Add stdio-safer, unistd-safer modules.
8758 Remove m4/glibc2.m4 (introduced by latest gnulib, but
8760 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
8761 fopen-safer.c, stdio-safer.h, unistd-safer.h.
8762 * lib/subpipe.c: Include "unistd-safer.h".
8763 (create_subpipe): Make sure all the newly-created
8764 file descriptors are > 2, so that diagnostics don't
8765 get sent down them (which might cause Bison to hang, in theory).
8766 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
8767 * src/files.c (xfopen): Use fopen_safer, not fopen.
8769 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
8770 yesterday's yacc.c fix.
8772 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
8774 * data/glr.c, data/lalr1.cc: Update copyright date.
8776 Fix a destructor bug reported by Wolfgang Spraul in
8777 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
8778 * data/yacc.c (yyabortlab): Don't call destructor, and
8779 don't set yychar to EMPTY.
8780 (yyoverflowlab): Don't call destructor.
8781 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
8782 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
8783 since we no longer output the message "discarding lookahead token
8786 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
8788 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
8789 fix a small glitch in debugging output.
8790 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
8791 after YY_SYMBOL_PRINT where needed.
8793 (struct yyGLRState): Add some comments.
8794 (struct yySemanticOption): Add some comments.
8795 (union yyGLRStackItem): Add comment.
8797 (yymergeOptionSets): Correct this to properly perform the union,
8798 avoiding infinite reported by Michael Rosien.
8801 * tests/glr-regression.at: Add test for GLR merging error reported
8804 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
8806 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
8807 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
8808 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
8809 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
8810 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
8811 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
8812 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
8813 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
8814 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
8815 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
8816 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
8817 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
8818 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
8819 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
8820 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
8821 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
8822 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
8823 src/derives.h, src/files.c, src/files.h, src/getargs.c,
8824 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
8825 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
8826 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
8827 src/output.h, src/parse-gram.c, src/parse-gram.h,
8828 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
8829 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
8830 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
8831 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
8832 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
8833 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
8834 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
8835 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
8836 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
8837 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
8838 tests/reduce.at, tests/regression.at, tests/sets.at,
8839 tests/synclines.at, tests/testsuite.at, tests/torture.at:
8840 Update FSF postal mail address.
8842 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
8844 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
8845 Problem reported by Ralf Menzel.
8847 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
8849 * tests/actions.at: Test that stack overflow invokes destructors.
8850 From Marcus Holland-Moritz.
8851 * data/yacc.c (yyerrlab): Move the code that destroys the stack
8853 (yyreturn): to here. That way, destructors are called properly
8854 even if the stack overflows, or the user calls YYACCEPT or
8855 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
8856 (yyoverflowlab): Destroy the lookahead.
8858 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
8860 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
8862 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
8864 * NEWS: Bison-generated C parsers no longer quote literal strings
8865 associated with tokens.
8866 * src/output.c (prepare_symbols): Don't escape strings,
8867 since users don't want to see C escapes.
8868 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
8870 * tests/input.at (Torturing the Scanner): Likewise.
8871 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
8873 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
8875 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
8876 the data size is known to be too small and we can't increase it.
8877 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
8879 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
8881 * src/parse-gram.y: Include quotearg.h.
8882 (string_as_id): Quote $1 before using it as a key, since the
8883 lexer no longer quotes it for us.
8884 (string_content): Don't strip quotes, since lexer no longer
8886 * src/scan-gram.l: Include quotearg.h.
8888 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
8889 a key, since the rest of the lexer doesn't quote it.
8890 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
8891 * tests/regression.at (Token definitions): Check for backslashes
8894 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
8895 (YYSIZE_T): Define to unsigned long int when using an older compiler.
8896 (yyparse): Revamp code to generate long syntax error message, to
8897 make it easier to translate, and to avoid problems with arithmetic
8898 overflow. Change "virtual memory" to "memory" in diagnostic, since
8899 we don't know whether the memory is virtual.
8901 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
8903 * NEWS: Bison-generated C parsers now use the _ macro to
8905 * data/yacc.c (_) [!defined _]: New macro.
8906 All English strings wrapped inside this macro.
8907 * doc/bison.texinfo (Bison Parser): Document _.
8908 * po/POTFILES.in: Include src/parse-gram.c, since it now
8909 includes translateable strings that parse-gram.y doesn't.
8911 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
8913 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
8914 reverting the 2004-10-11 change to this function.
8915 (symbol_check_alias_consistency): Don't call symbol_type_set
8916 if the type name is already correct.
8917 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
8919 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
8921 * tests/regression.at (Token definitions): Don't use a token named
8922 c, as that generates a "#define c ..." that runs afoul of buggy
8923 stdlib.h that uses the identifier c as a member of struct
8924 drand48_data. Problem reported by Horst Wente.
8926 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
8928 * bootstrap: Change translation URL from
8929 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
8930 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
8931 redirection glitches. Problem reported by twlevo@xs4all.nl.
8933 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
8935 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
8936 after operands; POSIX says this isn't portable for the c99 command.
8938 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
8940 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
8941 immediately if a data overrun has occurred; this may help us track
8942 down what may be a spurious failure on MacOS.
8944 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
8946 Respond to problems reported by twlevo@xs4all.nl.
8948 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
8950 * src/vcg.h: Comment fix.
8951 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
8952 (G_CMAX): Change to -1 instead of INT_MAX.
8954 * data/yacc.c (yyparse): Omit spaces before #line.
8956 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
8958 * src/tables.c (state_number_to_vector_number): Put it inside an
8959 "#if 0", since it's not currently used. Problem reported by
8962 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
8964 * src/output.c (escaped_output): Renamed from
8965 escaped_file_name_output, since we now use it for symbol tags as
8966 well. All uses changed.
8967 (symbol_destructors_output, symbol_printers_output):
8968 Escape symbol tags too.
8969 Problem reported by Matyas Forstner in
8970 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
8972 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
8974 * src/output.c (user_actions_output, token_definitions_output,
8975 symbol_destructors_output, symbol_printers_output): Likewise.
8976 * src/reader.c (prologue_augment): Likewise.
8977 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
8979 * src/vcg.c (output_edge): Don't quote linestyle arg.
8980 Problem reported by twlevo@xs4all.nl.
8982 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
8984 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
8985 example, reported by Derek M Jones. Also, make the example even
8986 more outrageous, to better illustrate how bad the problem is.
8988 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
8990 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
8991 putsym. Typo reported by Sebastian Piping.
8993 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
8995 * doc/bison.texinfo (Language and Grammar): some -> same
8996 (Epilogue): int he -> in the
8997 Typos reported by Sebastian Piping via Justin Pence.
8999 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
9001 * tests/glr-regression.at (Improper handling of embedded actions
9002 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
9003 embedded actions and $-N in GLR parsers", work around an Autoconf bug
9004 with dollar signs in test names.
9005 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
9006 for a similar reason.
9008 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
9010 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
9011 wants to redefine G_VIEW.
9013 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
9015 * src/vcg.c (get_view_str): Remove case for normal_view.
9016 Problem reported by twlevo@xs4all.nl.
9018 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
9020 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
9021 Problem reported by twlevo@xs4all.nl.
9023 * doc/bison.texinfo: Change @dircategory from "GNU programming
9024 tools" to "Software development". Requested by Richard Stallman
9027 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
9029 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
9030 Problem reported by twlevo@xs4all.nl.
9032 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
9034 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
9035 keyword; it's not needed with modern compilers, and it doesn't
9036 affect correctness with older compilers. Suggested by
9039 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
9041 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
9042 gcc -Wswitch-default.
9043 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
9044 * data/yacc.c (yyparse): Likewise.
9046 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
9048 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
9049 already. Let config.h define any nonstandard values.
9051 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
9053 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
9054 for the benefit of slower hosts. Problem reported by
9057 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
9059 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
9060 being defined and not used.
9061 * data/lalr1.cc (yyparse): Likewise.
9062 Use "if (false)" rather than "if (0)".
9064 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
9066 * TODO: Mention that we should allow NUL bytes in tokens.
9068 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
9070 * src/scan-skel.l (<<EOF>>): Don't close standard output.
9071 Problem reported by Hans Aberg.
9073 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
9075 * src/getargs.c (version): Happy new year; update overall
9076 program copyright date from 2004 to 2005.
9078 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
9079 Problem reported by Hans Aberg.
9080 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
9081 (Output file names.): Add a test for the case when standard output
9084 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
9086 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
9087 to fix an oversight in the Bison 2.0 manual.
9089 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
9091 * NEWS: Version 2.0. Reformat the existing news items since
9092 1.875, so that related items are grouped together.
9093 * configure.ac (AC_INIT): Bump version to 2.0.
9094 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
9096 * tests/torture.at (Exploding the Stack Size with Alloca): Set
9097 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
9098 otherwise, we're not testing alloca. Unfortunately there's no
9099 simple way to consult HAVE_ALLOCA here.
9101 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
9104 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
9105 hand. This avoids a warning about comparing int to size_t when
9106 GCC warnings are enabled.
9108 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
9110 * NEWS: Bison-generated parsers no longer default to using the
9111 alloca function (when available) to extend the parser stack, due
9112 to widespread problems in unchecked stack-overflow detection.
9113 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
9114 responsibility to set it to a positive value. This lets the user
9115 specify a value that is not a preprocessor constant.
9116 * data/yacc.c (YYMAXDEPTH): Likewise.
9117 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
9118 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
9119 to be a compile-time constant. However, explain the constraints on it.
9120 Also, explain the constraints on YYINITDEPTH.
9121 (Table of Symbols): Explain that alloca is no longer the default.
9122 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
9125 * doc/bison.texinfo (Location Default Action): Mention that n must
9126 be zero when k is zero. Suggested by Frank Heckenbach.
9128 2004-12-22 Akim Demaille <akim@epita.fr>
9130 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
9131 (parser::state_type, parser::semantic_type, parser::location_type):
9132 Private, not public.
9133 (parser::parse): Return ints, not bool.
9134 Returning a bool introduces a problem: 0 corresponds to false, and
9135 it seems weird to return false on success. Returning true changes
9136 the conventions for yyparse.
9137 Alternatively we could return void and send an exception.
9138 There is no clear consensus (yet?).
9139 (state_stack, semantic_stack, location_stack): Rename as...
9140 (state_stack_type, semantic_stack_type, location_stack_type): these.
9141 Private, not public.
9142 * tests/c++.at: New.
9143 * tests/testsuite.at, tests/Makefile.am: Adjust.
9145 2004-12-21 Akim Demaille <akim@epita.fr>
9147 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
9149 2004-12-21 Akim Demaille <akim@epita.fr>
9151 Don't impose std::string for filenames.
9153 * data/lalr1.cc (b4_filename_type): New.
9154 (position::filename): Use it.
9155 (parser.hh): Move the inclusion of stack.hh and location.hh below
9156 the user code, so that needed headers for the filename type can be
9158 Forward declare them before the user code.
9159 * tests/Makefile.am (check-local, installcheck-local): Pass
9160 TESTSUITEFLAGS to the TESTSUITE.
9162 2004-12-20 Akim Demaille <akim@epita.fr>
9164 Use more STL like names: my_class instead of MyClass.
9166 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
9167 (SemanticStack, SemanticType, StateStack, StateType)
9168 (TokenNumberType, Stack, Slice, Traits, Parser::location)
9169 (Parser::value): Rename as...
9170 (location_stack, location_type, rhs_number_type, semantic_stack)
9171 (semantic_type, state_stack, state_type, token_number_type, stack)
9172 (slice, traits, parser::yylloc, parser::yylval): these.
9174 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
9176 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
9178 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
9179 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
9181 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
9183 Remove uses of 'short int' and 'unsigned short int'. This raises
9184 some arbitrary limits. It uses more memory but nowadays that's
9185 not much of an issue.
9187 This change does not affect the generated parsers; that's a different
9188 task, as some users will want to conserve memory there.
9190 Ideally we should use size_t to represent all object counts, and
9191 something like ptrdiff_t to represent signed differences of object
9192 counts; but that will require more code-cleanup than I have the
9193 time to do right now.
9195 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
9196 Use size_t, not int or short int, to count objects.
9197 * src/closure.c (nritemset, closure): Likewise.
9198 * src/closure.h (nritemset, closure): Likewise.
9199 * src/nullable.c (nullable_compute): Likewise.
9200 * src/print.c (print_core): Likewise.
9201 * src/print_graph.c (print_core): Likewise.
9202 * src/state.c (state_compare, state_hash): Likewise.
9203 * src/state.h (struct state): Likewise.
9204 * src/tables.c (default_goto, goto_actions): Likewise.
9206 * src/gram.h (rule_number, rule): Use int, not short int.
9207 * src/output.c (prepare_rules): Likewise.
9208 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
9209 errs, reductions): Likewise.
9210 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
9212 * src/tables.c (vector_number, tally, action_number,
9213 ACTION_NUMBER_MINIMUM): Likewise.
9214 * src/output.c (muscle_insert_short_int_table): Remove.
9216 2004-12-17 Akim Demaille <akim@epita.fr>
9218 * data/lalr1.cc: Extensive Doxygenation.
9219 (error_): Rename as...
9220 (error): this, since it is visible to the user.
9222 (Parser::message): Now an automatic variable from...
9223 (Parser::yyreport_syntax_error_): here.
9224 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
9226 * tests/input.at: Escape $.
9228 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
9230 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
9231 Parenthesize rhs to avoid obscure problems with mistakes like
9232 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
9233 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9234 b4_rhs_location): Likewise.
9235 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
9236 b4_rhs_location): Likewise.
9238 2004-12-16 Akim Demaille <akim@epita.fr>
9240 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
9241 yacc.c: be sure to stay within yycheck_.
9242 * tests/actions.at: Re-enable C++ tests.
9244 2004-12-16 Akim Demaille <akim@epita.fr>
9246 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
9249 2004-12-16 Akim Demaille <akim@epita.fr>
9251 Use #define to handle the %name-prefix.
9253 * data/glr.c, data/yacc.c: Comment changes.
9254 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
9255 so that one can refer to yylex in the parser file, and have it
9256 renamed, as is the case with other skeletons.
9258 2004-12-16 Akim Demaille <akim@epita.fr>
9260 Move lalr1.cc internals into yy*.
9262 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
9263 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
9264 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
9265 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
9266 (empty_, final_, terror_, errcode_, ntokens_)
9267 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
9268 (looka_, ilooka_, error_range_, nerrs_):
9270 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
9271 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
9272 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
9273 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
9274 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
9275 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
9276 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
9277 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
9280 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
9282 Fix some problems reported by twlevo at xs4all.
9283 * src/symtab.c (symbol_new): Report an error if the input grammar
9284 contains too many symbols. This is better than calling abort() later.
9285 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
9286 (struct node, struct graph):
9287 Rename member expand to stretch. All uses changed.
9288 (struct graph): Remove member layoutalgorithm. All uses removed.
9289 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
9290 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
9292 (N_STRETCH): Rename from N_EXPAND. All uses changed.
9294 2004-12-15 Akim Demaille <akim@epita.fr>
9296 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
9297 Add more Doxygen comments.
9298 (symprint_, stack_print_, reduce_print_, destruct_, pop)
9299 (report_syntax_error_, translate_): Rename as...
9300 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
9301 (yypop_, yyreport_syntax_error_, yytranslate_): this.
9303 2004-12-15 Akim Demaille <akim@epita.fr>
9305 * data/lalr1.cc (lex_): Rename as...
9307 Move the trace here.
9308 Take the %name-prefix into account.
9309 Reported by Alexandre Duret-Lutz.
9311 2004-12-15 Akim Demaille <akim@epita.fr>
9313 Simplify the C++ parser constructor.
9315 * data/lalr1.cc (debug_): Rename as...
9316 (yydebug_): so that the parser's internals are always in the yy*
9319 (b4_parse_param_decl): Remove the leading comma as it is now only
9320 called as unique argument list.
9321 (Parser::Parser): Remove the constructor accepting a location and
9322 an initial debugging level.
9323 Remove from the other ctor the argument for the debugging level.
9324 (debug_level_type, debug_level, set_debug_level): New.
9326 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
9329 2004-12-15 Akim Demaille <akim@epita.fr>
9331 Remove b4_root related material: failure experiment
9332 (which goal was to allow to derive from a class).
9334 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
9335 definitions and uses.
9337 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
9339 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
9340 not 2, since it's not portable to subtract 1 from the start of an
9341 array. The new item 0 is never set or used. All uses changed.
9343 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
9344 the default definition of YYLLOC_DEFAULT. Problem reported
9345 by Frank Heckenbach.
9347 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
9349 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
9350 the normal case and one for the error case. Just use the
9351 first one uniformly. Problem reported by Frank Heckenbach.
9352 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
9353 use exactly the same macro in both places.
9354 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
9355 so that the normal-case YYRHSLOC works for the error case too.
9357 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
9358 (YYLLOC_DEFAULT): Use the same macro as glr.c.
9359 * doc/bison.texinfo (Location Default Action): Don't claim that
9360 we have an array of locations. Use the same macro for both glr
9361 and lalr parsers. Mention YYRHSLOC. Mention what happens when
9364 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9366 * HACKING: Update email addresses to send announcements to.
9368 * configure.ac (AC_INIT): Bump version to 1.875f.
9370 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
9372 * NEWS: Version 1.875e.
9373 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
9375 * src/scan-skel.l: Include "complain.h", for "fatal".
9377 * src/relation.h (relation_print, relation_digraph):
9378 Relation sizes are of type relation_node, not size_t (this is
9379 merely a doc fix, since the two types are equivalent).
9380 (relation_transpose): Relation sizes are of type relation_node,
9382 * src/relation.c: Likewise.
9383 (top, infinity): Now of type relation_node, not int.
9384 (traverse, relation_transpose): Use relation_node, not int.
9386 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
9387 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
9388 (yyparse): Remove unused local introduced in 2004-10-25 patch.
9390 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
9391 specifying whether the test should be skipped. Use it tp
9392 specify that the [%defines %skeleton "lalr1.cc"] tests currently
9393 fail on some hosts, and should be skipped.
9395 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
9397 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
9398 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
9399 unless otherwise specified below.
9401 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
9402 to allocate kernel_base, kernel_items, kernel_size, since
9403 they needn't be initialized to 0.
9404 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
9405 * src/closure.c (new_closure): Likewise, for itemset.
9406 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
9407 * src/lalr.c (set_goto_map): Likewise, for temp_map.
9408 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
9409 (build_relations): Likewise for edge, states1, includes.
9410 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
9411 * src/reader.c (packgram): Likewise, for ritem, rules.
9412 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
9413 * src/relation.c (relation_digraph): Likewise for VERTICES.
9414 (relation_transpose): Likewise for new_R, end_R.
9415 * src/symtab.c (symbols_token_translations_init): Likewise for
9417 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
9418 (token_actions): Likewise for yydefact, actrow, conflrow,
9420 (save_column): Likewise for froms[symno], tos[symno].
9421 (goto_actions): Likewise for state_count.
9422 (pack_table): Likewise for base, pos, check.
9423 (tables_generate): Likewise for width.
9425 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
9426 for initial core. Just have a separate core, so we needn't worry
9427 about whether kernel_size and kernel_base are initialized.
9429 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
9430 kernel_size, kernel_items): Remove unnecessary initialization.
9431 * src/conflicts.c (conflicts): Likewise.
9432 * src/derives.c (derives): Likewise.
9433 * src/muscle_tablc (muscle_insert): Likewise.
9434 * src/relation.c (relation_digraph): Likewise.
9435 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
9436 conflrow, conflict_table, conflict_list, table, check):
9439 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
9440 This is because all callers pass unsigned int.
9441 * src/closure.h (new_closure): Likewise.
9443 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
9444 (build_relations): Initialize includes[i] in all cases.
9445 * src/reader.c (packgram): Always initialize rules[ruleno].prec
9446 and rules[ruleno].precsym. Initialize members in order.
9447 * src/relation.c (relation_transpose): Always initialize new_R[i]
9449 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
9451 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
9452 conflict_list[0] was always 0, but now it isn't initialized.
9454 * src/table.c (table_grow): When conflict_table grew, the grown
9455 area wasn't cleared. Fix this.
9457 * lib/.cvsignore: Add strdup.c, strdup.h.
9458 * m4/.cvsignore: Add strdup.m4.
9460 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
9462 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
9463 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
9464 GOTO_NUMBER_MAXIMUM, since we occasionally compute
9465 ngotos + 1 without checking for overflow.
9466 (build_relations): Use END_NODE, not -1, to denote end of edges.
9467 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
9468 build_relations): Use goto_number, not int, for goto numbers.
9469 * src/tables.c (save_column, default_goto): Likewise.
9471 2004-11-23 Akim Demaille <akim@epita.fr>
9473 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
9474 of #defining from yystype.
9475 Don't typedef yystype, C++ does not need it.
9476 This lets it possible to forward declare it as union.
9478 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
9480 * bootstrap (gnulib_modules): Add extensions.
9481 Problem reported by Jim Meyering.
9483 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
9485 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
9486 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
9487 src/system.h, src/tables.c: XFREE -> free, to accommodate
9488 recent change to gnulib xalloc.h.
9489 Problem reported by Jim Meyering.
9491 2004-11-17 Akim Demaille <akim@epita.fr>
9493 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
9495 2004-11-17 Akim Demaille <akim@epita.fr>,
9496 Alexandre Duret-Lutz <adl@gnu.org>
9498 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
9501 Use it instead of cdebug_.
9502 (Parser::debug_stream, Parser::set_debug_stream): New.
9503 (Parser::symprint_): Define cdebug_ for temporary backward
9505 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
9508 2004-11-17 Akim Demaille <akim@epita.fr>
9510 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
9511 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
9512 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
9513 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
9515 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
9517 * data/glr.c (yyloc_default): Remove; not used.
9518 Problem reported by Frank Heckenbach.
9520 2004-10-25 Akim Demaille <akim@epita.fr>
9522 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
9523 Introduce another definition to address simple location arrays.
9524 (yyGLRStack): New member: yyerror_range.
9525 (yyrecoverSyntaxError, yyparse): Update it.
9526 (yyrecoverSyntaxError): Use it when shifting the error token to
9527 have an accurate range, equivalent to the one computed by both
9528 yacc.c and lalr1.cc.
9529 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
9530 that column numbers start at column 0, as per GNU Coding
9531 Standards, the others tests, and the doc.
9532 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
9533 Adjust to the above change (first column is 0).
9534 And adjust the location of the "<error>", now covering the whole
9537 2004-10-22 Akim Demaille <akim@epita.fr>
9538 and Paul Eggert <eggert@cs.ucla.edu>
9540 Remove some arbitrary limits on goto numbers and relations.
9541 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
9542 initial values, since they're never used.
9543 (set_goto_map): ngotos is now unsigned, so test for overflow
9544 by seeing whether it wraps around to zero.
9545 * src/lalr.h (goto_number): Now size_t, not short int.
9546 (GOTO_NUMBER_MAXIMUM): Remove.
9547 * src/relation.c (relation_print, traverse, relation_transpose):
9548 Check for END_NODE rather than looking at sign.
9549 * src/relation.h (END_NODE): New macro.
9550 (relation_node): Now size_t, not short int.
9552 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
9554 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
9555 keyword, not an identifier. Problem reported by Baron Schwartz in
9556 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
9558 2004-10-11 Akim Demaille <akim@epita.fr>
9560 * src/symtab.c (symbol_check_alias_consistency): Also check
9561 type names, destructors, and printers.
9562 Reported by Alexandre Duret-Lutz.
9563 Recode the handling of associativity and precedence in terms
9564 of symbol_precedence_set.
9565 Accept no redeclaration at all, not even equal to the previous
9567 (redeclaration): New.
9568 Use it to factor redeclaration complaints.
9569 (symbol_make_alias): Don't set the type of the alias, let
9570 symbol_check_alias_consistency do it as for other features.
9571 * src/symtab.h (symbol): Add new member prec_location, and
9573 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
9574 * tests/input.at (Incompatible Aliases): New.
9576 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
9578 .cvsignore fixes to accommodate gnulib changes,
9579 and the practice of naming build directories "_build".
9580 * .cvsignore: Add "_*". Sort.
9581 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
9582 * m4/.cvsignore: Add "*_gl.m4".
9584 2004-10-06 Akim Demaille <akim@epita.fr>
9586 * src/parse-gram.y (add_param): Fix the truncation of trailing
9589 2004-10-05 Akim Demaille <akim@epita.fr>
9591 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
9592 whether the reducion was empty or not. This leaves room to
9593 improve the use of YYLLOC_DEFAULT in such a case.
9594 lalr1.cc is still experimental, so changing this is acceptable.
9595 And finally, there are probably not many users who changed the
9596 handling of locations in GLR, so changing is admissible too.
9598 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
9599 empty reduction, set @$ to an empty location ending the previously
9601 Adjust uses to make sure the code is triggered on empty
9603 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
9604 expected output: empty reductions have empty locations.
9606 2004-09-29 Akim Demaille <akim@epita.fr>
9608 * data/lalr1.cc: Move towards a more standard C++ coding style
9609 for templates: Class < T > -> Class<T>.
9611 2004-09-29 Akim Demaille <akim@epita.fr>
9613 * data/lalr1.cc: Reinstall the former ctor, for sake of
9614 compatibility, but warn it will be removed.
9615 Move towards a more standard C++ coding style (i.e., type *var ->
9618 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
9620 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
9621 since it's less likely to work if NULs are involved in the future.
9623 2004-09-27 Akim Demaille <akim@epita.fr>
9625 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
9627 2004-09-27 Akim Demaille <akim@epita.fr>
9629 * data/lalr1.cc (b4_parse_param_decl_1): New.
9630 (b4_parse_param_decl): Use it to have different names between attribute
9632 (b4_cc_constructor_call): Likewise.
9634 2004-09-24 Akim Demaille <akim@epita.fr>
9636 * src/parse-gram.y (add_param): Strip the leading and trailing
9637 blanks from a formal argument declaration.
9638 (YY_LOCATION_PRINT): New.
9640 2004-09-24 Akim Demaille <akim@epita.fr>
9642 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
9645 2004-09-24 Akim Demaille <akim@epita.fr>
9647 * doc/bison.texinfo (Table of Symbols): Sort.
9649 2004-09-21 Akim Demaille <akim@epita.fr>
9651 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
9652 the useless parentheses.
9653 Suggested by Paul Eggert.
9655 2004-09-20 Akim Demaille <akim@epita.fr>
9657 Let the initial-action act on the look-ahead, and use it for the
9658 "initial push" (corresponding to an hypothetical beginning-of-file).
9659 And let lalr1.cc honor %initial-action.
9661 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
9663 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
9664 (Parser::Parser): Remove the ctor that used to initialize it.
9665 (Parser::parse): Like in the other skeletons, issue the "starting
9666 parse" message before any action.
9667 Honor %initial-action.
9668 Initialize the stacks with the lookahead.
9669 * data/yacc.c: Let $$ and @$ in %initial-action designate the
9671 Push them in the stacks.
9672 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
9674 2004-09-20 Akim Demaille <akim@epita.fr>
9676 * doc/bison.texinfo (Initial Action Decl): New.
9678 2004-09-20 Akim Demaille <akim@epita.fr>
9680 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
9681 clearer criterion to define it.
9682 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
9683 When reducing on an empty RHS, use the latest stacked location as
9685 yylloc is not always available.
9686 * data/glr.c: Likewise.
9687 Also, honor initial-actions.
9689 2004-09-20 Akim Demaille <akim@epita.fr>
9691 * data/yacc.c (YY_LOCATION_PRINT): New.
9692 Define when we know YYLTYPE's structure, i.e., when the default
9693 YYLLOC_DEFAULT is used.
9694 * data/c.m4 (b4_yysymprint_generate): Use it.
9695 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
9696 value of the result.
9697 (error_start_): Replace with...
9698 (error_range_): this location array.
9699 This allows to replace code relying on the implementation of
9700 locations by portable code.
9701 * data/yacc.c (yylerrsp): Replace with...
9702 (yyerror_range): this.
9703 Every time a token is popped, update yyerror_range[0], to have an
9704 accurate location for the error token.
9705 * data/glr.c (YY_LOCATION_PRINT): New.
9706 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
9707 deference a pointer.
9708 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
9709 report the location in %printers.
9711 * src/scan-skel.l: Instead of abort, report error messages to ease
9712 understanding skeleton scanning failures.
9714 2004-09-16 Akim Demaille <akim@epita.fr>
9716 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
9717 (iterator, const_iterator): these, to be more in the C++ spirit.
9718 Also, return reverse iterators so that when displaying the stack
9719 we display its bottom first.
9720 (Parser::stack_print_, Parser::reduce_print_): Match the messages
9722 We should probably use vector here though.
9724 2004-09-16 Akim Demaille <akim@epita.fr>
9726 Have more complete shift traces.
9728 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
9729 to report Shifts instead of ad hoc YYDPRINTF invocations,
9730 including for the error token.
9731 * data/lalr1.cc (symprint_): Output the location.
9732 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
9733 output the location within the %printer.
9734 Activate GLR tests, at least to make sure they compile properly.
9735 They still don't pass though.
9736 * tests/calc.at: Adjust expect verbose output, since now "Entering
9737 state..." is on a different line than the "Shifting" message.
9739 2004-09-08 Akim Demaille <akim@epita.fr>
9741 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
9742 Bison directive from the Bison file to the invocation of this
9743 macro, so that these directives are passed to
9744 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
9745 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
9746 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
9747 the extra Bison directives instead of the whole series.
9748 Change the grammar so that there are recoverable errors, and
9749 unrecoverable errors. Now we can have the parser give up before
9750 consuming the whole input. As a result we now can observe that
9751 the lookahead is freed when needed.
9752 Change the parser source to parse argv[1] instead of a hard coded
9754 Simplify yylex, and give a value and location to EOF.
9755 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
9756 passed directives already coded in the file.
9757 Add some tests to check the location of "error".
9758 For some tests, the C++ parser is correct, and not yacc.c.
9759 For other tests, they provide different, but unsatisfying, values,
9760 so keep the C++ value so that at least one parser is "correct"
9761 according to the test suite.
9762 (Actions after errors): Remove, this is subsumed by the
9763 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
9765 2004-09-06 Akim Demaille <akim@epita.fr>
9767 * data/lalr1.cc: Adjust the indentation of the labels.
9771 2004-09-06 Akim Demaille <akim@epita.fr>
9773 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
9774 argument, an informative message.
9775 Call YY_SYMBOL_PRINT.
9776 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
9777 * data/lalr1.cc (destruct_): Likewise.
9778 In addition, no longer depend on b4_yysymprint_generate and
9779 b4_yydestruct_generate to generate these functions, do it "by
9782 2004-09-03 Akim Demaille <akim@epita.fr>
9784 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
9785 invoked, yydestruct the lookahead.
9786 * tests/calc.at (Calculator $1): Update the expected lengths of
9787 traces: there is an added line for the discarded lookahead.
9788 * doc/bison.texinfo (Destructor Decl): Some rewording.
9789 Define "discarded" symbols.
9791 2004-09-02 Akim Demaille <akim@epita.fr>
9793 * data/lalr1.cc (translate_, destruct_): No reason to be static.
9795 2004-09-02 Akim Demaille <akim@epita.fr>
9797 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
9798 (YYDSYMPRINTF): Rename as...
9799 (YY_SYMBOL_PRINT): this.
9800 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
9802 Use it instead of direct symprint_ calls.
9803 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
9806 2004-09-02 Akim Demaille <akim@epita.fr>
9808 * data/lalr1.cc (b4_yysymprint_generate): New.
9809 (symprint_): New member function, defined when YYDEBUG.
9810 Use it consistently instead of token/nterm debugging output by
9812 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
9813 %printer calls to use cdebug_ when using lalr1.cc.
9815 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
9817 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
9818 with #ifdef YYDEBUG.
9820 2004-08-26 Akim Demaille <akim@epita.fr>
9822 * doc/bison.texinfo (Implementing Loops): Rename as...
9823 (Implementing Gotos/Loops): this.
9825 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
9827 Adjust to latest gnulib.
9828 * bootstrap (gnulib_modules): Add xalloc-die.
9829 Set LC_ALL=C so that file names sort consistently.
9830 Prefer the gnulib copies of gettext.m4, glibc21.m4,
9831 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
9832 uintmax_t.m4, ulonglong.m4.
9833 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
9834 po.m4 since we are now using _gl.m4 instead.
9836 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
9838 * src/scan-action.l: Remove. Scanning of semantic actions is
9839 handled in scan-gram.l.
9841 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
9843 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
9845 * src/location.h (struct): The file member is a uniqstr.
9846 (equal_boundaries): Use UNIQSTR_EQ for comparison.
9848 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
9850 Fix bug with non-%union parsers that have printers or destructors,
9851 which led to a Bison core dump. Reported by Peter Fales in
9852 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
9854 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
9855 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
9856 not to our own type.
9857 * src/output.c (symbol_destructors_output, symbol_printers_output):
9858 Don't assume %union.
9859 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
9860 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
9861 UNION-FLAG. All callers changed.
9862 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
9863 Use type char, not unsigned int, when declaring an array of char;
9864 this lets us remove a cast.
9865 (Printers and Destructors): Add non-%union test cases.
9867 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9869 * doc/bison.texinfo: Minor editorial changes, mostly to the new
9870 GLR writeups. E.g., avoid frenchspacing and the future tense,
9871 change "lookahead" to "look-ahead", and change "wrt" to "with
9874 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
9876 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
9877 New sections, split off from the GLR Parsers section. Put the new
9878 Simple GLR Parser near the start of the GLR section, for clarity.
9879 Rewrite connective text.
9881 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
9883 * doc/bison.texinfo (Simple GLR Parsers): New section.
9885 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
9887 * NEWS, TODO, doc/bison.texinfo:
9888 Use "look-ahead" instead of "lookahead", to be consistent.
9889 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
9890 while we're fixing "look-ahead".
9891 * src/conflicts.c (shift_set): Renamed from shiftset.
9892 (look_ahead_set): Renamed from lookaheadset.
9893 * src/print.c: Likewise.
9894 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
9895 name for "lookahead".
9896 (report_types, usage): Likewise.
9897 * src/getargs.h (report_look_ahead_tokens): Renamed from
9899 * src/lalr.c (compute_look_ahead_tokens): Renamed from
9901 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
9902 (look_ahead_tokens_print): Renamed from lookaheads_print.
9903 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
9904 state_rule_lookaheads_print.
9905 * src/state.h: Likewise.
9906 (reductions.look_ahead_tokens): Renamed from lookaheads.
9907 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
9908 AT_DATA_LOOKAHEADS_GRAMMAR.
9910 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
9912 * README: Update location of patched M4 distribution.
9914 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
9916 Don't assume the C++ compiler takes the same arguments as the C compiler
9918 * configure.ac (O0CXXFLAGS): New var.
9919 * tests/atlocal.in (CXXFLAGS): Use it.
9921 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
9923 Fix some "make check" problems with C++ reported by
9924 Albert Chin-A-Young for Tru64 C++ in this thread:
9925 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
9927 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
9928 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
9929 Output to a .cc file for C++, not to a .c file.
9930 * tests/calc.at (AT_CHECK_CALC): Likewise.
9931 * tests/regression.at (AT_CHECK_DANCER): Likewise.
9932 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
9934 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
9936 * tests/calc.at, tests/actions.at: Workaround for SGI
9937 C++ compiler. (trivial change)
9939 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
9941 Spent a few hours checking out which prerequisite versions the
9942 current sources actually require. I went all the way back to
9943 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
9944 a seemingly endless set of combinations of versions more recent
9945 than that. The bottom line is that the current sources require
9946 fairly recent versions of the build tools, and it'll be some work
9948 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
9949 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
9950 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
9951 Add comments explaining why those particular versions are
9954 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
9955 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
9956 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
9958 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
9959 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
9961 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
9963 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
9964 0.11.5. Suggested by Bruno Haible.
9965 * bootstrap: Remove gettext version checking.
9967 * doc/bison.texinfo (Decl Summary): Also mention that %union
9968 can depend on prerequisite types. Problem reported by Tim
9971 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
9973 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
9974 * README-alpha: Don't tell people not to package this.
9976 * bootstrap: Don't assume $(...) works; use `...` instead.
9977 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
9980 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
9981 put into the -d output file, and mention what to do if YYSTYPE is
9984 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
9986 Undo change made earlier today: it caused autopoint to not bring
9987 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
9990 * bootstrap: Check that gettext version matches what's in
9991 configure.ac. Warn users to ignore robots.txt ERROR 404.
9992 * bootstrap: Undo today's earlier change (logged below).
9993 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
9995 The gettext version checking is causing more trouble than it's
9996 curing; remove it. Problem reported by Paul Hilfinger.
9998 * bootstrap: Issue a warning that one can expect a message
9999 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
10000 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
10002 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
10004 Ensure that the C++ compiler used for testing actually works on a
10005 simple test program; if not, skip the C++-related tests. Problem
10006 reported by Vin Shelton in:
10007 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
10009 * m4/cxx.m4: New file.
10010 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
10011 * tests/atlocal.in (BISON_CXX_WORKS): Add.
10012 * tests/local.at (AT_COMPILE_CXX): Use it.
10014 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10016 * data/glr.c (yylloc): Output this macro even if locations are not
10017 being generated, as the GLR parser needs it even in that case.
10018 Problem reported by Troy A. Johnson
10019 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
10021 * configure.ac (AC_INIT): Update to 1.875e.
10023 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
10025 * NEWS: Version 1.875d.
10026 * configure.ac (AC_INIT): Likewise.
10027 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
10029 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
10030 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
10031 lalr1.cc runs afoul of the first, and the last two are no longer
10032 supported by GCC 3.4.0.
10033 * README: Mention GNU m4 1.4 or later; mention m4 patches.
10034 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
10036 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
10038 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
10039 unsigned int, for compatibility with latest gnulib hash module.
10040 * src/state.c (state_hash, state_hasher): Likewise.
10041 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
10042 * src/uniqstr.c (hash_uniqstr): Likewise.
10044 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
10046 * NEWS: Unescaped newlines are no longer allowed in char & strings.
10048 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
10049 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
10050 character and string literals.
10051 (unexpected_end): New function.
10052 (unexpected_eof): Use it.
10053 (unexpected_newline): New function.
10054 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
10057 * NEWS: Document %expect-rr.
10059 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
10060 Fix typo by replacing $1 with $option.
10061 Remove more 'intl'-related files.
10062 Don't DEFUN AM_INTL_SUBDIR twice.
10064 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
10065 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
10067 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
10068 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
10069 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
10070 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
10071 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
10072 * src/.cvsignore: Add *.output.
10074 * src/parse-gram.y: Put copyright notice inside %{ %} so it
10075 gets copied to the output file.
10077 2004-04-28 Paul Eggert <eggert@twinsun.com>
10079 Get files from the gnulib and po repositories, instead of relying
10080 on them being in our CVS. Upgrade to latest versions of gnulib
10083 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
10084 * bootstrap: Bootstrap from gnulib and po repositories.
10085 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
10086 * README-cvs: Document these changes. Remove version numbers from
10087 mentions of build tools, since they change so often. Mention Flex.
10089 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
10090 (gl_USE_SYSTEM_EXTENSIONS): Add.
10091 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
10092 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
10094 (AC_ISC_POSIX): Remove; we no longer support this
10095 ancient OS, as it gets in the way of latest Autoconf & gnulib.
10096 (AC_HEADER_STDC): Remove: we now assume C89 or better.
10097 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
10098 Do not check for C89 headers, except for locale.h which is used
10099 by the Yacc library and must port to K&R hosts.
10100 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
10101 Do not check for C89 functions, except for setlocale which is
10102 used by the Yacc library.
10103 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
10104 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
10105 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
10106 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
10107 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
10108 AM_GNU_GETTEXT): Remove; now done by:
10109 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
10110 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
10113 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
10114 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
10115 Define to empty, as gnulib.mk will do the rest for us.
10116 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
10118 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
10119 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
10121 * src/files.c: Include gnulib's xstrndup.h.
10123 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
10124 (REALLOC): Use xnrealloc, for likewise.
10125 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
10126 (strnlen, memrchr): Remove decls; functions no longer used.
10127 Include <stpcpy.h>.
10129 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
10130 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
10131 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
10132 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
10133 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
10134 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
10135 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
10136 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
10137 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
10138 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
10139 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
10140 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
10141 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
10142 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
10143 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
10144 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
10145 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
10146 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
10147 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
10148 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
10149 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
10150 Remove, as these files are now generated automatically
10151 by bootstrap or automake.
10153 * po/ChangeLog: Remove: all but one entry was a duplicate
10154 of this file, and I moved that 2000-11-02 entry here.
10156 * config/.cvsignore: Add Makefile, depcomp, install-sh.
10157 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
10158 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
10159 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
10160 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
10161 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
10162 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
10163 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
10164 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
10165 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
10166 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
10168 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
10169 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
10170 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
10171 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
10172 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
10173 * src/.cvsignore: Remove *_.c.
10176 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
10177 support it. (The latest stable gzip doesn't.)
10179 2004-04-27 Paul Eggert <eggert@twinsun.com>
10181 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
10182 case, as stos_ is now used by destructors due to the 2004-02-09
10185 Remove more K&R C support.
10186 * lib/libiberty.y (PARAMS): Remove. All uses removed.
10187 * lib/subpipe.c (errno): Remove decl.
10188 Include <stdlib.h> unconditionally.
10189 (EXIT_FAILURE): Remove macro.
10190 * src/complain.c (vfprintf, strerror): Remove.
10191 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
10193 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
10194 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
10195 (strchr, strspn, memchr): Remove decls.
10196 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
10197 unconditionally. Do not declare perror.
10198 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
10201 * src/complain.c (_): Remove useless defn, as system.h defines this.
10203 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
10204 with latest obstack.h.
10205 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
10206 to procedure types, as obstack.h now does that for us.
10207 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
10209 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
10210 so that this include file can stand alone.
10211 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
10212 does this now. Include subpipe.h first after config.h, to
10213 test whether it can stand alone.
10215 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
10216 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
10217 unused declaration.
10219 * tests/synclines.at (%union synch line): Put a dummy member in
10220 the union, because empty unions aren't allowed in C. Caught
10223 2004-04-13 Jim Meyering <jim@meyering.net>
10225 * src/conflicts.c (conflicts_print): Correct format string typo:
10226 use `%%' to produce literal `%'. (trivial change)
10228 2004-03-30 Paul Eggert <eggert@twinsun.com>
10230 * src/getargs.c (version): Update copyright year to 2004.
10232 * data/c.m4 (b4_int_type): Use 'short int' rather than
10233 'short', and similarly for 'long', 'unsigned', etc.
10234 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
10235 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
10236 yy_yypstack, yydumpstack): Likewise.
10237 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
10238 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
10240 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
10241 yy_stack_print, yyparse): Likewise.
10242 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
10243 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
10244 * lib/bitset.c (bitset_print): Likewise.
10245 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
10246 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
10247 * lib/bitsetv.c (bitsetv_dump): Likewise.
10248 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
10249 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
10251 * src/LR0.c (allocate_itemsets): Likewise.
10252 * src/gram.h (rule_number, rule): Likewise.
10253 * src/lalr.h (goto_number): Likewise.
10254 * src/nullable.c (nullable_compute): Likewise.
10255 * src/output.c (prepare_rules): Likewise.
10256 * src/relation.c (relation_print, relation_digraph): Likewise.
10257 * src/relation.h (relation_node): Likewise.
10258 * src/state.h (state_number, transitions, errs, reductions,
10259 struct state): Likewise.
10260 * src/symtab.h (symbol_number, struct symbol): Likewise.
10261 * src/tables.c (vector_number, tally, action_number,
10262 default_goto, goto_actions): Likewise.
10263 * tests/existing.at (GNU Cim Grammar): Likewise.
10264 * tests/regression.at (Web2c Actions): Likewise.
10266 * src/output.c (muscle_insert_short_int_table): Renamed from
10267 muscle_insert_short_table. All uses changed.
10269 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10271 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
10272 (declaration): Replace expected_conflicts with expected_sr_conflicts.
10273 Add %expect-rr rule.
10275 * src/scan-gram.l: Recognize %expect-rr.
10277 * src/conflicts.h (expected_sr_conflicts): Rename from
10278 expected_conflicts.
10279 (expected_rr_conflicts): Declare.
10281 * src/conflicts.c (expected_sr_conflicts): Rename from
10282 expected_conflicts.
10283 (expected_rr_conflicts): Define.
10284 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
10286 Use expected_sr_conflicts in place of expected_conflicts.
10287 Warn if expected_rr_conflicts used in non-GLR parser.
10289 * doc/bison.texinfo: Add documentation for %expect-rr.
10291 2004-03-08 Paul Eggert <eggert@gnu.org>
10293 Add support for hex token numbers. Suggested by Odd Arild Olsen in
10294 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
10296 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
10298 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
10299 * src/scan-gram.l (scan_integer): New function.
10301 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
10302 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
10303 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
10304 Say "long int", not "long", for uniformity with GNU style.
10306 2004-02-25 Paul Eggert <eggert@twinsun.com>
10308 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
10309 compilers. This fixes a problem with Intel's C++ compiler being
10310 chatty, reported by Guido Trentalancia in
10311 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
10313 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
10315 Support %destructor and merge error locations in lalr1.cc.
10317 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
10318 (Parser::stos_): Define unconditionally.
10319 (Parser::destruct_): New method. Generate its body with
10320 b4_yydestruct_generate.
10321 (Parser::error_start_): New attribute.
10322 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
10323 token which are discarded.
10324 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
10325 error_start_ when erroneous token are discarded.
10326 (Parser::parse) <yyerrlab1>: Compute the location of the error
10327 token so that it covers all the discarded tokens.
10328 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
10329 it can be called with `%skeleton "lalr1.cc"', and do that.
10331 2004-02-02 Paul Eggert <eggert@twinsun.com>
10333 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
10334 $(top_srcdir)/lib and ../lib. This fixes a bug reported
10335 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
10336 There's no need to mention top_builddir since Automake does that
10338 (INCLUDES): Remove, as Automake says it's obsolescent.
10339 Contents migrated into AM_CPPFLAGS as described above.
10340 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
10342 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10344 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
10345 (yyreportSyntaxError): Handle case where lookahead token is
10348 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10350 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
10351 resulting parsers are compilable with C++.
10353 2003-12-23 Paul Eggert <eggert@twinsun.com>
10355 * config/depcomp, config/install-sh: Sync with Automake 1.8.
10356 * src/output.c (output_skeleton): Rename local var.
10357 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
10358 Bison tokens, as this runs afoul of the 2003-10-07 change that
10359 disallowed NUL bytes in character constants or string literals.
10361 * tests/local.at: Require Autoconf 2.59's Autotest.
10362 * tests/testsuite.at: Don't include local.at, since we now assume
10363 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
10365 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
10366 multiple inclusion warnings.
10368 2003-12-02 Akim Demaille <akim@epita.fr>
10370 * doc/bison.texinfo (How Can I Reset the Parser): More about start
10374 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
10376 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
10378 2003-10-07 Paul Eggert <eggert@twinsun.com>
10380 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
10381 if testsuite doesn't exist.
10383 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
10384 literals, unfortunately.
10385 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
10386 Complain about NUL bytes in character constants or string literals.
10388 2003-10-05 Paul Eggert <eggert@twinsun.com>
10390 * NEWS: Don't document %no-default-prec, as it's still
10392 * doc/bison.texinfo: Document %no-default-prec only if
10393 the defaultprec flag is set. Normally it's not.
10395 2003-10-04 Paul Eggert <eggert@twinsun.com>
10397 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
10398 non-modifiable lvalue, instead of a modifiable one.
10399 * doc/bison.texinfo (Actions): Document that $$ can
10400 be assigned to. Do not claim that $$ and $N are
10401 array element references: user code should not rely on this.
10403 2003-10-01 Paul Eggert <eggert@twinsun.com>
10405 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
10406 (grammar_declaration): Use it.
10407 * src/scan-gram.l: New token %no-default-prec.
10408 * tests/conflicts.at: Revamp tests to use %no-default-prec.
10409 * NEWS, doc/bison.texinfo: Document the above.
10411 2003-10-01 Akim Demaille <akim@epita.fr>
10413 VCG no longer supports long_straight_phase.
10415 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
10416 * src/print_graph.c (print_graph): Adjust.
10418 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
10419 and Paul Eggert <eggert@twinsun.com>
10421 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
10422 Table of Symbols): Document %default-prec.
10423 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
10424 (grammar_declaration): Set default_prec on %default-prec.
10425 * src/scan-gram.l (%default-prec): New token.
10426 * src/reader.h (default_prec): New flag.
10427 * src/reader.c: Likewise.
10428 (packgram): Handle it.
10429 * tests/conflicts.at (%default-prec without %prec,
10430 %default-prec with %prec, %default-prec 1): New tests.
10432 2003-09-30 Paul Eggert <eggert@twinsun.com>
10434 * tests/testsuite.at: Include local.at, not input.at, fixing
10435 a typo in the 2003-08-25 patch.
10437 2003-08-27 Akim Demaille <akim@epita.fr>
10439 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
10442 2003-08-26 Akim Demaille <akim@epita.fr>
10444 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
10445 "<\#" to avoid magic from Gnus when posting parts of this script.
10447 2003-08-26 Akim Demaille <akim@epita.fr>
10449 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
10450 (Parser::parse): here.
10451 Adjust: nerrs and errstatus is now replaced by...
10452 (Parser::nerrs_, Parser::errstatus_): New.
10454 2003-08-25 Akim Demaille <akim@epita.fr>
10456 * config/announce-gen, Makefile.cfg: New.
10457 * Makefile.am: Adjust.
10458 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
10459 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
10461 2003-08-25 Akim Demaille <akim@epita.fr>
10463 When reducing initial empty rules, Bison parser read an initial
10464 location that is not defined. This results in garbage, and that
10465 affects Bison's own parser. Therefore we need (i) to extend Bison
10466 to support a means to initialize this location, and (ii) to use
10467 this CVS Bison to fix CVS Bison's parser.
10469 * src/reader.h, reader.c (epilogue_augment): Remove, replace
10471 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
10472 * src/parse-gram.y: Adjust.
10473 (%initial-action): New.
10474 (%error-verbose): Since we require CVS Bison, there is no reason
10476 * src/scan-gram.l: Adjust.
10477 * src/Makefile.am (YACC): New, to make sure we use our own parser.
10478 * data/yacc.c (yyparse): Use b4_initial_action.
10480 2003-08-25 Akim Demaille <akim@epita.fr>
10482 * doc/bison.texinfo: Don't promote stdout for error messages.
10484 2003-08-25 Akim Demaille <akim@epita.fr>
10486 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
10487 From Alexandre Duret-Lutz.
10489 2003-08-25 Akim Demaille <akim@epita.fr>
10493 2003-08-25 Akim Demaille <akim@epita.fr>
10495 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
10498 2003-08-25 Akim Demaille <akim@epita.fr>
10500 * data/lalr1.cc (Parser::reduce_print_): New.
10503 2003-08-25 Akim Demaille <akim@epita.fr>
10505 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
10506 error recovery loops. This patch is based on
10507 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
10508 Also, augment the similarity between lalr1.cc and yacc.c.
10509 Note: the locations of error recovery rules are not correct yet.
10511 * data/lalr1.cc: Comment changes to augment the similarity between
10512 lalr1.cc and yacc.c.
10513 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
10514 (yyerrlab1): Remove, but where it used to be (now the bottom part of
10515 yyerrlab), when hitting EOF, pop the whole stack here instead of
10516 merely falling thru the default error handling mechanism.
10517 (yyerrorlab): New label, with the old contents of YYERROR,
10518 plus the following change: pop the stack of rhs corresponding
10519 to the production that invoked YYERROR. That is how Yacc
10520 behaves (required by POSIX).
10521 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
10524 2003-08-25 Akim Demaille <akim@epita.fr>
10526 Tune local.at so that people can "autom4te -l autotest calc.at -o
10527 calc" for instance, to extract a sub test suite.
10529 * tests/testsuite.at: Move the initialization, Autotest version
10530 requirement, and AT_TESTED invocation into...
10531 * tests/local.at: here.
10532 * tests/testsuite.at: Include it for compatibility with Autoconf
10534 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
10537 2003-08-04 Paul Eggert <eggert@twinsun.com>
10539 Rework code slightly to avoid gcc -Wtraditional warnings.
10540 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
10541 The returned value is now stored in *YY0. All callers changed.
10542 * src/output.c (merge_output): Adjust to the above change.
10544 2003-07-26 Paul Eggert <eggert@twinsun.com>
10546 * data/glr.c (YYASSERT): New macro.
10547 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
10548 yyresolveStates, yyprocessOneStack):
10549 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
10550 Derived from a suggestion by Frank Heckenbach.
10552 2003-07-25 Paul Eggert <eggert@twinsun.com>
10554 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
10555 for portability to K&R C (after ansi2knr, presumably). See
10556 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
10557 by Frank Heckenbach, though I have omitted the structure-initialization
10558 part of his glr-knr.diff patch since I recall that the Portable
10559 C Compiler didn't require that change.
10561 Let the user specify how to allocate and free memory.
10562 Derived from a suggestion by Frank Heckenbach in
10563 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
10564 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
10565 All uses of free, malloc, realloc changed to use these macros,
10566 and unnecessary casts removed.
10567 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
10569 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
10571 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
10572 use s.empty() rather than s == "" to test for empty string; see
10573 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
10576 2003-06-25 Akim Demaille <akim@epita.fr>
10578 * config/depcomp, config/install-sh: Update from masters.
10580 2003-06-20 Paul Eggert <eggert@twinsun.com>
10582 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
10583 and return properly parenthesized result.
10584 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
10585 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
10586 Remove unnecessary parentheses from uses.
10587 * doc/bison.texinfo (Location Default Action): Describe the
10588 conventions for parentheses.
10590 2003-06-19 Paul Eggert <eggert@twinsun.com>
10592 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
10593 yyreportTree): Do not assume that size_t is the same width as int,
10594 when printing sizes. Print sizes using an unsigned format.
10595 Problem reported by Frank Heckenbach in
10596 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
10598 Port to Forte Developer 7 C compiler.
10599 * data/glr.c (struct YYLTYPE): If locations are not being used,
10600 declare a single dummy member, as empty structs do not conform
10602 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
10603 the Forte Developer 7 C compiler complains that end-of-loop
10604 code is not reached.
10606 2003-06-17 Paul Eggert <eggert@twinsun.com>
10608 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
10609 avoid warnings from picky compilers about redefinition of PARAMS.
10611 2003-06-17 Paul Eggert <eggert@twinsun.com>
10615 * NEWS: Document 1.875b.
10617 * lib/bbitset.h: Do not include config.h; that's the includer's job.
10618 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
10619 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
10620 Don't use 'index' in comments, as it's a builtin fn on some hosts.
10621 * lib/bitset_stats.c: Include gettext.h unconditionally, as
10622 per recent gettext manual's suggestion.
10623 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
10624 Use prototypes, not old-style definitions.
10625 * lib/lbitset.c (lbitset_unused_clear): Likewise.
10626 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
10627 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
10628 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
10629 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
10630 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
10631 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
10632 vbitset_or_and_cmp, vbitset_copy): Likewise.
10634 * lib/libiberty.h: Do not include config.h; that's the includer's job.
10635 Do not include <stdlib.h>.
10636 (PARAMS): Define unconditionally for C89.
10637 (ATTRIBUTE_NORETURN): Remove.
10638 (ATTRIBUTE_UNUSED): Define unconditionally.
10640 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
10641 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
10642 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
10643 * lib/vbitset.c, lib/vbitset.h: New files.
10644 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
10645 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
10648 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
10649 `How Can I Reset @code{yyparse}', since texinfo does not allow
10650 arbitrary @ in node names.
10652 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
10653 shouldn't be needed according to the gettext 0.12.1 documentation
10654 but which seem to be needed anyway: codeset.m4 glibc21.m4
10655 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
10656 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
10657 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
10659 * lib/.cvsignore: Add stdbool.h.
10660 * m4/.cvsignore: Add nls.m4, po.m4.
10662 Upgrade to CVS gnulib.
10663 * stdbool_.h: File renamed from stdbool.h.in.
10664 * configure.ac (AM_STDBOOL_H): Invoke this instead of
10666 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
10667 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
10668 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
10669 (MOSTLYCLEANFILES): New var.
10670 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
10671 (stdbool.h): New rule.
10672 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
10673 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
10674 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
10675 m4/quote.m4: Upgrade to today's gnulib.
10677 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
10678 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
10679 the tests right now.
10680 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
10681 yyerror are declared before use; C99 requires this.
10683 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
10685 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
10687 (yyrecoverSyntaxError): Correct the logic for setting and testing
10689 Correct comment on handling EOF.
10690 Allow states with only a default reduction, rather than failing
10691 (I can't quite reconstruct why these were not allowed before).
10693 Fixes to avoid problem that $-N rules in GLR parsers can cause
10694 buffer overruns, corrupting state.
10696 * src/output.c (prepare_rules): Output max_left_semantic_context
10698 * src/reader.h (max_left_semantic_context): New variable declaration.
10699 * src/scan-gram.l (max_left_semantic_context): Define.
10700 (handle_action_dollar): Update max_left_semantic_context.
10701 * data/glr.c (YYMAXLEFT): New definition.
10702 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
10703 (yyresolveAction): Ditto.
10705 Fixes to problems with location handling in GLR parsers reported by
10706 Frank Heckenbach (2003/06/05).
10708 * data/glr.c (YYLTYPE): Make trivial if locations not used.
10709 (YYRHSLOC): Add parentheses, and define only if locations used.
10710 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
10711 locations not used.
10712 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
10713 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
10715 * tests/cxx-type.at: Exercise location information; update tests
10716 to differentiate output with and without locations.
10717 Remove forward declarations of yylex and yyerror---caused errors
10718 because default YYLTYPE not yet defined.
10719 Change semantic actions to compute strings, rather than printing
10720 them directly (to test proper passing of semantics values). Change
10721 output to prefix notation and update test data and expected results.
10722 (yylex): Track locations.
10723 (stmtMerge): Return value rather than printing, and include arguments
10726 2003-06-03 Paul Eggert <eggert@twinsun.com>
10728 Avoid warnings generated by GCC 2.95.4 when Bison is
10729 configured with --enable-gcc-warnings.
10730 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
10731 yy::]b4_parser_class_name[::translate_,
10732 yy::Stack::operator[] (unsigned),
10733 yy::Stack::operator[] (unsigned) const,
10734 yy::Slice::operator[] (unsigned),
10735 yy::Slice::operator[] (unsigned) const):
10736 Rename local vars to avoid warnings.
10737 * tests/glr-regression.at (Improper handling of embedded actions
10738 and $-N in GLR parsers): Remove unused local variable from yylex.
10739 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
10740 (void) as arg when not pure, since we now assume C89 when building
10741 Bison. Pacify GCC by using parameter.
10743 2003-06-02 Paul Eggert <eggert@twinsun.com>
10745 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
10746 yy::Location::lines, yy::Location::columns): Rename arguments
10747 to avoid shadowing; this removes a warning generated by GCC 3.3.
10749 2003-06-01 Paul Eggert <eggert@twinsun.com>
10751 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
10752 to g++, as GCC 3.3 complains if you do it.
10753 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
10754 everything that WARNING_CFLAGS has, except omit warnings
10755 not suitable for C++.
10756 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
10757 * tests/atlocal.in (CXXFLAGS): New var.
10758 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
10760 Fix a GLR parser bug I reported in February; see
10761 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
10762 The problem was that GLR parsers did not conform to the C standard,
10763 because actions like { $1 = $2 + $3; } expanded to expressions
10764 that invoked YYFILL in separate subexpressions, and YYFILL assigned
10765 to a local variable. The C standard says that expressions
10766 like (var = f ()) + (var = f ()) have undefined behavior.
10767 Another problem was that GCC sometimes issues warnings that
10768 yyfill and its parameters are unused.
10770 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
10771 as possibly unused.
10772 (yyfill): New function.
10774 (yyuserAction): Change type of yynormal to bool, so that it matches
10775 the new yyfill signature. Mark it as possibly unused.
10778 Follow up on a bug I reported in February, where a Bison-generated
10779 parser can loop. Provide a test case and a fix for yacc.c. I
10780 don't have a fix for lalr1.cc or for glr.c, unfortunately.
10781 The original bug report is in:
10782 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
10784 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
10785 macro's size was becoming unwieldy.
10786 (yyerrlab): Do not discard an empty lookahead symbol, as this
10787 might destroy garbage.
10788 (yyerrorlab): New label, with the old contents of YYERROR,
10789 plus the following change: pop the stack of rhs corresponding
10790 to the production that invoked YYERROR. That is how Yacc
10791 behaves, and POSIX requires this behavior.
10792 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
10793 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
10794 Define 'alarm' to do nothing if unistd.h is not available.
10795 Add a new rule "exp: '-' error;" to test the above change to
10796 data/yacc.c. Use 'alarm' to abort any test taking longer than
10797 10 seconds, as it's probably looping.
10798 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
10799 Also, the new yacc.c generates two fewer diagnostics for an
10802 2003-05-24 Paul Eggert <eggert@twinsun.com>
10804 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
10805 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
10806 This fixes a problem reported by John Bowman when the Compaq/HP
10807 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
10808 -ansi -Wall -gall).
10809 * data/yacc.c (union yyalloc): Likewise.
10810 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
10812 Switch from 'int' to 'bool' where that makes sense.
10814 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
10815 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
10816 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
10817 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
10818 Return or accept bool, not int. All callers changed.
10819 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
10820 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
10821 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
10822 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
10823 bitset_or_and_cmp_): Likewise.
10824 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
10825 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
10826 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
10827 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
10828 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
10829 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
10830 bitset_stats_or_and_cmp): Likewise.
10831 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
10832 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
10833 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
10834 ebitset_xor_cmp): Likewise.
10835 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
10836 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
10837 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
10838 lbitset_xor_cmp): Likewise.
10839 * lib/bbitset.h: Include <stdbool.h>.
10840 (struct bitset_vtable): The following members now return bool, not
10841 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
10842 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
10844 * src/conflicts.c (count_rr_conflicts): Likewise.
10845 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
10847 * lib/ebitset.c (ebitset_obstack_init): Likewise.
10848 * lib/lbitset.c (lbitset_obstack_init): Likewise.
10849 * src/getargs.c (debug_flag, defines_flag, locations_flag,
10850 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10851 graph_flag): Likewise.
10852 * src/getargs.h (debug_flag, defines_flag, locations_flag,
10853 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
10854 graph_flag): Likewise.
10855 * src/output.c (error_verbose): Likewise.
10856 * src/output.h (error_verbose): Likewise.
10857 * src/reader.c (start_flag, typed): Likewise.
10858 * src/reader.h (typed): Likewise.
10859 * src/getargs.c (LOCATIONS_OPTION): New constant.
10860 (long_options, getargs): Use it.
10861 * src/lalr.c (build_relations): Use bool, not int.
10862 * src/nullable.c (nullable_compute): Likewise.
10863 * src/print.c (print_reductions): Likewise.
10864 * src/tables.c (action_row, pack_vector): Likewise.
10865 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
10866 * src/output.c (prepare): Use it.
10867 * src/output.c (token_definitions_output,
10868 symbol_destructors_output, symbol_destructors_output): Use string,
10869 not boolean integer, to keep track of whether to output separator.
10870 * src/print_graph.c (print_core): Likewise.
10871 * src/state.c (state_rule_lookaheads_print): Likewise.
10873 * config/install-sh: Sync from automake 1.7.5.
10875 2003-05-14 Paul Eggert <eggert@twinsun.com>
10877 * src/parse-gram.y (rules_or_grammar_declaration): Require a
10878 semicolon after a grammar declaration, in the interest of possible
10879 future changes to the Bison input language.
10880 Do not allow a stray semicolon at the start of the grammar.
10881 (rhses.1): Allow one or more semicolons after any rule, including
10882 just before "|" as required by POSIX.
10883 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
10886 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
10888 %parse-param support for lalr1.cc.
10890 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
10891 b4_cc_constructor_calls, b4_cc_constructor_call,
10892 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
10894 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
10895 parse-param arguments.
10896 (yy::b4_parser_class_name): Declare instance variables to
10897 hold parse-param arguments.
10898 * tests/calc.at: s/value/semantic_value/ because value clashes
10899 with a member of yy::b4_parser_class_name. Adjust C++ code
10900 to handle %parse-param. Enable %parse-param test in C++.
10902 2003-05-12 Paul Eggert <eggert@twinsun.com>
10904 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
10905 English a bit. Fix fclose typo. Change "const char" to "char
10906 const", and use ANSI C rather than K&R for "main". Suggest
10907 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
10908 and suggest yy_switch_to_buffer.
10910 2003-05-05 Paul Eggert <eggert@twinsun.com>
10912 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
10913 C89. This avoids a diagnostic on compilers that define __STDC__
10914 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
10915 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10917 2003-05-03 Paul Eggert <eggert@twinsun.com>
10919 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
10920 Do not overrun array bounds.
10921 This should fix a bug reported today by Olatunji Oluwabukunmi in
10922 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
10924 2003-04-29 Akim Demaille <akim@epita.fr>
10926 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
10927 * src/getargs.c, src/getargs.h: here, as bool, not int.
10928 (nondeterministic_parser): New.
10929 * src/parse-gram.y, src/scan-gram.l: Support
10930 %nondeterministic-parser.
10931 * src/output.c (prepare): Use nondeterministic_parser instead
10932 of glr_parser where appropriate.
10933 * src/tables.c (conflict_row, action_row, save_row)
10934 (token_actions, token_actions, pack_vector): Ditto.
10936 2003-04-29 Akim Demaille <akim@epita.fr>
10938 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
10940 2003-04-29 Akim Demaille <akim@epita.fr>
10942 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
10943 with %pure-parser and %locations to exercise the patch from Yakov
10946 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
10948 * data/yacc.c: (b4_lex_param): Corrected for the case where
10949 %lex-param is provided and %pure-parser isn't.
10951 2003-04-27 Paul Eggert <eggert@twinsun.com>
10953 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
10954 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
10955 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
10956 if it is not defined.
10957 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
10959 2003-04-26 Paul Eggert <eggert@twinsun.com>
10961 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
10962 Declare to be of type suitable for the ninf value itself, not of
10963 type suitable for the corresponding table, since the latter might
10964 be unsigned but the ninf value might be negative. This fixes a
10965 bug reported by Alexandre Duret-Lutz in
10966 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
10968 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
10969 invokes it. We shouldn't invoke it twice because it will attempt
10970 to put error.o in the archive twice. This fixes a glitch reported
10971 by Martin Mokrejs in
10972 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
10974 2003-04-21 Paul Eggert <eggert@twinsun.com>
10976 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
10979 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
10981 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
10982 Fix obvious typo that results in uncompilable GLR parsers
10983 when both %pure-parser and %locations are used. (trivial change)
10985 2003-04-17 Paul Eggert <eggert@twinsun.com>
10987 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
10988 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
10989 Do not insert the expected token via unput, as this runs afoul
10990 of a POSIX-compatibility bug in flex 2.5.31.
10991 All uses changed to BEGIN the parent state,
10992 since we no longer insert the expected token via unput.
10993 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
10994 that is no longer emitted after the above change.
10996 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
10997 the first one. This change is from Paul Hilfinger, and it fixes
10998 regression reported by Werner Lemberg in
10999 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
11001 (resolve_sr_conflict): Don't invoke state_errs_set
11002 unless one or more tokens have been explicitly made errors.
11003 Otherwise, the above change causes Bison to abort.
11005 * tests/existing.at (GNU pic Grammar): New test case, taken from
11008 2003-03-31 Akim Demaille <akim@epita.fr>
11010 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
11012 2003-03-31 Akim Demaille <akim@epita.fr>
11014 * src/output.c (prepare_symbols): Avoid trailing spaces in the
11017 2003-03-31 Akim Demaille <akim@epita.fr>
11019 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
11020 From Paul Hilfinger.
11022 2003-03-29 Akim Demaille <akim@epita.fr>
11024 * m4/error.m4: Do not put under dynamic conditions some code which
11025 expansion is under static control.
11027 2003-03-29 Akim Demaille <akim@epita.fr>
11029 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
11031 2003-03-29 Akim Demaille <akim@epita.fr>
11033 * doc/bison.texinfo (Strings are Destroyed): New.
11035 2003-03-13 Paul Eggert <eggert@twinsun.com>
11037 * .cvsignore: Add configure.lineno.
11038 * src/.cvsignore: Add yacc.
11039 * tests/.cvsignore: Add testsuite.log.
11040 * doc/fdl.texi: Sync with latest FSF version.
11042 2003-03-12 Paul Eggert <eggert@twinsun.com>
11044 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
11045 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
11046 cursor, instead of leaving it undefined. This fixes a bug
11047 reported by Tim Van Holder in
11048 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
11049 * tests/input.at (Torturing the Scanner): Test the scanner on
11050 an empty input file, which was Tim Van Holder's test case.
11052 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
11053 <sys/resource.h> can be included, include sys/time.h and
11054 sys/times.h first, if available. This works around the SunOS
11055 4.1.4 porting bug reported by Bruce Becker in
11056 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
11058 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
11059 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
11060 AC_HEADER_SYS_WAIT.
11062 Merge changes from gnulib. This was prompted because the CVS
11063 snapshot didn't build on Solaris 7 due to strnlen problems.
11065 These changes need to be merged back into gnulib:
11066 * lib/hash.c: Include <stdbool.h> unconditionally.
11067 * m4/onceonly.m4 (m4_quote): New macro.
11068 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
11069 Quote AC_FOREACH variable-expansions properly.
11070 The 2003-01-03 obstack.h change also needs merging.
11071 {end of changes requiring merging}
11073 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
11074 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
11075 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
11076 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
11077 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
11078 New files, imported from gnulib.
11079 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
11082 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
11083 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
11086 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
11088 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
11089 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
11090 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
11091 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
11092 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
11093 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
11094 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
11095 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
11096 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
11097 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
11098 (jm_PREREQ_ARGMATCH): Remove.
11099 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
11100 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
11102 * src/system.h: Include <stdbool.h> unconditionally.
11104 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
11105 assuming at least C89 in the bitset code for some time now.
11107 2003-03-03 Akim Demaille <akim@epita.fr>
11111 2003-03-02 Akim Demaille <akim@epita.fr>
11113 * doc/bison.texinfo (Table of Symbols): Reactivate the
11114 documentation for %lex-param, and %parse-param.
11116 2003-03-02 Akim Demaille <akim@epita.fr>
11118 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
11119 generate verbose error messages.
11120 Use the number of tokens as an upper bound in yytname, as it
11121 cannot be a non terminal.
11123 2003-03-02 Akim Demaille <akim@epita.fr>
11125 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
11128 2003-03-02 Akim Demaille <akim@epita.fr>
11130 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
11131 Use them to exercise yycheck overrun.
11132 Based on Andrew Suffield's grammar.
11134 2003-03-02 Akim Demaille <akim@epita.fr>
11136 Create tests/local.at for Bison generic testing macros.
11138 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
11139 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
11141 * tests/calc.at (AT_CHECK_CALC): Adjust.
11142 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
11143 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
11144 * tests/local.at: here.
11145 (AT_COMPILE_CXX): Tags the tests using it as c++.
11146 Ignore the test if CXX is not functional.
11148 2003-03-01 Paul Eggert <eggert@twinsun.com>
11150 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
11151 not loc->end, since loc->end might contain garbage and this leads
11152 to undefined behavior on some platforms.
11153 (id_loc, token_start): Use (IF_LINTed) initial values that do not
11154 depend on *loc, so that the reader doesn't give the the false
11155 impression that *loc is initialized.
11156 (<INITIAL>"%%"): Do not bother setting code_start, since its value
11157 does not survive the return.
11159 2003-03-01 Akim Demaille <akim@epita.fr>
11161 * src/scan-gram.l (code_start): Always initialize it when entering
11162 into yylex, as SC_EPILOGUE is activated *before* the corresponding
11163 yylex invocation. An alternative would be making it static, but
11164 then it starts with the second %%'s beginning, instead of its end.
11166 2003-02-28 Paul Eggert <eggert@twinsun.com>
11168 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
11169 around a UnixWare 7.1.1 porting bug reported by John Hughes in
11170 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
11172 2003-02-26 Paul Eggert <eggert@twinsun.com>
11174 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
11175 Remove Sequent/Pyramid discussion (nobody uses them any more).
11176 Merge VMS and MS-DOS discussion; these ports may well be dead
11177 but let's keep mentioning them for now. Put <> around email
11178 addresses. Add copyright notice.
11180 2003-02-24 Paul Eggert <eggert@twinsun.com>
11182 * data/glr.c (yy_reduce_print): yylineno -> yylno,
11183 to avoid collision with flex use of yylineno.
11184 Problem reported by Bruce Lilly in
11185 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
11186 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11187 * data/yacc.c (yy_reduce_print): Likewise.
11189 * config/depcomp: Sync with Automake 1.7.3.
11191 2003-02-21 Akim Demaille <akim@epita.fr>
11193 * data/lalr1.cc: Use temporary variables instead of casts to
11194 change integer types.
11195 Suggested by Paul Eggert.
11197 2003-02-21 Akim Demaille <akim@epita.fr>
11199 * doc/bison.texinfo: Use "location" consistently to refer to @n,
11200 to avoid confusions with lalr1.cc's notion of Position.
11201 Suggested by Paul Eggert.
11203 2003-02-20 Akim Demaille <akim@epita.fr>
11205 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
11206 before initial_columns.
11207 (location.hh): Use consistent variable names when defining the
11209 Use "last" so that we subtract from Positions, not from unsigned.
11211 2003-02-20 Akim Demaille <akim@epita.fr>
11213 * data/lalr1.cc (position.hh): New subfile, including the extended
11214 and Doxygen'ed documentation of class Position.
11215 (location.hh): Use it.
11216 Document a` la Doxygen.
11217 With the help of Benoit Perrot.
11219 2003-02-20 Akim Demaille <akim@epita.fr>
11221 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
11223 Redefine AT_YYERROR_SEES_LOC_IF using it.
11224 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
11226 Don't use the location in yy::Parser::error_ and
11227 yy::Parser::print_ when not %locations.
11228 Activate more lalr1.cc tests.
11230 2003-02-19 Akim Demaille <akim@epita.fr>
11232 * data/lalr1.cc: When displaying a line number, be sure to make it
11235 2003-02-19 Akim Demaille <akim@epita.fr>
11237 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
11239 (YYABORT, YYACCEPT, YYERROR): New.
11240 * tests/calc.at: Renable the lalr1.cc test.
11242 2003-02-19 Akim Demaille <akim@epita.fr>
11244 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
11245 error recovery, mixing with/without pops and discarding of the
11248 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
11250 2003-02-17 Paul Eggert <eggert@twinsun.com>
11252 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
11253 * tests/testsuite.at (AT_COMPILE): Use them.
11254 This fixes the testsuite problem reported by Robert Lentz in
11255 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
11257 2003-02-12 Paul Eggert <eggert@twinsun.com>
11259 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
11260 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
11261 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
11262 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
11263 Check for malloc failure, for consistency with yacc.c.
11264 (yytname_size): Remove, for consistency with yacc.c.
11266 The bug still remains in data/lalr1.cc, as I didn't have time
11269 2003-02-06 Akim Demaille <akim@epita.fr>
11271 * configure.ac (GXX): Rename as...
11272 (CXX): this, to keep the original Autoconf semantics.
11274 * data/lalr1.cc: Fix b4_copyright invocations.
11275 If YYDEBUG is not defined, don't depend upon name_ being defined.
11276 (location.hh): Include string and iostream.
11277 (Position::filename): New member.
11278 (Position::Position ()): New.
11279 (operator<< (Position)): New.
11280 (operator- (Position, int)): New.
11281 (Location::first, Location::last): Rename as...
11282 (Location::begin, Location::end): these, to mock the conventional
11284 (operator<< (Location)): New.
11285 * tests/atlocal.in (CXX): New.
11286 * tests/testsuite.at (AT_COMPILE_CXX): New.
11287 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
11288 locations in a more synthetic way.
11289 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
11291 Adjust the C locations to match those from Emacs: first column is
11293 Change all the expected results.
11294 Conform to the GCS: simplify the locations when applicable.
11295 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
11296 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
11297 these CPP macros with the m4 macros new defined by...
11298 (AT_CHECK_PUSHDEFS): this, i.e.:
11299 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
11300 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
11302 (AT_CHECK_POPDEFS): Undefine them.
11303 (AT_CHECK_CALC_LALR1_CC): New.
11304 Use it for the first lalr1.cc test.
11306 2003-02-04 Akim Demaille <akim@epita.fr>
11308 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
11309 Location as is defined.
11311 2003-02-04 Akim Demaille <akim@epita.fr>
11313 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
11314 name_ being defined.
11316 2003-02-03 Paul Eggert <eggert@twinsun.com>
11318 * src/gram.h (start_symbol): Remove unused decl.
11320 Use more-consistent naming conventions for local vars.
11322 * src/derives.c (derives_compute): Change type of local var from
11323 int to rule_number.
11324 * src/gram.c (grammar_rules_partial_print): Likewise.
11325 * src/print.c (print_core): Likewise.
11326 * src/reduce.c (reduce_grammar_tables): Likewise.
11328 * src/gram.c (grammar_dump): Change name of item_number *
11329 local var from r to rp.
11330 * src/nullable.c (nullable_compute): Likewise.
11332 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
11334 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
11335 for symbol or symbol_number var.
11336 * src/reader.c (grammar_start_symbol_set): Likewise.
11337 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
11339 * src/state.c (transitions_to): Likewise.
11340 * src/state.h: Likewise.
11341 * src/tables.c (symbol_number_to_vector_number): Likewise.
11343 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
11346 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
11349 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
11352 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
11353 Use str, not s, for char * var. Use ch, not c, for character var.
11354 Use size for size var.
11356 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
11358 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
11360 * src/uniqstr.h: Likewise.
11362 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
11363 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
11364 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
11365 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
11366 param to have same name as that of enum, so that we don't use
11367 "s" to stand for a non-state.
11369 2003-02-02 Akim Demaille <akim@epita.fr>
11371 * src/scan-skel.l: Scan more than one inert character per yylex
11374 2003-02-01 Paul Eggert <eggert@twinsun.com>
11378 * po/LINGUAS: Add ms.
11380 2003-01-30 Akim Demaille <akim@epita.fr>
11382 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
11384 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
11386 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
11389 Changes in response to error report by S. Eken: GLR mode does not
11390 handle negative $ indices or $ indices in embedded rules correctly.
11391 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
11393 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
11394 (b4_rhs_location): Ditto.
11395 (yyfill): New function to copy from stack tree into array
11397 (yyuserAction): Modify to allow incremental move of semantic values
11398 to rhs array when in GLR mode.
11399 Define YYFILL to use in user-defined actions to fill semantic array
11401 Remove dummy use of yystack, as there is now a guaranteed use.
11402 (yydoAction): Modify to allow incremental move of semantic values
11403 to rhs array when in GLR mode.
11404 (yyresolveAction): Ditto.
11405 (yyglrShiftDefer): Update comment.
11406 (yyresolveStates): Use X == NULL for pointers, not !X.
11407 (yyglrReduce): Ditto.
11408 (yydoAction): Ditto
11410 * tests/glr-regr1.at: Rename to ...
11411 * tests/glr-regression.at: Add new regression test for the problems
11412 described above (adapted from S. Eken).
11413 Update copyright notice.
11414 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
11415 * tests/Makefile.am: Ditto.
11417 2003-01-28 Paul Eggert <eggert@twinsun.com>
11419 * data/lalr1.cc: Do not use @output_header_name@ unless
11420 b4_defines_flag is set. This fixes two bugs reported by
11422 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
11423 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
11425 2003-01-21 Paul Eggert <eggert@twinsun.com>
11427 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
11428 we don't need to worry about yyerrlab1 being reported as an
11429 "unused label" by non-GCC C compilers. The downside is that if
11430 locations are used then a couple of statements are duplicated each
11431 time YYERROR is invoked, but the upside is that the warnings
11433 (yyerrlab1): Move code to YERROR.
11434 (yyerrlab2): Remove. Change uses back to yyerrlab1.
11435 This reverts some of the 2002-12-27 change.
11437 2003-01-17 Paul Eggert <eggert@twinsun.com>
11439 * src/output.c (symbol_printers_output): Fix typo that led
11440 to core dump. Problem reported by Antonio Rus in
11441 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
11443 2003-01-13 Akim Demaille <akim@epita.fr>,
11444 Quoc Peyrot <chojin@lrde.epita.fr>,
11445 Robert Anisko <anisko_r@lrde.epita.fr>
11447 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
11448 when the stacks contain one element, as the loop would otherwise
11449 free the last state, and then use the top state (the one we just
11450 popped). This means that the initial elements will not be freed
11451 explicitly, as is the case in yacc.c; it is not a problem, as
11452 these elements have fake values.
11454 2003-01-11 Paul Eggert <eggert@twinsun.com>
11456 * NEWS: %expect-violations are now just warnings, reverting
11457 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
11458 bootstrapping problem reported by Matthias Klose; see
11459 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
11460 * src/conflicts.c (conflicts_print): Likewise.
11461 * tests/conflicts.at (%expect not enough, %expect too much,
11462 %expect with reduce conflicts): Likewise.
11463 * doc/bison.texinfo (Expect Decl): Document this. Also mention
11464 that the warning is enabled if the number of conflicts changes
11465 (not necessarily increases).
11467 * src/getargs.c (version): Update copyright year.
11469 2003-01-09 Akim Demaille <akim@epita.fr>
11471 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
11473 2003-01-08 Paul Eggert <eggert@twinsun.com>
11475 * Makefile.maint (WGETFLAGS):
11476 New macro, containing "-C off" to disable proxy caches.
11477 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
11478 (rel-check): Use $(WGET) instead of wget.
11480 2003-01-06 Paul Eggert <eggert@twinsun.com>
11482 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
11483 the GLR paper of Scott, Johnstone and Hussain.
11485 2003-01-04 Paul Eggert <eggert@twinsun.com>
11487 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
11488 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
11489 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
11490 (EXTRA_LIBRARIES): New var, for liby.a.
11491 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
11492 (EXTRA_SCRIPTS): New var, for yacc.
11494 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
11495 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
11496 Problem reported by Nelson H. F. Beebe.
11498 2003-01-03 Paul Eggert <eggert@twinsun.com>
11500 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
11501 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
11502 when compiling Bison 1.875's `bitset bset = obstack_alloc
11503 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
11505 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
11506 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
11507 grow to a huge size with typical invocation.
11509 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
11510 Use the pattern recommended by Autoconf 2.57, except also protect
11511 against double-definition.
11512 * src/system.h: Likewise.
11513 Portability issues reported by Nelson H. F. Beebe.
11515 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
11516 All uses changed. Provide a definition in both C and C++.
11517 (yytrue, yyfalse): Define even if defined (__cplusplus).
11519 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
11520 Reported by Nelson H. F. Beebe.
11522 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
11524 2003-01-02 Paul Eggert <eggert@twinsun.com>
11526 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
11527 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
11528 Bug reported by Nelson H. F. Beebe.
11530 2003-01-01 Paul Eggert <eggert@twinsun.com>
11534 2002-12-30 Paul Eggert <eggert@twinsun.com>
11536 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
11538 (<INITIAL>","): Here. This causes stray "," to be treated
11541 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
11542 last brace in braced code when not in Yacc mode, for compatibility
11543 with Bison 1.35. This resurrects the 2001-12-15 patch to
11546 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
11547 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
11549 2002-12-28 Paul Eggert <eggert@twinsun.com>
11551 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
11552 that of SYM's type. This fixes Debian bug 168069, reported by
11555 2002-12-28 Paul Eggert <eggert@twinsun.com>
11559 Switch back to the Yacc style of conflict reports, undoing some
11560 of the 2002-07-30 change.
11561 * doc/bison.texinfo (Understanding): Use Yacc style for
11562 conflict reports. Also, use new way of locating rules.
11563 * src/conflicts.c (conflict_report):
11564 Renamed from conflict_report_yacc, removing the old
11565 'conflict_report'. Translate the entire conflict report at once,
11566 so that we don't assume that "," has the same interpretation in
11568 (conflicts_output): Use Yacc-style conflict report for each state,
11569 instead of our more-complicated style.
11570 (conflicts_print): Use Yacc-style conflict report, except print
11571 the input file name when not emulating Yacc.
11572 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
11573 Conflicted Reduction, %expect not enough, %expect too much,
11574 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
11575 * tests/existing.at (GNU Cim Grammar): Likewise.
11576 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
11578 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
11579 fatal): Don't invoke fflush; it's not needed and it might even be
11580 harmful for stdout, as stdout might not be open.
11581 * src/reduce.c (reduce_print): Likewise.
11583 2002-12-27 Paul Eggert <eggert@twinsun.com>
11585 Fix a bug where error locations were not being recorded correctly.
11586 This problem was originally reported by Paul Hilfinger in
11587 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
11589 * data/yacc.c (yyparse): New local var yylerrsp, to record the
11590 top of the location stack's error locations.
11591 (yyerrlab): Set it. When discarding a token, push its location
11592 onto yylerrsp so that we don't lose track of the error's end.
11593 (yyerrlab1): Now is only the target of YYERROR, so that we can
11594 properly record the location of the action that failed. For GCC
11595 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
11596 GCC warning about yyerrlab1 being unused if YYERROR is unused.
11597 (yyerrlab2): New label, which yyerrlab now falls through to.
11598 Compute the error's location by applying YYLLOC_DEFAULT to
11599 the locations of all the symbols that went into the error.
11600 * doc/bison.texinfo (Location Default Action): Mention that
11601 YYLLOC_DEFAULT is also invoked for syntax errors.
11602 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11603 Error locations include the locations of all the tokens that were
11604 discarded, not just the last token.
11606 2002-12-26 Paul Eggert <eggert@twinsun.com>
11608 * src/files.c: Include quote.h.
11609 (compute_output_file_names): Warn if we detect conflicting
11610 outputs to the same file. This should catch the misunderstanding
11611 exemplified by Debian Bug 165349, reported by Bruce Stephens..
11613 * src/conflicts.c (conflicts_print): If the user specifies
11614 "%expect N", report an error if there are any reduce/reduce
11615 conflicts. This is what the manual says should happen.
11616 This fixes Debian bug 130890, reported by Anthony DeRobertis.
11617 * tests/conflicts.at (%expect with reduce conflicts): New test.
11619 Don't use m4_include on relative file names, as it doesn't work as
11620 desired if there happens to be a file with that name under ".".
11622 * m4sugar/version.m4: Remove; it was included but it wasn't used.
11623 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
11624 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
11625 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
11626 * src/output.c (output_skeleton): Use full path names when
11627 specifying a file to include; don't rely on include path, as
11628 it's unreliable when the working file contains a file with
11631 2002-12-25 Paul Eggert <eggert@twinsun.com>
11633 Remove obsolete references to bison.simple and bison.hairy.
11634 Problem mentioned by Aubin Mahe in
11635 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
11636 * data/glr.c: Comment fix.
11637 * doc/bison.1: Remove references. Also, mention "yacc".
11639 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
11642 * src/parse-gram.y (declaration): Use enum "report_states" rather
11643 than its numeric value 1.
11645 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
11646 opening a new one. This fixes Debian bug 165349, reported by
11649 2002-12-24 Paul Eggert <eggert@twinsun.com>
11653 * Makefile.maint (cvs-update): Don't assume that the shell
11654 supports $(...), as Solaris sh doesn't.
11656 * src/parse-gram.y (lloc_default): Remove test for empty
11657 nonterminals at the end, since it didn't change the result.
11659 2002-12-24 Paul Eggert <eggert@twinsun.com>
11661 If the user does not define YYSTYPE as a macro, Bison now declares it
11662 using typedef instead of defining it as a macro. POSIX requires this.
11663 For consistency, YYLTYPE is also declared instead of defined.
11665 %union directives can now have a tag before the `{', e.g., the
11666 directive `%union foo {...}' now generates the C code
11667 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
11668 The default union tag is `YYSTYPE', for compatibility with Solaris 9
11669 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
11670 instead of `yyltype'.
11672 `yystype' and `yyltype' are now obsolescent macros instead of being
11673 typedefs or tags; they are no longer documented and will be
11674 withdrawn in a future release.
11676 * data/glr.c (b4_location_type): Remove.
11677 (YYSTYPE): Renamed from yystype.
11678 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
11679 (struct YYLTYPE): Renamed from struct yyltype.
11680 (YYLTYPE): Renamed from yyltype.
11681 (yyltype, yystype): New (and obsolescent) macros,
11682 for backward compatibility.
11683 * data/yacc.c: Likewise.
11685 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
11686 does not specify a union tag. This is for compatibility with
11689 * src/parse-gram.y (add_param): 2nd arg is now char * not char
11690 const *, since it is now modified by stripping surrounding { }.
11691 (current_braced_code): Remove.
11692 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
11693 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
11694 trailing " {...}". Now of type <chars>.
11695 (grammar_declaration): Adjust to bundled tokens.
11696 (code_content): Remove; stripping is now done by add_param.
11697 (print_token_value): Print contents of bundled tokens.
11698 (token_name): New function.
11700 * src/reader.h (braced_code, current_braced_code): Remove.
11701 (token_name): New decl.
11703 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
11704 token_type, not braced_code code_kind. All uses changed.
11705 (SC_PRE_CODE): New state, for scanning after a keyword that
11706 has (or usually has) an immediately-following braced code.
11707 (token_type): New local var, to keep track of which token type
11708 to return when scanning braced code.
11709 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
11710 <INITIAL>"%parse-param", <INITIAL>"%printer",
11711 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
11712 instead of returning a token type immediately.
11713 (<INITIAL>"{"): Set token type.
11714 (<SC_BRACED_CODE>"}"): Use it.
11715 (handle_action_dollar, handle_action_at): Now returns bool
11716 indicating success. Fail if ! current_rule; this prevents a core dump.
11717 (handle_symbol_code_dollar, handle_symbol_code_at):
11718 Remove; merge body into caller.
11719 (handle_dollar, handle_at): Complain in invalid contexts.
11721 * NEWS, doc/bison.texinfo: Document the above.
11722 * NEWS: Fix years and program names in copyright notice.
11724 2002-12-17 Paul Eggert <eggert@twinsun.com>
11726 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
11727 Reporting, Table of Symbols): Omit mentions of %lex-param and
11728 %parse-param from the documentation for now.
11730 2002-12-15 Paul Eggert <eggert@twinsun.com>
11732 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
11733 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
11734 lookahead symbol, and which sets yychar in parser actions) and it
11735 disagreed with the Bison documentation. Bug
11736 reported by Andrew Walrond.
11738 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
11739 as the caller now does that.
11740 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
11741 (YYEMPTY): Parenthesize right hand side, since others use it.
11742 (yyparse): Don't assume that our generated code is the only code
11745 2002-12-13 Paul Eggert <eggert@twinsun.com>
11749 POSIX requires a "yacc" command.
11750 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
11751 (MOSTLYCLEANFILES): Add yacc.
11753 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
11754 as an alias for bison y.
11756 * po/LINGUAS: Add da.
11758 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
11759 problem with latest <getopt.h>.
11760 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
11762 * doc/fdl.texi: Upgrade to 1.2.
11763 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
11764 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
11765 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
11767 * config/install-sh: Sync with autotools.
11769 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
11770 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
11771 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
11772 locations are requested.
11773 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
11774 locations are requested.
11776 2002-12-12 Paul Eggert <eggert@twinsun.com>
11778 Remove unportable casts and storage allocation tricks.
11779 While we're at it, remove almost all casts, since they
11780 usually aren't needed and are a sign of trouble.
11782 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
11784 * src/derives.c (derives_compute): Do not subtract NTOKENS from
11785 the pointer DSET returned by malloc; this isn't portable.
11786 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
11787 Similarly for DERIVES.
11788 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
11789 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
11790 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
11792 * src/derives.c (derives_compute): Do not bother invoking
11793 int_of_rule_number, since rule numbers are integers.
11795 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
11796 rather than XMALLOC (char, N).
11798 * src/files.c (filename_split): Rewrite to avoid cast.
11800 * src/gram.h (symbol_number_as_item_number,
11801 item_number_as_symbol_number, rule_number_as_item_number,
11802 item_number_as_rule_number):
11803 Now inline functions rather than macros, to avoid casts.
11804 * src/state.h (state_number_as_int): Likewise.
11805 * src/tables.c (state_number_to_vector_number,
11806 symbol_number_to_vector_number): Likewise.
11808 * src/gram.h (int_of_rule_number): Remove; no longer used.
11810 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
11811 since the resulting storage is always stored into.
11813 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
11816 * src/muscle_tab.c (muscle_m4_output):
11817 Now inline. Return bool, not int.
11818 * src/state.c (state_compare): Likewise.
11819 * src/symtab.c (symbol_check_defined,
11820 symbol_check_alias_consistency, symbol_pack, symbol_translation,
11821 hash_compare_symbol, hash_symbol):
11823 * src/uniqstr.c (uniqstr_print): Likewise.
11824 * src/muscle_tab.c (muscle_m4_output_processor):
11825 New function, to avoid casts.
11826 * src/state.c (state_comparator, stage_hasher): Likewise.
11827 * src/symtab.c (symbol_check_defined_processor,
11828 symbol_check_alias_consistency_processor, symbol_pack_processor,
11829 symbol_translation_processor, hash_symbol_comparator,
11830 hash_symbol_hasher): Likewise.
11831 * src/uniqstr.c (uniqstr_print_processor): Likewise.
11832 * src/muscle_tab.c (muscles_m4_output):
11833 Use new functions instead of casting old functions unportably.
11834 * src/state.c (state_hash_new): Likewise.
11835 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
11836 symbols_token_translations_init):
11838 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
11840 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
11841 var instead of casting to long, to avoid casts.
11842 (prepare_states): Use MALLOC rather than alloca, so that we don't
11843 have to worry about alloca.
11844 * src/state.c (state_hash_lookup): Likewise.
11846 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
11847 local var instead of casting to unsigned char, to avoid casts.
11849 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
11850 STATE_ALLOC): Remove.
11851 (transitions_new, errs_new, reductions_new, state_new): Use malloc
11852 rather than calloc, and use offsetof to avoid allocating slightly
11854 (state_new): Initialize all members.
11856 * src/state.c (state_hash): Use unsigned accumulator, not signed.
11858 * src/symtab.c (symbol_free): Remove; unused.
11859 (symbol_get): Remove cast in lhs of assignment.
11860 (symbols_do): Now static. Accept generic arguments, not
11861 hashing-related ones.
11863 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
11864 (symbol_processor): Remove.
11865 (symbols_do): Remove decl; now static.
11867 * src/system.h (alloca): Remove; decl no longer needed.
11868 (<stddef.h>): Include, for offsetof.
11869 (<inttypes.>, <stdint.h>): Include if available.
11870 (uintptr_t): New type, if system lacks it.
11871 (CALLOC, MALLOC, REALLOC): New macros.
11872 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
11875 * src/tables.c (table_size): Now int, to pacify GCC.
11876 (table_grow, table_ninf_remap): Use signed table size.
11877 (save_row): Don't bother initializing locals when not needed.
11878 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
11879 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
11881 * src/vcg.h: Correct misspellings.
11883 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
11886 * src/getargs.c (getargs): Don't assume EOF == -1.
11888 2002-12-09 Paul Eggert <eggert@twinsun.com>
11890 Change identifier spellings to avoid collisions with names
11891 that are reserved by POSIX.
11893 Don't use names ending in _t, since POSIX reserves them.
11894 For consistency, remove _e and _s endings -- they're weren't
11895 needed to remove ambiguity. All uses changed.
11896 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
11897 turn was just renamed from struniq_t.
11898 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
11899 which in turn was just renamed from struniq_processor_t.
11900 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
11901 in turn was renamed from hash_compare_struniq_t.
11902 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
11903 (state_list): Renamed from state_list_t.
11904 * src/assoc.h (assoc): Renamed from assoc_t.
11905 * src/conflicts.c (enum conflict_resolution): Renamed from
11906 enum conflict_resolution_e.
11907 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
11908 (rule_list): Renamed from rule_list_t.
11909 * src/getargs.h (enum trace): Renamed from enum trace_e.
11910 (enum report): Renamed from enum report_e.
11911 * src/gram.h (item_number): Renamed from item_number_t.
11912 (rule_number): Renamed from rule_number_t.
11913 (struct rule_s): Remove the "rule_s" part; not used.
11914 (rule): Renamed from rule_t.
11915 (rule_filter): Renamed from rule_filter_t.
11916 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
11917 (goto_list): Renamed from goto_list_t.
11918 * src/lalr.h (goto_number): Renamed from goto_number_t.
11919 * src/location.h (location): Renamed from location_t.
11920 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
11921 and moved here from:
11922 * src/muscle_tab.h (muscle_entry_t): here.
11923 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
11924 (rule_list): Renamed from rule_list_t.
11925 * src/print_graph.c (static_graph): Renamed from graph.
11926 * src/reader.h (braced_code): Renamed from braced_code_t.
11927 Remove brace_code_e tag.
11928 * src/relation.h (relation_node): Renamed from relation_node_t.
11929 (relation_nodes): Renamed from relation_nodes_t.
11930 (relation): Renamed from relation_t.
11931 * src/state.h (state_number): Renamed from state_number_t.
11932 (struct state): Renamed from struct state_s.
11933 (state): Renamed from state_t.
11934 (transitions): Renamed from transitions_t. Unused (and
11935 misspelled) transtion_s tag removed.
11936 (errs): Renamed from errs_t. Unused errs_s tag removed.
11937 (reductions): Renamed from reductions_t. Unused tag
11938 reductions_s removed.
11939 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
11940 (struct symbol_list): Renamed from struct symbol_list_s.
11941 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
11942 (struct symbol): Renamed from struct symbol_s.
11943 (symbol): Renamed from symbol_t.
11944 * src/tables.c (vector_number): Renamed from vector_number_t.
11945 (action_number): Renamed from action_t.
11946 * src/tables.h (base_number): Renamed from base_t.
11947 * src/vcg.h (enum color): Renamed from enum color_e.
11948 (enum textmode): Renamed from enum textmode_e.
11949 (enum shape): Renamed from enum shape_e.
11950 (struct colorentry): Renamed from struct colorentry_s.
11951 (struct classname): Renamed from struct classname_s.
11952 (struct infoname): Renamed from struct infoname_s.
11953 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
11954 (enum decision): Renamed from enum decision_e.
11955 (enum orientation): Renamed from enum orientation_e.
11956 (enum alignment): Renamed from enum alignment_e.
11957 (enum arrow_mode): Renamed from enum arrow_mode_e.
11958 (enum crossing_type): Renamed from enum crossing_type_e.
11959 (enum view): Renamed from enum view_e.
11960 (struct node): Renamed from struct node_s.
11961 (node): Renamed from node_t.
11962 (enum linestyle): Renamed from enum linestyle_e.
11963 (enum arrowstyle): Renamed from enum arrowstyle_e.
11964 (struct edge): Renamed from struct edge.
11965 (edge): Renamed from edge_t.
11966 (struct graph): Renamed from struct graph_s.
11967 (graph): Renamed from graph_t.
11968 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
11969 Rename value_t -> value.
11970 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
11971 value_t_as_yystype -> value_as_yystype.
11973 Don't include <errno.h> in the mainstream code, since it
11974 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
11975 * lib/get-errno.c, lib/get-errno.h: New files.
11976 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
11978 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
11979 * src/output.c (output_skeleton): Likewise.
11980 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
11982 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
11984 (handle_action_dollar, handle_action_at): Likewise.
11985 * src/system.h: Do not include <errno.h>.
11986 (TAB_EXT): Renamed from EXT_TAB.
11987 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
11989 Avoid str[a-z]*, since <string.h> reserves that name space.
11990 Change all instances of "struniq" in names to "uniqstr", and
11991 likewise for "STRUNIQ" and "UNIQSTR".
11992 * src/uniqstr.c: Renamed from src/struniq.c.
11993 * src/uniqstr.h: Renamed from src/struniq.h.
11994 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
11995 * src/files.c (strsuffix): Remove; unused.
11996 (concat2): Renamed from stringappend. Now static.
11997 * src/files.h (strsuffix, stringappend): Remove; unused.
11998 * src/parse-gram.y (<chars>): Renamed from <string>.
11999 (<uniqstr>): Renamed from <struniq>.
12000 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
12001 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
12002 (struct graph_s.expand): Renamed from struct graph_s.stretch.
12003 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
12004 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
12005 (N_EXPAND): Renamed from N_STRETCH.
12007 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
12008 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
12009 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
12011 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
12012 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
12013 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
12014 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
12015 (BASE_MAXIMUM): Renamed from BASE_MAX.
12016 (BASE_MINIMUM): Renamed from BASE_MIN.
12017 (ACTION_MAX): Remove; unused.
12018 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
12019 Unnecessary casts removed from above defines.
12022 Fix misspelling in names.
12023 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
12024 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
12028 * lib/timevar.c (timevar_report): Renamed from time_report,
12029 for consistency with other names.
12030 * lib/timevar.h (timevar_report): New decl.
12031 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
12034 Sort include-file uses.
12036 Reorder all include files under src to be in the order "system.h".
12037 then the ../lib include files in angle brackets (alphabetized),
12038 then the . include files in double-quotes (alphabetized). Fix
12039 dependency breakages encountered in this process, as follows:
12040 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
12041 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
12042 * src/state.h: Include "symtab.h".
12044 2002-12-08 Paul Eggert <eggert@twinsun.com>
12046 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
12047 since this causes problems when __file__ contains character
12048 sequences like "@" that are treated specially by src/scan-skel.l.
12049 Instead, just use the file's basename. This fixes the bug
12050 reported by Martin Mokrejs in
12051 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
12053 2002-12-06 Paul Eggert <eggert@twinsun.com>
12055 Add support for rules that do not have trailing semicolons, as
12056 POSIX requires. Improve the quality of locations in Bison
12059 * src/location.c: Include <quotearg.h>.
12060 (empty_location): Now const.
12061 (location_print): New function. Follow the recommendation of the
12062 GNU Coding Standards for locations that span file boundaries.
12063 * src/location.h: Do not include <quotearg.h>; no longer needed.
12064 (boundary): New type.
12065 (location_t): Use it. This allows locations to span file boundaries.
12066 All member uses changed: file -> start.file or end.file (as needed),
12067 first_line -> start.line, first_column -> start.column,
12068 last_line -> end.line, last_column -> end.column.
12069 (equal_boundaries): New function.
12070 (LOCATION_RESET, LOCATION_STEP): Remove.
12071 (LOCATION_PRINT): Remove. All callers changed to use location_print.
12072 (empty_location): Now const.
12073 (location_print): New decl.
12074 * src/parse-gram.y (lloc_default): New function, which handles
12075 empty locations more accurately.
12076 (YYLLOC_DEFAULT): Use it.
12077 (%token COLON): Remove.
12078 (%token ID_COLON): New token.
12080 (declarations, rules): Remove trailing semicolon.
12081 (declaration, rules_or_grammar_declaration):
12082 Allow empty (";") declaration.
12083 (symbol_def): Remove empty actions; no longer needed.
12084 (rules_or_grammar_declaration): Remove trailing semicolon.
12085 (semi_colon.opt): Remove.
12086 * src/reader.h: Include location.h.
12087 (scanner_cursor): New decl.
12088 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
12090 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
12092 (STEP): Remove. No longer needed, now that adjust_location does
12093 the work. All uses removed.
12094 (scanner_cursor): New var.
12095 (adjust_location): Renamed from extend_location. It now sets
12096 *loc and adjusts the scanner cursor. All uses changed.
12097 Don't bother testing for CR.
12098 (handle_syncline): Remove location arg; now updates scanner cursor.
12099 All callers changed.
12100 (unexpected_end_of_file): Now accepts start boundary of token or
12101 comment, not location. All callers changed. Update scanner cursor,
12103 (SC_AFTER_IDENTIFIER): New state.
12104 (context_state): Renamed from c_context. All uses changed.
12105 (id_loc, code_start, token_start): New local vars.
12106 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
12107 processing of Yacc white space and equivalents here.
12108 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
12109 instead of returning ID immediately, since we need to search for
12110 a subsequent colon.
12111 (<INITIAL>"'", "\""): Save token_start.
12112 (<INITIAL>"%{", "{", "%%"): Save code_start.
12113 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
12114 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
12115 BEGIN context_state at end, not INITIAL.
12116 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
12117 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
12118 Return correct token start.
12119 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
12120 the start of a character, string or multiline comment is found.
12121 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
12122 Reduction): Adjust reported locations to match the more-precise
12123 results now expected.
12124 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
12125 * tests/reduce.at (Useless Rules, Reduced Automaton,
12126 Underivable Rules): Likewise.
12127 * tests/regression.at (Invalid inputs): No longer `expecting ";"
12128 or "|"' now that so many other tokens are allowed by the new grammar.
12130 * src/complain.h (current_file): Remove duplicate decl;
12131 current_file is now owned by files.h.
12132 * src/complain.c, src/scan-gram.l: Include files.h.
12134 2002-12-06 Paul Eggert <eggert@twinsun.com>
12136 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
12137 promotes to int; it might be unsigned int.
12138 * data/yacc.c (yy_reduce_print): Likewise.
12140 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
12141 be #defined in the prologue, not in the Bison declarations.
12142 This fixes Debian Bug 102878, reported by Shaul Karl.
12144 2002-12-02 Paul Eggert <eggert@twinsun.com>
12146 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
12147 * lib/strtoul.c: New file, from gnulib.
12148 This fixes a porting bug reported by Peter Klein in
12149 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
12151 2002-11-30 Paul Eggert <eggert@twinsun.com>
12153 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
12154 and put only a forward declaration in the prologue. This is for
12155 consistency with the other scanner helper functions.
12157 Type clashes now generate warnings, not errors, since it
12158 appears that POSIX may allow some grammars with type clashes.
12159 * src/reader.c (grammar_current_rule_check): Warn about
12160 type clashes instead of complaining.
12161 * tests/input.at (Type Clashes): Expect warnings, not complaints.
12163 Add Yacc library, since POSIX requires it.
12164 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
12165 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
12166 * lib/main.c, lib/yyerror.c: New files.
12168 gram_error can be static; it need not be extern.
12169 * src/reader.h (gram_error): Remove decl.
12170 * src/parse-gram.y (gram_error): Now static. Add static decl.
12171 (print_token_value): Omit parameter names from forward decl,
12174 2002-11-29 Paul Eggert <eggert@twinsun.com>
12176 * doc/bison.texinfo: Emphasize that yylex and yyerror must
12177 be declared before being used. E.g., one should typically
12178 declare them in the prologue. Use GNU coding style in examples.
12179 Put "const" consistently after the type it modifies. Mention
12180 that C99 supports "inline". Mention that yyerror traditionally
12183 %parse-param and %lex-param now take just one argument, the
12184 declaration; the argument name is deduced from the declaration.
12186 * doc/bison.texinfo (Parser Function, Pure Calling, Error
12187 Reporting, Table of Symbols): Document this.
12188 * src/parse-gram.y (add_param): New function.
12190 (declaration): Implement new rule for %parse-param and %lex-param.
12191 * src/scan-gram.l: "," now elicits a warning, rather than being
12192 a token; this is more compatible with byacc.
12193 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
12195 2002-11-27 Paul Eggert <eggert@twinsun.com>
12197 Rename identifiers to avoid real and potential collisions.
12199 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
12200 to avoid collision with lex macro described by Bruce Lilly in
12201 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
12202 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
12203 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
12204 * src/parse-gram.y (print_token_value): Renamed from yyprint.
12206 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
12207 The name "yycontrol" violates the name space rules, and this stuff
12208 wasn't being used anyway.
12209 (input): Remove action; this stuff wasn't being used.
12210 (gram_error): Rename local variable yylloc -> loc.
12211 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
12212 (YY_DECL): Don't use "yy" at start of local variables.
12213 All uses changed, e.g., yylloc -> loc.
12214 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
12215 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
12216 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
12217 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
12219 * src/parse-gram.y (gram_error): loc is now const *.
12220 * src/reader.h (gram_error): Likewise.
12222 2002-11-24 Paul Eggert <eggert@twinsun.com>
12226 * tests/actions.at (Actions after errors): Use an output format
12227 more similar to that of the Printers and Destructors test.
12228 Test the position of the ';' token too.
12229 (Printers and Destructors): Likewise.
12230 (Printers and Destructors: %glr-parser): Remove for now, to avoid
12231 unnecessarily alarming people when the test fails.
12233 * data/yacc.c (yyerrlab1): Move this label down, so that the
12234 parser does not discard the lookahead token if the user code
12235 invokes YYERROR. This change is required for POSIX conformance.
12237 * lib/error.c: Sync with gnulib.
12239 2002-11-22 Paul Eggert <eggert@twinsun.com>
12241 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
12242 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
12243 * lib/xmalloc.c: Likewise.
12245 2002-11-20 Paul Eggert <eggert@twinsun.com>
12247 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
12249 2002-11-20 Paul Eggert <eggert@twinsun.com>
12251 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
12252 should use `if (! x) abort ();' rather than `assert (x);', and
12253 anyway it's one less thing to worry about configuring.
12255 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
12256 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
12257 and replace all instances of assert with abort.
12258 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
12259 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
12261 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
12262 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
12263 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
12264 hash_find_entry, hash_rehash, hash_insert): Likewise.
12265 * src/conflicts.c (resolve_sr_conflict): Likewise.
12266 * src/lalr.c (set_goto_map, map_goto): Likewise.
12267 * src/nullable.c (nullable_compute): Likewise.
12268 * src/output.c (prepare_rules, token_definitions_output): Likewise.
12269 * src/reader.c (packgram, reader): Likewise.
12270 * src/state.c (state_new, state_free, state_transitions_set,
12271 state_reduction_find): Likewise.
12272 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
12273 symbol_pack): Likewise.
12274 * src/tables.c (conflict_row, pack_vector): Likewise.
12275 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
12276 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
12277 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
12278 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
12280 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
12281 (ARGMATCH_CONSTRAINT): New macro.
12282 (ARGMATCH_ASSERT): Use it.
12284 * src/system.h (verify): New macro.
12285 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
12286 rather than assert.
12287 * src/tables.c (tables_generate): Likewise.
12289 * src/struniq.c (struniq_assert): Now returns void, and aborts
12290 if the assertion is false.
12291 (struniq_assert_p): Remove.
12292 * src/struniq.h: Likewise.
12294 2002-11-18 Paul Eggert <eggert@twinsun.com>
12296 * data/glr.c (yygetLRActions): Replace `yyindex' with
12297 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
12298 This fixes the regression with Sun ONE Studio 7 cc that I reported in
12299 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
12301 2002-11-18 Akim Demaille <akim@epita.fr>
12303 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
12305 From Tim Van Holder.
12307 2002-11-17 Paul Eggert <eggert@twinsun.com>
12309 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
12310 to "SyntaxError" for consistency with my 2002-11-15 change.
12312 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
12313 not define to {}, since this breaks the common use of `YYDPRINTF
12314 ((...));' if a single statement is desired (e.g. before `else').
12315 Work around GCC warnings by surrounding corresponding calls with
12317 (yyhasResolvedValue): Remove unused function.
12318 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
12320 (yyreportSyntaxError): Renamed from yyreportParseError.
12321 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
12323 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
12324 extern when possible. Remove unused initializations.
12326 2002-11-16 Akim Demaille <akim@epita.fr>
12328 Augment the similarity between GLR and LALR traces.
12330 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
12331 (YY_REDUCE_PRINT): New.
12332 (yyparse): Use them.
12333 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
12335 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
12336 state reached after the reduction/recovery, since...
12337 (yyparse, yyprocessOneStack): Report the state we are entering in.
12339 2002-11-16 Akim Demaille <akim@epita.fr>
12341 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
12342 Add support for --trace=skeleton.
12343 * src/scan-skel.l: %option debug.
12344 Scan strings of non-@ or \n instead of character by character.
12345 (scan_skel): Handle trace_skeleton.
12347 (@output_parser_name@, @output_header_name@): ``Restore'' their
12348 support (used to be M4 macros).
12349 * data/yacc.c: Quote larger chunks, a la glr.c.
12350 * data/lalr1.cc: Likewise.
12351 The header guards are no longer available, so use some other
12352 string than `YYLSP_NEEDED'.
12354 2002-11-16 Akim Demaille <akim@epita.fr>
12356 Make the ``Printers and Destructors'' test more verbose, taking
12357 `yacc.c''s behavior as (possibly wrong) reference.
12359 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
12360 instead of fprint on stdout.
12361 Set and report the last_line of the symbols.
12362 Consistently display values and locations.
12364 2002-11-16 Paul Eggert <eggert@twinsun.com>
12366 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
12368 2002-11-15 Paul Eggert <eggert@twinsun.com>
12370 * tests/actions.at (Actions after errors): New test case.
12372 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
12373 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
12374 tests/action.at, tests/calc.at, tests/conflicts.at,
12375 tests/cxx-type.at, tests/regression.at:
12376 "parse error" -> "syntax error" for POSIX compatibility.
12377 "parsing stack overflow..." -> "parser stack overflow" so
12378 that code matches Bison documentation.
12380 2002-11-15 Akim Demaille <akim@epita.fr>
12382 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
12383 take two BRACED_CODE, not two string_content.
12384 Free the scanner's obstack when we are done.
12385 (code_content): New.
12386 * tests/calc.at: Adjust.
12387 * doc/bison.texinfo: Adjust.
12388 Also, make sure to include the `,' for these declarations.
12390 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
12392 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
12393 definition; avoids potential autoreconf problems.
12395 2002-11-15 Akim Demaille <akim@epita.fr>
12397 Always check the value returned by yyparse.
12399 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
12400 returned by yyparse.
12401 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
12403 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
12404 returned by yyparse.
12406 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12408 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
12411 2002-11-14 Paul Eggert <eggert@twinsun.com>
12413 * src/output.c (output_skeleton): Call xfopen instead of
12414 duplicating xfopen's body.
12416 Fix bugs reported by Nelson H. F. Beebe in
12417 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
12419 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
12420 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
12421 Group compiler. Instead, use "$CC -E bar.c". Include the .h
12422 file twice in the grammar, as an extra check.
12424 * tests/input.at (Torturing the Scanner): Surround the
12425 backslash-newline tests with "#if 0", to make it less likely that
12426 we'll run into compiler bugs. Bring back solitary \ inside
12427 comment, but add a closing comment to work around HP C bug. Don't
12428 test backslash-newline in C character constant.
12430 2002-11-14 Akim Demaille <akim@epita.fr>
12432 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
12433 status of the compiler.
12434 Calling `exit 1' is no longer needed.
12435 Reported by Nelson H. F. Beebe.
12437 2002-11-14 Akim Demaille <akim@epita.fr>
12439 * tests/atlocal.in (CPPFLAGS): We have config.h.
12440 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
12442 * tests/actions.at, tests/calc.at, tests/conflicts.at,
12443 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
12444 * tests/regression.at, tests/torture.at: Use them for all the
12445 grammars that are to be compiled.
12446 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
12447 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
12448 * doc/bison.texinfo (GLR Parsers): Document `inline'.
12450 2002-11-14 Akim Demaille <akim@epita.fr>
12452 * doc/bison.texinfo: Various formatting changes (alignments in
12453 samples, additional @group/@end group, GCS in samples.
12454 Use @deffn instead of simple @table to define the directives,
12455 macros, variables etc.
12457 2002-11-13 Paul Eggert <eggert@twinsun.com>
12459 Fix some bugs reported by Albert Chin-A-Young in
12460 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
12462 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
12463 -o c"; the HP C compiler chatters during compilation.
12464 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
12465 * tests/headers.at (export YYLTYPE): Likewise.
12467 * tests/input.at (Torturing the Scanner): Remove lines containing
12468 solitary backslashes, as they tickle a bug in the HP C compiler.
12470 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
12471 comments, since they're not portable. Use GNU coding style.
12473 2002-11-13 Akim Demaille <akim@epita.fr>
12475 * data/yacc.c: Leave bigger chunks of quoted text.
12476 (YYDSYMPRINTF): New.
12477 Use it to report symbol activities.
12478 * data/glr.c (YYDSYMPRINTF): New.
12481 2002-11-12 Paul Eggert <eggert@twinsun.com>
12485 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
12486 (yyglrReduce): Return yyok, not 0.
12487 This should avoid the enumerated-type warnings reported
12488 by Nelson H. F. Beebe in
12489 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
12491 * lib/bbitset.h (BITSET_INLINE): Remove.
12492 * lib/bitset.h [! BITSET_INLINE]: Remove.
12493 (bitset_set, bitset_reset, bitset_test): Rename local vars
12494 to avoid shadowing warnings by GCC.
12496 * data/glr.c (inline): Remove #define. It's the user's
12497 responsibility to #define it away, just like 'const'.
12498 This fixes one of the bugs reported by Nelson H. F. Beebe in
12499 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
12501 * Makefile.maint (po-check): Scan .l and .y files instead of the
12502 .c and the .h files that they generate. This fixes the bug
12503 reported by Tim Van Holder in:
12504 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
12505 Look for N_ as well as for _. Try to avoid matching #define for
12507 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
12508 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
12509 * src/scan-gram.l: Revamp regular expressions so that " and '
12510 do not confuse xgettext.
12512 * src/struniq.h (struniq_new): Do not declare the return type
12513 to be 'const'; this violates the C standard.
12514 * src/struniq.c (struniq_new): Likewise.
12516 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
12518 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
12519 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
12522 2002-11-12 Akim Demaille <akim@epita.fr>
12524 * Makefile.maint: Sync with Autoconf:
12525 (local_updates): New.
12527 2002-11-12 Akim Demaille <akim@epita.fr>
12529 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
12531 2002-11-12 Akim Demaille <akim@epita.fr>
12533 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
12536 2002-11-12 Akim Demaille <akim@epita.fr>
12538 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
12541 2002-11-12 Akim Demaille <akim@epita.fr>
12543 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
12544 Use it to test the GLR parser.
12546 2002-11-12 Akim Demaille <akim@epita.fr>
12548 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
12550 * data/glr.c (yystos): New.
12551 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
12552 (YYDSYMPRINT): New.
12553 (yyval): Don't define it, it is handled via M4.
12554 (yyrecoverParseError): Free verbosely the discarded symbols.
12555 * data/yacc.c (yysymprint): Remove, rather...
12556 (b4_yysymprint_generate): invoke.
12557 * data/c.m4 (b4_yysymprint_generate): New.
12558 Accept pointers as arguments, as opposed to the version from
12560 (b4_yydestruct_generate): Likewise.
12561 * tests/cations.at (Printers and Destructors): Use Bison directives
12562 instead of CPP macros.
12563 Don't rely on internal details.
12565 2002-11-12 Akim Demaille <akim@epita.fr>
12567 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
12568 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
12569 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
12570 it against YYEMPTY and so forth), work on yytoken (i.e., set
12571 it to YYEMPTY etc.).
12572 (yydestruct): Replace with a b4_yydestruct_generate invocation.
12573 (b4_symbol_actions): Remove.
12574 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
12575 for 0, end-of-input.
12577 2002-11-12 Akim Demaille <akim@epita.fr>
12579 * doc/bison.texinfo (Destructor Decl): New.
12581 2002-11-12 Akim Demaille <akim@epita.fr>
12583 * src/tables.c (tables_generate): Use free for pointers that
12584 cannot be NULL, not XFREE.
12585 (pack_vector): Use assert, not fatal, for bound violations.
12586 * src/state.c (state_new): Likewise.
12587 * src/reader.c (reader): Likewise.
12588 * src/lalr.c (set_goto_map): Likewise.
12589 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
12592 2002-11-12 Akim Demaille <akim@epita.fr>
12594 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
12596 * src/scan-gram.l (last_string): Is global to the file, not to
12598 * src/parse-gram.y (input): Don't append the epilogue here,
12599 (epilogue.opt): do it here, and free the scanner's obstack.
12600 * src/reader.c (epilogue_set): Rename as...
12601 (epilogue_augment): this.
12602 * data/c.m4 (b4_epilogue): Defaults to empty.
12604 2002-11-12 Akim Demaille <akim@epita.fr>
12606 * src/getargs.c (long_options): Remove duplicates.
12607 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
12609 * doc/bison.rnh: Remove.
12610 * doc/bison.texinfo (VMS Invocation): Remove.
12612 2002-11-12 Akim Demaille <akim@epita.fr>
12614 * src/struniq.h, src/struniq.c (struniq_t): Is const.
12615 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
12617 Use struniq for symbols.
12619 * src/symtab.h (symbol_t): The tag member is a struniq.
12620 (symbol_type_set): Adjust.
12621 * src/symtab.c (symbol_new): Takes a struniq.
12622 (symbol_free): Don't free the tag member.
12623 (hash_compare_symbol_t, hash_symbol_t): Rename as...
12624 (hash_compare_symbol, hash_symbol): these.
12625 Use the fact that tags as struniqs.
12626 (symbol_get): Use struniq_new.
12627 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
12629 * src/reader.h (merger_list, grammar_currentmerge_set): The name
12630 and type members are struniqs.
12631 * src/reader.c (get_merge_function)
12632 (grammar_current_rule_merge_set): Adjust.
12633 (TYPE, current_type): Are struniq.
12635 Use struniq for file names.
12637 * src/files.h, src/files.c (infile): Split into...
12638 (grammar_file, current_file): these.
12639 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
12640 * src/reduce.c (reduce_print): Likewise.
12641 * src/getargs.c (getargs): Likewise.
12642 * src/complain.h, src/complain.c: Likewise.
12643 * src/main.c (main): Call struniqs_new early enough to use it for
12645 Don't free the input file name.
12647 2002-11-12 Akim Demaille <akim@epita.fr>
12649 * src/symtab.c (symbol_free): Remove dead deactivated code:
12650 type_name are properly removed.
12651 Don't use XFREE to free items that cannot be NULL.
12652 * src/struniq.h, src/struniq.c: New.
12653 * src/main.c (main): Initialize/free struniqs.
12654 * src/parse-gram.y (%union): Add astruniq member.
12656 * src/scan-gram.l (<{tag}>): Return a struniq.
12657 Free the obstack bit that used to store it.
12658 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
12660 2002-11-11 Paul Eggert <eggert@twinsun.com>
12662 Revamp to fix many (but not all) of the C- and M4-related quoting
12663 problems. Among other things, this fixes the Bison bug reported
12664 by Jan Hubicka when processing the Bash grammar; see:
12665 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
12667 Use new @ escapes consistently. Represent brackets with @{ and @}
12668 rather than @<:@ and @:>@, since this works a bit better with dumb
12669 editors like vi. Represent @ with @@, since @ is now consistently
12670 an escape. Use @oline@ and @ofile@ rather than __oline__ and
12671 __ofile__, to avoid unexpected expansions. Similarly, use @output
12672 rather than #output.
12674 * data/c.m4 (b4_copyright): Omit file name from comment, since
12675 the file name could contain "*/".
12676 (b4_synclines_flag): Don't quote the 2nd argument; it should already
12677 be quoted. All uses changed.
12679 * data/glr.c: Use new @ escapes consistently.
12680 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
12681 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
12682 Remove, since they couldn't handle arbitrary characters in file
12684 * data/lalr1.cc: Likewise.
12685 * data/yacc.c: Likewise.
12687 * src/files.c (output_infix): Remove; all uses removed.
12688 * src/files.h: Likewise.
12690 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
12691 mishandled funny characters in file names, and anyway it isn't
12693 * data/yacc.c: Likewise.
12694 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
12696 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
12697 * data/yacc.c: Likewise.
12699 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
12701 (muscle_init): Quote filename as a C string.
12702 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
12703 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
12704 * src/output.c (escaped_file_name_output): New function.
12705 (prepare_symbols): Quote tokens for M4.
12706 (prepare): Don't insert output_infix, output_prefix,
12707 output_parser_name, output_header_name; this is now down by scan-skel.
12708 Insert skeleton as a C string.
12710 * src/output.c (user_actions_output, symbol_destructors_output,
12711 symbol_printers_output): Quote filenames for C and M4.
12712 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12714 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
12715 escapes other than \\ and \'; this simplifies the code.
12716 (<SC_STRING>): Likewise, for \\ and \".
12717 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
12718 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
12719 Use new escapes @{ and @} for [ and ].
12721 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
12722 them with auto vars.
12723 Switch to new escape scheme, where @ is the escape character uniformly.
12724 Abort if a stray escape character is found. Avoid unbounded input
12725 buffer when parsing non-escaped text.
12727 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
12728 __oline__, #output, $@, and @{ do not have unintended meanings.
12730 2002-11-09 Paul Eggert <eggert@twinsun.com>
12732 Fix the test failure due to GCC warnings described in
12733 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
12734 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
12735 evaluate to 0 if it's impossible for NINF to be in the respective
12737 (yygetLRActions, yyrecoverParseError): Use them.
12739 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
12740 counted in the token inserted at end of file. Now takes
12741 location_t *, not location_t, so that the location can be
12742 adjusted. All uses changed.
12744 * tests/regression.at (Invalid inputs): Adjust wording in
12745 diagnostic to match the new behavior.
12747 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
12748 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
12749 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
12750 abort ();'. This reduces the runtime of the "Many lookaheads"
12751 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
12754 2002-11-07 Paul Eggert <eggert@twinsun.com>
12756 * src/parse-gram.y (CHARACTER): Remove unused token.
12759 * src/scan-gram.l: Remove stack option. We no longer use the
12760 stack, since the stack was never deeper than 1; instead, use the
12761 new auto var c_context to record the stacked value.
12763 Remove nounput option. At an unexpected end of file, we now unput
12764 the minimal input necessary to end cleanly; this simplifies the
12767 Avoid unbounded token sizes where this is easy.
12769 (unexpected_end_of_file): New function.
12770 Use it to systematize the error message on unexpected EOF.
12771 (last-string): Now auto, not static.
12772 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
12773 (scanner_last_string_free): Remove; not used.
12774 (percent_percent_count): Move decl to just before use.
12775 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
12776 not the (never otherwised-used) CHARACTER.
12778 2002-11-07 Akim Demaille <akim@epita.fr>
12780 Let yyerror always receive the msg as last argument, so that
12781 yyerror can be variadic.
12783 * data/yacc.c (b4_yyerror_args): New.
12784 Use it when calling yyerror.
12785 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
12786 Use it when calling yyerror.
12787 * doc/bison.texinfo (Error Reporting): Adjust.
12788 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
12789 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
12791 2002-11-06 Akim Demaille <akim@epita.fr>
12793 #line should have quoted strings.
12794 Ideally, this should be done by m4_quotearg.
12796 * src/scan-skel.l: Include quotearg.h.
12798 * src/output.c (symbol_printers_output)
12799 (symbol_destructors_output): Quote the file name.
12801 2002-11-06 Akim Demaille <akim@epita.fr>
12803 * tests/regression.at (Invalid inputs): Adjust to the recent
12806 2002-11-06 Akim Demaille <akim@epita.fr>
12808 Restore --no-lines.
12809 Reported by Jim Kent.
12811 * data/c.m4 (b4_syncline): New.
12812 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
12813 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
12814 * src/output.c (user_actions_output): Likewise.
12815 (prepare): Define 'b4_synclines_flag'.
12816 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
12818 2002-11-06 Akim Demaille <akim@epita.fr>
12820 * src/main.c (main): Free `infile'.
12821 * src/scan-gram.l (handle_syncline): New.
12823 * src/output.c (user_actions_output, symbol_destructors_output)
12824 (symbol_printers_output): Use the location's file name, not
12826 * src/reader.c (prologue_augment, epilogue_set): Likewise.
12828 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12830 * src/tables.c (matching_state): Don't allow states to match if
12831 either has GLR conflict entries.
12833 2002-11-05 Paul Eggert <eggert@twinsun.com>
12835 * src/scan-gram.l: Use more accurate diagnostics, e.g.
12836 "integer out of range" rather than "invalid value".
12837 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
12840 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
12841 Also, remove one static variable in the scanner.
12843 * src/scan-gram.l (braces_level): Now auto, not static.
12844 Initialize to zero if the compiler is being picky.
12845 (INITIAL): Clear braces_level instead of incrementing it.
12846 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
12847 as POSIX 1003.1-2001 requires.
12848 * src/system.h (IF_LINT): New macro, taken from coreutils.
12849 * configure.ac: Define "lint" if --enable-gcc-warnings.
12851 2002-11-05 Akim Demaille <akim@epita.fr>
12853 * src/scan-gram.l: When it starts with `%', complain about the
12854 whole directive, not just that `invalid character: %'.
12856 2002-11-04 Akim Demaille <akim@epita.fr>
12858 * Makefile.maint: Update from Autoconf.
12859 (update, cvs-update, po-update, do-po-update): New.
12861 2002-11-04 Akim Demaille <akim@epita.fr>
12863 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
12865 Have yyerror `use' its arguments.
12866 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
12867 returns true when location & yacc & pure & parse-param.
12868 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
12870 2002-11-04 Akim Demaille <akim@epita.fr>
12872 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
12874 * src/scan-gram.l: Use [\'] instead of ['] to pacify
12877 Use quote, not quote_n since LOCATION_PRINT no longer uses the
12880 2002-11-03 Paul Eggert <eggert@twinsun.com>
12882 * src/reader.c (get_merge_function, grammar_current_rule_check):
12883 Use consistent diagnostics for reporting type name clashes.
12884 Quote the types with <>, for consistency with Yacc.
12885 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
12887 2002-11-03 Akim Demaille <akim@epita.fr>
12889 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
12891 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
12892 (b4_parse_param): Remove.
12893 Use b4_identification.
12894 Propagate b4_pure_args where needed to pass them to yyerror.
12895 * data/glr.m4 (b4_parse_param): Remove.
12896 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
12897 (b4_lpure_formals): New.
12898 Use b4_identification.
12899 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
12900 b4_user_formals and b4_user_args.
12901 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
12902 (yyreportAmbiguity): When using a pure parser, also need
12903 the location, and the parse-params.
12905 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
12906 When using a pure parser, also need the parse-params.
12908 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
12909 (%pure-parser + %parse-param) LALR and GLR parsers.
12910 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
12911 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
12912 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
12913 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
12914 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
12915 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
12916 * doc/bison.texinfo: Untabify the whole file.
12917 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
12918 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
12919 (Error Reporting): Adjust to these new directives.
12920 Document %error-verbose, deprecate YYERROR_VERBOSE.
12922 2002-11-03 Akim Demaille <akim@epita.fr>
12924 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
12925 AT_CHECK_CALC_GLR invocations to use % directives, instead of
12926 command line options.
12927 * tests/cxx-type.at: Formatting changes.
12929 2002-11-03 Paul Eggert <eggert@twinsun.com>
12931 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
12932 to count columns correctly, and to check for invalid inputs.
12934 Use mbsnwidth to count columns correctly. Account for tabs, too.
12935 Include mbswidth.h.
12936 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
12937 (extend_location): New function.
12938 (YY_LINES): Remove.
12940 Handle CRLF in C code rather than in Lex code.
12941 (YY_INPUT): New macro.
12942 (no_cr_read): New function.
12944 Scan UCNs, even though we don't fully handle them yet.
12945 (convert_ucn_to_byte): New function.
12947 Handle backslash-newline correctly in C code.
12948 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
12949 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
12951 (tag, splice): New EREs. Do not allow NUL or newline in tags.
12952 Use {splice} wherever C allows backslash-newline.
12953 YY_STEP after space, newline, vertical-tab.
12954 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
12956 (letter, id): Don't assume ASCII; e.g., spell out a-z.
12958 ({int}, handle_action_dollar, handle_action_at): Check for integer
12961 (YY_STEP): Omit trailing semicolon, so that it's more like C.
12963 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
12964 as well as \000. Check for UCHAR_MAX, not 255.
12965 Allow \x with an arbitrary positive number of digits, as in C.
12966 Check for overflow here.
12967 Allow \? and UCNs, for compatibility with C.
12969 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
12970 with quote slot used by complain_at.
12972 * tests/input.at: Add tests for backslash-newline, m4 quotes
12973 in symbols, long literals, and funny escapes in strings.
12975 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
12976 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
12977 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
12978 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
12979 * m4/mbswidth.m4: New file, from GNU coreutils.
12981 * doc/bison.texinfo (Grammar Outline): Document // comments.
12982 (Symbols): Document that trigraphs have no special meaning in Bison,
12983 nor is backslash-newline allowed.
12984 (Actions): Document that trigraphs have no special meaning.
12986 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
12989 2002-11-02 Paul Eggert <eggert@twinsun.com>
12991 * src/reader.c: Don't include quote.h; not needed.
12992 (get_merge_function): Reword warning to be consistent with
12993 type clash diagnostic in grammar_current_rule_check.
12995 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
12996 bug in trigraph handling.
12998 * src/output.c (prepare_symbols): When printing token names,
12999 escape "[" as "@<:@" and likewise for "]".
13001 * src/system.h (errno): Remove declaration, as we are now
13002 assuming C89 or better, and C89 guarantees errno.
13004 2002-10-30 Paul Eggert <eggert@twinsun.com>
13006 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
13007 Check for close failures.
13008 * src/files.h (xfclose): Return void, not int, since it always
13010 * src/files.c (xfclose): Likewise. Report I/O error if ferror
13012 * src/output.c (output_skeleton): Use xfclose rather than fclose
13013 and ferror. xfclose now checks ferror.
13015 * data/glr.c (YYLEFTMOST_STATE): Remove.
13016 (yyreportTree): Use a stack-based leftmost state. This avoids
13017 our continuing battles with bogus warnings about initializers.
13019 2002-10-30 Akim Demaille <akim@epita.fr>
13021 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
13024 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13026 * tests/glr-regr1.at: New test for reported regressions.
13027 * tests/testsuite.at: Add glr-regr1.at test.
13028 * tests/Makefile.am: Add glr-regr1.at test.
13030 2002-10-24 Paul Eggert <eggert@twinsun.com>
13034 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
13035 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
13036 we use malloc. Don't assume 'A' through 'Z' are contiguous.
13037 Don't assume strdup exists; POSIX says its an XSI extension.
13038 Check for buffer overflow on input.
13040 2002-10-24 Akim Demaille <akim@epita.fr>
13042 * src/output.c (output_skeleton): Don't disable M4sugar comments
13043 too soon: it results in comments being expanded.
13044 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
13047 2002-10-24 Akim Demaille <akim@epita.fr>
13049 * data/yacc.c (m4_int_type): New.
13050 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
13051 char' as only yacc.c wants K&R portability.
13052 * data/glr.c (yysigned_char): Remove.
13053 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
13054 Reported by Quoc Peyrot.
13056 2002-10-23 Paul Eggert <eggert@twinsun.com>
13058 * src/main.c (main): With --trace=time, report times even if a
13059 non-fatal error occurs. Formerly, the times were reported in some
13060 such cases but not in others.
13061 * src/reader.c (reader): Just return if a complaint has been issued,
13062 instead of exiting, so that 'main' can report times.
13064 2002-10-22 Akim Demaille <akim@epita.fr>
13066 * src/system.h: Include sys/types.
13067 Reported by Bert Deknuydt.
13069 2002-10-23 Paul Eggert <eggert@twinsun.com>
13071 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
13072 Suggested by Art Haas.
13074 2002-10-22 Paul Eggert <eggert@twinsun.com>
13076 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
13077 decl; not needed any more.
13078 * src/main.c (main): Use return to exit, undoing yesterday's change.
13079 The last OS that we could find where this wouldn't work is
13080 SunOS 3.5, and that's too old to worry about now.
13082 * data/glr.c (struct yyltype): Define members even when not
13083 doing locations. This is more consistent with yacc.c, and it
13084 works around the following bug reports:
13085 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
13086 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
13088 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
13089 @acronym consistently. Standardize on "Yacc" instead of "YACC",
13090 "Algol" instead of "ALGOL". Give a bit more history about BNF.
13092 2002-10-22 Akim Demaille <akim@epita.fr>
13094 * data/README: New.
13096 2002-10-21 Paul Eggert <eggert@twinsun.com>
13098 Be consistent about 'bool'; the old code used an enum in one
13099 module and an int in another, and this violates the C standard.
13100 * m4/stdbool.m4: New file, from coreutils 4.5.3.
13101 * configure.ac (AC_HEADER_STDBOOL): Add.
13102 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
13103 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
13104 * src/symtab.c (hash_compare_symbol_t): Likewise.
13105 * src/system.h (bool, false, true): Use a definition consistent
13106 with ../lib/hash.c. All uses changed.
13108 * src/complain.c (warning_issued): Renamed from warn_message_count,
13109 so that we needn't worry about integer overflow (!).
13110 Now of type bool. All uses changed.
13111 (complaint_issued): Renamed from complain_message_count; likewise.
13113 * src/main.c (main): Use exit to exit with failure.
13115 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
13116 rather than 1 and 0.
13117 * src/main.c (main): Likewise.
13118 * src/getargs.c (getargs): Likewise.
13119 * src/reader.c (reader): Likewise.
13121 * src/getarg.c (getargs): Remove duplicate code for
13122 "Try `bison --help'".
13124 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
13125 What was that "2" for?
13127 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
13128 * src/getargs.c (usage): Likewise.
13130 * src/getargs.c (getargs): When there are too few operands, report
13131 the last one. When there are too many, report the first extra
13132 one. This is how diffutils does it.
13134 2002-10-20 Paul Eggert <eggert@twinsun.com>
13136 Remove K&R vestiges.
13137 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
13138 * src/complain.c (VA_START): Remove. Assume prototypes.
13139 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
13140 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
13141 fatal): Assume prototypes.
13142 * src/complain.h: Assume prototypes.
13143 * src/system.h (PARAMS): Remove.
13144 Include <limits.h> unconditionally, since it's guaranteeed even
13145 for a freestanding C89 compiler.
13146 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
13147 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
13149 2002-10-20 Akim Demaille <akim@epita.fr>
13151 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
13152 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
13153 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
13154 (yyresolveStates, yyresolveAction, yyresolveStack)
13155 (yyprocessOneStack): Use them.
13156 (yy_reduce_print): New.
13157 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
13159 2002-10-20 Akim Demaille <akim@epita.fr>
13161 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
13162 arguments and output `void'.
13163 (b4_c_function): Rename as...
13164 (b4_c_function_def): this.
13165 (b4_c_function_decl, b4_c_ansi_function_def)
13166 (b4_c_ansi_function_decl): New.
13167 Change the interpretation of the arguments: before `int, foo', now
13169 * data/yacc.c (yyparse): Prototype and define thanks to these.
13170 Adjust b4_c_function_def uses.
13171 * data/glr.c (yyparse): Likewise, but ANSI only.
13173 2002-10-20 Akim Demaille <akim@epita.fr>
13175 * src/output.c (prepare): Move the definition of `tokens_number',
13176 `nterms_number', `undef_token_number', `user_token_number_max'
13178 (prepare_tokens): Here.
13179 (prepare_tokens): Rename as...
13180 (prepare_symbols): this.
13181 (prepare): Move the definition of `rules_number' to...
13182 (prepare_rules): here.
13183 (prepare): Move the definition of `last', `final_state_number',
13184 `states_number' to...
13185 (prepare_states): here.
13186 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
13188 2002-10-20 Akim Demaille <akim@epita.fr>
13190 * src/tables.h, src/tables.c, src/output.c: Comment changes.
13192 2002-10-20 Akim Demaille <akim@epita.fr>
13194 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
13197 2002-10-20 Akim Demaille <akim@epita.fr>
13199 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
13200 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
13202 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
13204 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
13205 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
13208 2002-10-19 Paul Eggert <eggert@twinsun.com>
13210 Do not create a temporary file, as that involves security and
13211 cleanup headaches. Instead, use a pair of pipes.
13212 Derived from a suggestion by Florian Krohm.
13213 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
13214 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
13215 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
13216 (BISON_PREREQ_SUBPIPE): Add.
13217 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
13218 Add subpipe.h, subpipe.c.
13219 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
13220 * po/POTFILES.in: Add lib/subpipe.c.
13221 * src/output.c: Include "subpipe.h".
13222 (m4_invoke): Remove decl.
13223 (scan_skel): New decl.
13224 (output_skeleton): Use pipe rather than temporary file for m4 input.
13225 Check that m4sugar.m4 is readable, to avoid deadlock.
13226 Check for pipe I/O error.
13227 * src/scan-skel.l (readpipe): Remove decl.
13228 (scan_skel): New function, to be used in place of m4_invoke.
13229 Read from stream rather than file.
13231 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
13232 float, as this generates a warning on Solaris 8 + GCC 3.2 with
13233 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
13234 this generates a more-accurate value anyway.
13236 * lib/timevar.c (timervar_accumulate): Rename locals to
13237 avoid confusion with similarly-named more-global.
13238 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
13240 * src/output.c (prepare): Use xstrdup to convert char const *
13241 to char *, to avoid GCC warning.
13243 2002-10-19 Akim Demaille <akim@epita.fr>
13245 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
13246 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
13247 Use them to have `calc.y' ready for %pure-parser.
13248 * data/yacc.c (YYLEX): Pass a yylex return type to
13249 b4_c_function_call.
13251 2002-10-19 Akim Demaille <akim@epita.fr>
13253 Prototype support of %lex-param and %parse-param.
13255 * src/parse-gram.y: Add the definition of the %lex-param and
13256 %parse-param tokens, plus their rules.
13257 Drop the `_' version of %glr-parser.
13259 * src/scan-gram.l (INITIAL): Scan them.
13260 * src/muscle_tab.c: Comment changes.
13261 (muscle_insert, muscle_find): Rename `pair' as `probe'.
13262 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
13263 (muscle_entry_s): The `value' member is no longer const.
13264 Adjust all dependencies.
13265 * src/muscle_tab.c (muscle_init): Adjust: use
13266 MUSCLE_INSERT_STRING.
13267 Initialize the obstack earlier.
13268 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
13269 (muscle_pair_list_grow): New.
13270 * data/c.m4 (b4_c_function_call, b4_c_args): New.
13271 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
13272 * tests/calc.at: Use %locations, not --locations.
13273 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
13275 2002-10-19 Akim Demaille <akim@epita.fr>
13277 * src/getargs.c (usage): Take status as argument and exit
13279 Report the traditional `Try ... --help' message when status != 0.
13280 (usage, version): Don't take a FILE * as arg, it is pointless.
13281 (getargs): When there is an incorrect number of arguments, make it
13282 an error, and report it GNUlically thanks to `usage ()'.
13284 2002-10-18 Paul Eggert <eggert@twinsun.com>
13286 * data/glr.c (yyreportParseError): Don't assume that sprintf
13287 yields the length of the printed string, as this is not true
13288 on SunOS 4.1.4. Reported by Peter Klein.
13290 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
13291 * tests/conflicts.at (%nonassoc and eof): Likewise.
13292 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
13294 2002-10-17 Akim Demaille <akim@epita.fr>
13296 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
13297 * src/getargs.c (trace_types, trace_args): Adjust.
13298 * src/reader.c (grammar_current_rule_prec_set)
13299 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
13300 Standardize error messages.
13301 And s/@prec/%prec/!
13302 (reader): Use trace_flag to enable scanner/parser debugging,
13303 instead of an adhoc scheme.
13304 * src/scan-gram.l: Remove trailing debugging code.
13306 2002-10-16 Paul Eggert <eggert@twinsun.com>
13308 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
13311 * NEWS: Officially drop support for building Bison with K&R C,
13312 since it didn't work anyway and it's not worth worrying about.
13313 * Makefile.maint (wget_files): Remove ansi2knr.c.
13314 (ansi2knr.c-url_prefix): Remove.
13315 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
13316 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13317 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
13319 2002-10-15 Paul Eggert <eggert@twinsun.com>
13321 Stop using the "enum_" trick for K&R-style function definitions;
13322 it confused me, and I was the author! Instead, assume that people
13323 who want to use K&R C compilers (when using these modules in GCC,
13324 perhaps?) will run ansi2knr.
13326 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
13327 All uses of "enum_" changed to "enum ".
13328 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13329 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13331 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
13332 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
13333 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
13334 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
13335 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
13336 abitset_not, abitset_ones, abitset_or, abitset_or_and,
13337 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
13338 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
13339 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
13340 Use function prototypes; this removes the need for declaring
13341 static functions simply to provide their prototypes.
13342 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
13343 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
13344 bitset_count_, bitset_create, bitset_dump, bitset_first,
13345 bitset_free, bitset_init, bitset_last, bitset_next,
13346 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
13347 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
13348 bitset_print, bitset_release_memory, bitset_toggle_,
13349 bitset_type_choose, bitset_type_get, bitset_type_name_get,
13350 debug_bitset): Likewise.
13351 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
13352 * lib/bitset_stats.c (bitset_log_histogram_print,
13353 bitset_percent_histogram_print, bitset_stats_and,
13354 bitset_stats_and_cmp, bitset_stats_and_or,
13355 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
13356 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
13357 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
13358 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
13359 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
13360 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
13361 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
13362 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
13363 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
13364 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
13365 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
13366 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
13367 bitset_stats_zero): Likewise.
13368 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13369 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13370 bitsetv_dump, debug_bitsetv): Likewise.
13371 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
13372 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
13373 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
13374 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
13375 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
13376 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
13377 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
13378 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
13379 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
13380 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
13381 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
13383 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
13384 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
13385 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
13386 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
13387 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
13388 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
13389 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
13390 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
13391 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
13392 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
13393 lbitset_xor_cmp, lbitset_zero): Likewise.
13395 2002-10-14 Akim Demaille <akim@epita.fr>
13399 2002-10-14 Akim Demaille <akim@epita.fr>
13401 * tests/Makefile.am (maintainer-check-posix): New.
13403 2002-10-14 Akim Demaille <akim@epita.fr>
13405 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
13408 2002-10-14 Akim Demaille <akim@epita.fr>
13410 * src/tables.c (table_ninf_remap): base -> tab.
13411 Reported by Matt Rosing.
13413 2002-10-14 Paul Eggert <eggert@twinsun.com>
13415 * tests/action.at, tests/calc.at, tests/conflicts.at,
13416 tests/cxx-type.at, tests/headers.at, tests/input.at,
13417 tests/regression.at, tests/synclines.at, tests/torture.at:
13418 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
13419 so that the tests still work even if POSIXLY_CORRECT is set.
13420 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
13422 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
13423 for portability to K&R hosts. Fix typo: signed char is guaranteed
13424 only to 127, not to 128.
13425 * data/glr.c (yysigned_char): New type.
13426 * data/yacc.c (yysigned_char): Likewise.
13427 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
13429 2002-10-13 Paul Eggert <eggert@twinsun.com>
13431 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
13432 true due to limited range of data type" warning from GCC.
13434 * data/c.m4 (b4_token_defines): Protect against double-inclusion
13435 by wrapping enum yytokentype's definition inside #ifndef
13436 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
13438 2002-10-13 Akim Demaille <akim@epita.fr>
13440 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
13441 Un yy- yyrhs to avoid the name clash with the global YYRHS.
13443 2002-10-13 Akim Demaille <akim@epita.fr>
13445 * Makefile.maint: Update from Autoconf 2.54.
13446 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
13448 2002-10-13 Akim Demaille <akim@epita.fr>
13450 * src/print.c (print_state): Separate the list of solved conflicts
13451 from the other items.
13452 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
13454 2002-10-13 Akim Demaille <akim@epita.fr>
13456 Let nondeterministic skeletons be usable with deterministic
13459 With the patch, GAWK compiled by GCC without -O2 passes its test
13460 suite using a GLR parser driven by LALR tables. It fails with -O2
13461 because `struct stat' gives two different answers on my machine:
13462 88 (definition of an auto var) and later 96 (memset on this var).
13463 Hence the stack is badly corrumpted. The headers inclusion is to
13464 blame: if I move the awk.h inclusion before GLR's system header
13465 inclusion, the two struct stat have the same size.
13467 * src/tables.c (pack_table): Always create conflict_table.
13468 (token_actions): Always create conflict_list.
13469 * data/glr.c (YYFLAG): Remove, unused.
13471 2002-10-13 Akim Demaille <akim@epita.fr>
13473 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
13475 (VALGRIND, GXX): New.
13476 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
13477 * tests/bison.in: Run $PREBISON a pre-command.
13478 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
13479 (maintainer-check-g++): New.
13480 * Makefile.am (maintainer-check): New.
13482 2002-10-13 Akim Demaille <akim@epita.fr>
13484 * data/glr.c: Formatting changes.
13485 Tweak some trace messages to match yacc.c's.
13487 2002-10-13 Akim Demaille <akim@epita.fr>
13489 GLR parsers sometimes raise parse errors instead of performing the
13491 Reported by Charles-Henry de Boysson.
13493 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
13494 check the length of the traces when %glr.
13495 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
13497 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
13499 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
13500 (yyltype): Remove the yy prefix from the member names.
13501 (yytable): Complete its comment.
13502 (yygetLRActions): Map error action number from YYTABLE from
13504 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
13505 (which was a bug: it should have been YYTABEL_NINF, and yet it was
13506 not satisfying as we could compare an YYACTION computed from
13507 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
13508 only value for error actions.
13509 (yyreportParseError): In verbose parse error messages, don't issue
13510 `error' in the list of expected tokens.
13511 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
13512 next action to perform to match glr.c's decoding.
13513 (yytable): Complete its comment.
13515 2002-10-13 Paul Eggert <eggert@twinsun.com>
13517 Fix problem reported by Henrik Grubbstroem in
13518 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
13519 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
13520 because the Bison parser reads the second action before reducing
13522 * src/scan-gram.l (rule_length): New static var.
13523 Use it to keep track of the rule length in the scanner, since
13524 we can't expect the parser to be in lock-step sync with the scanner.
13525 (handle_action_dollar, handle_action_at): Use this var.
13526 * tests/actions.at (Exotic Dollars): Test for the problem.
13528 2002-10-12 Paul Eggert <eggert@twinsun.com>
13530 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
13531 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
13532 Include <sys/time.h> when checking for clock_t and struct tms.
13533 Use same include order as source.
13534 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
13535 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
13537 * lib/timevar.c: Update copyright date and clarify comments.
13538 (get_time) [IN_GCC]: Keep the GCC version for reference.
13540 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
13541 GCC version as of today, then merge Bison's changes.
13542 Change "GCC" to "Bison" in copyright notice. timevar.def's
13543 author is Akim, so change that too.
13545 * src/reader.c (grammar_current_rule_check):
13546 Don't worry about the default action if $$ is untyped.
13547 Prevents bogus warnings reported by Jim Gifford in
13548 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
13550 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
13551 * data/glr.c, data/lalr1.cc, data/yacc.c:
13552 Output token definitions before the first part of user declarations.
13553 Fixes compatibility problem reported by Jim Gifford for kbd in
13554 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
13556 2002-10-11 Paul Eggert <eggert@twinsun.com>
13558 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
13559 (yyparse): here. This undoes some of the 2002-07-25 change.
13560 Compatibility problem reported by Ralf S. Engelschall with
13561 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
13563 2002-10-11 Akim Demaille <akim@epita.fr>
13565 * tests/regression.at Characters Escapes): New.
13566 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
13568 Reported by Jan Nieuwenhuizen.
13570 2002-10-11 Akim Demaille <akim@epita.fr>
13574 2002-10-10 Paul Eggert <eggert@twinsun.com>
13576 Portability fixes for bitsets; this also avoids several GCC
13579 * lib/abitset.c: Include <stddef.h>, for offsetof.
13580 * lib/lbitset.c: Likewise.
13582 * lib/abitset.c (abitset_bytes): Return a size that is aligned
13583 properly for vectors of objects. Do not assume that adding a
13584 header size to a multiple of a word size yields a value that is
13585 properly aligned for the whole union.
13586 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13588 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
13589 unique names for structures.
13590 * lib/ebitset.c (ebitset_bytes): Likewise.
13591 * lib/lbitset.c (lbitset_bytes): Likewise.
13593 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
13594 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
13595 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
13596 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
13597 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
13598 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
13599 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
13600 to improve the type-checking that GCC can do.
13601 * lib/bitset.c (bitset_op4_cmp): Likewise.
13602 * lib/bitset_stats.c (bitset_stats_count,
13603 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
13604 bitset_stats_copy, bitset_stats_disjoint_p,
13605 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
13606 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
13607 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
13608 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
13609 bitset_stats_and_or_cmp, bitset_stats_andn_or,
13610 bitset_stats_andn_or_cmp, bitset_stats_or_and,
13611 bitset_stats_or_and_cmp): Likewise.
13612 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
13613 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
13614 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
13615 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
13617 * lib/abitset.h: Include bitset.h, not bbitset.h.
13618 * lib/ebitset.h: Likewise.
13619 * lib/lbitset.h: Likewise.
13621 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
13622 All instances of parameters of type enum bitset_opts are now of
13623 type enum_bitset_opts, to conform to the C Standard, and similarly
13624 for enum_bitset_type.
13625 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
13626 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
13628 Do not use "struct bitset_struct" to mean different things in
13629 different modules. Not only is this confusing, it violates
13630 the C Standard, which requires that structure types in different
13631 modules must be compatible if one is to be passed to the other.
13632 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
13633 All instances of "struct bitset_struct *" replaced with "bitset".
13634 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
13635 (union bitset_union, struct abitset_struct, struct ebitset_struct,
13636 struct lbitset_struct, struct bitset_stats_struct): New types.
13637 All uses of struct bitset_struct changed to union bitset_union,
13639 * lib/abitset.c (struct abitset_struct, abitset,
13640 struct bitset_struct): Remove.
13641 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
13642 struct bitset_struct): Remove.
13643 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
13644 bitset_struct): Remove.
13645 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
13648 Do not call a function of type T using a call that assumes the
13649 function is of a different type U. Standard C requires that a
13650 function must be called with a type that is compatible with its
13652 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13654 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
13656 * lib/ebitset.c (PFV): Remove.
13657 * lib/lbitset.c (PFV): Likewise.
13658 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
13659 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
13661 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
13662 (ebitset_vtable): Use them.
13663 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
13664 lbitset_xor): New functions.
13665 (lbitset_vtable): Use them.
13667 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
13670 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
13672 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
13673 Use offsetof, for simplicity.
13675 2002-10-06 Paul Eggert <eggert@twinsun.com>
13677 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
13678 the same width as int. This reapplies a hunk of the 2002-08-12 patch
13679 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
13680 which was inadvertently undone by the 2002-09-30 patch.
13681 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
13682 the same width as int.
13684 2002-10-04 Paul Eggert <eggert@twinsun.com>
13688 * configure.ac (AC_INIT), NEWS: Increment version number.
13690 * doc/bison.texinfo: Minor spelling, grammar, and white space
13692 (Symbols): Mention that any negative value returned from yylex
13693 signifies end-of-input. Warn about negative chars. Mention
13694 the portable Standard C character set.
13696 The GNU coding standard says CFLAGS and YFLAGS are reserved
13697 for the installer to set.
13698 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
13699 * src/Makefile.am (AM_CFLAGS): Likewise.
13700 (AM_YFLAGS): Renamed from YFLAGS.
13702 Fix some MAX and MIN problems.
13703 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
13704 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
13705 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
13706 * src/reader.c (reader): Use it.
13708 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
13709 POSIX 1003.1-2001 has removed fgrep.
13711 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13713 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
13714 interpreted as signed.
13715 * lib/ebitset.c (ebitset_list): Fix bug.
13717 2002-10-01 Paul Eggert <eggert@twinsun.com>
13719 More fixes for 64-bit hosts and large bitsets.
13721 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
13722 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
13723 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
13724 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
13725 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
13726 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
13727 bitset_count_): Likewise.
13728 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
13729 bitset_first, bitset_last): Likewise.
13730 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
13731 bitset_stats_list_reverse, bitset_stats_size,
13732 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
13734 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13735 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
13736 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
13737 bitsetv_reflexive_transitive_closure): Likewise.
13738 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
13739 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
13741 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
13744 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
13745 Use size_t, not unsigned int, to count bytes.
13746 * lib/abitset.h (abitset_bytes): Likewise.
13747 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
13749 * lib/bitset.h (bitset_bytes): Likewise.
13750 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
13751 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
13752 * lib/bitsetv.c (bitsetv_alloc): Likewise.
13753 * lib/ebitset.c (ebitset_bytes): Likewise.
13754 * lib/ebitset.h (ebitset_bytes): Likewise.
13755 * lib/lbitset.c (lbitset_bytes): Likewise.
13756 * lib/lbitset.h (lbitset_bytes): Likewise.
13758 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
13759 abitset_subset_p, abitset_disjoint_p, abitset_and,
13760 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
13761 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
13762 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
13763 abitset_or_and, abitset_or_and_cmp):
13764 Use bitset_windex instead of unsigned int.
13765 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13766 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
13767 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
13768 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
13770 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
13772 * lib/bitset.c (bitset_print):
13773 Use proper printf formats for widths of integer types.
13774 * lib/bitset_stats.c (bitset_percent_histogram_print,
13775 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
13776 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
13777 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
13778 * lib/lbitset.c (lbitset_bytes): Likewise.
13780 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
13781 BITSET_SIZE_MAX): New macros.
13782 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
13783 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
13784 to BITSET_WINDEX_MAX.
13786 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
13787 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
13788 since we now return the bitset_bindex type (not int).
13790 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
13791 when computing sizes.
13792 * lib/ebitset.c (ebitset_elts_grow): Likewise.
13794 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
13795 and avoid cast to unsigned.
13797 2002-09-30 Akim Demaille <akim@epita.fr>
13799 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
13800 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
13801 Updates from Michael Hayes.
13803 2002-09-30 Art Haas <ahaas@neosoft.com>
13805 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
13807 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
13810 2002-09-27 Akim Demaille <akim@epita.fr>
13814 2002-09-27 Akim Demaille <akim@epita.fr>
13816 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
13817 (Because of AC_LIBSOURCE).
13819 2002-09-27 Akim Demaille <akim@epita.fr>
13821 Playing with Autoscan.
13823 * configure.ac: Remove the old LIBOBJ tweaks.
13824 (AC_REPLACE_FUNCS): Add strrchr and strtol.
13825 * lib/strrchr.c: New.
13826 * lib/strtol.c: New, from the Coreutils 4.5.1.
13828 2002-09-27 Akim Demaille <akim@epita.fr>
13830 Playing with Autoscan.
13832 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
13833 * lib/Makefile.am (libbison_a_SOURCES): No longer include
13834 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
13835 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
13838 2002-09-24 Akim Demaille <akim@epita.fr>
13840 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
13841 (Frequently Asked Questions, Parser Stack Overflow): New.
13843 2002-09-13 Akim Demaille <akim@epita.fr>
13845 Playing with autoscan.
13847 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
13848 * src/files.c (skeleton_find): Remove, unused.
13849 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
13850 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
13852 2002-09-13 Akim Demaille <akim@epita.fr>
13854 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
13855 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
13857 2002-09-13 Akim Demaille <akim@epita.fr>
13859 * configure.ac: Require 2.54.
13860 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
13861 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
13862 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
13863 Remove, provided by Autoconf macros.
13865 2002-09-12 Akim Demaille <akim@epita.fr>
13867 * m4/prereq.m4: Update, from Coreutils 4.5.1.
13869 2002-09-12 Akim Demaille <akim@epita.fr>
13871 * m4/prereq.m4: Update, from Fileutils 4.1.5.
13872 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
13873 Reported by Martin Mokrejs.
13875 2002-09-10 Akim Demaille <akim@epita.fr>
13877 * src/parse-gram.y: Associate a human readable string to each
13879 * tests/regression.at (Invalid inputs): Adjust.
13881 2002-09-10 Gary V. Vaughan <gary@gnu.org>
13883 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
13884 with an Autoconf-2.5x style configure.ac.
13886 2002-09-06 Paul Eggert <eggert@twinsun.com>
13888 * doc/bison.texinfo (Conditions): Make explicit that the GPL
13889 exception applies only to yacc.c. This is a modification of a
13890 patch originally suggested by Akim Demaille.
13892 2002-09-06 Akim Demaille <akim@epita.fr>
13894 * data/c.m4 (b4_copyright): Move the GPL exception comment from
13896 * data/yacc.c: here.
13898 * data/lalr1.cc (struct yyltype): Don't define it, since we use
13900 (b4_ltype): Default to yy::Location from location.hh.
13902 2002-09-04 Jim Meyering <jim@meyering.net>
13904 * data/yacc.c: Guard the declaration of yytoknum also with
13905 `#ifdef YYPRINT', so it is declared only when used.
13907 2002-09-04 Akim Demaille <akim@epita.fr>
13909 * configure.in: Rename as...
13910 * configure.ac: this.
13913 2002-09-04 Akim Demaille <akim@epita.fr>
13915 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
13916 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
13917 translate maintainer only messages.
13919 2002-08-12 Paul Eggert <eggert@twinsun.com>
13923 * Makefile.am (SUBDIRS): Remove intl.
13924 (DISTCLEANFILES): Remove.
13925 * NEWS: Mention that GNU M4 is now required. Clarify what is
13926 meant by "larger grammars". Mention the pt_BR translation.
13927 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
13928 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
13929 Bump version from 0.11.2 to 0.11.5.
13930 (BISON_PREREQ_STAGE): Remove.
13931 (AM_GNU_GETTEXT): Use external gettext.
13932 (AC_OUTPUT): Remove intl/Makefile.
13934 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
13936 * data/glr.c: Include string.h, for strlen.
13937 (yyreportParseError): Use size_t for yysize.
13938 (yy_yypstack): No longer nested inside yypstates, as nested
13939 functions are not portable. Do not assume size_t is the
13941 (yypstates): Do not assume that ptrdiff_t is the same width
13942 as int, and similarly for yyposn and YYINDEX.
13944 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
13946 * lib/Makefile.am (INCLUDES): Do not include from the intl
13947 directory, which has been removed.
13948 * src/Makefile.am (INCLUDES): Likewise.
13950 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
13951 (bitsets_sources, additional_bitsets_sources, timevars_sources):
13954 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
13955 * tests/Makefile.am (EXTRA_DIST): Likewise.
13957 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
13958 Do not assume that bitset_windex is the same width as unsigned.
13960 * lib/abitset.c (abitset_unused_clear): Do not assume that
13961 bitset_word is the same width as int.
13962 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
13963 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
13964 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
13965 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
13966 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
13968 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
13969 portability to one's complement hosts!).
13970 * lib/ebitset.c (ebitset_op1): Likewise.
13971 * lib/lbitset.c (lbitset_op1): Likewise.
13973 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
13974 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
13975 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
13976 Sync with fileutils.
13977 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
13978 lib/gettext.h: Sync with diffutils.
13980 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
13981 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
13983 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
13984 PROTOTYPES to check for prototypes, and "defined __STDC__" to
13987 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
13988 size_t; the old version tried to do this but casted improperly.
13989 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
13990 (bitset_test): Now returns int, not unsigned long.
13992 * lib/bitset_stats.c: Include "gettext.h".
13994 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
13995 name locals "index", as it generates unnecessary warnings on some
13996 hosts that have an "index" function.
13998 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
13999 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
14000 they need translation.
14001 * src/LR0.c (state_list_append, new_itemsets, get_state,
14002 append_states, generate_states): Likewise.
14003 * src/assoc.c (assoc_to_string): Likewise.
14004 * src/closure.c (print_closure, set_firsts, closure): Likewise.
14005 * src/gram.c (grammar_dump): Likewise.
14006 * src/injections.c (injections_compute): Likewise.
14007 * src/lalr.c (lookaheads_print): Likewise.
14008 * src/relation.c (relation_transpose): Likewise.
14009 * src/scan-gram.l: Likewise.
14010 * src/tables.c (table_grow, pack_vector): Likewise.
14012 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
14013 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
14014 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
14015 * m4/mbstate_t.m4: Sync with fileutils.
14016 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
14018 * po/LINGUAS: Add pt_BR.
14019 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
14020 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
14022 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
14024 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
14026 * src/complain.c (strerror_r): Remove decl; not needed.
14027 (strerror): Use same pattern as ../lib/error.c.
14029 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
14031 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
14033 * src/main.c (main): Cast result of bindtextdomain and textdomain
14034 to void, to avoid a GCC warning when --disable-nls is in effect.
14036 * src/scan-gram.l: Use strings rather than escapes when possible,
14037 to minimize the number of warnings from xgettext.
14038 (handle_action_dollar, handle_action_at): Don't use isdigit,
14039 as it mishandles negative chars and it may not work as expected
14040 outside the C locale.
14042 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
14043 this is a GCC extension and is not portable to other compilers.
14045 * src/system.h (alloca): Use same pattern as ../lib/error.c.
14046 Do not include <ctype.h>; no longer needed.
14047 Do not include <malloc.h>; no longer needed (and generates
14048 warnings on OpenBSD 3.0).
14050 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
14053 * tests/regression.at: Do not use 'cc -c input.c -o input';
14054 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
14056 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
14057 exit status as failure, not just exit status 1. Sun C exits
14058 with status 2 sometimes.
14060 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
14061 Use it for the two large tests.
14063 2002-08-02 Akim Demaille <akim@epita.fr>
14065 * src/conflicts.c (conflicts_output): Don't output rules never
14066 reduced here, since anyway that computation doesn't work.
14067 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
14068 (rule_useless_p, rule_never_reduced_p): New.
14069 (grammar_rules_partial_print): Use a filter instead of a range.
14070 Display the title only if needed.
14071 (grammar_rules_print): Adjust.
14072 (grammar_rules_never_reduced_report): New.
14073 * src/tables.c (action_row): Move the computation of rules never
14075 (token_actions): here.
14076 * src/main.c (main): Make the parser before making the report, so
14077 that rules never reduced are computed.
14078 Call grammar_rules_never_reduced_report.
14079 * src/print.c (print_results): Report rules never reduced.
14080 * tests/conflicts.at, tests/reduce.at: Adjust.
14082 2002-08-01 Akim Demaille <akim@epita.fr>
14084 Instead of attaching lookaheads and duplicating the rules being
14085 reduced by a state, attach the lookaheads to the reductions.
14087 * src/state.h (state_t): Remove the `lookaheads',
14088 `lookaheads_rule' member.
14089 (reductions_t): Add a `lookaheads' member.
14090 Use a regular array for the `rules'.
14091 * src/state.c (reductions_new): Initialize the lookaheads member
14093 (state_rule_lookaheads_print): Adjust.
14094 * src/state.h, src/state.c (state_reductions_find): New.
14095 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
14096 (count_rr_conflicts): Adjust.
14097 * src/lalr.c (LArule): Remove.
14098 (add_lookback_edge): Adjust.
14099 (state_lookaheads_count): New.
14100 (states_lookaheads_initialize): Merge into...
14101 (initialize_LA): this.
14102 (lalr_free): Adjust.
14103 * src/main.c (main): Don't free nullable and derives too early: it
14104 is used by --verbose.
14105 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
14107 2002-08-01 Akim Demaille <akim@epita.fr>
14109 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
14111 (set_derives, free_derives): Rename as...
14112 (derives_compute, derives_free): this.
14113 Adjust all dependencies.
14114 * src/nullable.c (set_nullable, free_nullable): Rename as...
14115 (nullable_compute, nullable_free): these.
14116 (rule_list_t): Store rule_t *, not rule_number_t.
14117 * src/state.c (state_rule_lookaheads_print): Directly compare rule
14118 pointers, instead of their numbers.
14119 * src/main.c (main): Call nullable_free, and derives_free earlier,
14120 as they were lo longer used.
14122 2002-08-01 Akim Demaille <akim@epita.fr>
14124 * lib/timevar.c (get_time): Include children time.
14125 * src/lalr.h (LA, LArule): Don't export them: used with the
14127 * src/lalr.c (LA, LArule): Static.
14128 * src/lalr.h, src/lalr.c (lalr_free): New.
14129 * src/main.c (main): Call it.
14130 * src/tables.c (pack_vector): Check whether loc is >= to the
14132 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
14133 (tables_generate): do it, since that's also it which allocates
14135 Don't free LA and LArule, main does.
14137 2002-07-31 Akim Demaille <akim@epita.fr>
14139 Separate parser tables computation and output.
14141 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
14142 (conflict_list, conflict_list_cnt, table, check, table_ninf)
14143 (yydefgoto, yydefact, high): Move to...
14144 * src/tables.h, src/tables.c: here.
14145 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14146 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14147 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
14148 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
14149 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
14150 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
14151 (action_row, save_row, token_actions, save_column, default_goto)
14152 (goto_actions, sort_actions, matching_state, pack_vector)
14153 (table_ninf_remap, pack_table, prepare_actions): Move to...
14154 * src/tables.c: here.
14155 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
14156 * src/output.c (token_actions, output_base, output_conflicts)
14157 (output_check): Merge into...
14158 (prepare_actions): this.
14159 (actions_output): Rename as...
14160 (user_actions_output): this.
14161 * src/main.c (main): Call tables_generate and tables_free.
14163 2002-07-31 Akim Demaille <akim@epita.fr>
14165 Steal GCC's --time-report support.
14167 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
14168 stolen/adjusted from GCC.
14169 * m4/stage.m4: Remove time related checks.
14170 * m4/timevar.m4: New.
14171 * configure.in: Adjust.
14172 * src/system.h: Adjust to using timevar.h.
14173 * src/getargs.h, src/getargs.c: Support trace_time for
14175 * src/main.c (stage): Remove.
14176 (main): Replace `stage' invocations with timevar calls.
14177 * src/output.c: Insert pertinent timevar calls.
14179 2002-07-31 Akim Demaille <akim@epita.fr>
14181 Let --trace have arguments.
14183 * src/getargs.h (enum trace_e): New.
14184 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
14185 (long_options, short_options): --trace/-T takes an optional
14187 Change all the uses of trace_flag to reflect the new flags.
14188 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
14190 Strengthen `stage' portability.
14192 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
14193 * configure.in: Use it.
14194 Don't check for malloc.h and sys/times.h.
14195 * src/system.h: Include them when appropriate.
14196 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
14197 times and struct tms are available.
14199 2002-07-30 Akim Demaille <akim@epita.fr>
14201 In verbose parse error message, don't report `error' as an
14203 * tests/actions.at (Printers and Destructors): Adjust.
14204 * tests/calc.at (Calculator $1): Adjust.
14205 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
14206 error message, do not report the parser accepts the error token in
14209 2002-07-30 Akim Demaille <akim@epita.fr>
14211 Normalize conflict related messages.
14213 * src/complain.h, src/complain.c (warn, complain): New.
14214 * src/conflicts.c (conflicts_print): Use them.
14215 (conflict_report_yacc): New, extracted from...
14216 (conflicts_print): here.
14217 * tests/conflicts.at, tests/existing.at: Adjust.
14219 2002-07-30 Akim Demaille <akim@epita.fr>
14221 Report rules which are never reduced by the parser: those hidden
14224 * src/LR0.c (save_reductions): Don't make the final state too
14225 different: save its reduction (accept) instead of having a state
14226 without any action (no shift or goto, no reduce).
14227 Note: the final state is now a ``regular'' state, i.e., the
14228 parsers now contain `reduce 0' as default reduction.
14229 Nevertheless, since they decide to `accept' when yystate =
14230 final_state, they still will not reduce rule 0.
14231 * src/print.c (print_actions, print_reduction): Adjust.
14232 * src/output.c (action_row): Track reduced rules.
14233 (token_actions): Report rules never reduced.
14234 * tests/conflicts.at, tests/regression.at: Adjust.
14236 2002-07-30 Akim Demaille <akim@epita.fr>
14238 `stage' was accidently included in a previous patch.
14239 Initiate its autoconfiscation.
14241 * configure.in: Look for malloc.h and sys/times.h.
14242 * src/main.c (stage): Adjust.
14243 Report only when trace_flag.
14245 2002-07-29 Akim Demaille <akim@epita.fr>
14247 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
14249 (errs_t): symbol_t*, not symbol_number_t.
14250 (reductions_t): rule_t*, not rule_number_t.
14251 (FOR_EACH_SHIFT): New.
14252 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
14253 * src/print.c, src/print_graph.c: Adjust.
14255 2002-07-29 Akim Demaille <akim@epita.fr>
14257 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
14259 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
14260 (endtoken, accept): these.
14261 * src/reader.c (reader): Set endtoken's default tag to "$end".
14262 Set undeftoken's tag to "$undefined" instead of "$undefined.".
14263 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
14266 2002-07-29 Akim Demaille <akim@epita.fr>
14268 * src/reduce.c (reduce_grammar): When the language is empty,
14269 complain about the start symbol, not the axiom.
14271 * tests/reduce.at (Empty Language): New.
14273 2002-07-26 Akim Demaille <akim@epita.fr>
14275 * src/reader.h, src/reader.c (gram_error): ... can't get
14276 yycontrol without making too strong assumptions on the parser
14278 * src/output.c (prepare_tokens): Use the real 0th value of
14279 token_translations instead of `0'.
14280 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
14282 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
14283 for the time being: %locations ought to provide it to yyerror.
14285 2002-07-25 Akim Demaille <akim@epita.fr>
14287 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
14288 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
14289 * tests/regression.at (Web2c Actions): Adjust.
14291 2002-07-25 Akim Demaille <akim@epita.fr>
14293 Stop storing rules from 1 to nrules + 1.
14295 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
14296 * src/nullable.c, src/output.c, src/print.c, src/reader.c
14297 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
14298 Iterate from 0 to nrules.
14299 Use rule_number_as_item_number and item_number_as_rule_number.
14300 Adjust to `derive' now containing possibly 0.
14301 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
14302 Handle the `- 1' part in rule numbers from/to item numbers.
14303 * src/conflicts.c (log_resolution): Fix the message which reversed
14305 * src/output.c (action_row): Initialize default_rule to -1.
14306 (token_actions): Adjust.
14307 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
14309 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
14311 2002-07-25 Akim Demaille <akim@epita.fr>
14313 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
14314 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
14315 (b4_c_knr_arg_decl): New.
14316 * data/yacc.c: Use it to define yysymprint, yydestruct, and
14317 yyreport_parse_error.
14319 2002-07-25 Akim Demaille <akim@epita.fr>
14321 * data/yacc.c (yyreport_parse_error): New, extracted from...
14323 (yydestruct, yysymprint): Move above yyparse.
14326 2002-07-25 Akim Demaille <akim@epita.fr>
14328 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
14330 (b4_sint_type, b4_uint_type): these.
14331 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
14332 * tests/regression.at (Web2c Actions): Adjust.
14334 2002-07-25 Akim Demaille <akim@epita.fr>
14336 * src/gram.h (TIEM_NUMBER_MAX): New.
14337 (item_number_of_rule_number, rule_number_of_item_number): Rename
14339 (rule_number_as_item_number, item_number_as_rule_number): these.
14340 Adjust dependencies.
14341 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
14342 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
14343 (symbol_number_to_vector_number): New.
14344 (order): Of vector_number_t* type.
14345 (base_t, BASE_MAX, BASE_MIN): New.
14346 (froms, tos, width, pos, check): Of base_t type.
14347 (action_number_t, ACTION_MIN, ACTION_MAX): New.
14348 (actrow): Of action_number_t type.
14349 (conflrow): Of unsigned int type.
14350 (table_ninf, base_ninf): New.
14351 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
14352 (muscle_insert_int_table, muscle_insert_base_table)
14353 (muscle_insert_rule_number_table): New.
14354 (prepare_tokens): Output `toknum' as int_table.
14355 (action_row): Returns a rule_number_t.
14356 Use ACTION_MIN, not SHRT_MIN.
14357 (token_actions): yydefact is rule_number_t*.
14358 (table_ninf_remap): New.
14359 (pack_table): Use it for `base' and `table'.
14360 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
14362 (YYPACT_NINF, YYTABLE_NINF): these.
14363 (yypact, yytable): Compute their types instead of hard-coded
14365 * tests/regression.at (Web2c Actions): Adjust.
14367 2002-07-19 Akim Demaille <akim@epita.fr>
14369 * src/scan-gram.l (id): Can start with an underscore.
14371 2002-07-16 Akim Demaille <akim@epita.fr>
14373 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
14374 Adjust all former `associativity' dependencies.
14375 * src/symtab.c (symbol_new): Default associativity is `undef', not
14377 (symbol_check_alias_consistence): Adjust.
14379 2002-07-09 Akim Demaille <akim@epita.fr>
14381 * doc/bison.texinfo: Properly set the ``header'' part.
14382 Use @dircategory ``GNU programming tools'' as per Texinfo's
14386 2002-07-09 Akim Demaille <akim@epita.fr>
14388 * lib/quotearg.h: Protect against multiple inclusions.
14389 * src/location.h (location_t): Add a `file' member.
14390 (LOCATION_RESET, LOCATION_PRINT): Adjust.
14391 * src/complain.c (warn_at, complain_at, fatal_at): Drop
14392 `error_one_per_line' support.
14394 2002-07-09 Akim Demaille <akim@epita.fr>
14396 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
14397 * src/reader.c (lineno): Remove.
14398 Adjust all dependencies.
14399 (get_merge_function): Take a location and use complain_at.
14400 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
14401 * tests/regression.at (Invalid inputs, Mixing %token styles):
14404 2002-07-09 Akim Demaille <akim@epita.fr>
14406 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
14407 recovery rule, and forbid extensions when --yacc.
14408 (gram_error): Use complain_at.
14409 * src/reader.c (reader): Exit if there were parse errors.
14411 2002-07-09 Akim Demaille <akim@epita.fr>
14413 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
14414 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
14415 Reported by R Blake <blakers@mac.com>.
14417 2002-07-09 Akim Demaille <akim@epita.fr>
14419 * data/yacc.c: Output the copyright notive in the header.
14421 2002-07-03 Akim Demaille <akim@epita.fr>
14423 * src/output.c (froms, tos): Are state_number_t.
14424 (save_column): sp, sp1, and sp2 are state_number_t.
14425 (prepare): Rename `final' as `final_state_number', `nnts' as
14426 `nterms_number', `nrules' as `rules_number', `nstates' as
14427 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
14429 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
14430 * data/lalr1.cc (nsym_): Remove, unused.
14432 2002-07-03 Akim Demaille <akim@epita.fr>
14434 * src/lalr.h, src/lalr.c (goto_number_t): New.
14435 * src/lalr.c (goto_list_t): New.
14437 * src/nullable.c (rule_list_t): New.
14439 * src/types.h: Remove.
14441 2002-07-03 Akim Demaille <akim@epita.fr>
14443 * src/closure.c (print_fderives): Use rule_rhs_print.
14444 * src/derives.c (print_derives): Use rule_rhs_print.
14445 (rule_list_t): New, replaces `shorts'.
14446 (set_derives): Add comments.
14447 * tests/sets.at (Nullable, Firsts): Adjust.
14449 2002-07-03 Akim Demaille <akim@epita.fr>
14451 * src/output.c (prepare_actions): Free `tally' and `width'.
14452 (prepare_actions): Allocate and free `order'.
14453 * src/symtab.c (symbols_free): Free `symbols'.
14454 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
14455 * src/output.c (m4_invoke): Move to...
14456 * src/scan-skel.l: here.
14457 (<<EOF>>): Close yyout, and free its name.
14459 2002-07-03 Akim Demaille <akim@epita.fr>
14461 Fix some memory leaks, and fix a bug: state 0 was examined twice.
14463 * src/LR0.c (new_state): Merge into...
14464 (state_list_append): this.
14465 (new_states): Merge into...
14466 (generate_states): here.
14467 (set_states): Don't ensure a proper `errs' state member here, do it...
14468 * src/conflicts.c (conflicts_solve): here.
14469 * src/state.h, src/state.c: Comment changes.
14470 (state_t): Rename member `shifts' as `transitions'.
14471 Adjust all dependencies.
14472 (errs_new): For consistency, also take the values as argument.
14473 (errs_dup): Remove.
14474 (state_errs_set): New.
14475 (state_reductions_set, state_transitions_set): Assert that no
14476 previous value was assigned.
14478 (states_free): Use it.
14479 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
14480 temporary storage: use `errs' and `nerrs' as elsewhere.
14481 (set_conflicts): Allocate and free this `errs'.
14483 2002-07-02 Akim Demaille <akim@epita.fr>
14485 * lib/libiberty.h: New.
14486 * lib: Update the bitset implementation from upstream.
14487 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
14488 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
14489 * src/main.c: Adjust bitset stats calls.
14491 2002-07-01 Paul Eggert <eggert@twinsun.com>
14493 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
14494 char, so that negative chars don't collide with $.
14496 2002-06-30 Akim Demaille <akim@epita.fr>
14498 Have the GLR tests be `warning' checked, and fix the warnings.
14500 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
14501 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
14502 (yyremoveDeletes): `yyi' and `yyj' are size_t.
14503 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
14504 (yyaddDeferredAction): static.
14505 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
14506 (yyreportParseError): yyprefix is const.
14507 yytokenp is used only when verbose.
14508 (yy__GNUC__): Replace with __GNUC__.
14509 (yypdumpstack): yyi is size_t.
14510 (yypreference): Un-yy local variables and arguments, to avoid
14511 clashes with `yyr1'. Anyway, we are not in the user name space.
14512 (yytname_size): be an int, as is compared with ints.
14513 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
14515 * tests/cxx-gram.at: Use quotation to protect $1.
14516 Use AT_COMPILE to enable warnings hunts.
14517 Prototype yylex and yyerror.
14519 Include `string.h', not `strings.h'.
14520 Produce and prototype stmtMerge only when used.
14521 yylex takes a location.
14523 2002-06-30 Akim Demaille <akim@epita.fr>
14525 We spend a lot of time in quotearg, in particular when --verbose.
14527 * src/symtab.c (symbol_get): Store a quoted version of the key.
14528 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
14529 Adjust all callers.
14531 2002-06-30 Akim Demaille <akim@epita.fr>
14533 * src/state.h (reductions_t): Rename member `nreds' as num.
14534 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
14535 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
14537 2002-06-30 Akim Demaille <akim@epita.fr>
14539 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
14540 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
14541 (shifts_to): Rename as...
14542 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
14543 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
14544 (TRANSITION_IS_DISABLED, transitions_to): these.
14546 2002-06-30 Akim Demaille <akim@epita.fr>
14548 * src/print.c (print_shifts, print_gotos): Merge into...
14549 (print_transitions): this.
14550 (print_transitions, print_errs, print_reductions): Align the
14551 lookaheads columns.
14552 (print_core, print_transitions, print_errs, print_state,
14553 print_grammar): Output empty lines separator before, not after.
14554 (state_default_rule_compute): Rename as...
14555 (state_default_rule): this.
14556 * tests/conflicts.at (Defaulted Conflicted Reduction),
14557 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
14558 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
14560 2002-06-30 Akim Demaille <akim@epita.fr>
14562 Display items as we display rules.
14564 * src/gram.h, src/gram.c (rule_lhs_print): New.
14565 * src/gram.c (grammar_rules_partial_print): Use it.
14566 * src/print.c (print_core): Likewise.
14567 * tests/conflicts.at (Defaulted Conflicted Reduction),
14568 (Unresolved SR Conflicts): Adjust.
14569 (Unresolved SR Conflicts): Adjust and rename as...
14570 (Resolved SR Conflicts): this, as was meant.
14571 * tests/regression.at (Web2c Report): Adjust.
14573 2002-06-30 Akim Demaille <akim@epita.fr>
14575 * src/print.c (state_default_rule_compute): New, extracted from...
14576 (print_reductions): here.
14577 Pessimize, but clarify the code.
14578 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
14580 2002-06-30 Akim Demaille <akim@epita.fr>
14582 * src/output.c (action_row): Let default_rule be always a rule
14585 2002-06-30 Akim Demaille <akim@epita.fr>
14587 * src/closure.c (print_firsts, print_fderives, closure):
14588 Use BITSET_EXECUTE.
14589 * src/lalr.c (lookaheads_print): Likewise.
14590 * src/state.c (state_rule_lookaheads_print): Likewise.
14591 * src/print_graph.c (print_core): Likewise.
14592 * src/print.c (print_reductions): Likewise.
14593 * src/output.c (action_row): Likewise.
14594 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
14596 2002-06-30 Akim Demaille <akim@epita.fr>
14598 * src/print_graph.c: Use report_flag.
14600 2002-06-30 Akim Demaille <akim@epita.fr>
14602 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
14604 * src/relation.h, src/relation.c (traverse, relation_digraph)
14605 (relation_print, relation_transpose): New.
14607 2002-06-30 Akim Demaille <akim@epita.fr>
14609 * src/state.h, src/state.c (shifts_to): New.
14610 * src/lalr.c (build_relations): Use it.
14612 2002-06-30 Akim Demaille <akim@epita.fr>
14614 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
14615 (item_number_of_rule_number, rule_number_of_item_number): New.
14616 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
14617 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
14618 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
14619 Propagate their use.
14620 Much remains to be done, in particular wrt `shorts' from types.h.
14622 2002-06-30 Akim Demaille <akim@epita.fr>
14624 * src/symtab.c (symbol_new): Initialize the `printer' member.
14626 2002-06-30 Akim Demaille <akim@epita.fr>
14628 * src/LR0.c (save_reductions): Remove, replaced by...
14629 * src/state.h, src/state.c (state_reductions_set): New.
14630 (reductions, errs): Rename as...
14631 (reductions_t, errs_t): these.
14632 Adjust all dependencies.
14634 2002-06-30 Akim Demaille <akim@epita.fr>
14636 * src/LR0.c (state_list_t, state_list_append): New.
14637 (first_state, last_state): Now symbol_list_t.
14638 (this_state): Remove.
14639 (new_itemsets, append_states, save_reductions): Take a state_t as
14641 (set_states, generate_states): Adjust.
14642 (save_shifts): Remove, replaced by...
14643 * src/state.h, src/state.c (state_shifts_set): New.
14644 (shifts): Rename as...
14646 Adjust all dependencies.
14647 * src/state.h (state_t): Remove the `next' member.
14649 2002-06-30 Akim Demaille <akim@epita.fr>
14651 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
14654 2002-06-30 Akim Demaille <akim@epita.fr>
14656 Use hash.h for the state hash table.
14658 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
14659 (allocate_storage): Use state_hash_new.
14660 (free_storage): Use state_hash_free.
14661 (new_state, get_state): Adjust.
14662 * src/lalr.h, src/lalr.c (states): Move to...
14663 * src/states.h (state_t): Remove the `link' member, no longer
14665 * src/states.h, src/states.c: here.
14666 (state_hash_new, state_hash_free, state_hash_lookup)
14667 (state_hash_insert, states_free): New.
14668 * src/states.c (state_table, state_compare, state_hash): New.
14669 * src/output.c (output_actions): Do not free states now, since we
14670 still need to know the final_state number in `prepare', called
14671 afterwards. Do it...
14672 * src/main.c (main): here: call states_free after `output'.
14674 2002-06-30 Akim Demaille <akim@epita.fr>
14676 * src/state.h, src/state.c (state_new): New, extracted from...
14677 * src/LR0.c (new_state): here.
14678 * src/state.h (STATE_ALLOC): Move to...
14679 * src/state.c: here.
14680 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
14681 * src/state.h, src/state.c: here.
14683 2002-06-30 Akim Demaille <akim@epita.fr>
14685 * src/reader.c (gensym): Rename as...
14686 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
14687 (getsym): Rename as...
14688 (symbol_get): this.
14690 2002-06-30 Akim Demaille <akim@epita.fr>
14692 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
14693 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
14694 * src/output.c, src/print.c, src/print_graph.c: Propagate.
14695 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
14697 2002-06-30 Akim Demaille <akim@epita.fr>
14699 Make the test suite pass with warnings checked.
14701 * tests/actions.at (Printers and Destructors): Improve.
14702 Avoid unsigned vs. signed issues.
14703 * tests/calc.at: Don't exercise the scanner here, do it...
14704 * tests/input.at (Torturing the Scanner): here.
14706 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14708 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
14709 reorganize first lines parallel to yacc.c.
14711 2002-06-28 Akim Demaille <akim@epita.fr>
14713 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
14714 (b4_token_enum, b4_token_defines): New, factored from...
14715 * data/lalr1.cc, data/yacc.c, glr.c: here.
14717 2002-06-28 Akim Demaille <akim@epita.fr>
14719 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
14721 * src/output.c (merger_output): static.
14723 2002-06-28 Akim Demaille <akim@epita.fr>
14725 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
14726 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
14728 * src/output.c (save_row): Initialize all the variables to pacify GCC.
14730 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14732 Accumulated changelog for new GLR parsing features.
14734 * src/conflicts.c (count_total_conflicts): Change name to
14735 conflicts_total_count.
14736 * src/conflicts.h: Ditto.
14737 * src/output.c (token_actions): Use the new name.
14738 (output_conflicts): Change conflp => conflict_list_heads, and
14739 confl => conflict_list for better readability.
14740 * data/glr.c: Use the new names.
14741 * NEWS: Add self to GLR announcement.
14743 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
14745 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
14748 * data/bison.glr: Change name to glr.c
14749 * data/glr.c: Renamed from bison.glr.
14750 * data/Makefile.am: Add glr.c
14754 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
14755 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
14757 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14759 * data/bison.glr: Be sure to restore the
14760 current #line when returning to the skeleton contents after having
14761 exposed the input file's #line.
14763 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14765 * data/bison.glr: Bring up to date with changes to bison.simple.
14767 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14769 * data/bison.glr: Correct definitions that use b4_prefix.
14770 Various reformatting.
14771 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
14772 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
14773 yytokenp argument; now part of stack.
14774 (yychar): Define to behave as documented.
14775 (yyclearin): Ditto.
14777 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14779 * src/reader.h: Add declaration for free_merger_functions.
14781 * src/reader.c (merge_functions): New variable.
14782 (get_merge_function): New function.
14783 (free_merger_functions): New function.
14784 (readgram): Check for %prec that is not followed by a symbol.
14785 Handle %dprec and %merge declarations.
14786 (packgram): Initialize dprec and merger fields in rules array.
14788 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
14789 conflict_list_cnt, conflict_list_free): New variables.
14790 (table_grow): Also grow conflict_table.
14791 (prepare_rules): Output dprec and merger tables.
14792 (conflict_row): New function.
14793 (action_row): Output conflict lists for GLR parser. Don't use
14794 default reduction in conflicted states for GLR parser so that there
14795 are spaces for the conflict lists.
14796 (save_row): Also save conflict information.
14797 (token_actions): Allocate conflict list.
14798 (merger_output): New function.
14799 (pack_vector): Pack conflict table, too.
14800 (output_conflicts): New function to output yyconflp and yyconfl.
14801 (output_check): Allocate conflict_tos.
14802 (output_actions): Output conflict tables, also.
14803 (output_skeleton): Output b4_mergers definition.
14804 (prepare): Output b4_max_rhs_length definition.
14805 Use 'bison.glr' as default skeleton for GLR parsers.
14807 * src/gram.c (glr_parser): New flag.
14808 (grammar_free): Call free_merger_functions.
14810 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
14811 all pairs of conflicting reductions, rather than just all tokens
14812 causing conflicts. Needed to size conflict tables.
14813 (conflicts_output): Modify call to count_rr_conflicts for new
14815 (conflicts_print): Ditto.
14816 (count_total_conflicts): New function.
14818 * src/reader.h (merger_list): New type.
14819 (merge_functions): New variable.
14821 * src/lex.h (tok_dprec, tok_merge): New token types.
14823 * src/gram.h (rule_s): Add dprec and merger fields.
14824 (glr_parser): New flag.
14826 * src/conflicts.h (count_total_conflicts): New function.
14828 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
14830 * doc/bison.texinfo (Generalized LR Parsing): New section.
14831 (GLR Parsers): New section.
14832 (Language and Grammar): Mention GLR parsing.
14833 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
14834 Correct typo ("tge" -> "the").
14836 * data/bison.glr: New skeleton for GLR parsing.
14838 * tests/cxx-gram.at: New tests for GLR parsing.
14840 * tests/testsuite.at: Include cxx-gram.at.
14842 * tests/Makefile.am: Add cxx-gram.at.
14844 * src/parse-gram.y:
14846 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
14848 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
14850 2002-06-27 Akim Demaille <akim@epita.fr>
14852 * src/options.h, src/options.c: Remove.
14853 * src/getargs.c (short_options, long_options): New.
14855 2002-06-27 Akim Demaille <akim@epita.fr>
14857 * data/bison.simple, data/bison.c++: Rename as...
14858 * data/yacc.c, data/lalr1.cc: these.
14859 * doc/bison.texinfo (Environment Variables): Remove.
14861 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
14863 * src/getargs.c (report_argmatch): Initialize strtok().
14865 2002-06-20 Akim Demaille <akim@epita.fr>
14867 * data/bison.simple (b4_symbol_actions): New, replaces...
14868 (b4_symbol_destructor, b4_symbol_printer): these.
14869 (yysymprint): Be sure to call YYPRINT only for tokens, and using
14870 user token numbers.
14872 2002-06-20 Akim Demaille <akim@epita.fr>
14874 * data/bison.simple (yydestructor): Rename as...
14875 (yydestruct): this.
14877 2002-06-20 Akim Demaille <akim@epita.fr>
14879 * src/symtab.h, src/symtab.c (symbol_type_set)
14880 (symbol_destructor_set, symbol_precedence_set): The location is
14882 Adjust all callers.
14884 2002-06-20 Akim Demaille <akim@epita.fr>
14886 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
14888 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
14890 * src/symtab.h, src/symtab.c (symbol_class_set)
14891 (symbol_user_token_number_set): Likewise.
14892 Adjust all callers.
14893 Promote complain_at.
14894 * tests/input.at (Type Clashes): Adjust.
14896 2002-06-20 Akim Demaille <akim@epita.fr>
14898 * data/bison.simple (YYLEX): Fix the declaration when
14901 2002-06-20 Akim Demaille <akim@epita.fr>
14903 * data/bison.simple (yysymprint): Don't print the token number,
14905 * tests/actions.at (Destructors): Rename as...
14906 (Printers and Destructors): this.
14907 Also exercise %printer.
14909 2002-06-20 Akim Demaille <akim@epita.fr>
14911 * data/bison.simple (YYDSYMPRINT): New.
14912 Use it to remove many of the #if YYDEBUG/if (yydebug).
14914 2002-06-20 Akim Demaille <akim@epita.fr>
14916 * src/symtab.h, src/symtab.c (symbol_t): printer and
14917 printer_location are new members.
14918 (symbol_printer_set): New.
14919 * src/parse-gram.y (PERCENT_PRINTER): New token.
14920 Handle its associated rule.
14921 * src/scan-gram.l: Adjust.
14922 (handle_destructor_at, handle_destructor_dollar): Rename as...
14923 (handle_symbol_code_at, handle_symbol_code_dollar): these.
14924 * src/output.c (symbol_printers_output): New.
14925 (output_skeleton): Call it.
14926 * data/bison.simple (yysymprint): New. Cannot be named yyprint
14927 since there are already many grammar files with a user `yyprint'.
14928 Replace the calls to YYPRINT to calls to yysymprint.
14929 * tests/calc.at: Adjust.
14930 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
14931 taking advantage of parser very internal details (stack size!).
14933 2002-06-20 Akim Demaille <akim@epita.fr>
14935 * src/scan-gram.l: Complete the scanner with the missing patterns
14937 Use `quote' and `symbol_tag_get' where appropriate.
14939 2002-06-19 Akim Demaille <akim@epita.fr>
14941 * tests/actions.at (Destructors): Augment to test locations.
14942 * data/bison.simple (yydestructor): Pass it the current location
14943 if locations are enabled.
14944 Prototype only when __STDC__ or C++.
14945 Change the argument names to move into the yy name space: there is
14948 2002-06-19 Akim Demaille <akim@epita.fr>
14950 * data/bison.simple (b4_pure_if): New.
14951 Use it instead of #ifdef YYPURE.
14953 2002-06-19 Akim Demaille <akim@epita.fr>
14955 * data/bison.simple (b4_location_if): New.
14956 Use it instead of #ifdef YYLSP_NEEDED.
14958 2002-06-19 Akim Demaille <akim@epita.fr>
14960 Prepare @$ in %destructor, but currently don't bind it in the
14961 skeleton, as %location use is not cleaned up yet.
14963 * src/scan-gram.l (handle_dollar, handle_destructor_at)
14964 (handle_action_at): New.
14965 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
14966 a braced_code_t and a location as additional arguments.
14967 (handle_destructor_dollar): Instead of requiring `b4_eval', just
14968 unquote one when outputting `b4_dollar_dollar'.
14970 * data/bison.simple (b4_eval): Remove.
14971 (b4_symbol_destructor): Adjust.
14972 * tests/input.at (Invalid @n): Adjust.
14974 2002-06-19 Zack Weinberg <zack@codesourcery.com>
14976 * doc/bison.texinfo: Document ability to have multiple
14979 2002-06-18 Akim Demaille <akim@epita.fr>
14981 * src/files.c (compute_base_names): When computing the output file
14982 names from the input file name, strip the directory part.
14984 2002-06-18 Akim Demaille <akim@epita.fr>
14986 * data/bison.simple.new: Comment changes.
14987 Reported by Andreas Schwab.
14989 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
14991 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
14992 there are no `label `yyoverflowlab' defined but not used' warnings
14993 when yyoverflow is defined.
14995 2002-06-18 Akim Demaille <akim@epita.fr>
14997 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
14999 (symbol_destructor_set): Adjust.
15000 * src/output.c (symbol_destructors_output): Output the destructor
15002 Output the symbol name.
15003 * data/bison.simple (b4_symbol_destructor): Adjust.
15005 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
15006 and Akim Demaille <akim@epita.fr>
15008 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
15009 what's left on the stack when the error recovery hits EOF.
15010 * tests/actions.at (Destructors): Complete to exercise this case.
15012 2002-06-17 Akim Demaille <akim@epita.fr>
15014 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
15015 arguments is really empty, not only equal to `[]'.
15016 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
15018 (symbol_destructor_set): New.
15019 * src/output.c (symbol_destructors_output): New.
15020 * src/reader.h (brace_code_t, current_braced_code): New.
15021 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
15022 (handle_dollar): Rename as...
15023 (handle_action_dollar): this.
15024 (handle_destructor_dollar): New.
15025 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
15026 (grammar_declaration): Use it.
15027 * data/bison.simple (yystos): Is always defined.
15028 (yydestructor): New.
15029 * tests/actions.at (Destructors): New.
15030 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
15032 2002-06-17 Akim Demaille <akim@epita.fr>
15034 * src/symlist.h, src/symlist.c (symbol_list_length): New.
15035 * src/scan-gram.l (handle_dollar, handle_at): Compute the
15036 rule_length only when needed.
15037 * src/output.c (actions_output, token_definitions_output): Output
15039 * src/symtab.c: Don't access directly to the symbol tag, use
15041 * src/parse-gram.y: Use symbol_list_free.
15043 2002-06-17 Akim Demaille <akim@epita.fr>
15045 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
15046 (symbol_list_prepend, get_type_name): Move to...
15047 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
15048 (symbol_list_prepend, symbol_list_n_type_name_get): here.
15049 Adjust all callers.
15050 (symbol_list_free): New.
15051 * src/scan-gram.l (handle_dollar): Takes a location.
15052 * tests/input.at (Invalid $n): Adjust.
15054 2002-06-17 Akim Demaille <akim@epita.fr>
15056 * src/reader.h, src/reader.c (symbol_list_new): Export it.
15057 (symbol_list_prepend): New.
15058 * src/parse-gram.y (%union): `list' is a new member.
15059 (symbols.1): New, replaces...
15060 (terms_to_prec.1, nterms_to_type.1): these.
15061 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
15062 Take a location as additional argument.
15063 Adjust all callers.
15065 2002-06-15 Akim Demaille <akim@epita.fr>
15067 * src/parse-gram.y: Move %token in the declaration section so that
15068 we don't depend upon CVS Bison.
15070 2002-06-15 Akim Demaille <akim@epita.fr>
15072 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
15073 * src/print.c (print_core): Use it.
15075 2002-06-15 Akim Demaille <akim@epita.fr>
15077 * src/conflicts.c (log_resolution): Accept the rule involved in
15078 the sr conflicts instead of the lookahead number that points to
15080 (flush_reduce): Accept the current lookahead vector as argument,
15081 instead of the index in LA.
15082 (resolve_sr_conflict): Accept the current number of lookahead
15083 bitset to consider for the STATE, instead of the index in LA.
15084 (set_conflicts): Adjust.
15085 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
15087 2002-06-15 Akim Demaille <akim@epita.fr>
15089 * src/state.h (state_t): Replace the `lookaheadsp' member, a
15090 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
15091 Adjust all dependencies.
15092 * src/lalr.c (initialize_lookaheads): Split into...
15093 (states_lookaheads_count, states_lookaheads_initialize): these.
15096 2002-06-15 Akim Demaille <akim@epita.fr>
15098 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
15100 (grammar_rules_print): here.
15101 * src/reduce.c (reduce_output): Use it.
15102 * tests/reduce.at (Useless Rules, Reduced Automaton)
15103 (Underivable Rules): Adjust.
15105 2002-06-15 Akim Demaille <akim@epita.fr>
15107 Copy BYacc's nice way to report the grammar.
15109 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
15111 Don't print the rules' location, it is confusing and useless.
15112 (rule_print): Use grammar_rhs_print.
15113 * src/print.c (print_grammar): Use grammar_rules_print.
15115 2002-06-15 Akim Demaille <akim@epita.fr>
15117 Complete and rationalize `useless thing' warnings.
15119 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
15120 (symbol_tag_print): New.
15121 Use them everywhere in place of accessing directly the tag member.
15122 * src/gram.h, src/gram.c (rule_print): New.
15123 Use it where a rule used to be printed `by hand'.
15124 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
15125 (reduce_grammar_tables): Report the useless rules.
15126 (reduce_print): Useless things are a warning, not an error.
15128 * tests/reduce.at (Useless Nonterminals, Useless Rules):
15129 (Reduced Automaton, Underivable Rules): Adjust.
15130 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
15131 * tests/conflicts.at (Unresolved SR Conflicts)
15132 (Solved SR Conflicts): Adjust.
15134 2002-06-15 Akim Demaille <akim@epita.fr>
15136 Let symbols have a location.
15138 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
15140 Adjust all callers.
15141 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
15142 Use location_t, not int.
15143 * src/symtab.c (symbol_check_defined): Take advantage of the
15145 * tests/regression.at (Invalid inputs): Adjust.
15147 2002-06-15 Akim Demaille <akim@epita.fr>
15149 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
15150 (input): Don't try to initialize yylloc here, do it in the
15152 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
15153 * src/gram.h (rule_t): Change line and action_line into location
15154 and action_location, of location_t type.
15155 Adjust all dependencies.
15156 * src/location.h, src/location.c (empty_location): New.
15157 * src/reader.h, src/reader.c (grammar_start_symbol_set)
15158 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
15159 (grammar_current_rule_symbol_append)
15160 (grammar_current_rule_action_append): Expect a location as argument.
15161 * src/reader.c (grammar_midrule_action): Adjust to attach an
15162 action's location as dummy symbol location.
15163 * src/symtab.h, src/symtab.c (startsymbol_location): New.
15164 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
15167 2002-06-14 Akim Demaille <akim@epita.fr>
15169 Grammar declarations may be found in the grammar section.
15171 * src/parse-gram.y (rules_or_grammar_declaration): New.
15172 (declarations): Each declaration may end with a semicolon, not
15174 (grammar_declaration): `"%union"'.
15175 (grammar): Branch to rules_or_grammar_declaration.
15177 2002-06-14 Akim Demaille <akim@epita.fr>
15179 * src/main.c (main): Invoke scanner_free.
15181 2002-06-14 Akim Demaille <akim@epita.fr>
15183 * src/output.c (m4_invoke): Extracted from...
15184 (output_skeleton): here.
15187 2002-06-14 Akim Demaille <akim@epita.fr>
15189 * src/parse-gram.y (directives, directive, gram)
15190 (grammar_directives, precedence_directives, precedence_directive):
15192 (declarations, declaration, grammar, grammar_declaration)
15193 (precedence_declaration, precedence_declarator): these.
15194 (symbol_declaration): New.
15196 2002-06-14 Akim Demaille <akim@epita.fr>
15198 * src/files.c (action_obstack): Remove, unused.
15199 (output_obstack): Remove it, and all its dependencies, as it is no
15201 * src/reader.c (epilogue_set): Build the epilogue in the
15203 * src/output.h, src/output.c (muscle_obstack): Move to...
15204 * src/muscle_tab.h, src/muscle_tab.h: here.
15205 (muscle_init): Initialize muscle_obstack.
15206 (muscle_free): New.
15207 * src/main.c (main): Call it.
15209 2002-06-14 Akim Demaille <akim@epita.fr>
15211 * src/location.h: New, extracted from...
15212 * src/reader.h: here.
15213 * src/Makefile.am (noinst_HEADERS): Merge into
15214 (bison_SOURCES): this.
15216 * src/parse-gram.y: Use location_t instead of Bison's.
15217 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
15218 Use location_t instead of ints.
15220 2002-06-14 Akim Demaille <akim@epita.fr>
15222 * data/bison.simple, data/bison.c++: Be sure to restore the
15223 current #line when returning to the skeleton contents after having
15224 exposed the input file's #line.
15226 2002-06-12 Akim Demaille <akim@epita.fr>
15228 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
15230 * tests/actions.at (Exotic Dollars): New.
15232 2002-06-12 Akim Demaille <akim@epita.fr>
15234 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
15236 * tests/input.at (Torturing the Scanner): New.
15238 2002-06-11 Akim Demaille <akim@epita.fr>
15240 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
15241 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
15242 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
15243 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
15244 * src/reader.c (reader): Use it.
15246 2002-06-11 Akim Demaille <akim@epita.fr>
15248 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
15249 Adjust all callers.
15250 (scanner_last_string_free): New.
15252 2002-06-11 Akim Demaille <akim@epita.fr>
15254 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
15255 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
15256 (last_string, YY_OBS_FREE): New.
15257 Use them when returning an ID.
15259 2002-06-11 Akim Demaille <akim@epita.fr>
15261 Have Bison grammars parsed by a Bison grammar.
15263 * src/reader.c, src/reader.h (prologue_augment): New.
15264 * src/reader.c (copy_definition): Remove.
15266 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
15267 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
15268 (grammar_current_rule_prec_set, grammar_current_rule_check)
15269 (grammar_current_rule_symbol_append)
15270 (grammar_current_rule_action_append): Export.
15271 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
15272 (symbol_list_action_append): Remove.
15273 Hook the routines from reader.
15274 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
15275 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
15277 * src/reader.c (read_declarations): Remove, unused.
15279 * src/parse-gram.y: Handle the epilogue.
15280 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
15281 (grammar_start_symbol_set): this.
15282 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
15283 * src/reader.c (readgram): Remove, unused.
15284 (reader): Adjust to insert eoftoken and axiom where appropriate.
15286 * src/reader.c (copy_dollar): Replace with...
15287 * src/scan-gram.h (handle_dollar): this.
15288 * src/parse-gram.y: Remove `%thong'.
15290 * src/reader.c (copy_at): Replace with...
15291 * src/scan-gram.h (handle_at): this.
15293 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
15296 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
15299 * src/reader.h, src/reader.c (grammar_rule_end): New.
15301 * src/parse.y (current_type, current_class): New.
15302 Implement `%nterm', `%token' support.
15303 Merge `%term' into `%token'.
15304 (string_as_id): New.
15305 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
15308 * src/parse-gram.y: Be sure to handle properly the beginning of
15311 * src/parse-gram.y: Handle %type.
15312 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
15314 * src/parse-gram.y: More directives support.
15315 * src/options.c: No longer handle source directives.
15317 * src/parse-gram.y: Fix %output.
15319 * src/parse-gram.y: Handle %union.
15320 Use the prologue locations.
15321 * src/reader.c (parse_union_decl): Remove.
15323 * src/reader.h, src/reader.c (epilogue_set): New.
15324 * src/parse-gram.y: Use it.
15326 * data/bison.simple, data/bison.c++: b4_stype is now either not
15327 defined, then default to int, or to the contents of %union,
15328 without `union' itself.
15330 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
15332 * src/output.c (actions_output): Don't output braces, as they are
15333 already handled by the scanner.
15335 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
15336 characters to themselves.
15338 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
15339 that the epilogue has a proper #line.
15341 * src/parse-gram.y: Handle precedence/associativity.
15343 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
15345 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
15346 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
15347 at all to define terminals that cannot be emitted.
15349 * src/scan-gram.l: Escape M4 characters.
15351 * src/scan-gram.l: Working properly with escapes in user
15352 strings/characters.
15354 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
15355 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
15357 Use more modest sizes, as for the time being the parser does not
15358 release memory, and therefore the process swallows a huge amount
15361 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
15362 stricter %token grammar.
15364 * src/symtab.h (associativity): Add `undef_assoc'.
15365 (symbol_precedence_set): Do nothing when passed an undef_assoc.
15366 * src/symtab.c (symbol_check_alias_consistence): Adjust.
15368 * tests/regression.at (Invalid %directive): Remove, as it is now
15370 (Invalid inputs): Adjust to the new error messages.
15371 (Token definitions): The new grammar doesn't allow too many
15374 * src/lex.h, src/lex.c: Remove.
15375 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
15376 (copy_character, copy_string2, copy_string, copy_identifier)
15377 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
15378 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
15379 (parse_action): Remove.
15380 * po/POTFILES.in: Adjust.
15382 2002-06-11 Akim Demaille <akim@epita.fr>
15384 * src/reader.c (parse_action): Don't store directly into the
15385 rule's action member: return the action as a string.
15386 Don't require `rule_length' as an argument: compute it.
15387 (grammar_current_rule_symbol_append)
15388 (grammar_current_rule_action_append): New, eved out from
15390 Remove `action_flag', `rulelength', unused now.
15392 2002-06-11 Akim Demaille <akim@epita.fr>
15394 * src/reader.c (grammar_current_rule_prec_set).
15395 (grammar_current_rule_check): New, eved out from...
15397 Remove `xaction', `first_rhs': useless.
15398 * tests/input.at (Type clashes): New.
15399 * tests/existing.at (GNU Cim Grammar): Adjust.
15401 2002-06-11 Akim Demaille <akim@epita.fr>
15403 * src/reader.c (grammar_midrule_action): New, Eved out from
15406 2002-06-11 Akim Demaille <akim@epita.fr>
15408 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
15410 (readgram): Use them as replacement of inlined code, crule and
15413 2002-06-11 Akim Demaille <akim@epita.fr>
15415 * src/reader.c (grammar_end, grammar_symbol_append): New.
15416 (readgram): Use them.
15417 Make the use of `p' as local as possible.
15419 2002-06-10 Akim Demaille <akim@epita.fr>
15421 GCJ's parser requires the tokens to be defined before the prologue.
15423 * data/bison.simple: Output the token definition before the user's
15425 * tests/regression.at (Braces parsing, Duplicate string)
15426 (Mixing %token styles): Check the output from bison.
15427 (Early token definitions): New.
15429 2002-06-10 Akim Demaille <akim@epita.fr>
15431 * src/symtab.c (symbol_user_token_number_set): Don't complain when
15432 assigning twice the same user number to a token, so that we can
15434 * src/lex.c (lex): here.
15435 Also use `symbol_class_set' instead of hand written code.
15436 * src/reader.c (parse_assoc_decl): Likewise.
15438 2002-06-10 Akim Demaille <akim@epita.fr>
15440 * src/symtab.c, src/symtab.c (symbol_class_set)
15441 (symbol_user_token_number_set): New.
15442 * src/reader.c (parse_token_decl): Use them.
15443 Use a switch instead of ifs.
15444 Use a single argument.
15446 2002-06-10 Akim Demaille <akim@epita.fr>
15448 Remove `%thong' support as it is undocumented, unused, duplicates
15449 `%token's job, and creates useless e-mail traffic with people who
15450 want to know what it is, why it is undocumented, unused, and
15451 duplicates `%token's job.
15453 * src/reader.c (parse_thong_decl): Remove.
15454 * src/options.c (option_table): Remove "thong".
15455 * src/lex.h (tok_thong): Remove.
15457 2002-06-10 Akim Demaille <akim@epita.fr>
15459 * src/symtab.c, src/symtab.c (symbol_type_set)
15460 (symbol_precedence_set): New.
15461 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
15462 (value_components_used): Remove, unused.
15464 2002-06-09 Akim Demaille <akim@epita.fr>
15466 Move symbols handling code out of the reader.
15468 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
15469 (axiom): Move to...
15470 * src/symtab.h, src/symtab.c: here.
15472 * src/gram.c (start_symbol): Remove: use startsymbol->number.
15473 * src/reader.c (startval): Rename as...
15474 * src/symtab.h, src/symtab.c (startsymbol): this.
15475 * src/reader.c: Adjust.
15477 * src/reader.c (symbol_check_defined, symbol_make_alias)
15478 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
15479 (token_translations_init)
15481 * src/symtab.c: here.
15482 * src/reader.c (packsymbols): Move to...
15483 * src/symtab.h, src/symtab.c (symbols_pack): here.
15484 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
15487 2002-06-03 Akim Demaille <akim@epita.fr>
15489 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
15492 2002-06-03 Akim Demaille <akim@epita.fr>
15494 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
15495 structs with non literals.
15496 * src/scan-skel.l: never-interactive.
15497 * src/conflicts.c (enum conflict_resolution_e): No trailing
15499 * src/getargs.c (usage): Split long literal strings.
15500 Reported by Hans Aberg.
15502 2002-05-28 Akim Demaille <akim@epita.fr>
15504 * data/bison.c++: Use C++ ostreams.
15505 (cdebug_): New member.
15507 2002-05-28 Akim Demaille <akim@epita.fr>
15509 * src/output.c (output_skeleton): Be sure to allocate enough room
15510 for `/' _and_ for `\0' in full_skeleton.
15512 2002-05-28 Akim Demaille <akim@epita.fr>
15514 * data/bison.c++: Catch up with bison.simple:
15515 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15516 and Paul Eggert <eggert@twinsun.com>: `error' handing.
15517 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
15518 and popping traces.
15520 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15522 * src/output.c (output_skeleton): Put an explicit path in front of
15523 the skeleton file name, rather than relying on the -I directory,
15524 to partially alleviate effects of having a skeleton file lying around
15525 in the current directory.
15527 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15529 * src/conflicts.c (log_resolution): Correct typo:
15530 obstack_printf should be obstack_fgrow1.
15532 2002-05-26 Akim Demaille <akim@epita.fr>
15534 * src/state.h (state_t): `solved_conflicts' is a new member.
15535 * src/LR0.c (new_state): Set it to 0.
15536 * src/conflicts.h, src/conflicts.c (print_conflicts)
15537 (free_conflicts, solve_conflicts): Rename as...
15538 (conflicts_print, conflicts_free, conflicts_solve): these.
15540 * src/conflicts.c (enum conflict_resolution_e)
15541 (solved_conflicts_obstack): New, used by...
15542 (log_resolution): this.
15543 Adjust to attach the conflict resolution to each state.
15544 Complete the description with the precedence/associativity
15546 (resolve_sr_conflict): Adjust.
15547 * src/print.c (print_state): Output its solved_conflicts.
15548 * tests/conflicts.at (Unresolved SR Conflicts)
15549 (Solved SR Conflicts): Exercise --report=all.
15551 2002-05-26 Akim Demaille <akim@epita.fr>
15553 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15554 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
15555 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
15556 (token_number_t, item_number_as_token_number)
15557 (token_number_as_item_number, muscle_insert_token_number_table):
15559 (symbol_number_t, item_number_as_symbol_number)
15560 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
15561 these, since it is more appropriate.
15563 2002-05-26 Akim Demaille <akim@epita.fr>
15565 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
15567 * data/bison.simple (yystos) [YYDEBUG]: New.
15568 (yyparse) [YYDEBUG]: Display the symbols which are popped during
15570 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
15572 2002-05-25 Akim Demaille <akim@epita.fr>
15574 * doc/bison.texinfo (Debugging): Split into...
15575 (Tracing): this new section, its former contents, and...
15576 (Understanding): this new section.
15577 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
15579 (report_flag): this.
15580 Adjust all dependencies.
15581 (report_args, report_types, report_argmatch): New.
15582 (usage, getargs): Report/support -r, --report.
15584 (struct option_table_struct): Rename as..,
15585 (struct option_table_s): this.
15586 Rename the `set_flag' member to `flag' to match with getopt_long's
15588 * src/options.c (option_table): Split verbose into an entry for
15589 %verbose, and another for --verbose.
15590 Support --report/-r, so remove -r from the obsolete --raw.
15591 * src/print.c: Attach full item sets and lookaheads reports to
15592 report_flag instead of trace_flag.
15593 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
15595 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15596 and Paul Eggert <eggert@twinsun.com>
15598 * data/bison.simple (yyparse): Correct error handling to conform to
15599 POSIX and yacc. Specifically, after syntax error is discovered,
15600 do not reduce further before shifting the error token.
15601 Clean up the code a bit by removing the labels yyerrdefault,
15602 yyerrhandle, yyerrpop.
15603 * NEWS: Document the above.
15605 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15607 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
15608 type; it isn't always big enough, since it doesn't necessarily
15609 include non-terminals.
15610 (yytranslate): Expand definition of yy_token_number_type, so that
15611 the latter can be removed.
15612 (yy_token_number_type): Remove, only one use.
15613 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
15614 don't use TokenNumberType as element type.
15616 * tests/regression.at: Modify expected output to agree with change
15617 to yyr1 and yytranslate.
15619 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
15621 * src/reader.c (parse_action): Use copy_character instead of
15624 2002-05-13 Akim Demaille <akim@epita.fr>
15626 * tests/regression.at (Token definitions): Prototype yylex and
15629 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15631 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
15632 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
15634 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
15636 2002-05-07 Akim Demaille <akim@epita.fr>
15638 * tests/synclines.at: Be sure to prototype yylex and yyerror to
15639 avoid GCC warnings.
15641 2002-05-07 Akim Demaille <akim@epita.fr>
15645 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
15646 over the RHS of each rule.
15647 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
15648 * src/state.h (state_t): Member `nitems' is unsigned short.
15649 * src/LR0.c (get_state): Adjust.
15650 * src/reader.c (packgram): Likewise.
15651 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
15653 (muscle_insert_int_table): Remove, unused.
15654 (prepare_rules): Remove `max'.
15656 2002-05-06 Akim Demaille <akim@epita.fr>
15658 * src/closure.c (print_firsts): Display of the symbol tags.
15659 (bitmatrix_print): Move to...
15660 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
15662 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
15664 2002-05-06 Akim Demaille <akim@epita.fr>
15666 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
15669 2002-05-06 Akim Demaille <akim@epita.fr>
15671 * src/LR0.c (new_state, get_state): Instead of using the global
15672 `kernel_size' and `kernel_base', have two new arguments:
15673 `core_size' and `core'.
15676 2002-05-06 Akim Demaille <akim@epita.fr>
15678 * src/reader.c (packgram): No longer end `ritem' with a 0
15679 sentinel: it is not used.
15681 2002-05-05 Akim Demaille <akim@epita.fr>
15683 New experimental feature: display the lookaheads in the report and
15686 * src/print (print_core): When --trace-flag, display the rules
15688 * src/print_graph.c (print_core): Likewise.
15689 Swap the arguments.
15692 2002-05-05 Akim Demaille <akim@epita.fr>
15694 * tests/torture.at (Many lookaheads): New test.
15696 2002-05-05 Akim Demaille <akim@epita.fr>
15698 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
15699 (GENERATE_MUSCLE_INSERT_TABLE): this.
15700 (output_int_table, output_unsigned_int_table, output_short_table)
15701 (output_token_number_table, output_item_number_table): Replace with...
15702 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
15703 (muscle_insert_short_table, muscle_insert_token_number_table)
15704 (muscle_insert_item_number_table): these.
15705 Adjust all callers.
15706 (prepare_tokens): Don't free `translations', since...
15707 * src/reader.h, src/reader.c (grammar_free): do it.
15709 * src/gram.h, src/gram.c (grammar_free): here.
15710 * data/bison.simple, data/bison.c++: b4_token_number_max is now
15713 2002-05-05 Akim Demaille <akim@epita.fr>
15715 * src/output.c (output_unsigned_int_table): New.
15716 (prepare_rules): `i' is unsigned.
15717 `prhs', `rline', `r2' are unsigned int.
15718 Rename muscle `rhs_number_max' as `rhs_max'.
15719 Output muscles `prhs_max', `rline_max', and `r2_max'.
15721 * data/bison.simple, data/bison.c++: Adjust to use these muscles
15722 to compute types instead of constant types.
15723 * tests/regression.at (Web2c Actions): Adjust.
15725 2002-05-04 Akim Demaille <akim@epita.fr>
15727 * src/symtab.h (SALIAS, SUNDEF): Rename as...
15728 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
15729 Adjust dependencies.
15730 * src/output.c (token_definitions_output): Be sure not to output a
15731 `#define 'a'' when fed with `%token 'a' "a"'.
15732 * tests/regression.at (Token definitions): New.
15734 2002-05-03 Paul Eggert <eggert@twinsun.com>
15736 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
15739 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
15741 * Makefile.am (SUBDIRS): Remove intl.
15742 (EXTRA_DIST): Add config/config.rpath.
15744 2002-05-03 Akim Demaille <akim@epita.fr>
15746 * data/bison.simple (m4_if): Don't output empty enums.
15747 And actually, output valid enum definitions :(.
15749 2002-05-03 Akim Demaille <akim@epita.fr>
15751 * configure.bat: Remove, completely obsolete.
15752 * Makefile.am (EXTRA_DIST): Adjust.
15753 Don't distribute config.rpath...
15754 * config/Makefile.am (EXTRA_DIST): Do it.
15756 2002-05-03 Akim Demaille <akim@epita.fr>
15758 * configure.in (GETTEXT_VERSION): New.
15759 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
15761 2002-05-03 Akim Demaille <akim@epita.fr>
15763 * data/bison.simple (b4_token_enum): New.
15764 (b4_token_defines): Use it to output tokens both as #define and
15766 Suggested by Paul Eggert.
15767 * src/output.c (token_definitions_output): Don't output spurious
15770 2002-05-03 Akim Demaille <akim@epita.fr>
15772 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
15774 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
15776 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
15777 Update the stack class, give a try to deque as the default container.
15779 2002-05-02 Akim Demaille <akim@epita.fr>
15781 * data/bison.simple (yyparse): Do not implement @$ = @1.
15782 (YYLLOC_DEFAULT): Adjust to do it.
15783 * doc/bison.texinfo (Location Default Action): Fix.
15785 2002-05-02 Akim Demaille <akim@epita.fr>
15787 * src/reader.c (parse_braces): Merge into...
15788 (parse_action): this.
15790 2002-05-02 Akim Demaille <akim@epita.fr>
15792 * configure.in (ALL_LINGUAS): Remove.
15793 * po/LINGUAS, hr.po: New.
15795 2002-05-02 Akim Demaille <akim@epita.fr>
15797 Remove the so called hairy (semantic) parsers.
15799 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
15800 * src/gram.h, src/gram.c (semantic_parser): Remove.
15801 (rule_t): Remove the guard and guard_line members.
15802 * src/lex.h (token_t): remove tok_guard.
15803 * src/options.c (option_table): Remove %guard and %semantic_parser
15805 * src/output.c, src/output.h (guards_output): Remove.
15807 (token_definitions_output): Don't output the `T'
15809 (output_skeleton): Don't output the guards.
15810 * src/files.c, src/files.c (attrsfile): Remove.
15811 * src/reader.c (symbol_list): Remove the guard and guard_line
15813 Adjust dependencies.
15814 (parse_guard): Remove.
15815 * data/bison.hairy: Remove.
15816 * doc/bison.texinfo (Environment Variables): Remove occurrences of
15819 2002-05-02 Akim Demaille <akim@epita.fr>
15821 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
15822 (parse_guard): Rename the formal argument `stack_offset' as
15823 `rule_length', which is more readable.
15825 (copy_at, copy_dollar): Instead of outputting the hard coded
15826 values of $$, $n and so forth, output invocation to b4_lhs_value,
15827 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
15828 Note: this patch partially drops `semantic-parser' support: it
15829 always does `rule_length - n', where semantic parsers ought to
15831 * data/bison.simple, data/bison.c++ (b4_lhs_value)
15832 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
15834 2002-05-02 Akim Demaille <akim@epita.fr>
15836 * configure.in (AC_INIT): Bump to 1.49b.
15837 (AM_INIT_AUTOMAKE): Short invocation.
15839 2002-05-02 Akim Demaille <akim@epita.fr>
15843 2002-05-01 Akim Demaille <akim@epita.fr>
15845 * src/skeleton.h: Remove.
15847 2002-05-01 Akim Demaille <akim@epita.fr>
15849 * src/skeleton.h: Fix the #endif.
15850 Reported by Magnus Fromreide.
15852 2002-04-26 Paul Eggert <eggert@twinsun.com>
15854 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
15855 Define if we define YYSTYPE and YYLTYPE, respectively.
15856 (YYCOPY): Fix [] quoting problem in the non-GCC case.
15858 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
15860 * src/scan-skel.l: Postprocess quadrigraphs.
15862 * src/reader.c (copy_character): New function, used to output
15863 single characters while replacing `[' and `]' with quadrigraphs, to
15864 avoid troubles with M4 quotes.
15865 (copy_comment): Output characters with copy_character.
15866 (read_additionnal_code): Likewise.
15867 (copy_string2): Likewise.
15868 (copy_definition): Likewise.
15870 * tests/calc.at: Exercise M4 quoting.
15872 2002-04-25 Akim Demaille <akim@epita.fr>
15874 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
15875 between `!' and the command.
15876 Reported by Paul Eggert.
15878 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
15880 * tests/calc.at: Exercise prologue splitting.
15882 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
15883 `b4_post_prologue' instead of `b4_prologue'.
15885 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
15887 (output): Free pre_prologue_obstack and post_prologue_obstack.
15888 * src/files.h, src/files.c (attrs_obstack): Remove.
15889 (pre_prologue_obstack, post_prologue_obstack): New.
15890 * src/reader.c (copy_definition): Add a parameter to specify the
15891 obstack to fill, instead of using attrs_obstack unconditionally.
15892 (read_declarations): Pass pre_prologue_obstack to copy_definition if
15893 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
15895 2002-04-23 Paul Eggert <eggert@twinsun.com>
15897 * data/bison.simple: Remove unnecessary commentary and white
15898 space differences from 1_29-branch.
15899 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
15901 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
15902 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
15903 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
15904 constructors or destructors.
15906 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
15908 2002-04-23 Akim Demaille <akim@epita.fr>
15910 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
15911 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
15912 location with columns.
15913 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
15914 All reported by Paul Eggert.
15916 2002-04-22 Akim Demaille <akim@epita.fr>
15918 * src/reduce.c (dump_grammar): Move to...
15919 * src/gram.h, src/gram.c (grammar_dump): here.
15920 Be sure to separate long item numbers.
15921 Don't read the members of a rule's prec if its nil.
15923 2002-04-22 Akim Demaille <akim@epita.fr>
15925 * src/output.c (table_size, table_grow): New.
15926 (MAXTABLE): Remove, replace uses with table_size.
15927 (pack_vector): Instead of dying when the table is too big, grow it.
15929 2002-04-22 Akim Demaille <akim@epita.fr>
15931 * data/bison.simple (yyr1): Its type is that of a token number.
15932 * data/bison.c++ (r1_): Likewise.
15933 * tests/regression.at (Web2c Actions): Adjust.
15935 2002-04-22 Akim Demaille <akim@epita.fr>
15937 * src/reader.c (token_translations_init): 256 is now the default
15938 value for the error token, i.e., it will be assigned another
15939 number if the user assigned 256 to one of her tokens.
15940 (reader): Don't force 256 to error.
15941 * doc/bison.texinfo (Symbols): Adjust.
15942 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
15943 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
15944 etc. instead of 10, 20, 30 (which was used to `jump' over error
15945 (256) and undefined (2)).
15947 2002-04-22 Akim Demaille <akim@epita.fr>
15949 Propagate more token_number_t.
15951 * src/gram.h (token_number_as_item_number)
15952 (item_number_as_token_number): New.
15953 * src/output.c (GENERATE_OUTPUT_TABLE): New.
15954 Use it to create output_item_number_table and
15955 output_token_number_table.
15956 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
15957 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
15958 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
15959 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
15961 2002-04-22 Akim Demaille <akim@epita.fr>
15963 * src/output.h, src/output.c (get_lines_number): Remove.
15965 2002-04-19 Akim Demaille <akim@epita.fr>
15967 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
15969 (Debugging): More details about enabling the debugging features.
15970 (Table of Symbols): Describe $$, $n, @$, and @n.
15971 Suggested by Tim Josling.
15973 2002-04-19 Akim Demaille <akim@epita.fr>
15975 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
15977 2002-04-10 Akim Demaille <akim@epita.fr>
15979 * src/system.h: Rely on HAVE_LIMITS_H.
15980 Suggested by Paul Eggert.
15982 2002-04-09 Akim Demaille <akim@epita.fr>
15984 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
15985 full stderr, and strip it according to the bison options, instead
15986 of composing the error message from different bits.
15987 This makes it easier to check for several error messages.
15988 Adjust all the invocations.
15989 Add an invocation exercising the error token.
15990 Add an invocation demonstrating a stupid error message.
15991 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
15993 Error message are for stderr, not stdout.
15995 2002-04-09 Akim Demaille <akim@epita.fr>
15997 * src/gram.h, src/gram.c (error_token_number): Remove, use
15999 * src/reader.c (reader): Don't specify the user token number (2)
16000 for $undefined, as it uselessly prevents using it.
16001 * src/gram.h (token_number_t): Move to...
16002 * src/symtab.h: here.
16003 (state_t.number): Is a token_number_t.
16004 * src/print.c, src/reader.c: Use undeftoken->number instead of
16006 (Even though this 2 is not the same as above: the number of the
16007 undeftoken remains being 2, it is its user token number which
16009 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
16010 `user_token_number_max'.
16011 Output `undef_token_number'.
16012 * data/bison.simple, data/bison.c++: Use them.
16013 Be sure to map invalid yylex return values to
16014 `undef_token_number'. This saves us from gratuitous SEGV.
16016 * tests/conflicts.at (Solved SR Conflicts)
16017 (Unresolved SR Conflicts): Adjust.
16018 * tests/regression.at (Web2c Actions): Adjust.
16020 2002-04-08 Akim Demaille <akim@epita.fr>
16022 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
16024 Remove the duplicate `typedefs'.
16025 (RhsNumberType): Fix the declaration and various other typos.
16027 * data/bison.simple: Use __ofile__.
16028 * src/scan-skel.l: Handle __ofile__.
16030 2002-04-08 Akim Demaille <akim@epita.fr>
16032 * src/gram.h (item_number_t): New, the type of item numbers in
16033 RITEM. Note that it must be able to code symbol numbers as
16034 positive number, and the negation of rule numbers as negative
16036 Adjust all dependencies (pretty many).
16037 * src/reduce.c (rule): Remove this `short *' pointer: use
16039 * src/system.h (MINSHORT, MAXSHORT): Remove.
16040 Include `limits.h'.
16041 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
16042 (shortcpy): Remove.
16043 (MAXTABLE): Move to...
16044 * src/output.c (MAXTABLE): here.
16045 (prepare_rules): Use output_int_table to output rhs.
16046 * data/bison.simple, data/bison.c++: Adjust.
16047 * tests/torture.at (Big triangle): Move the limit from 254 to
16049 * tests/regression.at (Web2c Actions): Ajust.
16051 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
16052 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
16053 passes, but produces negative #line number, once fixed, GCC is
16054 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
16056 * src/state.h (state_h): Code input lines on ints, not shorts.
16058 2002-04-08 Akim Demaille <akim@epita.fr>
16060 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
16061 and then the grammar.
16063 2002-04-08 Akim Demaille <akim@epita.fr>
16065 * src/system.h: No longer using strndup.
16067 2002-04-07 Akim Demaille <akim@epita.fr>
16069 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
16070 * src/output.c (output_table_data): Return the longest number.
16071 (prepare_tokens): Output `token_number_max').
16072 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
16074 Use them to define yy_token_number_type/TokenNumberType.
16075 Use this type for yytranslate.
16076 * tests/torture.at (Big triangle): Push the limit from 124 to
16078 * tests/regression.at (Web2c Actions): Adjust.
16080 2002-04-07 Akim Demaille <akim@epita.fr>
16082 * tests/torture.at (Big triangle): New.
16083 (GNU AWK Grammar, GNU Cim Grammar): Move to...
16084 * tests/existing.at: here.
16086 2002-04-07 Akim Demaille <akim@epita.fr>
16088 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
16090 Adjust dependencies.
16092 2002-04-07 Akim Demaille <akim@epita.fr>
16094 * src/reader.c: Normalize increments to prefix form.
16096 2002-04-07 Akim Demaille <akim@epita.fr>
16098 * src/reader.c, symtab.c: Remove debugging code.
16100 2002-04-07 Akim Demaille <akim@epita.fr>
16102 Rename all the `bucket's as `symbol_t'.
16104 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
16105 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
16106 * src/symtab.c, src/symtab.h (bucket): Rename as...
16108 (symbol_list_new, bucket_check_defined, bucket_make_alias)
16109 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
16110 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16111 (buckets_new, buckets_free, buckets_do): Rename as...
16112 (symbol_list_new, symbol_check_defined, symbol_make_alias)
16113 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
16114 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
16115 (symbols_new, symbols_free, symbols_do): these.
16117 2002-04-07 Akim Demaille <akim@epita.fr>
16119 Use lib/hash for the symbol table.
16121 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
16123 * src/lex.c (lex): Set the `number' member of new terminals.
16124 * src/reader.c (bucket_check_defined, bucket_make_alias)
16125 (bucket_check_alias_consistence, bucket_translation): New.
16126 (reader, grammar_free, readgram, token_translations_init)
16127 (packsymbols): Adjust.
16128 (reader): Number the predefined tokens.
16129 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
16130 for predefined tokens.
16131 * src/symtab.h (bucket): Remove all the hash table related
16133 * src/symtab.c (symtab): Replace by...
16134 (bucket_table): this.
16135 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
16136 (buckets_new, buckets_do): New.
16138 2002-04-07 Akim Demaille <akim@epita.fr>
16140 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
16141 (start_symbol, max_user_token_number, semantic_parser)
16142 (error_token_number): Initialize.
16143 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
16146 (errtoken, eoftoken, undeftoken, axiom): Extern.
16148 2002-04-07 Akim Demaille <akim@epita.fr>
16150 * src/gram.h (rule_s): prec and precsym are now pointers
16151 to the bucket giving the priority/associativity.
16152 Member `associativity' removed: useless.
16153 * src/reduce.c, src/conflicts.c: Adjust.
16155 2002-04-07 Akim Demaille <akim@epita.fr>
16157 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
16158 Properly escape the symbols' TAG when outputting them.
16160 2002-04-07 Akim Demaille <akim@epita.fr>
16162 * src/lalr.h (LA): Is a bitsetv, not bitset*.
16164 2002-04-07 Akim Demaille <akim@epita.fr>
16166 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
16167 (LArule): this, which is an array to rule_t*.
16168 * src/print.c, src/conflicts.c: Adjust.
16170 2002-04-07 Akim Demaille <akim@epita.fr>
16172 * src/gram.h (rule_t): Rename `number' as `user_number'.
16173 `number' is a new member.
16174 Adjust dependencies.
16175 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
16177 2002-04-07 Akim Demaille <akim@epita.fr>
16179 As a result of the previous patch, it is no longer needed
16180 to reorder ritem itself.
16182 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
16184 2002-04-07 Akim Demaille <akim@epita.fr>
16186 Be sure never to walk through RITEMS, but use only data related to
16187 the rules themselves. RITEMS should be banished.
16189 * src/output.c (output_token_translations): Rename as...
16190 (prepare_tokens): this.
16191 In addition to `translate', prepare the muscles `tname' and
16192 `toknum', which were handled by...
16193 (output_rule_data): this.
16194 Remove, and move the remainder of its outputs into...
16195 (prepare_rules): this new routines, which also merges content from
16196 (output_gram): this.
16197 (prepare_rules): Be sure never to walk through RITEMS.
16198 (output_stos): Rename as...
16199 (prepare_stos): this.
16200 (output): Always invoke prepare_states, after all, just don't use it
16201 in the output if you don't need it.
16203 2002-04-07 Akim Demaille <akim@epita.fr>
16205 * src/LR0.c (new_state): Display `nstates' as the name of the
16206 newly created state.
16207 Adjust to initialize first_state and last_state if needed.
16208 Be sure to distinguish the initial from the final state.
16209 (new_states): Create the itemset of the initial state, and use
16211 * src/closure.c (closure): Now that the initial state has its
16212 items properly set, there is no need for a special case when
16213 creating `ruleset'.
16215 As a result, now the rule 0, reducing to $axiom, is visible in the
16216 outputs. Adjust the test suite.
16218 * tests/conflicts.at (Solved SR Conflicts)
16219 (Unresolved SR Conflicts): Adjust.
16220 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
16221 * tests/conflicts.at (S/R in initial): New.
16223 2002-04-07 Akim Demaille <akim@epita.fr>
16225 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
16226 the RHS of the rules.
16227 * src/output.c (output_gram): Likewise.
16229 2002-04-07 Akim Demaille <akim@epita.fr>
16231 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
16233 Adjust all dependencies.
16234 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
16235 `number' of the buckets too.
16236 * src/gram.h: Include `symtab.h'.
16237 (associativity): Move to...
16238 * src/symtab.h: here.
16239 No longer include `gram.h'.
16241 2002-04-07 Akim Demaille <akim@epita.fr>
16243 * src/gram.h, src/gram.c (rules_rhs_length): New.
16244 (ritem_longest_rhs): Use it.
16245 * src/gram.h (rule_t): `number' is a new member.
16246 * src/reader.c (packgram): Set it.
16247 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
16248 the end of `rules', and count them out of `nrules'.
16249 (reduce_output, dump_grammar): Adjust.
16250 * src/print.c (print_grammar): It is no longer needed to check for
16251 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
16252 * tests/reduce.at (Reduced Automaton): New test.
16254 2002-04-07 Akim Demaille <akim@epita.fr>
16256 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
16257 lacking `+ 1' to nrules, Bison reported as useless a token if it
16258 was used solely to set the precedence of the last rule...
16260 2002-04-07 Akim Demaille <akim@epita.fr>
16262 * data/bison.c++, data/bison.simple: Don't output the current file
16263 name in #line, to avoid useless diffs between two identical
16264 outputs under different names.
16266 2002-04-07 Akim Demaille <akim@epita.fr>
16268 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
16269 Normalize loops to using `< nrules + 1', not `<= nrules'.
16271 2002-04-07 Akim Demaille <akim@epita.fr>
16275 2002-04-07 Akim Demaille <akim@epita.fr>
16277 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
16278 bucket.value as bucket.number.
16280 2002-04-07 Akim Demaille <akim@epita.fr>
16282 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
16283 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
16284 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
16285 RHS, instead of being an index in RITEMS.
16287 2002-04-04 Paul Eggert <eggert@twinsun.com>
16289 * doc/bison.texinfo: Update copyright date.
16290 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
16291 (Symbols): Warn about running Bison in one character set,
16292 but compiling and/or running in an incompatible one.
16293 Warn about character code 256, too.
16295 2002-04-03 Paul Eggert <eggert@twinsun.com>
16297 * src/bison.data (YYSTACK_ALLOC): Depend on whether
16298 YYERROR_VERBOSE is nonzero, not whether it is defined.
16300 Merge changes from bison-1_29-branch.
16302 2002-03-20 Paul Eggert <eggert@twinsun.com>
16304 Merge fixes from Debian bison_1.34-1.diff.
16306 * configure.in (AC_PREREQ): 2.53.
16308 2002-03-20 Akim Demaille <akim@epita.fr>
16310 * src/conflicts.c (log_resolution): Argument `resolution' is const.
16312 2002-03-19 Paul Eggert <eggert@twinsun.com>
16314 * src/bison.simple (YYCOPY): New macro.
16315 (YYSTACK_RELOCATE): Use it.
16316 Remove Type arg; no longer needed. All callers changed.
16317 (yymemcpy): Remove; no longer needed.
16319 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
16320 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
16322 2002-03-19 Akim Demaille <akim@epita.fr>
16324 Test and fix the #line outputs.
16326 * tests/atlocal.at (GCC): New.
16327 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
16328 (Prologue synch line, %union synch line, Postprologue synch line)
16329 (Action synch line, Epilogue synch line): New tests.
16330 * src/reader.c (parse_union_decl): Define the muscle stype_line.
16331 * data/bison.simple, data/bison.c++: Use it.
16333 2002-03-19 Akim Demaille <akim@epita.fr>
16335 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
16336 (Solved SR Conflicts, %expect not enough, %expect right)
16337 (%expect too much): Move to...
16338 * tests/conflicts.at: this new file.
16340 2002-03-19 Akim Demaille <akim@epita.fr>
16342 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
16343 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
16344 that we can move to enums for instance.
16345 * src/output.c (token_definitions_output): Output a list of
16346 `token-name, token-number' instead of the #define.
16347 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
16349 2002-03-14 Akim Demaille <akim@epita.fr>
16351 Use Gettext 0.11.1.
16353 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
16355 * data/bison.c++: Make the user able to add members to the generated
16356 parser by subclassing.
16358 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
16360 * src/reader.c (read_additionnal_code): `c' should be an integer, not
16362 Reported by Nicolas Tisserand and Nicolas Burrus.
16364 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16366 * src/reader.c: Warn about lacking semi-colons, do not complain.
16368 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16370 * data/bison.c++: Remove a debug line.
16372 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
16374 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
16375 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
16376 provide a default implementation.
16378 2002-03-04 Akim Demaille <akim@epita.fr>
16380 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
16381 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
16382 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
16383 * tests/semantic.at (Parsing Guards): Similarly.
16384 * src/reader.at (readgram): Complain if the last rule is not ended
16387 2002-03-04 Akim Demaille <akim@epita.fr>
16389 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
16390 * src/closure.c: here.
16391 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
16393 * src/warshall.h, src/warshall.c: Remove.
16394 * tests/sets.at (Broken Closure): Adjust.
16396 2002-03-04 Akim Demaille <akim@epita.fr>
16398 * src/output.c (output_skeleton): tempdir is const.
16399 bytes_read is unused.
16401 2002-03-04 Akim Demaille <akim@epita.fr>
16403 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16404 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
16406 From Michael Hayes.
16408 2002-03-04 Akim Demaille <akim@epita.fr>
16410 * src/closure.c (closure): `r' is unused.
16412 2002-03-04 Akim Demaille <akim@epita.fr>
16414 * tests/sets.at (Broken Closure): Add the ending `;'.
16415 * src/reader.at (readgram): Complain if a rule is not ended with a
16418 2002-03-04 Akim Demaille <akim@epita.fr>
16420 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
16421 (count_sr_conflicts): Use bitset_count.
16422 * src/reduce.c (inaccessable_symbols): Ditto.
16423 (bits_size): Remove.
16424 * src/warshall.h, src/warshall.c: Convert to bitsetv.
16426 2002-03-04 Akim Demaille <akim@epita.fr>
16428 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
16429 * src/reduce.c: Remove the `bitset_zero's following the
16430 `bitset_create's, as now it is performed by the latter.
16432 2002-03-04 Akim Demaille <akim@epita.fr>
16434 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
16435 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
16436 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
16437 latest sources from Michael.
16439 2002-03-04 Akim Demaille <akim@epita.fr>
16441 * src/output.c (output): Don't free the grammar.
16442 * src/reader.c (grammar_free): New.
16443 * src/main.c (main): Call it and don't free symtab here.
16445 2002-03-04 Akim Demaille <akim@epita.fr>
16447 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
16449 Reported by Benoit Perrot.
16451 2002-03-04 Akim Demaille <akim@epita.fr>
16453 Use bitset operations when possible, not loops over bits.
16455 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
16457 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
16458 * src/reduce.c (useless_nonterminals): Formatting changes.
16459 * src/warshall.c (TC): Use bitset_or.
16461 2002-03-04 Akim Demaille <akim@epita.fr>
16463 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
16464 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
16467 2002-03-04 Akim Demaille <akim@epita.fr>
16469 * src/lalr.c (F): Now a bitset*.
16470 Adjust all dependencies.
16472 2002-03-04 Akim Demaille <akim@epita.fr>
16474 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
16475 Adjust all dependencies.
16477 2002-03-04 Akim Demaille <akim@epita.fr>
16479 * src/L0.c, src/LR0.h (nstates): Be size_t.
16480 Adjust comparisons (signed vs unsigned).
16481 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
16483 Adjust all dependencies.
16485 2002-03-04 Akim Demaille <akim@epita.fr>
16487 * src/closure.c (firsts): Now, also a bitset.
16488 Adjust all dependencies.
16489 (varsetsize): Remove, now unused.
16490 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
16492 2002-03-04 Akim Demaille <akim@epita.fr>
16494 * src/print.c: Convert to use bitset.h, not hand coded iterations
16497 2002-03-04 Akim Demaille <akim@epita.fr>
16499 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
16501 2002-03-04 Akim Demaille <akim@epita.fr>
16503 * src/closure.c (ruleset): Be a bitset.
16504 (rulesetsize): Remove.
16506 2002-03-04 Akim Demaille <akim@epita.fr>
16508 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
16509 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
16510 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
16511 * src/closure.c (fderives): Be an array of bitsets.
16513 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
16515 * data/bison.c++: Merge the two generated headers. Insert a copyright
16516 notice in each output file.
16518 2002-02-28 Akim Demaille <akim@epita.fr>
16520 * data/bison.c++: Copy the prologue of bison.simple to fetch
16521 useful M4 definitions, such as b4_header_guard.
16523 2002-02-25 Akim Demaille <akim@epita.fr>
16525 * src/getargs.c (version): Give the name of the authors, and use a
16526 translator friendly scheme for the bgr
16529 2002-02-25 Akim Demaille <akim@epita.fr>
16531 * src/output.c (header_output): Remove, now handled completely via
16534 2002-02-25 Akim Demaille <akim@epita.fr>
16536 * m4/m4.m4: New, from CVS Autoconf.
16537 * configure.in: Invoke it.
16538 * src/output.c (output_skeleton): Use its result instead of the
16541 2002-02-25 Akim Demaille <akim@epita.fr>
16543 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
16545 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
16546 * src/output.c (output_skeleton): Use mkstemp to create a real
16548 Move the filling of `skeleton' and its muscle to...
16550 (output): Move the definition of the prologue muscle to...
16552 * src/system.h (DEFAULT_TMPDIR): New.
16554 2002-02-14 Paul Eggert <eggert@twinsun.com>
16556 Remove the support for C++ namespace cleanliness; it was
16557 causing more problems than it was curing, since it didn't work
16558 properly on some nonstandard C++ compilers. This can wait
16559 for a proper C++ parser.
16561 * NEWS: Document this.
16562 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
16563 of C++, as it's treated like C now.
16564 * src/bison.simple (YYSTD): Remove.
16565 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
16566 Treat C++ just like Standard C instead of trying to support
16567 namespace cleanliness.
16569 2002-02-14 Akim Demaille <akim@epita.fr>
16571 * tests/regression.at (else): Adjust to Andreas' change.
16573 2002-02-14 Akim Demaille <akim@epita.fr>
16575 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
16577 2002-02-13 Andreas Schwab <schwab@suse.de>
16579 * src/output.c (output_rule_data): Don't output NULL, it might
16580 not be defined yet.
16582 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
16584 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
16585 (Copyright notice): Update.
16587 2002-02-11 Akim Demaille <akim@epita.fr>
16589 * tests/regression.at (%nonassoc and eof): Don't include
16590 nonportable headers.
16592 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
16594 * data/bison.c++: Correct error recovery. Make the user able to
16595 initialize the starting location.
16597 2002-02-07 Akim Demaille <akim@epita.fr>
16599 * tests/input.at: New.
16601 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16603 * data/bison.c++: Replace some direct m4 expansions by constants. Be
16604 more consistent when naming methods and variables. Put preprocessor
16605 directives around tables only needed for debugging.
16607 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16609 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
16611 (yy::b4_name::parse): Use print_.
16613 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16615 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
16617 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
16619 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
16621 (yy::b4_name::parse): Build verbose error messages, and use error_.
16623 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16625 * data/bison.c++: Fix m4 quoting in comments.
16627 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
16629 * data/bison.c++: Adjust the parser code. Fix some muscles that were
16630 not expanded by m4.
16632 2002-02-05 Akim Demaille <akim@epita.fr>
16634 * data/bison.c++: Adjust to the M4 back end.
16635 More is certainly needed.
16637 2002-02-05 Akim Demaille <akim@epita.fr>
16639 Give a try to M4 as a back end.
16641 * lib/readpipe.c: New, from wdiff.
16642 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
16644 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
16645 specific values. Now it is m4 that performs the lookup.
16646 * src/parse-skel.y: Remove.
16647 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
16648 * src/output.c (actions_output, guards_output)
16649 (token_definitions_output): No longer keeps track of the output
16650 line number, hence remove the second argument.
16651 (guards_output): Check against the guard member of a rule, not the
16654 (output_skeleton): Don't look for the skeleton location, let m4 do
16656 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
16658 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
16659 (prepare): Given that for the time being changesyntax is not
16660 usable in M4, rename the muscles using `-' to `_'.
16661 Define `defines_flag', `output_parser_name' and `output_header_name'.
16662 * src/output.h (actions_output, guards_output)
16663 (token_definitions_output): Adjust prototypes.
16664 * src/scan-skel.l: Instead of scanning the skeletons, it now
16665 processes the output of m4: `__oline__' and `#output'.
16666 * data/bison.simple: Adjust to be used by M4(sugar).
16667 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
16669 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
16670 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
16671 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
16672 shamelessly stolen from CVS Autoconf.
16674 2002-02-05 Akim Demaille <akim@epita.fr>
16676 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
16677 * configure.in: Check for the declarations of free and malloc.
16678 * src/muscle_tab.c: Adjust.
16680 2002-02-05 Akim Demaille <akim@epita.fr>
16682 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
16683 which have no values.
16685 2002-02-05 Akim Demaille <akim@epita.fr>
16687 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
16690 2002-01-29 Paul Eggert <eggert@twinsun.com>
16692 * src/bison.simple (YYSIZE_T): Do not define merely because
16693 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
16694 On some platforms, <alloca.h> does not declare YYSTD (size_t).
16696 2002-01-27 Akim Demaille <akim@epita.fr>
16698 Fix `%nonassoc and eof'.
16700 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
16701 which were not properly copied! Replace
16702 memcpy (res->errs, src->errs, src->nerrs);
16704 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
16706 * tests/regression.at (%nonassoc and eof): Adjust to newest
16707 Autotest: `.' is not in the PATH.
16709 2002-01-27 Akim Demaille <akim@epita.fr>
16711 * tests/sets.at (AT_EXTRACT_SETS): New.
16712 (Nullable): Use it.
16715 2002-01-26 Akim Demaille <akim@epita.fr>
16717 * tests/actions.at, tests/calc.at, tests/headers.at,
16718 * tests/torture.at: Adjust to the newest Autotest which no longer
16719 forces `.' in the PATH.
16721 2002-01-25 Akim Demaille <akim@epita.fr>
16723 * tests/regression.at (%nonassoc and eof): New.
16724 Suggested by Robert Anisko.
16726 2002-01-24 Akim Demaille <akim@epita.fr>
16728 Bison dumps core when trying to complain about broken input files.
16729 Reported by Cris van Pelt.
16731 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
16732 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
16734 (Invalid inputs): Strengthen: exercise parse_percent_token.
16736 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
16738 * src/Makefile.am: Add bison.c++.
16739 * src/bison.c++: New skeleton.
16741 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
16745 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
16747 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
16749 2002-01-20 Marc Autret <marc@gnu.org>
16751 * src/files.c (compute_output_file_names): Fix
16753 2002-01-20 Marc Autret <marc@gnu.org>
16755 * tests/output.at: New test.
16756 * src/files.c (compute_base_names): Don't map extensions when
16757 the YACC flag is set, use defaults.
16758 Reported by Evgeny Stambulchik.
16760 2002-01-20 Marc Autret <marc@gnu.org>
16762 * src/system.h: Need to define __attribute__ away for non-GCC
16763 compilers as well (i.e., the vendor C compiler).
16764 Suggested by Albert Chin-A-Young.
16766 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
16768 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
16769 canonical definition.
16770 * src/system.h: Use the canonical definition for PARAMS (avoids
16771 a conflict with the macro from lib/hash.h).
16773 2002-01-11 Akim Demaille <akim@epita.fr>
16775 * configure.in: Use AC_FUNC_STRNLEN.
16776 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
16778 2002-01-09 Akim Demaille <akim@epita.fr>
16780 * src/files.c, src/files.h (output_infix): New.
16781 (tab_extension): Remove.
16782 (compute_base_names): Compute the former, drop the latter.
16783 * src/output.c (prepare): Insert the muscles `output-infix', and
16785 * src/parse-skel.y (string, string.1): New.
16786 (section.header): Use it.
16787 (section.yacc): Remove.
16788 (prefix): Remove too.
16789 * src/scan-skel.l: Adjust.
16790 * src/bison.simple, src/bison.hairy: Adjust.
16792 2002-01-09 Akim Demaille <akim@epita.fr>
16794 * configure.in (WERROR_CFLAGS): Compute it.
16795 * src/Makefile.am (CFLAGS): Pass it.
16796 * tests/atlocal.in (CFLAGS): Idem.
16797 * src/files.c: Fix a few warnings.
16798 (get_extension_index): Remove, unused.
16800 2002-01-08 Akim Demaille <akim@epita.fr>
16802 * src/getargs.c (AS_FILE_NAME): New.
16803 (getargs): Use it to convert DOSish file names.
16804 * src/files.c (base_name): Rename as full_base_name to avoid
16805 clashes with `base_name ()'.
16806 (filename_split): New.
16807 (compute_base_names): N-th rewrite, using filename_split.
16809 2002-01-08 Akim Demaille <akim@epita.fr>
16811 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
16812 New, stolen from the Fileutils 4.1.
16813 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
16814 * configure.in: Check for the presence of memrchr, and of its
16817 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
16819 * lib/hash.h (__P): Added definition for this macro.
16820 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
16821 BUILT_SOURCES, to ensure they are generated first.
16822 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
16823 %error-verbose to allow bootstrapping with bison 1.30x.
16825 2002-01-06 Akim Demaille <akim@epita.fr>
16827 * src/reader.c (parse_braces): Don't fetch the next char, the
16828 convention is to fetch on entry.
16829 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
16830 'switch' without a following semicolon.
16831 * tests/regression.at (braces parsing): New.
16833 2002-01-06 Akim Demaille <akim@epita.fr>
16835 Bison is dead wrong in its RR conflict reports.
16837 * tests/torture.at (GNU Cim Grammar): New.
16838 * src/conflicts.c (count_rr_conflicts): Fix.
16840 2002-01-06 Akim Demaille <akim@epita.fr>
16842 Creating package.m4 from configure.ac causes too many problems.
16844 * tests/Makefile.am (package.m4): Create it by hand,
16845 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
16847 2002-01-06 Akim Demaille <akim@epita.fr>
16849 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
16852 2002-01-04 Paul Eggert <eggert@twinsun.com>
16854 * doc/bison.texinfo (Debugging):
16855 Remove YYSTDERR; it's no longer defined or used.
16856 Also, s/cstdio.h/cstdio/.
16858 2002-01-03 Akim Demaille <akim@epita.fr>
16860 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
16862 2002-01-03 Akim Demaille <akim@epita.fr>
16864 * src/parse-skel.y (process_skeleton): Don't bind the parser's
16865 tracing code to --trace, wait for a better --trace option, with
16868 2002-01-03 Akim Demaille <akim@epita.fr>
16870 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
16871 The ISO C++ standard is extremely clear about it: stderr is
16872 considered a macro, not a regular symbol (see table 94 `Header
16873 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
16874 Therefore std:: does not apply to it. It still does with fprintf.
16875 Also, s/cstdio.h/cstdio/.
16877 2002-01-03 Akim Demaille <akim@epita.fr>
16879 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
16880 for non system headers.
16882 2002-01-02 Akim Demaille <akim@epita.fr>
16884 Equip the skeleton chain with location tracking, runtime trace,
16885 pure parser and scanner.
16887 * src/parse-skel.y: Request a pure parser, locations, and prefix
16889 (%union): Having several members with the same type does not help
16890 type mismatches, simplify.
16891 (YYPRINT, yyprint): New.
16892 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
16893 (skel_error): this.
16895 * src/scan-skel.l: Adjust to these changes.
16896 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
16897 (LOCATION_PRINT, skel_control_t): New.
16899 2001-12-30 Akim Demaille <akim@epita.fr>
16901 * src/parse-skel.y: Get rid of the shift/reduce conflict:
16902 replace `gb' with BLANKS.
16903 * src/scan-skel.l: Adjust.
16905 2001-12-30 Akim Demaille <akim@epita.fr>
16907 * src/system.h: We don't need nor want bcopy.
16908 Throw away MS-DOS crap: we don't need getpid.
16909 * configure.in: We don't need strndup. It was even causing
16910 problems: because Flex includes the headers *before* us,
16911 _GNU_SOURCE is not defined by config.h, and therefore strndup was
16913 * lib/xstrndup.c: New.
16914 * src/scan-skel.l: Use it.
16915 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
16916 * src/parse-skel.y: Use %directives instead of #defines.
16918 2001-12-30 Akim Demaille <akim@epita.fr>
16920 * src/skeleton.h: New.
16921 * src/output.c (output_parser, output_master_parser): Remove, dead
16923 * src/output.h (get_lines_number, actions_output, guards_output)
16924 (token_definitions_output): Prototype them.
16925 * src/parse-skel.y: Add the license notice.
16926 Include output.h and skeleton.h.
16927 (process_skeleton): Returns void, and takes a single parameter.
16928 * src/scan-skel.l: Add the license notice.
16929 Include skeleton.h.
16930 Don't use %option yylineno: it seems that then Flex imagines
16931 REJECT has been used, and therefore it won't reallocate its
16932 buffers (which makes no other sense to me than a bug). It results
16933 in warnings for `unused: yy_flex_realloc'.
16935 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
16937 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16938 (MUSCLE_INSERT_PREFIX): ...to there.
16939 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
16940 (MUSCLE_INSERT_PREFIX): Move from here...
16942 * src/bison.hairy: Add a section directive. Put braces around muscle
16943 names. This parser skeleton is still broken, but Bison should not
16944 choke on a bad muscle 'syntax'.
16945 * src/bison.simple: Add a section directive. Put braces around muscle
16948 * src/files.h (strsuffix, stringappend): Add declarations.
16949 (tab_extension): Add declaration.
16950 (short_base_name): Add declaration.
16952 * src/files.c (strsuffix, stringappend): No longer static. These
16953 functions are used in the skeleton parser.
16954 (tab_extension): New.
16955 (compute_base_names): Use the computations done in this function
16956 to guess if the generated parsers should have '.tab' in their
16958 (short_base_name): No longer static.
16960 * src/output.c (output_skeleton): New.
16961 (output): Disable call to output_master_parser, and give a try to
16962 a new skeleton handling system.
16963 (guards_output, actions_output): No longer static.
16964 (token_definitions_output, get_lines_number): No longer static.
16966 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
16968 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
16971 * src/parse-skel.y: New file.
16972 * src/scan-skel.l: New file.
16974 2001-12-29 Akim Demaille <akim@epita.fr>
16976 %name-prefix is broken.
16978 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
16979 Adjust all dependencies.
16980 * tests/headers.at (export YYLTYPE): Strengthen this test: use
16983 Renaming yylval but not yylloc is not consistent. Now we do.
16985 * src/bison.simple: Prefix yylloc if used.
16986 * doc/bison.texinfo (Decl Summary): Document that.
16988 2001-12-29 Akim Demaille <akim@epita.fr>
16990 * doc/bison.texinfo: Promote `%long-directive' over
16992 Remove all references to fixed-output-files, yacc is enough.
16994 2001-12-29 Akim Demaille <akim@epita.fr>
16996 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
16997 user prologue. These are defaults.
16998 * tests/actions.at (Mid-rule actions): Make sure the user can
16999 define YYDEBUG and YYERROR_VERBOSE.
17001 2001-12-29 Akim Demaille <akim@epita.fr>
17003 * src/output.c (header_output): Don't forget to export YYLTYPE and
17005 * tests/headers.at (export YYLTYPE): New, make sure it does.
17006 * tests/regression.at (%union and --defines, Invalid CPP headers):
17008 * tests/headers.at: here.
17010 2001-12-29 Akim Demaille <akim@epita.fr>
17012 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
17014 2001-12-29 Akim Demaille <akim@epita.fr>
17016 * tests/actions.at (Mid-rule actions): Output on a single line
17017 instead of several.
17019 2001-12-29 Akim Demaille <akim@epita.fr>
17021 * doc/bison.texinfo: Formatting changes.
17023 2001-12-29 Akim Demaille <akim@epita.fr>
17025 Don't store the token defs in a muscle, just be ready to output it
17026 on command. Now possible via `symbols'. Fixes a memory leak.
17028 * src/output.c (token_definitions_output): New.
17029 (output_parser, header_output): Use it.
17030 * src/reader.c (symbols_save): Remove.
17032 2001-12-29 Akim Demaille <akim@epita.fr>
17034 * src/bison.simple: Do not provide a default for YYSTYPE and
17035 YYLTYPE before the user's prologue. Otherwise it's hardly... a
17038 2001-12-29 Akim Demaille <akim@epita.fr>
17040 Mid-rule actions are simply... ignored!
17042 * src/reader.c (readgram): Be sure to attach mid-rule actions to
17043 the empty-rule associated to the dummy symbol, not to the host
17045 * tests/actions.at (Mid-rule actions): New.
17047 2001-12-29 Akim Demaille <akim@epita.fr>
17051 * src/reader.c (reader): Free grammar.
17053 2001-12-29 Akim Demaille <akim@epita.fr>
17057 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
17058 since it allocates it for each state, although only one is needed.
17059 (allocate_storage): Do it here.
17061 2001-12-29 Akim Demaille <akim@epita.fr>
17063 * src/options.h, src/options.c (create_long_option_table): Rename
17065 (long_option_table_new): this, with a clearer prototype.
17066 (percent_table): Remove, unused,
17067 * src/getargs.c (getargs): Adjust.
17069 2001-12-29 Akim Demaille <akim@epita.fr>
17071 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
17072 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
17075 2001-12-29 Akim Demaille <akim@epita.fr>
17077 * src/lalr.c (build_relations): Rename `states' as `states1'.
17078 Sorry, I don't understand exactly what it is, no better name...
17080 2001-12-29 Akim Demaille <akim@epita.fr>
17082 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
17083 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
17084 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
17087 2001-12-29 Akim Demaille <akim@epita.fr>
17089 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
17092 2001-12-29 Akim Demaille <akim@epita.fr>
17094 * src/reader.c, src/reader.h (user_toknums): Remove.
17095 Adjust all users to use symbols[i]->user_token_number.
17097 2001-12-29 Akim Demaille <akim@epita.fr>
17099 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
17100 Adjust all users to use symbols[i]->prec or ->assoc.
17102 2001-12-29 Akim Demaille <akim@epita.fr>
17104 * src/reader.c, src/reader.h (tags): Remove.
17105 Adjust all users to use symbols[i]->tag.
17107 2001-12-29 Akim Demaille <akim@epita.fr>
17109 * src/gram.h, src/gram.c (symbols): New, similar to state_table
17111 * src/reader.c (packsymbols): Fill this table.
17113 * src/conflicts.c (resolve_sr_conflict): Adjust.
17114 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
17116 Use symbols[i]->tag instead of tags[i].
17118 2001-12-29 Akim Demaille <akim@epita.fr>
17120 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
17121 In addition, put a comment in there, to replace...
17122 * tests/regression.at (%union and C comments): Remove.
17124 2001-12-29 Akim Demaille <akim@epita.fr>
17126 * tests/regression.at (Web2c Actions): Blindly move the actual
17127 output as expected output. The contents *seem* right to me, but I
17128 can't pretend reading perfectly parser tables... Nonetheless, all
17129 the other tests pass correctly, the table look OK, even though the
17130 presence of `$axiom' is to be noted: AFAICS it is useless (but
17133 2001-12-29 Akim Demaille <akim@epita.fr>
17135 * src/reader.c (readgram): Don't add the rule 0 if there were no
17136 rules read. In other words, add it _after_ having performed
17137 grammar sanity checks.
17138 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
17140 2001-12-29 Akim Demaille <akim@epita.fr>
17142 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
17143 visible, and some states have now a different number.
17145 2001-12-29 Akim Demaille <akim@epita.fr>
17147 * src/reader.c (readgram): Bind the initial rule's lineno to that
17149 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
17150 (Solved SR Conflicts): Adjust rule 0's line number.
17152 2001-12-29 Akim Demaille <akim@epita.fr>
17154 Fix the `GAWK Grammar' failure.
17156 * src/LR0.c (final_state): Initialize to -1 so that we do compute
17157 the reductions of the first state which was mistakenly confused
17158 with the final state because precisely final_state was initialized
17160 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
17161 now noticed by Bison.
17162 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
17163 have a reduction on $default.
17165 2001-12-29 Akim Demaille <akim@epita.fr>
17167 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
17169 * src/closure.c (print_closure): Likewise.
17170 * src/derives.c (print_derives): Likewise.
17171 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
17174 2001-12-29 Akim Demaille <akim@epita.fr>
17176 * src/lalr.c (lookaheads_print): New.
17177 (lalr): Call it when --trace-flag.
17178 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
17181 2001-12-29 Akim Demaille <akim@epita.fr>
17183 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
17184 when walking through ritem, even via rule->rhs.
17185 * src/reduce.c (dump_grammar, useful_production, reduce_output)
17186 (useful_production, useless_nonterminals): Likewise.
17187 (reduce_grammar_tables): Likewise, plus update nritems.
17188 * src/nullable.c (set_nullable): Likewise.
17189 * src/lalr.c (build_relations): Likewise.
17190 * tests/sets.at (Nullable): Adjust.
17191 Fortunately, now, the $axiom is no longer nullable.
17193 2001-12-29 Akim Demaille <akim@epita.fr>
17195 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
17197 * src/gram.c (ritem_longest_rhs): Likewise.
17198 * src/reduce.c (nonterminals_reduce): Likewise.
17199 * src/print_graph.c (print_graph): Likewise.
17200 * src/output.c (output_rule_data): Likewise.
17201 * src/nullable.c (set_nullable): Likewise.
17203 2001-12-29 Akim Demaille <akim@epita.fr>
17205 * src/output.c: Comment changes.
17207 2001-12-27 Paul Eggert <eggert@twinsun.com>
17209 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
17210 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
17211 Sparc, as they were causing more porting problems than the
17212 (minor) performance improvement was worth.
17214 Also, catch up with 1.31's YYSTD.
17216 2001-12-27 Akim Demaille <akim@epita.fr>
17218 * src/output.c (output_gram): Rely on nritems, not the
17219 0-sentinel. See below.
17220 Use -1 as separator, not 0.
17221 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
17222 Rely on -1 as separator in yyrhs, instead of 0.
17223 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
17224 twice `Now at end of input', therefore there are two lines less to
17227 2001-12-27 Akim Demaille <akim@epita.fr>
17229 * tests/regression.at (Unresolved SR Conflicts):
17230 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
17233 2001-12-27 Akim Demaille <akim@epita.fr>
17235 * src/LR0.c (new_state): Recognize the final state by the fact it
17236 is reached by eoftoken.
17237 (insert_start_shifting_state, insert_eof_shifting_state)
17238 (insert_accepting_state, augment_automaton): Remove, since now
17239 these states are automatically computed from the initial state.
17240 (generate_states): Adjust.
17241 * src/print.c: When reporting a rule number to the user, substract
17242 1, so that the axiom rule is rule 0, and the first user rule is 1.
17243 * src/reduce.c: Likewise.
17244 * src/print_graph.c (print_core): For the time being, just as for
17245 the report, depend upon --trace-flags to dump the full set of
17247 * src/reader.c (readgram): Once the grammar read, insert the rule
17248 0: `$axiom: START-SYMBOL $'.
17249 * tests/set.at: Adjust: rule 0 is now displayed, and since the
17250 number of the states has changed (the final state is no longer
17251 necessarily the last), catch up.
17253 2001-12-27 Akim Demaille <akim@epita.fr>
17255 Try to make the use of the eoftoken valid. Given that its value
17256 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
17257 is used instead of > 0 where appropriate, (ii), depend upon nritems
17258 instead of the 0-sentinel.
17260 * src/gram.h, src/gram.c (nritems): New.
17261 Expected to be duplication of nitems, but for the time being...
17262 * src/reader.c (packgram): Assert nritems and nitems are equal.
17263 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
17264 * src/closure.c (print_closure, print_fderives): Likewise.
17265 * src/gram.c (ritem_print): Likewise.
17266 * src/print.c (print_core, print_grammar): Likewise.
17267 * src/print_graph.c: Likewise.
17269 2001-12-27 Akim Demaille <akim@epita.fr>
17271 * src/main.c (main): If there are complains after grammar
17272 reductions, then output the report anyway if requested, then die.
17273 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
17274 * src/reader.c (eoftoken): New.
17275 (parse_token_decl): If the token being defined has value `0', it
17277 (packsymbols): No longer hack `tags' to insert `$' by hand.
17278 Be sure to preserve the value of the eoftoken.
17279 (reader): Make sure eoftoken is defined.
17280 Initialize nsyms to 0: now eoftoken is created just like the others.
17281 * src/print.c (print_grammar): Don't special case the eof token.
17282 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
17283 lie anyway, albeit pleasant.
17284 * tests/calc.at: Exercise error messages with eoftoken.
17285 Change the grammar so that empty input is invalid.
17286 Adjust expectations.
17287 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
17289 2001-12-27 Akim Demaille <akim@epita.fr>
17291 * configure.in: Check the protos of strchr ans strspn.
17292 Replace strchr if needed.
17293 * src/system.h: Provide the protos of strchr, strspn and memchr if
17295 * lib/strchr.c: New.
17296 * src/reader.c (symbols_save): Use strchr.
17298 2001-12-27 Akim Demaille <akim@epita.fr>
17300 * src/print.c, src/print_graph.c (escape): New.
17301 Use it to quote the TAGS outputs.
17302 * src/print_graph.c (print_state): Now errors are in red, and
17303 reductions in green.
17304 Prefer high to wide: output the state number on a line of its own.
17306 2001-12-27 Akim Demaille <akim@epita.fr>
17308 * src/state.h, src/state.c (reductions_new): New.
17309 * src/LR0.c (set_state_table): Let all the states have a
17310 `reductions', even if reduced to 0.
17311 (save_reductions): Adjust.
17312 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
17313 * src/print.c (print_reductions, print_actions): Adjust.
17314 * src/output.c (action_row): Adjust.
17316 2001-12-27 Akim Demaille <akim@epita.fr>
17318 * src/state.h, src/state.c (errs_new, errs_dup): New.
17319 * src/LR0.c (set_state_table): Let all the states have an errs,
17320 even if reduced to 0.
17321 * src/print.c (print_errs, print_reductions): Adjust.
17322 * src/output.c (output_actions, action_row): Adjust.
17323 * src/conflicts.c (resolve_sr_conflict): Adjust.
17325 2001-12-27 Akim Demaille <akim@epita.fr>
17327 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
17329 2001-12-27 Akim Demaille <akim@epita.fr>
17331 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
17332 * src/print.c: here.
17333 (lookaheadset, shiftset): New, used as additional storage by
17335 (print_results): Adjust.
17336 (print_shifts, print_gotos, print_errs): New, extracted from...
17337 (print_actions): here.
17338 * src/print_graph.c (print_actions): Remove dead code.
17340 2001-12-27 Akim Demaille <akim@epita.fr>
17342 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
17345 2001-12-27 Akim Demaille <akim@epita.fr>
17347 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
17348 (build_relations): Adjust.
17350 2001-12-27 Akim Demaille <akim@epita.fr>
17352 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
17355 2001-12-27 Akim Demaille <akim@epita.fr>
17357 * src/reader.c (packgram): Catch nitems overflows.
17359 2001-12-27 Akim Demaille <akim@epita.fr>
17361 * src/files.c, src/files.h (guard_obstack): Remove.
17362 * src/output.c (output): Adjust.
17363 * src/reader.c (parse_braces): New, factoring...
17364 (copy_action, copy_guard): these two which are renamed as...
17365 (parse_action, parse_guard): these.
17366 As a voluntary consequence, using braces around guards is now
17369 2001-12-27 Akim Demaille <akim@epita.fr>
17371 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
17372 * src/reader.c (symbol_list): `guard' and `guard_line' are new
17374 (symbol_list_new): Adjust.
17375 (copy_action): action_line is the first line, not the last.
17376 (copy_guard): Just as for actions, store the `action' only, not
17377 the switch/case/break flesh.
17378 Don't parse the user action that might follow the guard, let...
17379 (readgram): do it, i.e., now, there can be an action after a
17381 In other words the guard is just explicitly optional.
17382 (packgram): Adjust.
17383 * src/output.c (guards_output): New.
17384 (output_parser): Call it when needed.
17385 (output): Also free the guard and attrs obstacks.
17386 * src/files.c, src/files.h (obstack_save): Remove.
17387 (output_files): Remove.
17388 As a result, if one needs the former `.act' file, using an
17389 appropriate skeleton which requires actions and guards is now
17391 * src/main.c (main): Adjust.
17392 * tests/semantic.at: New.
17393 * tests/regression.at: Use `input.y' as input file name.
17394 Avoid 8+3 problems by requiring input.c when the test needs the
17397 2001-12-27 Akim Demaille <akim@epita.fr>
17399 * src/reader.c (symbol_list_new): Be sure to initialize all the
17402 2001-12-27 Akim Demaille <akim@epita.fr>
17404 All the hacks using a final pseudo state are now useless.
17406 * src/LR0.c (set_state_table): state_table holds exactly nstates.
17407 * src/lalr.c (nLA): New.
17408 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
17409 instead of lookaheadsp from the pseudo state (nstate + 1).
17411 2001-12-27 Akim Demaille <akim@epita.fr>
17413 * src/output.c (action_row, token_actions): Use a state_t instead
17414 of a integer, and nlookaheads instead of the following state's
17417 2001-12-27 Akim Demaille <akim@epita.fr>
17419 * src/conflicts.c (log_resolution, flush_shift)
17420 (resolve_sr_conflict, set_conflicts, solve_conflicts)
17421 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
17422 (conflicts_print, print_reductions): Use a state_t instead of an
17423 integer when referring to a state.
17424 As much as possible, depend upon nlookaheads, instead of the
17425 `lookaheadsp' member of the following state (since lookaheads of
17426 successive states are successive, the difference between state n + 1
17427 and n served as the number of lookaheads for state n).
17428 * src/lalr.c (add_lookback_edge): Likewise.
17429 * src/print.c (print_core, print_actions, print_state)
17430 (print_results): Likewise.
17431 * src/print_graph.c (print_core, print_actions, print_state)
17432 (print_graph): Likewise.
17433 * src/conflicts.h: Adjust.
17435 2001-12-27 Akim Demaille <akim@epita.fr>
17437 * src/bison.hairy: Formatting/comment changes.
17439 Remove `register' indications.
17440 Add plenty of `static'.
17442 2001-12-27 Akim Demaille <akim@epita.fr>
17444 * src/output.c (prepare): Drop the muscle `ntbase' which
17445 duplicates ntokens.
17446 * src/bison.simple: Formatting/comment changes.
17447 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
17448 is an undocumented synonym.
17450 2001-12-22 Akim Demaille <akim@epita.fr>
17452 * src/output.c (output_table_data): Change the prototype to use
17453 `int' for array ranges: some invocations do pass an int, not a
17455 Reported by Wayne Green.
17457 2001-12-22 Akim Demaille <akim@epita.fr>
17459 Some actions of web2c.y are improperly triggered.
17460 Reported by Mike Castle.
17462 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
17463 * tests/regression.at (Web2c): Rename as...
17464 (Web2c Report): this.
17465 (Web2c Actions): New.
17467 2001-12-22 Akim Demaille <akim@epita.fr>
17469 Reductions in web2c.y are improperly reported.
17470 Reported by Mike Castle.
17472 * src/conflicts.c (print_reductions): Fix.
17473 * tests/regression.at (Web2c): New.
17475 2001-12-18 Akim Demaille <akim@epita.fr>
17477 Some host fail on `assert (!"foo")', which expands to
17478 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
17479 Reported by Nelson Beebee.
17481 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
17482 `#define it_succeeded 0' and `assert (it_succeeded)'.
17484 2001-12-17 Marc Autret <autret_m@epita.fr>
17486 * src/bison.simple: Don't hard code the skeleton line and filename.
17487 * src/output.c (output_parser): Rename 'line' as 'output_line'.
17488 New line counter 'skeleton_line' (skeleton-line muscle).
17490 2001-12-17 Paul Eggert <eggert@twinsun.com>
17492 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
17493 YYDEBUG must be defined to a nonzero value.
17495 * src/bison.simple (yytname): Do not assume that the user defines
17496 YYDEBUG to a properly parenthesized expression.
17498 2001-12-17 Akim Demaille <akim@epita.fr>
17500 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
17501 nlookaheads is a new member.
17503 * src/lalr.h (nlookaheads): Remove this orphan declaration.
17504 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
17507 2001-12-17 Akim Demaille <akim@epita.fr>
17509 * src/files.h, src/files.c (open_files, close_files): Remove.
17510 * src/main.c (main): Don't open/close files, nor invoke lex_free,
17512 * src/reader.c (reader): Do it.
17514 2001-12-17 Akim Demaille <akim@epita.fr>
17516 * src/conflicts.c (print_reductions): Formatting changes.
17518 2001-12-17 Akim Demaille <akim@epita.fr>
17520 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
17521 (flush_reduce): New.
17522 (resolve_sr_conflict): Adjust.
17524 2001-12-17 Akim Demaille <akim@epita.fr>
17526 * src/output.c (output_obstack): Be static and rename as...
17527 (format_obstack): this, to avoid any confusion with files.c's
17529 * src/reader.h (muscle_obstack): Move to...
17530 * src/output.h: here, since it's defined in output.c.
17532 2001-12-17 Akim Demaille <akim@epita.fr>
17534 * src/output.c (action_row, save_column, default_goto)
17535 (sort_actions, matching_state, pack_vector): Better variable
17538 2001-12-17 Akim Demaille <akim@epita.fr>
17540 * src/output.c: Various formatting changes.
17542 2001-12-17 Akim Demaille <akim@epita.fr>
17544 * src/files.c (output_files): Free the output_obstack.
17545 * src/main.c (main): Call print and print_graph conditionally.
17546 * src/print.c (print): Work unconditionally.
17547 * src/print_graph.c (print_graph): Work unconditionally.
17548 * src/conflicts.c (log_resolution): Output only if verbose_flag.
17550 2001-12-16 Marc Autret <autret_m@epita.fr>
17552 * src/output.c (actions_output): Fix. When we use %no-lines,
17553 there is one less line per action.
17555 2001-12-16 Marc Autret <autret_m@epita.fr>
17557 * src/bison.simple: Remove a useless #line directive.
17558 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
17559 * src/output.c (get_lines_number): New.
17560 (output_parser): Adjust, now takes care about the lines of a
17562 Fix line numbering.
17563 (actions_output): Computes the number of lines taken by actions.
17564 (output_master_parser): Insert new skeleton which is the name of
17565 the output parser file name.
17567 2001-12-15 Marc Autret <autret_m@epita.fr>
17569 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
17571 2001-12-15 Marc Autret <autret_m@epita.fr>
17573 * src/output.c (output_gram): Keep track of the hairy one.
17575 2001-12-15 Akim Demaille <akim@epita.fr>
17577 Make `make distcheck' work.
17579 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
17580 system.h which uses libgettext.h.
17582 2001-12-15 Akim Demaille <akim@epita.fr>
17584 * src/nullable.c (set_nullable): Useless rules must be skipped,
17585 otherwise, since we range over their symbols, we might look at a
17586 nonterminal which no longer ``exists'', i.e., it is not counted in
17587 `nvars', hence we overflow our arrays.
17589 2001-12-15 Akim Demaille <akim@epita.fr>
17591 The header can also be produced directly, without any obstack!
17594 * src/files.c, src/files.h (defines_obstack): Remove.
17595 (compute_header_macro): Global.
17596 (defines_obstack_save): Remove.
17597 * src/reader.c (parse_union_decl): No longer output to
17598 defines_obstack: its content can be found in the `stype' muscle
17600 (output_token_translations): Merge into...
17601 (symbols_output): this.
17603 (symbols_save): this.
17605 * src/output.c (header_output): New.
17608 2001-12-15 Akim Demaille <akim@epita.fr>
17610 * src/reader.c (parse_union_decl): Instead of handling two obstack
17611 simultaneously, use one to define the `stype' muscle, and use the
17612 value of the latter to fill defines_obstack.
17613 (copy_comment): Remove.
17614 (copy_comment2): Work for a single obstack.
17616 (copy_comment): this.
17618 2001-12-15 Akim Demaille <akim@epita.fr>
17620 * src/lex.c, src/lex.h (xgetc): No longer static.
17621 * src/reader.c (parse_union_decl): Revamp.
17623 2001-12-15 Akim Demaille <akim@epita.fr>
17625 Still making progress in separating Bison into (i) input, (ii)
17626 process, (iii) output: now we can directly output the parser file
17627 without using table_obstack at all.
17629 * src/files.c, src/files.h (table_obstack): Bye bye.
17630 (parser_file_name): New.
17631 * src/files.c (compute_output_file_names): Compute it.
17632 * src/output.c (actions_output, output_parser)
17633 (output_master_parser): To a file instead of an obstack.
17635 2001-12-15 Akim Demaille <akim@epita.fr>
17637 Attach actions to rules, instead of pre-outputting them to
17640 * src/gram.h (rule_t): action and action_line are new members.
17641 * src/reader.c (symbol_list): Likewise.
17642 (copy_action): Save the actions within the rule.
17643 (packgram): Save them in rule_table.
17644 * src/output.c (actions_output): New.
17645 (output_parser): Use it on `%%actions'.
17646 (output_rule_data): Don't free rule_table.
17648 (prepare): Don't save the `action' muscle.
17649 * src/bison.simple: s/%%action/%%actions/.
17651 2001-12-15 Akim Demaille <akim@epita.fr>
17653 * src/reader.c (copy_action): When --yacc, don't append a `;'
17654 to the user action: let it fail if lacking.
17655 Suggested by Arnold Robbins and Tom Tromey.
17657 2001-12-14 Akim Demaille <akim@epita.fr>
17659 * src/lex.c (literalchar): Simply return the char you decoded, non
17660 longer mess around with obstacks and int pointers.
17661 Adjust all callers.
17663 2001-12-14 Akim Demaille <akim@epita.fr>
17665 * src/lex.c (literalchar): Don't escape the special characters,
17666 just decode them, and keep them as char (before, eol was output as
17667 the 2 char string `\n' etc.).
17668 * src/output.c (output_rule_data): Use quotearg to output the
17671 2001-12-13 Paul Eggert <eggert@twinsun.com>
17673 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
17674 Do not infringe on the global user namespace when using C++.
17675 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
17676 All uses of `fprintf' and `stderr' changed.
17678 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
17680 2001-12-13 Akim Demaille <akim@epita.fr>
17682 The computation of nullable is broken: it doesn't handle empty
17685 * tests/torture.at (GNU AWK Grammar): New.
17686 * tests/sets.at (Nullable): New.
17687 * src/nullable.c (set_nullable): Instead of blindly looping over
17688 `ritems', loop over the rules, and then over their rhs's.
17690 Work around Autotest bugs.
17692 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
17693 frame, because Autotest understand lines starting with a `+' as
17694 traces from the shell. Then, they are not processed properly.
17695 Admittedly an Autotest bug, but we don't have time to wait for
17696 Autotest to catch up.
17697 * tests/regression.at (Broken Closure): Adjust to the new table
17700 * tests/sets.at: here.
17702 2001-12-13 Akim Demaille <akim@epita.fr>
17704 * src/closure.c (closure): Use nrules instead of playing tricks
17705 with BITS_PER_WORD.
17707 2001-12-13 Akim Demaille <akim@epita.fr>
17709 * src/print.c (print_actions): Output the handling of `$' as the
17710 traces do: shifting the token EOF. Before EOF was treated as a
17712 * tests/regression.at: Adjust some tests.
17713 * src/print_graph.c (print_core): Complete the set of items via
17714 closure. The next-to-final and final states are still unsatisfying,
17715 but that's to be addressed elsewhere.
17716 No longer output the rule numbers, but do output the state number.
17717 A single loop for the shifts + gotos is enough, but picked a
17718 distinct color for each.
17719 (print_graph): Initialize and finalize closure.
17721 2001-12-13 Akim Demaille <akim@epita.fr>
17723 * src/reader.c (readgram): Remove dead code, an strip useless
17725 (get_type): Remove, unused.
17727 2001-12-12 Akim Demaille <akim@epita.fr>
17729 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
17730 on that of lib/error.c.
17732 2001-12-12 Akim Demaille <akim@epita.fr>
17734 Some hosts don't like `/' in includes.
17736 * src/system.h: Include libgettext.h without qualifying the path.
17737 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
17740 2001-12-11 Marc Autret <autret_m@epita.fr>
17742 * src/output.c (output_parser): Remove useless muscle.
17744 2001-12-11 Marc Autret <autret_m@epita.fr>
17746 * src/bison.simple: Remove #line just before %%epilogue. It
17747 is now handled in ...
17748 * src/reader.c (read_additionnal_code): Add the output of a
17749 #line for the epilogue.
17751 2001-12-10 Marc Autret <autret_m@epita.fr>
17753 * src/reader.c (copy_definition): Re-use CPP-outed code which
17754 replace precedent remove.
17755 * src/bison.simple: Remove #line before %%prologue because
17756 %%input-line is wrong at this time.
17758 2001-12-10 Marc Autret <autret_m@epita.fr>
17760 * src/reader.c (symbols_output): Clean up.
17761 * src/output.c (output_gram, output): Clean up.
17763 2001-12-10 Akim Demaille <akim@epita.fr>
17765 * src/lalr.c (initialize_lookaheads): New. Extracted from...
17766 * src/LR0.c (set_state_table): here.
17767 * src/lalr.c (lalr): Call it.
17769 2001-12-10 Akim Demaille <akim@epita.fr>
17771 * src/state.h (shifts): Remove the `number' member: shifts are
17772 attached to state, hence no longer need to be labelled with a
17775 2001-12-10 Akim Demaille <akim@epita.fr>
17777 Now that states have a complete set of members, the linked list of
17778 shifts is useless: just fill directly the state's shifts member.
17780 * src/state.h (shifts): Remove the `next' member.
17781 * src/LR0.c (first_state, last_state): Remove.
17782 Adjust the callers.
17783 (augment_automaton): Don't look for the shifts that must be added
17784 a shift on EOF: it is those of the state we looked for! But now,
17785 since shifts are attached, it is no longer needed to looking
17786 merely by its id: its number.
17788 2001-12-10 Akim Demaille <akim@epita.fr>
17790 * src/LR0.c (augment_automaton): Better variable locality.
17791 Remove an impossible branch: if there is a state corresponding to
17792 the start symbol being shifted, then there is shift for the start
17793 symbol from the initial state.
17795 2001-12-10 Akim Demaille <akim@epita.fr>
17797 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
17798 only when appropriate: when insert_start_shifting_state' is not
17800 * tests/regression.at (Rule Line Numbers): Adjust.
17802 2001-12-10 Akim Demaille <akim@epita.fr>
17804 * src/LR0.c (augment_automaton): Now that all states have shifts,
17805 merge the two cases addition shifts to the initial state.
17807 2001-12-10 Akim Demaille <akim@epita.fr>
17809 * src/lalr.c (set_state_table): Move to...
17811 * src/lalr.c (lalr): Don't call it...
17812 * src/LR0.c (generate_states): do it.
17813 * src/LR0.h (first_state): Remove, only the table is used.
17815 2001-12-10 Akim Demaille <akim@epita.fr>
17817 * src/LR0.h (first_shift, first_reduction): Remove.
17818 * src/lalr.c: Don't use first_shift: find shifts through the
17821 2001-12-10 Akim Demaille <akim@epita.fr>
17823 * src/LR0.c: Attach shifts to states as soon as they are
17825 * src/lalr.c (set_state_table): Instead of assigning shifts to
17826 state, just assert that the mapping was properly done.
17828 2001-12-10 Akim Demaille <akim@epita.fr>
17830 * src/LR0.c (insert_start_shift): Rename as...
17831 (insert_start_shifting_state): this.
17832 (insert_eof_shifting_state, insert_accepting_state): New.
17833 (augment_automaton): Adjust.
17834 Better locality of the variables.
17835 When looking if the start_symbol is shifted from the initial
17836 state, using `while (... symbol != start_symbol ...)' sounds
17837 better than `while (... symbol < start_symbol ...)': If fail
17838 to see how the order between symbols could be relevant!
17840 2001-12-10 Akim Demaille <akim@epita.fr>
17842 * src/getargs.h: Don't declare `spec_name_prefix' and
17843 `spec_file_prefix', declared by src/files.h.
17844 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
17845 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
17846 * src/output.c (prepare): Adjust.
17847 * src/reader.c (symbols_output): Likewise.
17848 * src/vmsgetargs.c: Vaguely adjust, but who cares?
17850 2001-12-10 Akim Demaille <akim@epita.fr>
17852 * src/muscle_tab.c (muscle_init): NULL is a better default than
17855 2001-12-10 Akim Demaille <akim@epita.fr>
17857 * src/reader.c (reader): Calling symbols_output once is enough.
17859 2001-12-10 Akim Demaille <akim@epita.fr>
17861 Now that states have a complete set of members, the linked list of
17862 reductions is useless: just fill directly the state's reductions
17865 * src/state.h (struct reductions): Remove member `number' and
17867 * src/LR0.c (first_reduction, last_reduction): Remove.
17868 (save_reductions): Don't link the new reductions, store them in
17870 * src/lalr.c (set_state_table): No need to attach reductions to
17871 states, it's already done.
17872 * src/output.c (output_actions): No longer free the shifts, then
17873 the reductions, then the states: free all the states and their
17876 2001-12-10 Akim Demaille <akim@epita.fr>
17878 * src/options.c (OPTN, DRTV, BOTH): New.
17879 (option_table): Use them.
17881 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
17882 the job of system.h.
17883 * src/options.c: Don't include stdio.h and xalloc.h for the same
17886 2001-12-10 Akim Demaille <akim@epita.fr>
17888 * src/output.c (output, prepare): Make sure the values of the
17889 muscles `action' and `prologue' are 0-terminated.
17891 2001-12-10 Akim Demaille <akim@epita.fr>
17893 Clean up GCC warnings.
17895 * src/reader.c (copy_action): `buf' is not used.
17896 (parse_skel_decl): Be static.
17897 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
17898 * src/options.h (create_long_option_table): Have a real prototype.
17899 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
17900 (hash_delete_at): Return const void *.
17901 Adjust casts to preserve the const.
17903 2001-12-10 Akim Demaille <akim@epita.fr>
17905 * configure.in: Require 2.52g.
17906 M4 is not needed, but AUTOM4TE is.
17907 * m4/m4.m4: Remove.
17908 * tests/Makefile.am: Adjust.
17910 2001-12-10 Akim Demaille <akim@epita.fr>
17912 One structure for states is enough, even though theoretically
17913 there are LR(0) states and LALR(1) states.
17915 * src/lalr.h (state_t): Remove.
17916 (state_table): Be state_t **, not state_t *.
17917 * src/state.h (core, CORE_ALLOC): Rename as...
17918 (state_t, STATE_ALLOC): this.
17919 Add the LALR(1) members: shifts, reductions, errs.
17920 * src/LR0.c (state_table): Rename as...
17921 (state_hash): this, to avoid name clashes with the global
17923 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
17924 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
17926 2001-12-10 Akim Demaille <akim@epita.fr>
17928 Bison dumps core on bash.y.
17929 Reported by Pascal Bart.
17931 * src/warshall.c (bitmatrix_print): New.
17933 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
17934 j must be the outer loop.
17935 * tests/regression.at (Broken Closure): New.
17937 2001-12-05 Akim Demaille <akim@epita.fr>
17939 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
17941 Reported by Peter Hamorsky.
17943 2001-12-05 Akim Demaille <akim@epita.fr>
17945 * src/conflicts.c (err_table): Remove.
17946 (resolve_sr_conflict): Adjust.
17947 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
17949 (state_t.reductions, state_t.shifts): this.
17951 2001-12-05 Akim Demaille <akim@epita.fr>
17953 * src/reduce.c (reduce_grammar_tables): No longer disable the
17954 removal of useless rules via CPP but via `if (0)', so that the
17955 compiler still check the code is valid.
17956 For instance, it should have noticed `rline' no longer exists: use
17957 the `line' member of rule_t.
17958 * src/gram.c (dummy, rline): Remove, unused.
17960 2001-12-05 Akim Demaille <akim@epita.fr>
17962 * src/output.c (pack_vector): Use assert, not berror.
17963 * src/main.c (berror): Remove, unused.
17965 2001-12-05 Akim Demaille <akim@epita.fr>
17967 New experimental feature: if --verbose --trace output all the
17968 items of a state, not only its kernel.
17970 * src/print.c (print_core): If `trace_flag', then invoke closure
17971 before outputting the items of the state (print_core is no longer
17972 a correct name them).
17973 (print_results): Invoke new_closure/free_closure if needed.
17975 2001-12-05 Akim Demaille <akim@epita.fr>
17977 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
17978 * src/closure.c, src/closure.h (itemsetsize): Rename as...
17979 (nitemset): for consistency with the rest of the project.
17981 2001-12-05 Akim Demaille <akim@epita.fr>
17983 * src/closure.c (print_closure): Improve.
17984 (closure): Use it for printing input and output.
17986 2001-12-05 Akim Demaille <akim@epita.fr>
17988 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
17989 indexed by nonterminals.
17991 2001-12-05 Akim Demaille <akim@epita.fr>
17993 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
17995 * src/warshall.h: Remove accidental duplication of the content.
17997 2001-12-05 Akim Demaille <akim@epita.fr>
17999 * src/closure.c (set_fderives): De-obfuscate.
18001 2001-12-05 Akim Demaille <akim@epita.fr>
18003 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
18005 2001-12-05 Akim Demaille <akim@epita.fr>
18007 * src/closure.c (set_firsts): De-obfuscate.
18009 2001-12-05 Akim Demaille <akim@epita.fr>
18011 * src/output.c (action_row): De-obfuscate
18012 using the good o' techniques: arrays not pointers, variable
18013 locality, BITISSET, RESETBIT etc.
18015 2001-12-05 Akim Demaille <akim@epita.fr>
18017 Pessimize the code to simplify it: from now on, all the states
18018 have a valid SHIFTS, which NSHIFTS is possibly 0.
18020 * src/LR0.c (shifts_new): Be global and move to..
18021 * src/state.c, src/state.h: here.
18022 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
18023 * src/print_graph: Adjust.
18025 2001-12-05 Akim Demaille <akim@epita.fr>
18027 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
18028 * src/conflicts.c: Use it.
18029 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
18030 incorrectly ``simplified''.
18032 2001-12-05 Akim Demaille <akim@epita.fr>
18034 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
18035 using the good o' techniques: arrays not pointers, variable
18036 locality, BITISSET, RESETBIT etc.
18038 2001-12-05 Akim Demaille <akim@epita.fr>
18040 * src/state.h (SHIFT_SYMBOL): New.
18041 * src/conflicts.c: Use it to deobfuscate.
18043 2001-12-05 Akim Demaille <akim@epita.fr>
18045 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
18046 (print_reductions): De-obfuscate using the good o' techniques:
18047 arrays not pointers, variable locality, BITISSET.
18049 2001-12-05 Akim Demaille <akim@epita.fr>
18051 * src/conflicts.c (print_reductions): Arrays, not pointers.
18054 2001-12-05 Akim Demaille <akim@epita.fr>
18056 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18058 2001-12-05 Akim Demaille <akim@epita.fr>
18060 * src/conflicts.c (print_reductions): Improve variable locality.
18062 2001-12-05 Akim Demaille <akim@epita.fr>
18064 * src/conflicts.c (print_reductions): Pessimize, but clarify.
18066 2001-12-05 Akim Demaille <akim@epita.fr>
18068 * src/conflicts.c (print_reductions): Improve variable locality.
18070 2001-12-05 Akim Demaille <akim@epita.fr>
18072 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
18073 * src/lalr.c: Use them.
18075 2001-12-05 Akim Demaille <akim@epita.fr>
18077 * src/LR0.c (augment_automaton): Formatting changes.
18078 Better variable locality.
18080 2001-12-05 Akim Demaille <akim@epita.fr>
18082 * src/lalr.c (matrix_print): New.
18083 (transpose): Use it.
18084 Use arrays instead of pointers.
18086 2001-12-05 Akim Demaille <akim@epita.fr>
18088 * src/lalr.c (maxrhs): Move to...
18089 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
18090 * src/lalr.c (build_relations): Adjust.
18092 2001-12-05 Akim Demaille <akim@epita.fr>
18094 * src/lalr.c (transpose): Free the memory allocated to the
18095 argument, as it is replaced by the results by the unique caller.
18096 (build_relations): Merely invoke transpose: it handles the memory
18098 Improve variable locality.
18099 Avoid variables used as mere abbreviations.
18100 (compute_lookaheads): Use arrays instead of pointers.
18102 2001-12-05 Akim Demaille <akim@epita.fr>
18104 * src/lalr.c (initialize_F): Improve variable locality.
18105 Avoid variables used as mere abbreviations.
18107 2001-12-05 Akim Demaille <akim@epita.fr>
18109 * src/derives.c (print_derives): Display the ruleno.
18110 * src/lalr.c (initialize_F, transpose): Better variable locality
18111 to improve readability.
18112 Avoid variables used as mere abbreviations.
18114 2001-12-05 Akim Demaille <akim@epita.fr>
18116 * src/lalr.c (traverse): Use arrays instead of pointers.
18118 2001-12-05 Akim Demaille <akim@epita.fr>
18120 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
18121 the handling of squeue.
18122 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18124 2001-12-05 Akim Demaille <akim@epita.fr>
18126 Because useless nonterminals are now kept alive (instead of being
18127 `destroyed'), we now sometimes examine them, and store information
18128 related to them. Hence we need to know their number, and adjust
18129 memory allocations.
18131 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
18133 * src/LR0.c (allocate_itemsets): The memory allocated to
18134 `symbol_count' was used for two different purpose: once to count
18135 the number of occurrences of each symbol, and later reassigned to
18136 `shift_symbol', containing the symbol that can be shifted from a
18138 Deobfuscate, i.e., allocate, use and free `symbol_count' here
18140 (new_itemsets): Allocate `shift_symbol' here.
18141 (allocate_itemsets): symbol_count includes useless nonterminals.
18142 Make room for them.
18143 (free_storage): Use `free', not `XFREE', for pointers that cannot
18146 2001-12-05 Akim Demaille <akim@epita.fr>
18148 * src/nullable.c (set_nullable): Deobfuscate the handling of
18150 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
18152 2001-12-05 Akim Demaille <akim@epita.fr>
18154 * src/gram.c, src/gram.h (ritem_print): New.
18155 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
18156 (This useless function was defined only to work around VMS linkers
18157 that can't handle compilation units with variables only).
18158 * src/reduce.c (dump_grammar): Use it to trace the construction of
18161 2001-12-04 Paul Eggert <eggert@twinsun.com>
18163 * src/bison.simple (union yyalloc): Change member names
18164 to be the same as the stack names.
18165 (yyparse): yyptr is now union yyalloc *, not char *.
18166 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
18167 and may generate better code on some machines.
18168 (yystpcpy): Use prototype if __STDC__ is defined, not just
18169 if __cplusplus is defined.
18171 2001-11-30 Akim Demaille <akim@epita.fr>
18173 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
18174 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
18175 Gettext doesn't compile cleanly, and dies with -Werror.
18176 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
18177 Include WARNING_CFLAGS here.
18178 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
18179 before being defined.
18181 2001-11-27 Paul Eggert <eggert@twinsun.com>
18183 * lib/quotearg.h (quotearg_n, quotearg_n_style):
18184 First arg is int, not unsigned.
18185 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
18186 (SIZE_MAX, UINT_MAX): New macros.
18187 (quotearg_n_options): Abort if N is negative.
18188 Avoid overflow check on hosts where size_t is 64 bits and int
18189 is 32 bits, as overflow is impossible there.
18190 Fix off-by-one typo that caused unnecessary reallocation.
18192 2001-11-29 Paul Eggert <eggert@twinsun.com>
18194 Name space cleanup in generated parser.
18196 * doc/bison.texinfo (Bison Parser): Discuss system headers
18197 and their effect on the user name space.
18199 * src/bison.simple:
18200 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
18201 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
18202 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
18204 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
18205 on user names when possible.
18207 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
18208 Simplify test for whather <alloca.h> exists.
18210 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
18212 (<stdio.h>): Include if YYDEBUG.
18214 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
18215 ! defined (yyoverflow) && ! defined (yymemcpy).
18217 (yymemcpy, yyparse): Rename local variables as needed so that
18218 they all begin with 'yy'.
18220 (yystrlen, yystpcpy): New functions.
18222 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
18225 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
18226 instead of relying on string.h functions. Use YYSTACK_ALLOC
18227 and YYSTACK_FREE instead of malloc and free.
18229 2001-11-30 Akim Demaille <akim@epita.fr>
18231 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
18232 before their first uses.
18233 (YYBISON, YYPURE): Move to the top of the output.
18235 2001-11-30 Akim Demaille <akim@epita.fr>
18237 * tests/reduce.at (Useless Nonterminals): Fix.
18239 2001-11-30 Akim Demaille <akim@epita.fr>
18241 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
18242 if body instead of `;' to pacify GCC's warnings.
18244 2001-11-30 Akim Demaille <akim@epita.fr>
18246 Instead of mapping the LHS of unused rules to -1, keep the LHS
18247 valid, but flag the rules as invalid.
18249 * src/gram.h (rule_t): `useful' is a new member.
18250 * src/print.c (print_grammar): Adjust.
18251 * src/derives.c (set_derives): Likewise.
18252 * src/reader.c (packgram, reduce_output): Likewise.
18253 * src/reduce.c (reduce_grammar_tables): Likewise.
18254 * tests/reduce.at (Underivable Rules, Useless Rules): New.
18256 2001-11-30 Akim Demaille <akim@epita.fr>
18258 * src/reduce.c (reduce_output): Formatting changes.
18259 * src/print.c (print_results, print_grammar): Likewise.
18260 * tests/regression.at (Rule Line Numbers)
18261 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
18263 2001-11-30 Akim Demaille <akim@epita.fr>
18265 * src/reduce.c (nonterminals_reduce): Instead of throwing away
18266 useless nonterminals, move them at the end of the symbol arrays.
18267 (reduce_output): Adjust.
18268 * tests/reduce.at (Useless Nonterminals): Adjust.
18270 2001-11-30 Akim Demaille <akim@epita.fr>
18272 * src/reduce.c: Various comment/formatting changes.
18273 (nonterminals_reduce): New, extracted from...
18274 (reduce_grammar_tables): here.
18275 (reduce_grammar): Call nonterminals_reduce.
18277 2001-11-29 Paul Eggert <eggert@twinsun.com>
18279 * src/bison.simple (YYSTACK_REALLOC): Remove.
18280 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
18281 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
18283 (union yyalloc): New type.
18284 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
18285 an arbitrary restriction on hosts where size_t is wider than int.
18287 (yyparse): Don't dump core if alloca or malloc fails; instead, report
18288 a parser stack overflow. Allocate just one block of memory for all
18289 three stacks, instead of allocating three blocks; this typically is
18290 faster and reduces fragmentation.
18292 Do not limit the number of items in the stack to a value that fits
18293 in 'int', as this is an arbitrary limit on hosts with 64-bit
18294 size_t and 32-bit int.
18296 2001-11-29 Marc Autret <autret_m@epita.fr>
18298 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
18299 of defining YYERROR_VERBOSE.
18300 [AT_DATA]: $4 is now out of C declarations in the prologue.
18302 2001-11-28 Marc Autret <autret_m@epita.fr>
18304 * src/reader.c (parse_dquoted_param): New.
18305 (parse_skel_decl): Use it.
18306 * src/lex.h: Add its prototype.
18307 * src/lex.c (literalchar): Become not static.
18309 2001-11-28 Marc Autret <autret_m@epita.fr>
18311 * src/output.h: And put its extern declaration here.
18312 * src/output.c (error_verbose): Define here.
18313 (prepare): Echo name modification.
18314 * src/getargs.h: Clean its extern declaration.
18315 * src/getargs.c (error_verbose_flag): Remove.
18316 (getargs): Remove case 'e'.
18317 * src/options.c (option_table): 'error-verbose' is now seen as simple
18321 * src/reader.c (read_declarations): Remove case tok_include.
18322 (parse_include_decl): Remove.
18323 * src/lex.h (token_t): Remove tok_include.
18324 * src/options.c (option_table): 'include' is now a simple command line
18327 2001-11-28 Marc Autret <autret_m@epita.fr>
18329 * src/bison.simple: Adjust muscle names.
18330 * src/muscle_tab.c (muscle_init): Also rename the muscles.
18331 * src/output.c (prepare): s/_/-/ for the muscles names.
18332 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
18334 2001-11-28 Marc Autret <autret_m@epita.fr>
18336 * src/bison.simple: Fix debug.
18337 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
18339 2001-11-28 Akim Demaille <akim@epita.fr>
18341 * src/LR0.c (shifts_new): New.
18342 (save_shifts, insert_start_shift, augment_automaton): Use it.
18344 2001-11-28 Akim Demaille <akim@epita.fr>
18346 * src/closure.c (closure): `b' and `ruleno' denote the same value:
18349 2001-11-28 Akim Demaille <akim@epita.fr>
18351 * src/closure.c (closure): Instead of looping over word in array
18352 then bits in words, loop over bits in array.
18354 2001-11-28 Akim Demaille <akim@epita.fr>
18356 * src/closure.c (closure): No longer optimize the special case
18357 where all the bits of `ruleset[r]' are set to 0, to make the code
18360 2001-11-28 Akim Demaille <akim@epita.fr>
18362 * src/closure.c (closure): `r' and `c' are new variables, used to
18363 de-obfuscate accesses to RULESET and CORE.
18365 2001-11-28 Akim Demaille <akim@epita.fr>
18367 * src/reduce.c (reduce_print): Use ngettext.
18368 (dump_grammar): Improve the trace accuracy.
18370 2001-11-28 Akim Demaille <akim@epita.fr>
18372 * src/reduce.c (dump_grammar): Don't translate trace messages.
18374 2001-11-28 Akim Demaille <akim@epita.fr>
18376 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
18377 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
18378 as all tags are free'ed afterwards.
18379 From Enrico Scholz.
18381 2001-11-27 Paul Eggert <eggert@twinsun.com>
18383 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
18384 use alloca when we didn't want to, and vice versa.
18386 2001-11-27 Marc Autret <autret_m@epita.fr>
18388 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
18390 * src/output.c (prepare): Remove its update.
18392 2001-11-27 Marc Autret <autret_m@epita.fr>
18394 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
18395 Use %error-verbose.
18397 2001-11-27 Marc Autret <autret_m@epita.fr>
18399 * src/bison.simple: Remove YYERROR_VERBOSE using.
18400 Use %%error_verbose.
18401 (yyparse): Likewise.
18402 * src/output.c (prepare): Give its final value.
18403 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
18404 * src/getargs.h: Add its extern declaration.
18405 * src/getargs.c (error_verbose_flag): New int.
18406 (getargs): Update to catch new case.
18407 * src/options.c (option_table): 'error-verbose' is a new option.
18408 (shortopts): Update.
18410 2001-11-27 Akim Demaille <akim@epita.fr>
18412 * src/system.h: Use intl/libgettext.h.
18413 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
18415 2001-11-27 Akim Demaille <akim@epita.fr>
18417 * tests/torture.at (Exploding the Stack Size with Malloc):
18418 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
18420 2001-11-27 Akim Demaille <akim@epita.fr>
18422 * src/files.c: Include error.h.
18423 Reported by Hans Aberg.
18425 2001-11-26 Marc Autret <autret_m@epita.fr>
18427 * src/reader.c (parse_include_decl): New, not yet implemented.
18428 (read_declarations): Add case tok_include.
18429 * src/getargs.h (include): Add its extern definition.
18430 * src/getargs.c (include): New const char *.
18431 (getargs): Add case '-I'.
18432 * src/options.c (option_table): Add include as command line and
18434 * src/lex.h (token_t): Add tok_include.
18436 2001-11-26 Akim Demaille <akim@epita.fr>
18438 * src/reader.c (readgram): Make sure rules for mid-rule actions
18439 have a lineno equal to that of their host rule.
18440 Reported by Hans Aberg.
18441 * tests/regression.at (Rule Line Numbers): New.
18443 2001-11-26 Akim Demaille <akim@epita.fr>
18445 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
18448 2001-11-26 Akim Demaille <akim@epita.fr>
18450 * src/complain.c, src/complain.h (error): Remove, provided by
18453 2001-11-26 Akim Demaille <akim@epita.fr>
18455 * src/reader.c (read_declarations): Don't abort on tok_illegal,
18456 issue an error message.
18457 * tests/regression.at (Invalid %directive): New.
18458 Reported by Hans Aberg.
18460 2001-11-26 Akim Demaille <akim@epita.fr>
18462 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
18463 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18465 2001-11-26 Akim Demaille <akim@epita.fr>
18467 * src/conflicts.c (conflicts_print): Don't complain at all when
18468 there are no reduce/reduce conflicts, and as many shift/reduce
18469 conflicts as expected.
18470 * tests/regression.at (%expect right): Adjust.
18472 2001-11-23 Akim Demaille <akim@epita.fr>
18474 * lib/alloca.c: Update, from fileutils.
18476 2001-11-23 Akim Demaille <akim@epita.fr>
18478 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
18480 2001-11-23 Akim Demaille <akim@epita.fr>
18482 * src/system.h: Include alloca.h.
18483 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
18485 2001-11-23 Akim Demaille <akim@epita.fr>
18487 * src/print_graph.c (print_actions): Remove `rule', unused.
18488 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
18489 pacify GCC's signed < unsigned warnings.
18490 * src/closure.c (itemsetsize): Likewise.
18491 * src/reader.c (symbol_list_new): Static.
18493 2001-11-23 Akim Demaille <akim@epita.fr>
18495 Attaching lineno to buckets is stupid, since only one copy of each
18496 symbol is kept, only the line of the first occurrence is kept too.
18498 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
18499 * src/reader.c (rline_allocated): Remove, unused.
18500 (symbol_list): Have a `line' member.
18501 (symbol_list_new): New.
18502 (readgram): Use it.
18503 * src/print.c (print_grammar): Output the rule line numbers.
18504 * tests/regression.at (Solved SR Conflicts)
18505 (Unresolved SR Conflicts): Adjust.
18506 Reported by Hans Aberg.
18508 2001-11-22 Marc Autret <autret_m@epita.fr>
18510 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
18512 2001-11-22 Marc Autret <autret_m@epita.fr>
18514 * src/muscle_tab.c (muscle_init): Remove initialization of
18516 * src/output.c (output_master_parser): Do it here.
18518 2001-11-20 Akim Demaille <akim@epita.fr>
18521 * configure.in (ALL_LINGUAS): Adjust.
18522 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
18523 longer contains strings to translate.
18525 2001-11-19 Akim Demaille <akim@epita.fr>
18527 * src/conflicts.c (conflicts_print): Add a missing \n.
18529 2001-11-19 Akim Demaille <akim@epita.fr>
18531 * src/nullable.c (nullable_print): New.
18532 (set_nullable): Call it when tracing.
18533 Better locality of variables.
18535 2001-11-19 Akim Demaille <akim@epita.fr>
18537 * src/print.c (print_actions): Better locality of variables.
18539 2001-11-19 Akim Demaille <akim@epita.fr>
18541 * src/derives.c (print_derives): Fix and enrich.
18542 * src/closure.c (print_fderives): Likewise.
18544 2001-11-19 Akim Demaille <akim@epita.fr>
18546 * src/closure.c (itemsetend): Remove, replaced with...
18547 (itemsetsize): new.
18549 2001-11-19 Akim Demaille <akim@epita.fr>
18551 * src/LR0.c (kernel_end): Remove, replaced with...
18552 (kernel_size): new.
18554 2001-11-19 Akim Demaille <akim@epita.fr>
18556 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
18559 2001-11-19 Akim Demaille <akim@epita.fr>
18561 * src/closure.c (closure): Use arrays instead of pointers to clarify.
18563 2001-11-19 Akim Demaille <akim@epita.fr>
18565 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
18567 * src/LR0.c: Likewise.
18568 (allocate_itemsets): Use arrays instead of pointers to clarify.
18570 2001-11-19 Akim Demaille <akim@epita.fr>
18572 * src/getargs.c (statistics_flag): Replace with...
18574 (longopts): Accept --trace instead of --statistics.
18575 * src/getargs.h, src/options.c: Adjust.
18576 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
18577 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
18579 2001-11-19 Akim Demaille <akim@epita.fr>
18581 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
18582 pointers to clarify the code.
18583 (save_reductions, save_shifts): Factor common parts of alternatives.
18585 2001-11-19 Akim Demaille <akim@epita.fr>
18587 * src/LR0.c (new_state, get_state): Complete TRACE code.
18588 * src/closure.c: Include `reader.h' to get `tags', needed by the
18590 Rename the conditional DEBUG as TRACE.
18591 Output consistently TRACEs to stderr, not stdout.
18592 * src/derives.c: Likewise.
18593 * src/reduce.c: (inaccessable_symbols): Using if is better style
18595 Use `#if TRACE' instead of `#if 0' for tracing code.
18597 2001-11-19 Akim Demaille <akim@epita.fr>
18599 * src/system.h (LIST_FREE, shortcpy): New.
18600 * src/LR0.c: Use them.
18601 * src/output.c (free_itemsets, free_reductions, free_shifts):
18602 Remove, replaced by LIST_FREE.
18604 2001-11-19 Akim Demaille <akim@epita.fr>
18606 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
18607 (REDUCTIONS_ALLOC): New.
18608 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
18611 2001-11-19 Akim Demaille <akim@epita.fr>
18613 * src/LR0.c (new_state): Complete trace code.
18614 * src/nullable.c (set_nullable): Don't translate traces.
18616 2001-11-19 Akim Demaille <akim@epita.fr>
18618 * src/print_graph.c (print_core): Better locality of variables.
18619 * src/print.c (print_core): Likewise.
18621 2001-11-19 Akim Demaille <akim@epita.fr>
18623 * src/vcg.c: You do the output, so you are responsible of the
18624 handling of VCG syntax, in particular: use quotearg.
18625 * src/print_graph.c: Don't.
18626 (print_actions): Don't output the actions as part of the nodes,
18627 since that's the job of the edges.
18628 (print_state): Don't output by hand: fill the node description,
18629 and ask for its output.
18631 2001-11-19 Akim Demaille <akim@epita.fr>
18633 * src/bison.simple (yyparse): When verbosely reporting an error,
18634 no longer put additional quotes around token names.
18635 * tests/calc.at: Adjust.
18637 2001-11-19 Akim Demaille <akim@epita.fr>
18639 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
18640 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
18641 * src/output.c: Adjust.
18643 2001-11-19 Akim Demaille <akim@epita.fr>
18645 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
18647 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
18649 2001-11-19 Akim Demaille <akim@epita.fr>
18651 * src/gram.h (rule_t): New.
18653 (rrhs, rlhs): Remove, part of state_t.
18654 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
18655 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
18656 * src/reader.c, src/reduce.c: Adjust.
18658 2001-11-19 Akim Demaille <akim@epita.fr>
18660 * src/reader.c (symbols_output): New, extracted from...
18661 (packsymbols): Here.
18664 2001-11-19 Akim Demaille <akim@epita.fr>
18666 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
18667 (maxrhs): this new function.
18669 2001-11-19 Akim Demaille <akim@epita.fr>
18671 * src/lalr.c (F): New macro to access the variable F.
18674 2001-11-19 Akim Demaille <akim@epita.fr>
18676 * src/lalr.h (LA): New macro to access the variable LA.
18677 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18678 * src/lalr.c: Adjust.
18680 2001-11-19 Akim Demaille <akim@epita.fr>
18682 * src/lalr.c (initialize_LA): Only initialize LA. Let...
18683 (set_state_table): handle the `lookaheads' members.
18685 2001-11-19 Akim Demaille <akim@epita.fr>
18687 * src/lalr.h (lookaheads): Removed array, whose contents is now
18689 (state_t): this structure.
18690 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18693 2001-11-19 Akim Demaille <akim@epita.fr>
18695 * src/lalr.h (consistent): Removed array, whose contents is now
18697 (state_t): this structure.
18698 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18701 2001-11-19 Akim Demaille <akim@epita.fr>
18703 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
18704 contents are now members of...
18705 (state_t): this structure.
18706 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
18709 2001-11-19 Akim Demaille <akim@epita.fr>
18711 * src/lalr.h (state_t): New.
18712 (state_table): Be a state_t * instead of a core **.
18713 (accessing_symbol): Remove, part of state_t.
18714 * src/lalr.c: Adjust.
18715 (set_accessing_symbol): Merge into...
18716 (set_state_table): this.
18717 * src/print_graph.c, src/conflicts.c: Adjust.
18719 2001-11-14 Akim Demaille <akim@epita.fr>
18721 * tests/calc.at, tests/output.at, tests/regression.at,
18722 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
18723 now the tests are run in private dirs, therefore AC_CLEANUP and
18724 family can be simplified to 0-ary.
18725 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
18726 use abs. path to find config.h.
18727 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
18728 stderr, there can be way too much random noise.
18729 Instead pass -Werror to GCC and rely on the exit status.
18730 Reported by Wolfram Wagner.
18732 2001-11-14 Akim Demaille <akim@epita.fr>
18734 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
18735 defined only if yyoverflow is defined, to avoid `warning: unused
18737 Reported by The Test Suite.
18739 2001-11-14 Akim Demaille <akim@epita.fr>
18741 * src/print.c: Include reduce.h.
18742 Reported by Hans Aberg.
18744 2001-11-14 Akim Demaille <akim@epita.fr>
18746 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
18747 Revert a previous patch: these are really const.
18748 * src/conflicts.c (conflict_report): Additional useless pair of
18749 braces to pacify GCC's warnings for `if () if () {} else {}'.
18750 * src/lex.c (parse_percent_token): Replace equal_offset with
18753 Be sure to strdup `arg' when used, since there is no reason for
18754 token_buffer not to change.
18756 2001-11-14 Akim Demaille <akim@epita.fr>
18758 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
18760 * src/main.c (main): Use them.
18761 Suggested by Hans Aberg.
18763 2001-11-12 Akim Demaille <akim@epita.fr>
18765 * src/system.h (ngettext): Now that we use ngettext, be sure to
18766 provide a default definition when NLS are not used.
18768 2001-11-12 Akim Demaille <akim@epita.fr>
18770 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
18771 Use @kbd to denote user input.
18772 (Language and Grammar): ANSIfy the example.
18773 Adjust its layout for info/notinfo.
18774 (Location Tracking Calc): Output error messages to stderr.
18775 Output locations in a more GNUtically correct way.
18776 Fix a couple of Englishos.
18777 Adjust @group/@end group pairs.
18779 2001-11-12 Akim Demaille <akim@epita.fr>
18781 %expect was not functioning at all.
18783 * src/conflicts.c (expected_conflicts): Set to -1.
18784 (conflict_report): Use ngettext.
18785 (conflicts_print): Check %expect and make its violation an error.
18786 * doc/bison.texinfo (Expect Decl): Adjust.
18787 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
18788 * tests/regression.at (%expect not enough, %expect right)
18789 (%expect too much): New.
18791 2001-11-12 Akim Demaille <akim@epita.fr>
18793 * tests/regression.at (Conflicts): Rename as...
18794 (Unresolved SR Conflicts): this.
18795 (Solved SR Conflicts): New.
18797 2001-11-12 Akim Demaille <akim@epita.fr>
18799 * src/reduce.c (print_results): Rename as...
18800 (reduce_output): This.
18801 Output to OUT, passed as argument, instead of output_obstack.
18802 (dump_grammar): Likewise.
18803 (reduce_free): New.
18805 (reduce_grammar): No longer call reduce_output, since...
18806 * src/print.c (print_results): do it.
18807 * src/main.c (main): Call reduce_free;
18809 2001-11-12 Akim Demaille <akim@epita.fr>
18811 * src/conflicts.c (print_reductions): Accept OUT as argument.
18812 Output to it, not to output_obstack.
18813 * src/print.c (print_actions): Adjust.
18815 2001-11-12 Akim Demaille <akim@epita.fr>
18817 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
18818 the result instead of using...
18819 (src_total, rrc_total, src_count, rrc_count): Remove.
18820 (any_conflicts): Remove.
18821 (print_conflicts): Split into...
18822 (conflicts_print, conflicts_output): New.
18823 * src/conflicts.h: Adjust.
18824 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
18825 * src/print.c (print_grammar): Issue `\n' between two rules.
18826 * tests/regression.at (Conflicts): New.
18827 Reported by Tom Lane.
18829 2001-11-12 Akim Demaille <akim@epita.fr>
18831 * tests/regression.at (Invalid input): Remove, duplicate with
18832 ``Invalid input: 1''.
18834 2001-11-12 Akim Demaille <akim@epita.fr>
18836 * tests/torture.at (AT_DATA_STACK_TORTURE)
18837 (Exploding the Stack Size with Alloca)
18838 (Exploding the Stack Size with Malloc): New.
18840 2001-11-12 Akim Demaille <akim@epita.fr>
18842 * src/bison.simple (YYSTACK_REALLOC): New.
18843 (yyparse) [!yyoverflow]: Use it and free the old stack.
18844 Reported by Per Allansson.
18846 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
18848 * src/bison.simple: Define type yystype instead of YYSTYPE, and
18849 define CPP macro, which substitute YYSTYPE by yystype.
18850 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
18851 with yyltype/YYLTYPE. This allows inclusion of the generated
18852 header within the parser if the compiler, such as GGC, accepts
18853 multiple equivalent #defines.
18856 2001-11-05 Akim Demaille <akim@epita.fr>
18858 * src/reader.c (symbols_output): New, extracted from...
18859 (packsymbols): here.
18862 2001-11-05 Akim Demaille <akim@epita.fr>
18864 * src/lex.c (parse_percent_token): s/quotearg/quote/.
18866 2001-11-05 Akim Demaille <akim@epita.fr>
18868 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
18871 2001-11-05 Akim Demaille <akim@epita.fr>
18873 * src/options.h (struct option_table_struct): set_flags is void*.
18874 * src/options.c (longopts): Support `--output' and `%output'.
18876 * src/lex.h (tok_setopt): Remove, replaced with...
18877 (tok_intopt, tok_stropt): these new guys.
18878 * src/lex.c (getopt.h): Not needed.
18879 (token_buffer, unlexed_token_buffer): Not const.
18880 (percent_table): Promote `-' over `_' in directive names.
18881 Active `%name-prefix', `file-prefix', and `output'.
18882 (parse_percent_token): Accept possible arguments to directives.
18883 Promote `-' over `_' in directive names.
18885 2001-11-04 Akim Demaille <akim@epita.fr>
18887 * doc/bison.texinfo (Decl Summary): Split the list into
18888 `directives for grammars' and `directives for bison'.
18890 Add description of `%name-prefix', `file-prefix', and `output'.
18891 Promote `-' over `_' in directive names.
18892 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
18893 Simplify the description of `--name-prefix'.
18894 Promote `-' over `_' in directive names.
18895 Promote `--output' over `--output-file'.
18896 Fix the description of `--defines'.
18897 * tests/output.at: Exercise %file-prefix and %output.
18899 2001-11-02 Akim Demaille <akim@epita.fr>
18901 * doc/refcard.tex: Update.
18903 2001-11-02 Akim Demaille <akim@epita.fr>
18905 * src/symtab.h (SUNDEF): New.
18906 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
18907 stand for `uninitialized', instead of 0.
18908 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
18909 * src/lex.c (lex): Adjust.
18911 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
18913 Let yylex return it instead of a plain 0.
18914 Reported by Dick Streefland.
18916 2001-11-02 Akim Demaille <akim@epita.fr>
18918 * tests/regression.at (Mixing %token styles): New test.
18920 2001-11-02 Akim Demaille <akim@epita.fr>
18922 * src/reader.c (parse_thong_decl): Formatting changes.
18923 (token_translations_init): New, extracted from...
18924 (packsymbols): Here.
18927 2001-11-01 Akim Demaille <akim@epita.fr>
18929 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
18930 Check that `9foo.y' produces correct cpp guards.
18931 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
18935 2001-11-01 Akim Demaille <akim@epita.fr>
18937 * tests/regression.at (Invalid input: 2): New.
18938 * src/lex.c (unlexed_token_buffer): New.
18939 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
18943 2001-11-01 Akim Demaille <akim@epita.fr>
18945 * tests/calc.at: Catch up with 1.30.
18946 * configure.in: Bump to 1.49a.
18947 Adjust to newer Autotest.
18949 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
18951 * src/conflicts.c: Move global variables rrc_total and src_total ...
18952 (print_conflicts): here.
18953 * src/output.c (output): Free global variable user_toknums.
18954 * src/lex.c (token_obstack): Become static.
18956 2001-10-18 Akim Demaille <akim@epita.fr>
18958 * tests/atlocal.in (GCC): Add.
18959 * tests/calc.at: s/m4_match/m4_bmatch/.
18960 s/m4_patsubst/m4_bpatsubst/.
18961 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
18962 * configure.in: AC_SUBST(GCC).
18964 2001-10-14 Marc Autret <autret_m@epita.fr>
18966 * src/options.c (create_long_option_table): Fix.
18968 2001-10-10 Akim Demaille <akim@epita.fr>
18970 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
18972 2001-10-04 Akim Demaille <akim@epita.fr>
18974 * src/reader.c (parse_union_decl): Push the caracters in
18975 union_obstack, not attrs_obstack.
18977 2001-10-04 Akim Demaille <akim@epita.fr>
18979 Merge in the branch 1.29.
18981 * src/reader.c (packsymbols): Use a temporary obstack for
18982 `%%tokendef', since output_stack is already used elsewhere.
18984 2001-10-02 Akim Demaille <akim@epita.fr>
18988 2001-10-02 Akim Demaille <akim@epita.fr>
18992 2001-10-02 Akim Demaille <akim@epita.fr>
18994 * tests/regression.at (Invalid CPP headers): New.
18995 From Alexander Belopolsky.
18996 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
18998 2001-10-02 Akim Demaille <akim@epita.fr>
19000 * tests/regression.at (Invalid input): New.
19001 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
19004 2001-10-02 Akim Demaille <akim@epita.fr>
19006 * tests/calc.at: Now that --debug works, the tests must be adjusted.
19008 2001-10-02 Akim Demaille <akim@epita.fr>
19010 * src/output.c (output_parser): Assert `skeleton'.
19011 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
19015 2001-10-01 Marc Autret <autret_m@epita.fr>
19017 * src/lex.h: Echo modifications.
19018 * src/lex.c (unlex): Parameter is now token_t.
19021 2001-10-01 Marc Autret <autret_m@epita.fr>
19023 * src/main.c: Include lex.h.
19026 2001-09-29 Akim Demaille <akim@epita.fr>
19028 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
19030 2001-09-28 Akim Demaille <akim@epita.fr>
19032 * tests/testsuite.at: Update to newer Autotest.
19033 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
19035 2001-09-27 Akim Demaille <akim@epita.fr>
19037 Position independent wrapper.
19039 * tests/bison: Remove.
19040 * tests/bison.in: New.
19041 * configure.in: Adjust.
19043 2001-09-27 Paul Eggert <eggert@twinsun.com>
19045 Port quotearg fixes from tar 1.13.24.
19047 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
19049 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
19050 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
19052 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
19053 * m4/mbrtowc.m4: New file.
19054 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
19055 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
19057 2001-09-27 Akim Demaille <akim@epita.fr>
19061 2001-09-27 Akim Demaille <akim@epita.fr>
19065 2001-09-25 Akim Demaille <akim@epita.fr>
19067 * src/system.h: Include `xalloc.h'.
19068 Remove it from the C files.
19069 * src/files.c (output_files): Free the obstacks.
19070 * src/lex.c (init_lex): Rename as...
19073 * src/main.c (main): Use it.
19075 2001-09-24 Marc Autret <autret_m@epita.fr>
19077 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
19078 to output informations in fout (FILE*).
19079 (open_graph, close_graph): Likewise.
19080 (output_graph, output_edge, output_node): Likewise.
19081 * src/vcg.h: Update function prototypes.
19082 * src/print_graph.c (print_graph): Open output graph file.
19083 (print_actions): Adjust.
19084 * src/files.h: Remove extern declaration.
19085 * src/files.c: Remove graph_obstack declaration.
19086 (open_files): Remove graph_obstack initialization.
19087 (output_files): Remove graph_obstack saving.
19089 2001-09-24 Marc Autret <autret_m@epita.fr>
19091 * src/files.c (compute_output_file_names): Fix.
19093 2001-09-24 Marc Autret <autret_m@epita.fr>,
19094 Akim Demaille <akim@epita.fr>
19096 * src/reader.c (reader): Remove call to free_symtab ().
19097 * src/main.c (main): Call it here.
19099 * src/conflicts.c (initialize_conflicts): Rename as...
19100 (solve_conflicts): this.
19101 * src/print.c (print_core, print_actions, print_state)
19102 (print_grammar): Dump to a file instead a `output_obstack'.
19103 (print_results): Dump `output_obstack', and then proceed with the
19105 * src/files.c (compute_output_file_names, close_files): New.
19106 (output_files): Adjust.
19107 * src/main.c (main): Adjust.
19109 2001-09-23 Marc Autret <autret_m@epita.fr>
19111 * src/files.c (compute_header_macro): Computes header macro name
19112 from spec_defines_file when given.
19114 2001-09-23 Marc Autret <autret_m@epita.fr>
19116 * src/files.c (output_files): Add default extensions.
19118 2001-09-22 Akim Demaille <akim@epita.fr>
19120 * src/conflicts.c (finalize_conflicts): Rename as...
19121 (free_conflicts): this.
19123 2001-09-22 Akim Demaille <akim@epita.fr>
19125 * src/gram.c (gram_free): Rename back as...
19127 (output_token_translations): Free `token_translations'.
19128 * src/symtab.c (free_symtab): Free the tag field.
19130 2001-09-22 Akim Demaille <akim@epita.fr>
19132 Remove `translations' as it is always set to true.
19134 * src/gram.h: Adjust.
19135 * src/reader.c (packsymbols, parse_token_decl): Adjust
19136 * src/print.c (print_grammar): Adjust.
19137 * src/output.c (output_token_translations): Adjust.
19138 * src/lex.c (lex): Adjust.
19139 * src/gram.c: Be sure the set pointers to NULL.
19140 (dummy): Rename as...
19143 2001-09-22 Akim Demaille <akim@epita.fr>
19145 * configure.in: Invoke AM_LIB_DMALLOC.
19146 * src/system.h: Use dmalloc.
19147 * src/LR0.c: Be sure to have pointers initialized to NULL.
19148 (allocate_itemsets): Allocate kernel_items only if needed.
19150 2001-09-22 Akim Demaille <akim@epita.fr>
19152 * configure.in: Bump to 1.29b.
19153 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
19154 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
19155 need xmalloc.c in calc.y.
19158 2001-09-21 Akim Demaille <akim@epita.fr>
19161 * Makefile.maint, config/config.guess, config/config.sub,
19162 * config/missing: Update from masters.
19163 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
19165 * configure.in (ALL_LINGUAS): Add `tr'.
19167 2001-09-21 Akim Demaille <akim@epita.fr>
19169 * tests/Makefile.am (package.m4): Move to...
19170 ($(srcdir)/$(TESTSUITE)): here.
19172 2001-09-20 Akim Demaille <akim@epita.fr>
19174 * src/complain.c: No longer try to be standalone: use system.h.
19175 Don't assume __STDC__ is defined to 1. Just test if it is defined.
19176 * src/complain.h: Likewise.
19177 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
19178 Remove the unused variable `n'.
19179 From Albert Chin-A-Young.
19181 2001-09-18 Marc Autret <autret_m@epita.fr>
19183 * doc/bison.1: Update.
19184 * doc/bison.texinfo (Bison Options): Update --defines and --graph
19186 (Option Cross Key): Update.
19189 2001-09-18 Marc Autret <autret_m@epita.fr>
19191 * tests/regression.at: New test (comment in %union).
19193 2001-09-18 Marc Autret <autret_m@epita.fr>
19195 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
19197 Reported by Keith Browne.
19199 2001-09-18 Marc Autret <autret_m@epita.fr>
19201 * tests/output.at: Add tests for --defines and --graph.
19203 2001-09-18 Marc Autret <autret_m@epita.fr>
19205 * tests/output.at: Removes tests of %{header,src}_extension features.
19207 2001-09-18 Akim Demaille <akim@epita.fr>
19209 * tests/Makefile.am (package.m4): New.
19210 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
19211 (_AT_CHECK_CALC_ERROR): Likewise.
19212 Factor the `, ' part of verbose error messages.
19214 2001-09-18 Marc Autret <autret_m@epita.fr>
19216 * src/getargs.c (longopts): Declare --defines and --graph as options
19217 with optional arguments.
19218 * src/files.h: Add extern declarations.
19219 * src/files.c (spec_graph_file, spec_defines_file): New.
19220 (output_files): Update.
19221 Remove CPP-outed code.
19223 2001-09-18 Marc Autret <autret_m@epita.fr>
19225 Turn off %{source,header}_extension feature.
19227 * src/files.c (compute_exts_from_gf): Update.
19228 (compute_exts_from_src): Update.
19229 (output_files): CPP-out useless code.
19230 * src/files.h: Remove {header,source}_extension extern declarations.
19231 * src/reader.c (parse_dquoted_param): CPP-out.
19232 (parse_header_extension_decl): Remove.
19233 (parse_source_extension_decl): Remove.
19234 (read_declarations): Remove cases tok_{hdrext,srcext}.
19235 * src/lex.c (percent_table): Remove {header,source}_extension entries.
19236 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
19238 2001-09-10 Akim Demaille <akim@epita.fr>
19240 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
19241 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
19242 (AT_CHECK_OUTPUT): this.
19243 Merely check ls' exit status, its output is useless.
19245 2001-09-10 Akim Demaille <akim@epita.fr>
19247 * tests/calc.at: Use m4_match.
19248 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
19250 2001-09-10 Marc Autret <autret_m@epita.fr>,
19251 Akim Demaille <akim@epita.fr>
19253 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
19255 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
19257 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
19258 * src/lex.h: Adjust prototype.
19259 (token_t): Add `tok_undef'.
19260 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
19261 (parse_percent_token): Now returns token_t.
19262 Add default statement in switch.
19263 (lex): Separate `c' as an input variable, from the token_t result
19265 (unlexed): Is a token_t.
19267 2001-09-10 Akim Demaille <akim@epita.fr>
19269 * configure.in: Bump to 1.29a.
19271 2001-09-07 Akim Demaille <akim@epita.fr>
19275 2001-08-30 Akim Demaille <akim@epita.fr>
19277 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
19278 * m4/atconfig.m4: Remove.
19279 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
19280 * tests/bison: New.
19281 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
19282 m4_if, m4_patsubst, and m4_regexp.
19283 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
19284 `input' file instead of echo.
19286 2001-08-29 Akim Demaille <akim@epita.fr>
19290 2001-08-29 Akim Demaille <akim@epita.fr>
19294 2001-08-29 Paul Eggert <eggert@twinsun.com>
19296 * src/bison.simple (yyparse): Don't take the address of an
19297 item before the start of an array, as that doesn't conform to
19300 2001-08-29 Robert Anisko <anisko_r@epita.fr>
19302 * doc/bison.texinfo (Location Tracking Calc): New node.
19304 2001-08-29 Paul Eggert <eggert@twinsun.com>
19306 * src/output.c (output): Do not define const, as this now
19307 causes more problems than it cures.
19309 2001-08-29 Akim Demaille <akim@epita.fr>
19311 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
19313 Be sure to tag the `detailmenu'.
19315 2001-08-29 Akim Demaille <akim@epita.fr>
19317 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
19318 download in a tmp dir.
19320 2001-08-28 Marc Autret <autret_m@epita.fr>
19322 * config/depcomp: New file.
19324 2001-08-28 Marc Autret <autret_m@epita.fr>
19326 * doc/bison.1 (mandoc): Adjust.
19327 From Juan Manuel Guerrero.
19329 2001-08-28 Marc Autret <autret_m@epita.fr>
19331 * src/print_graph.c (print_state): Fix.
19333 2001-08-27 Marc Autret <autret_m@epita.fr>
19335 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
19337 Echo modifications to the functions prototypes.
19338 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
19340 2001-08-27 Marc Autret <autret_m@epita.fr>
19342 * src/vcg.c: Include `xalloc.h'.
19343 (add_colorentry): New.
19344 (add_classname): New.
19345 (add_infoname): New.
19346 * src/vcg.h: Add new prototypes.
19348 2001-08-27 Akim Demaille <akim@epita.fr>
19350 * Makefile.maint: Sync. again with CVS Autoconf.
19352 2001-08-27 Akim Demaille <akim@epita.fr>
19354 * Makefile.maint: Formatting changes.
19355 (po-update, cvs-update, update): New targets.
19358 2001-08-27 Akim Demaille <akim@epita.fr>
19360 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19361 * Makefile.maint: Sync. with CVS Autoconf.
19363 2001-08-27 Marc Autret <autret_m@epita.fr>
19365 * src/vcg.h (struct infoname_s): New.
19366 (struct colorentry_s): New.
19367 (graph_s): New fields {vertical,horizontal}_order in structure.
19368 Add `infoname' field.
19369 Add `colorentry' field;
19370 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
19371 (G_HORIZONTAL_ORDER): New.
19373 (G_COLORENTRY): New.
19374 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
19375 Add output of `infoname'.
19376 Add output of `colorentry'.
19378 2001-08-27 Marc Autret <autret_m@epita.fr>
19380 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
19381 This one shadowed a global parameter.
19383 2001-08-24 Marc Autret <autret_m@epita.fr>
19385 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
19386 instead of `unsigned'.
19387 (print_state): Do not call obstack_object_size () in obstack_grow ()
19388 to avoid macro variables shadowing.
19390 2001-08-23 Marc Autret <autret_m@epita.fr>
19392 * src/lex.c (percent_table): Typo: s/naem/name/.
19394 Normalize new options declarations.
19396 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
19398 * tests/suite.at: Exercise %header_extension and %source_extension.
19400 2001-08-16 Marc Autret <autret_m@epita.fr>
19402 * src/reader.c (parse_dquoted_param): New.
19403 (parse_header_extension_decl): Use it.
19404 (parse_source_extension_decl): Likewise.
19406 2001-08-16 Marc Autret <autret_m@epita.fr>
19408 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
19409 (get_xxxx_str): Use assert () instead of complain ().
19410 Remove return invokations in default cases.
19411 (get_decision_str): Modify default behaviour. Remove second argument.
19412 Echo modifications on calls.
19413 (output_graph): Fix.
19415 2001-08-16 Marc Autret <autret_m@epita.fr>
19417 * src/getargs.c (usage): Update with ``-g, --graph''.
19419 2001-08-16 Marc Autret <autret_m@epita.fr>
19421 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
19422 (Option Cross Key): Likewise.
19423 * doc/bison.1: Update.
19425 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
19427 * src/output.c (output_master_parser): Don't finish action_obstack.
19428 (output_parser): Don't care about the muscle action, here.
19429 (prepare): Copy the action_obstack in the action muscle.
19430 (output): Free action_obstack.
19432 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19434 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
19435 will contain `%union' declaration.
19436 (parse_union_decl): Delete #line directive output.
19437 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
19438 informations about %union.
19439 (parse_union_decl): Copy the union_obstack in the muscle stype.
19440 * src/bison.simple: Add new #line directive.
19441 Add typdef %%stype YYSTYPE.
19443 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
19445 * src/bison.simple: Add new `#line' directive.
19447 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
19449 * src/bison.simple: New `#line' directive.
19450 * src/output.c (output_parser): Support new dynamic muscle input_line.
19452 2001-09-22 Marc Autret <autret_m@epita.fr>
19454 * src/output.c (output_master_parser): New.
19455 (output_parser): Be more re-entrant.
19457 2001-09-21 Marc Autret <autret_m@epita.fr>
19459 * src/reader.c (copy_definition, parse_union_decl): Update and use
19461 (copy_action): Likewise.
19462 Use obstack_1grow ().
19463 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
19465 2001-09-21 Marc Autret <autret_m@epita.fr>
19467 * src/options.c (option_table): Adjust.
19468 * src/lex.c (parse_percent_token): Fix.
19470 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19472 * src/options.c (symtab.h): Include it, need by lex.h.
19474 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
19476 * src/lex.c (parse_percent_token): Change type of variable `tx', which
19477 is now an option_table_struct*.
19478 (option_strcmp): New function option_strcmp.
19479 (parse_percent_token): Call option_strcmp.
19480 * src/getargs.c (xalloc.h, options.h): Include it.
19481 (getargs): Call create_long_option_table.
19482 (getargs): Free longopts at the end of the function.
19483 (shortopts): Move in options.c.
19484 * src/options.c (create_long_option_table): New function. Convert
19485 information from option_table to option structure.
19486 * src/reader.c (options.h): Include it.
19488 * src/Makefile.am: Adjust.
19489 * src/options.c (option_table): Create from longopts and percent_table.
19490 * src/getargs.c (longopts): Delete.
19491 * src/lex.c (struct percent_table_struct): Delete.
19492 (percent_table): Delete.
19493 (options.h): Include it.
19494 * src/options.c: Create.
19495 * src/options.h: Create.
19496 Declare enum opt_access_e.
19497 Define struct option_table_struct.
19499 2001-09-20 Marc Autret <autret_m@epita.fr>
19501 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
19504 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
19506 * src/bison.simple: s/%%filename/%%skeleton.
19507 * src/muscle_tab.c (getargs.h): Include it.
19508 (muscle_init): Insert new muscle skeleton.
19510 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
19512 * src/output.c (output_parser): Delete unused variable actions_dumped.
19514 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
19516 * src/output.c (output): Delete call to reader_output_yylsp.
19517 * src/reader.c (reader): Likewise.
19518 * src/reader.h: Delete declaration of reader_output_yylsp.
19520 2001-09-02 Marc Autret <autret_m@epita.fr>
19522 * src/reader.c: Include muscle_tab.h.
19523 (parse_union_decl): Update.
19524 (parse_macro_decl): Rename parse_muscle_decl.
19525 Update to use renamed functions and variable.
19526 (read_declarations, copy_action, read_additionnal_code, : Updated
19527 with correct variables and functions names.
19528 (packsymbols, reader): Likewise.
19530 * src/reader.h (muscle_obstack): Extern declaration update.
19532 * src/output.c: Include muscle_tab.h
19533 In all functions using macro_insert, change by using muscle_insert ().
19534 (macro_obstack): Rename muscle_obstack.
19535 Echo modifications in the whole file.
19536 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
19537 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
19538 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
19540 * src/muscle_tab.h: Update double inclusion macros.
19541 (macro_entry_s): Rename muscle_entry_s.
19544 * src/muscle_tab.c: Include muscle_tab.h.
19545 Rename macro_tabble to muscle_table.
19546 (mhash1, mhash2, mcmp): Use muscle_entry.
19547 (macro_init): Rename muscle_init. Update.
19548 (macro_insert): Rename muscle_insert. Update.
19549 (macro_find): Rename muscle_find. Update.
19551 * src/main.c: Include muscle_tab.h.
19552 (main): Call muscle_init ().
19553 * src/Makefile.am (bison_SOURCES): Echo modifications.
19555 2001-09-02 Marc Autret <autret_m@epita.fr>
19557 Now the files macro_tab.[ch] are named muscle_tab.[ch].
19559 * src/muscle_tab.c, src/muscle_tab.h: Add files.
19561 2001-09-02 Marc Autret <autret_m@epita.fr>
19563 * src/macrotab.c, src/macrotab.h: Remove.
19565 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
19567 * src/reader.c (copy_guard): Use muscle to specify the `#line'
19570 2001-09-01 Marc Autret <autret_m@epita.fr>
19572 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
19573 to an explicit value to activate the feature. We do it here.
19575 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19577 * src/output.c (prepare): Delete the `filename' muscule insertion.
19578 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
19579 (parse_union_decl): Likewise.
19580 * src/macrotab.c (macro_init): Initialize filename by infile.
19582 2001-08-31 Marc Autret <autret_m@epita.fr>
19584 * src/bison.simple (YYLSP_NEEDED): New definition.
19585 * src/output.c (prepare): Add macro insertion of `locations_flag'
19587 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19589 * src/output.c (prepare): Delete insertion of previous muscles,
19590 and insert the `prefix' muscles.
19591 * src/macrotab.c (macro_init): Likewise.
19592 (macro_init): Initialization prefix directive by `yy'.
19593 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
19594 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
19595 yylval, yydebug, yyerror, yynerrs and yyparse.
19596 New directive `#define' to substitute yydebug, ... with option
19599 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19601 * src/main.c (main): Standardize.
19602 * src/output.c (output_table_data, output_parser): Likewise.
19603 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
19605 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
19607 * src/reader.c (read_additionnal_code): Rename %%user_code to
19609 * src/output.c (output): Rename %%declarations to %%prologue.
19610 * src/bison.simple: Echo modifications.
19612 2001-08-31 Marc Autret <autret_m@epita.fr>
19614 * src/reader.c (readgram): CleanUp.
19615 (output_token_defines): Likewise.
19616 (packsymbols): Likewise.
19617 (reader): Likewise.
19618 * src/output.c (output): CPP-out useless code.
19620 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
19622 * src/reader.c (reader): Delete obsolete call to function
19623 output_trailers and output_headers.
19624 * src/output.h: Remove obsolete functions prototypes of output_headers
19625 and output_trailers.
19627 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
19629 * src/main.c: Include macrotab.h.
19630 * src/macrotab.h (macro_entry_s): Constify fields.
19631 Adjust functions prototypes.
19632 * src/macrotab.c (macro_insert): Constify key and value.
19633 (macro_find): Constify key.
19634 (macro_insert): Include 'xalloc.h'
19635 (macro_insert): Use XMALLOC.
19636 (macro_find): Constify return value.
19637 * src/output.c (output_table_data): Rename table to table_data.
19638 (output_parser): Constify macro_key, macro_value.
19640 2001-08-30 Marc Autret <autret_m@epita.fr>
19642 * src/reader.c (parse_skel_decl): New.
19643 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
19644 * src/lex.h (token_t): New token `tok_skel'.
19645 * src/lex.c (percent_table): Add skeleton option entry.
19648 2001-08-29 Marc Autret <autret_m@epita.fr>
19650 * src/bison.simple: Add %%user_code directive at the end.
19651 * src/reader.c (read_additionnal_code): New.
19653 * src/output.c (output_program): Remove.
19656 2001-08-28 Marc Autret <autret_m@epita.fr>
19658 * src/output.c (output_actions): Clean up.
19659 (output_gram): CPP-out useless code.
19660 * src/reader.c (reader): Clean up, CPP-out useless code.
19662 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
19664 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
19666 * src/bison.simple: Add `%%definitions'.
19668 2001-08-28 Marc Autret <autret_m@epita.fr>
19670 * config/depcomp: New file.
19672 2001-08-27 Paul Eggert <eggert@twinsun.com>
19674 * src/bison.simple (yyparse): Don't take the address of an
19675 item before the start of an array, as that doesn't conform to
19678 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19680 * src/output.c (output): Remove the initialization of the macro
19681 obstack. It was done too late here.
19683 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
19685 (reader): Initialize the macro obstack here, since we need it to grow
19686 '%define' directives.
19688 * src/reader.h: Declare the macro obstack as extern.
19690 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
19692 * src/output.c (output_parser): Fix. Store single '%' characters in
19693 the output obstack instead of throwing them away.
19695 2001-08-27 Akim Demaille <akim@epita.fr>
19697 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
19699 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19701 * lib/Makefile.am: Adjust.
19703 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19705 * src/bison.simple: Update and add '%%' directives.
19707 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19709 * src/reader.c (reader): Remove calls to 'output_headers' and
19710 'output_trailers'. Remove some C output.
19711 (readgram): Disable a piece of code that was writing a default
19712 definition for 'YYSTYPE'.
19713 (reader_output_yylsp): Remove.
19714 (packsymbols): Output token defintions to a macro.
19715 (copy_definition): Disable C output.
19717 * src/reader.c (parse_macro_decl): New function used to parse macro
19719 (copy_string2): Put the body of copy_string into this new function.
19720 Add a parameter to let the caller choose whether he wants to copy the
19721 string delimiters or not.
19722 (copy_string): Be a simple call to copy_string2 with the last argument
19724 (read_declarations): Add case for macro definition.
19725 (copy_identifier): New.
19726 (parse_macro_decl): Read macro identifiers using copy_identifier
19729 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19731 * src/output.c (prepare): Add prefixed names.
19732 (output_parser): Output semantic actions.
19733 (output_parser): Fix bug on '%%line' directives.
19735 * src/output.c (output_headers): Remove. The C code printed by this
19736 function should now be in the skeletons.
19737 (output_trailers): Remove.
19738 (output): Disable call to 'reader_output_yylsp'.
19739 (output_rule_data): Do not output tables to the table obstack.
19741 * src/output.c: Remove some C dedicated output.
19742 Improve the use of macro and output obstacks.
19743 (output_defines): Remove.
19745 * src/output.c (output_token_translations): Associate 'translate'
19746 table with a macro. No output to the table obstack.
19747 (output_gram): Same for 'rhs' and 'prhs'.
19748 (output_stos): Same for 'stos'.
19749 (output_rule_data): Same for 'r1' and 'r2'.
19750 (token_actions): Same for 'defact'.
19751 (goto_actions): Same for 'defgoto'.
19752 (output_base): Same for 'pact' and 'pgoto'.
19753 (output_table): Same for 'table'.
19754 (output_check): Same for 'check'.
19756 * src/output.c (output_table_data): New function.
19757 (output_short_table): Remove.
19758 (output_short_or_char_table): Remove.
19760 * src/output.c (output_parser): Replace most of the skeleton copy code
19761 with something new. Skeletons are now processed character by character
19762 rather than line by line, and Bison looks for '%%' macros. This is the
19763 first step in making Bison's output process (a lot) more flexible.
19764 (output_parser): Use the macro table.
19766 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19768 * src/main.c (main): Initialize the macro table.
19770 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19772 * src/lex.c (percent_table): Add tok_define.
19773 * src/lex.h: Add tok_define.
19775 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19777 * src/macrotab.c: New file.
19778 * src/macrotab.h: New file.
19779 * src/Makefile.am: Update.
19781 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
19783 * lib/hash.c: New file.
19784 * lib/hash.h: New file.
19785 * lib/Makefile.am: Update.
19787 2001-08-15 Akim Demaille <akim@epita.fr>
19791 2001-08-15 Marc Autret <autret_m@epita.fr>
19793 * src/reader.c (readgram): Indent output macro YYSTYPE.
19794 (packsymbols): Likewise.
19795 (output_token_defines): Likewise.
19796 * src/files.c: Standardize.
19797 (compute_header_macro): New.
19798 (defines_obstack_save): New. Use compute_header_macro.
19799 (output_files): Update. Use defines_obstack_save.
19801 2001-08-15 Akim Demaille <akim@epita.fr>
19803 * doc/bison.texinfo (Table of Symbols): Document
19804 YYSTACK_USE_ALLOCA.
19806 2001-08-15 Akim Demaille <akim@epita.fr>
19808 * missing: Update from CVS Automake.
19809 * config/config.guess, config/config.sub, config/texinfo.tex:
19810 Update from gnu.org.
19812 2001-08-15 Akim Demaille <akim@epita.fr>
19814 * Makefile.maint: Sync with CVS Autoconf.
19816 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
19818 * doc/bison.texinfo: Include GNU Free Documentation License from
19820 * doc/fdl.texi: Add to package.
19822 2001-08-14 Marc Autret <autret_m@epita.fr>
19824 Turn on %{source,header}_extension features.
19826 * src/lex.c (percent_table): Un-CPP out header_extension and
19828 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
19829 (compute_exts_from_src): Remove conditions. It restores priorities
19832 2001-08-14 Marc Autret <autret_m@epita.fr>
19834 * src/files.c (compute_base_names): Add extensions computing when
19835 `--file-prefix' used.
19836 Standardize function calls.
19838 2001-08-13 Marc Autret <autret_m@epita.fr>
19840 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
19841 defining it (defined but null disables alloca).
19843 2001-08-13 Marc Autret <autret_m@epita.fr>
19845 * src/bison.simple (_yy_memcpy): CPP reformat.
19847 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
19849 * tests/atconfig.in (CPPFLAGS): Fix.
19851 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
19853 * doc/bison.texinfo: Include GNU General Public License from
19855 * doc/gpl.texi: Add to package.
19857 2001-08-10 Marc Autret <autret_m@epita.fr>
19859 * src/print_graph.h: Fix.
19860 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
19862 2001-08-10 Akim Demaille <akim@epita.fr>
19864 * src/system.h: Provide default declarations for stpcpy, strndup,
19867 2001-08-10 Robert Anisko <anisko_r@epita.fr>
19869 * doc/bison.texinfo (Locations): Update @$ stuff.
19871 2001-08-09 Robert Anisko <anisko_r@epita.fr>
19873 * src/bison.simple (YYLLOC_DEFAULT): Update.
19876 2001-08-08 Marc Autret <autret_m@epita.fr>
19878 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
19879 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
19880 Reported by Fabrice Bauzac.
19882 2001-08-08 Marc Autret <autret_m@epita.fr>
19884 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
19885 * src/vcg.c (output_node): Fix.
19886 * src/vcg.h: Cleanup.
19887 * src/print_graph.c: Add comments.
19888 (node_output_size): New global variable. Simplify the formatting of
19889 the VCG graph output.
19890 (print_actions): Unused code is now used. It notifies the final state
19891 and no action states in the VCG graph. It also give the reduce actions.
19892 The `shift and goto' edges are red and the `go to state' edges are
19894 Get the current node name and node_obstack by argument.
19895 (node_obstack): New variable.
19896 (print_state): Manage node_obstack.
19897 (print_core): Use node_obstack given by argument.
19898 A node is not only computed here but in print_actions also.
19899 (print_graph): CPP out useless code instead of commenting it.
19901 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
19903 * tests/atconfig.in (CPPFLAGS): Fix.
19905 2001-08-07 Akim Demaille <akim@epita.fr>
19907 * src/print_graph.c (quote): New.
19908 (print_core): Use it.
19910 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
19912 * src/vcg.c (complain.h): Include it.
19913 Unepitaize `return' invocations.
19914 [NDEBUG] (main): Remove.
19915 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
19916 * src/files.c (open_files): Initialize graph_obstack.
19917 * src/print_graph.c (print_actions): CPP out useless code.
19918 (print_core): Don't output the last `\n' in labels.
19920 * src/files.c (output_files): Output the VCG file.
19921 * src/main.c (main): Invoke print_graph ();
19923 2001-08-06 Marc Autret <autret_m@epita.fr>
19925 Automaton VCG graph output.
19926 Using option ``-g'' or long option ``--graph'', you can generate
19927 a gram_filename.vcg file containing a VCG description of the LALR (1)
19928 automaton of your grammar.
19930 * src/main.c: Call to print_graph() function.
19931 * src/getargs.h: Update.
19932 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
19933 (graph_flag): New flag.
19934 (longopts): Update.
19935 (getargs): Add case `g'.
19936 * src/files.c (graph_obstack): New obstack struct.
19937 (open_files): Initialize new obstack.
19938 (output_files): Saves graph_obstack if required.
19939 * src/files.h (graph_obstack): New extern declaration.
19940 * src/Makefile.am: Add new source files.
19942 2001-08-06 Marc Autret <autret_m@epita.fr>
19944 * src/print_graph.c, src/print_graph.h (graph): New.
19945 * src/vcg.h: New file.
19946 * src/vcg.c: New file, VCG graph handling.
19948 2001-08-06 Marc Autret <autret_m@epita.fr>
19950 Add of %source_extension and %header_extension which specify
19951 the source or/and the header output file extension.
19953 * src/files.c (compute_base_names): Remove initialisation of
19954 src_extension and header_extension.
19955 (compute_exts_from_gf): Update.
19956 (compute_exts_from_src): Update.
19957 (output_files): Update.
19958 * src/reader.c (parse_header_extension_decl): New.
19959 (parse_source_extension_decl): New.
19960 (read_declarations): New case statements for the new tokens.
19961 * src/lex.c (percent_table): Add entries for %source_extension
19962 and %header_extension.
19963 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
19965 2001-08-06 Marc Autret <autret_m@epita.fr>
19967 * configure.in: Bump to 1.28c.
19968 * doc/bison.texinfo: Texinfo thingies.
19970 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
19972 * tests/atconfig.in (CPPFLAGS): Add.
19973 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
19975 2001-08-03 Akim Demaille <akim@epita.fr>
19979 2001-08-03 Akim Demaille <akim@epita.fr>
19981 * tests/Makefile.am (check-local): Ship testsuite.
19982 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
19983 Include `string.h'.
19985 2001-08-03 Akim Demaille <akim@epita.fr>
19987 * configure.in: Try using -Wformat when compiling.
19989 2001-08-03 Akim Demaille <akim@epita.fr>
19991 * configure.in: Bump to 1.28b.
19993 2001-08-03 Akim Demaille <akim@epita.fr>
19995 * src/complain.c: Adjust strerror_r portability issues.
19997 2001-08-03 Akim Demaille <akim@epita.fr>
20001 2001-08-03 Akim Demaille <akim@epita.fr>
20003 * src/getargs.c, src/getarg.h (skeleton)): Constify.
20004 * src/lex.c (literalchar): Avoid name clashes on `buf'.
20005 * src/getargs.c: Include complain.h.
20006 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
20007 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
20009 2001-08-03 Akim Demaille <akim@epita.fr>
20011 * src/reader.c (readgram): Display hidden chars in error messages.
20013 2001-08-03 Akim Demaille <akim@epita.fr>
20015 Update to gettext 0.10.39.
20017 2001-08-03 Akim Demaille <akim@epita.fr>
20019 * lib/strspn.c: New.
20021 2001-08-01 Marc Autret <autret_m@epita.fr>
20023 * doc/bison.texinfo: Update.
20024 * doc/bison.1 (mandoc): Update.
20025 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
20026 * src/files.c: Support output files extensions computing.
20027 (src_extension): New static variable.
20028 (header_extension): New static variable.
20029 (tr): New function.
20030 (get_extension_index): New function, gets the index of an extension
20031 filename in a string.
20032 (compute_exts_from_gf): New function, computes extensions from the
20033 grammar file extension.
20034 (compute_exts_from_src): New functions, computes extensions from the
20035 C source file extension, file given by ``-o'' option.
20036 (compute_base_names): Update.
20037 (output_files): Update.
20039 2001-08-01 Robert Anisko <anisko_r@epita.fr>
20041 * doc/bison.texi: Document @$.
20042 (Locations): New section.
20044 2001-07-18 Akim Demaille <akim@epita.fr>
20046 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
20047 * config/prev-version.txt, config/move-if-change: New.
20048 * Makefile.am: Adjust.
20050 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
20052 * src/bison.simple (yyparse): Suppress warning `comparaison
20053 between signed and unsigned'.
20055 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
20057 * src/getargs.h (raw_flag): Remove.
20058 * src/getargs.c: Die on `-r'/`--raw'.
20059 * src/lex.c (parse_percent_token): Die on `%raw'.
20060 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
20061 * tests/calc.at: Suppress test with option `--raw'.
20063 2001-07-14 Akim Demaille <akim@epita.fr>
20066 * configure.in: Require Autoconf 2.50.
20067 Update to gettext 0.10.38.
20069 2001-03-16 Akim Demaille <akim@epita.fr>
20071 * doc/bison.texinfo: ANSIfy the examples.
20073 2001-03-16 Akim Demaille <akim@epita.fr>
20075 * getargs.c (skeleton): New variable.
20076 (longopts): --skeleton is a new option.
20077 (shortopts, getargs): -S is a new option.
20078 * getargs.h: Declare skeleton.
20079 * output.c (output_parser): Use it.
20081 2001-03-16 Akim Demaille <akim@epita.fr>
20083 * m4/strerror_r.m4: New.
20084 * m4/error.m4: Run AC_FUNC_STRERROR_R.
20085 * lib/error.h, lib/error.c: Update.
20087 2001-03-16 Akim Demaille <akim@epita.fr>
20089 * src/getargs.c (longopts): Clean up.
20091 2001-02-21 Akim Demaille <akim@epita.fr>
20093 * src/reader.c (gensym): `gensym_count' is your own.
20094 Use a static buf to create the symbol name, as token_buffer is no
20097 2001-02-08 Akim Demaille <akim@epita.fr>
20099 * src/conflicts.c (conflict_report): Be sure not to append to res
20100 between two calls, which could happen if both first sprintf were
20101 skipped, but not the first cp += strlen.
20103 2001-02-08 Akim Demaille <akim@epita.fr>
20105 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
20106 New, from fileutils 4.0.37.
20107 * configure.in: Require Autoconf 2.49c. I took some time before
20108 making this decision. This is the only way out for portability
20109 issues in Bison, it would mean way too much duplicate effort to
20110 import in Bison features implemented in 2.49c since 2.13.
20111 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
20113 2001-02-02 Akim Demaille <akim@epita.fr>
20115 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
20116 * lib/xalloc.h, lib/xmalloc.c: Update.
20118 2001-01-19 Akim Demaille <akim@epita.fr>
20120 Get rid of the ad hoc handling of token_buffer in the scanner: use
20123 * src/lex.c (token_obstack): New.
20124 (init_lex): Initialize it. No longer call...
20125 (grow_token_buffer): this. Remove it.
20126 Adjust all the places which used it to use the obstack.
20128 2001-01-19 Akim Demaille <akim@epita.fr>
20130 * src/lex.h: Rename all the tokens:
20131 s/\bENDFILE\b/tok_eof/g;
20132 s/\bIDENTIFIER\b/tok_identifier/g;
20134 Let them be enums, not #define, to ease debugging.
20135 Adjust all the code.
20137 2001-01-18 Akim Demaille <akim@epita.fr>
20139 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
20140 * src/lex.c (maxtoken, grow_token_buffer): Static.
20142 2001-01-18 Akim Demaille <akim@epita.fr>
20144 Since we now use obstacks, more % directives can be enabled.
20146 * src/lex.c (percent_table): Also accept `%yacc',
20147 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
20149 Handle the actions for `%semantic_parser' and `%pure_parser' here,
20150 instead of returning a token.
20151 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
20152 * src/reader.c (read_declarations): Adjust.
20153 * src/files.c (open_files): Don't call `compute_base_names', don't
20154 compute `attrsfile' since they depend upon data which might be
20155 *in* the input file now.
20156 (output_files): Do it here.
20157 * src/output.c (output_headers): Document the fact that this patch
20158 introduces a guaranteed SEGV for semantic parsers.
20159 * doc/bison.texinfo: Document them.
20160 * tests/suite.at: Exercise these %options.
20162 2000-12-20 Akim Demaille <akim@epita.fr>
20164 Also handle the output file (--verbose) with obstacks.
20166 * files.c (foutput): Remove.
20167 (output_obstack): New.
20168 Adjust all dependencies.
20169 * src/conflicts.c: Return a string.
20170 * src/system.h (obstack_grow_string): Rename as...
20171 (obstack_sgrow): this. Be ready to work with non literals.
20172 (obstack_fgrow4): New.
20174 2000-12-20 Akim Demaille <akim@epita.fr>
20176 * src/files.c (open_files): Fix the computation of short_base_name
20177 in the case of `-o foo.tab.c'.
20179 2000-12-20 Akim Demaille <akim@epita.fr>
20181 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
20182 (copy_dollar): Now that everything uses obstacks, get rid of the
20185 2000-12-20 Akim Demaille <akim@epita.fr>
20187 * src/files.c (open_files): Actually the `.output' file is based
20188 on the short_base_name, not base_name.
20189 * tests/suite.at (Checking output file names): Adjust.
20191 2000-12-20 Akim Demaille <akim@epita.fr>
20193 * src/bison.s1: Remove, we now use directly...
20194 * src/bison.simple: this.
20195 * src/Makefile.am: Use pkgdata instead of data.
20197 2000-12-20 Akim Demaille <akim@epita.fr>
20199 * src/files.c (guard_obstack): New.
20200 (open_files): Initialize it.
20201 (output_files): Dump it...
20202 * src/files.h: Export it.
20203 * src/reader.c (copy_guard): Use it.
20205 2000-12-19 Akim Demaille <akim@epita.fr>
20207 * src/files.c (outfile, defsfile, actfile): Removed as global
20209 (open_files): Don't compute them.
20210 (output_files): Adjust.
20211 (base_name, short_base_name): Be global.
20212 Adjust dependencies.
20214 2000-12-19 Akim Demaille <akim@epita.fr>
20216 * src/files.c (strsuffix): New.
20217 (stringappend): Be just like strcat but allocate.
20218 (base_names): Eve out from open_files.
20219 Try to simplify the rather hairy computation of base_name and
20221 (open_files): Use it.
20222 * tests/suite.at (Checking output file names): New test.
20224 2000-12-19 Akim Demaille <akim@epita.fr>
20226 * src/system.h (obstack_grow_literal_string): Rename as...
20227 (obstack_grow_string): this.
20228 * src/output.c (output_parser): Recognize `%% actions' instead of
20230 * src/bison.s1: s/$/%% actions/.
20231 * src/bison.hairy: Likewise.
20233 2000-12-19 Akim Demaille <akim@epita.fr>
20235 * src/output.c (output_parser): Compute the `#line' lines when
20237 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
20238 Suggested by Hans Aberg.
20240 2000-12-19 Akim Demaille <akim@epita.fr>
20242 Let the handling of the skeleton files be local to the procedures
20245 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
20247 (fparser, open_extra_files): Remove.
20248 (open_files, output_files): Don't take care of fparser.
20249 * src/files.h: Adjust.
20250 * src/output.c (output_parser): Open and close the file to the
20252 * src/reader.c (read_declarations): When %semantic_parser, open
20255 2000-12-19 Akim Demaille <akim@epita.fr>
20257 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
20258 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
20260 2000-12-19 Akim Demaille <akim@epita.fr>
20262 * src/files.c (open_files): Yipee! We no longer need all the code
20263 looking for `/tmp' since we have no tmp file.
20265 2000-12-19 Akim Demaille <akim@epita.fr>
20267 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
20269 * src/files.c (open_files): Less dependency on MSDOS etc.
20271 2000-12-14 Akim Demaille <akim@epita.fr>
20273 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
20274 Provide a default definition.
20275 Use it when executing the default @ action.
20276 * src/reader.c (reader_output_yylsp): No longer include
20277 `timestamp' and `text' in the default YYLTYPE.
20279 2000-12-12 Akim Demaille <akim@epita.fr>
20281 * src/reader.c (copy_definition, parse_union_decl, copy_action)
20282 (copy_guard): Quote the file names.
20283 Reported by Laurent Mascherpa.
20285 2000-12-12 Akim Demaille <akim@epita.fr>
20287 * src/output.c (output_headers, output_program, output): Be sure
20288 to escape special characters when outputting filenames.
20289 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
20290 (output_headers): Don't depend on them, Use ACTSTR.
20292 2000-11-17 Akim Demaille <akim@epita.fr>
20294 * lib/obstack.h: Formatting changes.
20295 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
20296 prevents type checking.
20297 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
20298 cast the value to (void *): assigning a `foo *' to a `void *'
20300 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
20301 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
20304 2000-11-17 Akim Demaille <akim@epita.fr>
20306 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
20308 (suite.m4, regression.m4, calc.m4): these.
20309 * tests/atgeneral.m4: Update from CVS Autoconf.
20311 2000-11-17 Akim Demaille <akim@epita.fr>
20313 * tests/regression.m4 (%union and --defines): New test,
20314 demonstrating a current bug in the obstack implementation.
20316 2000-11-17 Akim Demaille <akim@epita.fr>
20318 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
20320 Use them to declare the variables which are global or local to
20323 2000-11-17 Akim Demaille <akim@epita.fr>
20325 * acconfig.h: Remove, no longer used.
20327 2000-11-07 Akim Demaille <akim@epita.fr>
20329 * src: s/Copyright (C)/Copyright/g.
20331 2000-11-07 Akim Demaille <akim@epita.fr>
20333 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
20335 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
20337 2000-11-07 Akim Demaille <akim@epita.fr>
20339 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
20340 Merge in a single CPP if/else.
20342 2000-11-07 Akim Demaille <akim@epita.fr>
20344 * src/output.c (output): Remove useless variables.
20345 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
20346 argument `data' for consistency with the prototypes.
20347 Qualify it `const'.
20348 (obstack_copy, obstack_copy0): Rename the second argument as
20349 `address' for consistency. Qualify it `const'.
20350 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
20351 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
20352 `const' their input argument (`data' or `address').
20353 Adjust the corresponding macros to include `const' in casts.
20355 2000-11-03 Akim Demaille <akim@epita.fr>
20357 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
20358 s/PFILE1/BISON_HAIRY/.
20359 Adjust dependencies.
20361 2000-11-03 Akim Demaille <akim@epita.fr>
20363 For some reason, this was not applied.
20365 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20366 `unlink': it's no longer used.
20368 2000-11-03 Akim Demaille <akim@epita.fr>
20370 * src/files.c (skeleton_find): New function, eved out of...
20371 (open_files, open_extra_files): here.
20373 2000-11-03 Akim Demaille <akim@epita.fr>
20375 Don't use `atexit'.
20377 * src/files.c (obstack_save): New function.
20378 (done): Rename as...
20379 (output_files): this.
20380 Use `obstack_save'.
20381 * src/main.c (main): Don't use `atexit' to register `done', since
20382 it no longer has to remove tmp files, just call `output_files'
20383 when there are no errors.
20385 2000-11-02 Akim Demaille <akim@epita.fr>
20387 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
20388 `unlink': it's no longer used.
20389 * src/files.h: Formatting changes.
20391 2000-11-02 Akim Demaille <akim@epita.fr>
20393 Remove the last uses of mktemp and unlink/delete.
20395 * src/files.c (fdefines, ftable): Removed.
20396 (defines_ostack, table_obstack): New.
20397 Adjust dependencies of the former into uses of the latter.
20398 * src/output.c (output_short_or_char_table, output_short_table):
20399 Convert to using obstacks.
20400 * src/reader.c (copy_comment2): Accept one FILE * and two
20402 (output_token_defines, reader_output_yylsp): Use obstacks.
20403 * src/system.h (obstack_fgrow3): New.
20404 * po/POTFILES.in: Adjust.
20406 2000-11-01 Akim Demaille <akim@epita.fr>
20408 Change each use of `fattrs' into a use of `attrs_obstack'.
20410 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
20411 * src/files.c (fattrs): Remove.
20412 (attrs_obstack): New.
20413 Adjust all dependencies.
20414 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
20416 2000-11-01 Akim Demaille <akim@epita.fr>
20418 Introduce obstacks.
20419 Change each use of `faction' into a use of `action_obstack'.
20421 * lib/obstack.h, lib/obstack.c: New files.
20422 * src/files.c (faction): Remove.
20423 (action_obstack): New.
20424 Adjust all dependencies.
20426 2000-10-20 Akim Demaille <akim@epita.fr>
20428 * lib/quote.h (PARAMS): New macro. Use it.
20430 2000-10-16 Akim Demaille <akim@epita.fr>
20432 * src/output.c (output_short_or_char_table): New function.
20433 (output_short_table, output_token_translations): Use it.
20434 (goto_actions): Use output_short_table.
20436 2000-10-16 Akim Demaille <akim@epita.fr>
20438 * src/symtab.c (bucket_new): New function.
20441 * src/output.c (output_short_table): New argument to display the
20442 comment associated with the table.
20443 Adjust dependencies.
20444 (output_gram): Use it.
20445 (output_rule_data): Nicer output layout for YYTNAME.
20447 2000-10-16 Akim Demaille <akim@epita.fr>
20449 * src/lex.c (read_typename): New function.
20451 * src/reader.c (copy_dollar): Likewise.
20453 2000-10-16 Akim Demaille <akim@epita.fr>
20455 * src/reader.c (copy_comment2): Expect the input stream to be on
20456 the `/' which is suspected to open a comment, instead of being
20457 called after `//' or `/*' was read.
20458 (copy_comment, copy_definition, parse_union_decl, copy_action)
20459 (copy_guard): Adjust.
20461 2000-10-16 Akim Demaille <akim@epita.fr>
20463 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
20464 `read_signed_integer'.
20466 2000-10-16 Akim Demaille <akim@epita.fr>
20468 * src/reader.c (copy_dollar): New function.
20469 (copy_guard, copy_action): Use it.
20471 2000-10-16 Akim Demaille <akim@epita.fr>
20473 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
20474 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
20475 New files, from Fileutils 4.0.27.
20476 * src/main.c (printable_version): Remove.
20477 * src/lex.c, src/reader.c: Use `quote'.
20479 2000-10-04 Akim Demaille <akim@epita.fr>
20481 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
20483 2000-10-04 Akim Demaille <akim@epita.fr>
20485 * doc/bison.texinfo: Various typos spotted by Neil Booth.
20487 2000-10-04 Akim Demaille <akim@epita.fr>
20489 When a literal string is used to define two different tokens,
20490 `bison -v' segfaults.
20491 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
20493 * tests/regression.m4: New file.
20494 Include the core of the sample provided by Piotr Gackiewicz.
20495 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
20498 2000-10-04 Akim Demaille <akim@epita.fr>
20500 * src/reader.c (parse_expect_decl): Keep `count' within the size
20504 2000-10-02 Paul Eggert <eggert@twinsun.com>
20506 * bison.s1 (yyparse): Assign the default value
20507 unconditionally, to avoid a GCC warning and make the parser a
20510 2000-10-02 Akim Demaille <akim@epita.fr>
20512 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
20515 2000-10-02 Akim Demaille <akim@epita.fr>
20517 * src/derives.c, src/print.c, src/reduce.c: To ease the
20518 translation, move some `\n' out of the translated strings.
20520 2000-10-02 Akim Demaille <akim@epita.fr>
20522 The location tracking mechanism is precious for parse error
20523 messages. Nevertheless, it is enabled only when `@n' is used in
20524 the grammar, which is a different issue (you can use it in error
20525 message, but not in the grammar per se). Therefore, there should
20526 be another means to enable it.
20528 * src/getargs.c (getargs): Support `--locations'.
20529 (usage): Report it.
20530 * src/getargs.h (locationsflag): Export it.
20531 * src/lex.c (percent_table): Support `%locations'.
20532 * src/reader.c (yylsp_needed): Remove this variable, now replaced
20533 with `locationsflag'.
20534 * doc/bison.texinfo: Document `--locations' and `%locations'.
20536 * tests/calc.m4: Test it.
20538 For regularity of the names, replace each
20539 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
20540 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
20541 In addition replace each `flag' with `_flag'.
20543 2000-10-02 Akim Demaille <akim@epita.fr>
20545 Also test parse error messages, including with YYERROR_VERBOSE.
20547 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
20549 Use it to check the computations.
20550 Use it to check `nonassoc' is honored.
20551 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
20552 `--yyerror-verbose'.
20553 (_AT_CHECK_CALC): Adjust to this option.
20554 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
20556 2000-10-02 Akim Demaille <akim@epita.fr>
20558 Test also `--verbose', `--defines' and `--name-prefix'. Testing
20559 the latter demonstrates a flaw in the handling of non debugging
20560 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
20561 was used in order to simplify:
20577 unfortunately this leads to a CPP conflict when
20578 `--name-prefix=foo' is used since it produces `#define yydebug
20581 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
20582 (YYDPRINTF): New macro.
20584 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
20586 Also test `--verbose', `--defines' and `--name-prefix'.
20588 2000-10-02 Akim Demaille <akim@epita.fr>
20590 Improve the readability of the produced parsers.
20592 * src/bison.s1: Formatting changes.
20593 Improve the comment related to the `$' mark.
20594 (yydefault): Don't fall through to `yyresume': `goto' there.
20595 * src/output.c (output_parser): When the `$' is met, skip the end
20597 New variable, `number_of_dollar_signs', to check there's exactly
20598 one `$' in the parser skeleton.
20600 2000-10-02 Akim Demaille <akim@epita.fr>
20602 * lib/xstrdup.c: New file, from the fileutils.
20603 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
20604 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
20605 instead of strlen + xmalloc + strcpy.
20606 * src/symtab.c (copys): Remove, use xstrdup instead.
20608 2000-10-02 Akim Demaille <akim@epita.fr>
20610 * src/gram.h (associativity): New enum type which replaces the
20611 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
20612 `right_assoc', `left_assoc' and `non_assoc'.
20613 Adjust all dependencies.
20614 * src/reader.c: Formatting changes.
20615 (LTYPESTR): Don't define it, use it as a literal in
20616 `reader_output_yylsp'.
20617 * src/symtab.h (symbol_class): New enum type which replaces the
20618 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
20619 `sunknown', `stoken and `snterm'.
20621 2000-10-02 Akim Demaille <akim@epita.fr>
20623 * src/getargs.c (fixed_outfiles): Rename as...
20624 (yaccflag): for consistency and accuracy.
20625 Adjust dependencies.
20627 2000-10-02 Akim Demaille <akim@epita.fr>
20629 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
20630 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
20631 difficult and introduced a lot of core dump. It turns out that
20632 Bison used an implementation of `xmalloc' based on `calloc', and
20633 at various places it does depend upon the initialization to 0. I
20634 have not tried to isolate the pertinent places, and all the former
20635 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
20636 someone should address this issue.
20638 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
20639 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
20641 Adjust dependencies.
20642 * src/warshall.h: New file.
20645 2000-10-02 Akim Demaille <akim@epita.fr>
20647 Various anti-`extern in *.c' changes.
20649 * src/system.h: Include `assert.h'.
20651 2000-10-02 Akim Demaille <akim@epita.fr>
20653 * src/state.h (nstates, final_state, first_state, first_shift)
20654 (first_reduction): Move their exportation from here...
20655 * src/LR0.h: to here.
20656 Adjust dependencies.
20657 * src/getargs.c (statisticsflag): New variable.
20658 Add support for `--statistics'.
20659 Adjust dependencies.
20661 Remove a lot of now useless `extern' statements in most files.
20663 2000-10-02 Akim Demaille <akim@epita.fr>
20665 * src/LR0.h: New file.
20668 2000-10-02 Akim Demaille <akim@epita.fr>
20670 * src/print.h: New file.
20672 * src/print.c: Formatting and ordering changes.
20673 (verbose, terse): Replace with...
20674 (print_results): this new function.
20675 Adjust dependencies.
20677 2000-10-02 Akim Demaille <akim@epita.fr>
20679 * src/conflicts.c (conflict_report): New function.
20680 (conflict_log, verbose_conflict_log): Replace with...
20681 (print_conflicts): this function.
20682 Adjust dependencies.
20683 * src/conflicts.h: New file.
20684 Propagate its inclusion.
20686 2000-10-02 Akim Demaille <akim@epita.fr>
20688 * src/nullable.h: New file.
20689 Propagate its inclusion.
20690 * src/nullable.c: Formatting changes.
20692 2000-10-02 Akim Demaille <akim@epita.fr>
20694 * src/reduce.h: New file.
20695 Propagate its inclusion.
20696 * src/reduce.c: Topological sort and other formatting changes.
20697 (bool, TRUE, FALSE): Move their definition to...
20698 * src/system.h: here.
20700 2000-10-02 Akim Demaille <akim@epita.fr>
20702 * src/files.c: Formatting changes.
20703 (tryopen, tryclose, openfiles): Rename as...
20704 (xfopen, xfclose, open_files): this.
20705 (stringappend): static.
20706 * src/files.h: Complete the list of exported symbols.
20709 2000-10-02 Akim Demaille <akim@epita.fr>
20711 * src/reader.h: New file.
20712 Propagate its use instead of tedious list of `extern' and
20714 * src/reader.c: Formatting changes, topological sort,
20717 2000-10-02 Akim Demaille <akim@epita.fr>
20719 * src/lex.h: Prototype `lex.c' exported functions.
20720 * src/reader.c: Adjust.
20721 * src/lex.c: Formatting changes.
20722 (safegetc): Rename as...
20725 2000-10-02 Akim Demaille <akim@epita.fr>
20727 * src/lalr.h: New file.
20728 Propagate its inclusion instead of prototypes and `extern'.
20729 * src/lalr.c: Formatting changes, topological sorting etc.
20731 2000-10-02 Akim Demaille <akim@epita.fr>
20733 * src/output.c (token_actions): Introduce a temporary array,
20734 YYDEFACT, that makes it possible for this function to use
20735 output_short_table.
20737 2000-10-02 Akim Demaille <akim@epita.fr>
20739 `user_toknums' is output as a `short[]' in `output.c', while it is
20740 defined as a `int[]' in `reader.c'. For consistency with the
20741 other output tables, `user_toknums' is now defined as a table of
20744 * src/reader.c (user_toknums): Be a short table instead of an int
20746 Adjust dependencies.
20748 Factor the short table outputs.
20750 * src/output.c (output_short_table): New function.
20751 * src/output.c (output_gram, output_stos, output_rule_data)
20752 (output_base, output_table, output_check): Use it.
20754 2000-10-02 Akim Demaille <akim@epita.fr>
20756 * src/output.c (output): Topological sort of the functions, in
20757 order to get rid of the `static' prototypes.
20758 No longer use `register'.
20759 * src/output.h: New file.
20760 Propagate its inclusion in files explicitly prototyping functions
20763 2000-09-21 Akim Demaille <akim@epita.fr>
20765 * src/atgeneral.m4: Update from Autoconf.
20767 2000-09-21 Akim Demaille <akim@epita.fr>
20769 * src/closure.h: New file.
20770 * src/closure.c: Formatting changes, topological sort over the
20771 functions, use of closure.h.
20772 (initialize_closure, finalize_closure): Rename as...
20773 (new_closure, free_closure): these. Adjust dependencies.
20774 * src/LR0.c: Formatting changes, topological sort, use of
20776 (initialize_states): Rename as...
20777 (new_states): this.
20778 * src/Makefile.am (noinst_HEADERS): Adjust.
20780 2000-09-20 Akim Demaille <akim@epita.fr>
20782 * src/acconfig.h: Don't protect config.h against multiple
20784 Don't define PARAMS.
20785 * src/system.h: Define PARAMS.
20786 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
20787 purpose of config.h. system.h must not try to fix wrong
20788 definitions in config.h.
20790 2000-09-20 Akim Demaille <akim@epita.fr>
20792 * src/derives.h: New file.
20793 * src/main.c, src/derives.h: Use it.
20794 Formatting changes.
20795 * src/Makefile.am (noinst_HEADERS): Adjust.
20797 2000-09-20 Akim Demaille <akim@epita.fr>
20799 * tests/atgeneral.m4: Update from Autoconf.
20800 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
20801 (AT_CHECK_CALC): New macros.
20802 Use these macros to test bison with options `', `--raw',
20803 `--debug', `--yacc', `--yacc --debug'.
20805 2000-09-19 Akim Demaille <akim@epita.fr>
20807 * src/output.c: Formatting changes.
20808 * src/machine.h: Remove, leaving its contents in...
20809 * src/system.h: here.
20811 Adjust all dependencies on stdio.h and machine.h.
20812 * src/getargs.h: New file.
20813 Let all `extern' declarations about getargs.c be replaced with
20814 inclusion of `getargs.h'.
20815 * src/Makefile.am (noinst_HEADERS): Adjust.
20817 * tests/calc.m4 (yyin): Be initialized in main, not on the global
20819 (yyerror): Returns void, not int.
20820 * doc/bison.texinfo: Formatting changes.
20822 2000-09-19 Akim Demaille <akim@epita.fr>
20824 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
20827 2000-09-18 Akim Demaille <akim@epita.fr>
20829 * configure.in: Append WARNING_CFLAGS to CFLAGS.
20830 * src/Makefile.am (INCLUDES): Don't.
20831 Be ready to fetch headers in lib/.
20833 2000-09-18 Akim Demaille <akim@epita.fr>
20835 * doc/bison.texinfo: Update the copyright.
20836 ANSIfy and GNUify the examples.
20837 Remove the old menu.
20839 2000-09-18 Akim Demaille <akim@epita.fr>
20841 First set of tests: use the `calc' example from the documentation.
20843 * src/bison.s1 (yyparse): Condition the code using `yytname' which
20844 is defined only when YYDEBUG is.
20845 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
20846 * src/files.c (tryopen, tryclose): Formatting changes.
20847 Move to the top and be static.
20848 * src/reader.c (read_signed_integer): Likewise.
20849 * tests/calc.m4: New file.
20850 * Makefile.am, suite.m4: Adjust.
20851 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
20853 2000-09-18 Akim Demaille <akim@epita.fr>
20855 Add support for an Autotest test suite for Bison.
20857 * m4/m4.m4, m4/atconfig.m4: New files.
20858 * m4/Makefile.am (EXTRA_DIST): Adjust.
20859 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
20861 * src/getargs.c: Display a more standard --version message.
20862 * src/reader.c (reader): Formatting changes.
20863 No longer depend upon VERSION_STRING.
20864 * configure.in: No longer use `dnl'.
20865 Set up the test suite and the new directory `tests/.
20866 (VERSION_STRING): Remove.
20868 2000-04-14 Akim Demaille <akim@epita.fr>
20870 * src/reader.c (copy_comment2): New function, same as former
20871 `copy_comment', but outputs into two FILE *.
20872 (copy_comment): Use it.
20873 (parse_union_decl): Use it.
20874 (get_type, parse_start_decl): Use the same `invalid' message.
20875 (parse_start_decl, parse_union_decl): Use the same `multiple'
20877 (parse_union_decl, copy_guard, copy_action): Use the same
20878 `unmatched' message.
20879 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
20881 2000-03-31 Akim Demaille <akim@epita.fr>
20883 * src/files.c (tryopen, tryclose): Move to the top.
20886 2000-03-31 Akim Demaille <akim@epita.fr>
20888 * src/main.c (main): Don't call `done', exit does it.
20890 2000-03-31 Akim Demaille <akim@epita.fr>
20892 * allocate.c: s/return (foo)/return foo/.
20893 * lalr.c: Likewise.
20895 * output.c: Likewise.
20896 * reader.c: Likewise.
20897 * symtab.c: Likewise.
20898 * vmsgetargs.c: Likewise.
20900 2000-03-31 Akim Demaille <akim@epita.fr>
20902 Clean up the error reporting functions.
20904 * src/report.c: New file.
20905 * src/report.h: Likewise.
20906 * src/Makefile.am: Adjust.
20907 * m4/error.m4: New file.
20908 * m4/Makefile.am: Adjust.
20909 * configure.in (jm_PREREQ_ERROR): Call it.
20910 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
20912 (fatal, fatals): Remove. All callers use complain.c::fatal.
20913 (warn, warni, warns, warnss, warnss): Remove. All callers use
20914 complain.c::complain.
20915 (toomany): Remove, use fatal instead.
20916 * src/files.c (done): No argument, use complain_message_count.
20917 * src/main.c (main): Register `done' to `atexit'.
20919 * src/getargs.c (usage): More `fputs', less `fprintf'.
20921 2000-03-28 Akim Demaille <akim@epita.fr>
20923 * lib/: New directory.
20924 * Makefile.am (SUBDIRS): Adjust.
20925 * configure.in: Adjust.
20926 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
20928 * src/alloca.c: Moved to lib/.
20929 * src/getopt.c: Likewise.
20930 * src/getopt1.c: Likewise.
20931 * src/getopt.h: Likewise.
20932 * src/ansi2knr.c: Likewise.
20933 * src/ansi2knr.1: Likewise.
20934 * src/Makefile.am: Adjust.
20935 * lib/Makefile.am: New file.
20937 2000-03-28 Akim Demaille <akim@epita.fr>
20939 * src/getargs.c (usage): Refresh the help message.
20941 2000-03-17 Akim Demaille <akim@epita.fr>
20943 * src/getopt1.c: Updated from textutils 2.0e
20944 * src/getopt.c: Likewise.
20945 * src/getopt.h: Likewise.
20947 2000-03-17 Akim Demaille <akim@epita.fr>
20949 * src/Makefile.am (bison.simple): Fix the awk program: quote only
20950 the file name, not the whole `#line LINE FILE'.
20952 2000-03-17 Akim Demaille <akim@epita.fr>
20954 On syntax errors, report the token on which we choked.
20956 * src/bison.s1 (yyparse): In the label yyerrlab, when
20957 YYERROR_VERBOSE, add yychar in msg.
20959 2000-03-17 Akim Demaille <akim@epita.fr>
20961 * src/reader.c (copy_at): New function.
20962 (copy_guard): Use it.
20963 (copy_action): Use it.
20965 2000-03-17 Akim Demaille <akim@epita.fr>
20967 Be kind to translators, save some useless translations.
20969 * src/main.c (banner): New function.
20970 (fatal_banner): Use it.
20971 (warn_banner): Use it.
20973 2000-03-17 Akim Demaille <akim@epita.fr>
20975 * src/reader.c (copy_definition): Use copy_string and
20976 copy_comment. Removed now unused `match', `ended',
20978 (copy_comment, copy_string): Moved, to be visible from
20981 2000-03-17 Akim Demaille <akim@epita.fr>
20983 * src/reader.c (copy_string): Declare `static inline'. No
20984 problems with inline, since it is checked by configure.
20985 (copy_comment): Likewise.
20987 2000-03-17 Akim Demaille <akim@epita.fr>
20989 * src/reader.c (packsymbols): Formatting changes.
20991 2000-03-17 Akim Demaille <akim@epita.fr>
20993 * src/reader.c (copy_comment): New function, factored out from:
20994 (copy_action): Use it. Removed now unused `match', `ended',
20996 (copy_guard): Likewise.
20998 2000-03-17 Akim Demaille <akim@epita.fr>
21000 * src/reader.c (copy_string): New function, factored out from:
21001 (copy_action): Use it.
21002 (copy_guard): Likewise.
21004 2000-03-17 Akim Demaille <akim@epita.fr>
21006 Change the handling of @s so that they behave exactly like $s.
21007 There is now a pseudo variable @$ (readble and writable), location
21008 of the lhs of the rule (by default ranging from the location of
21009 the first symbol of the rhs, to the location of the last symbol,
21010 or, if the rhs is empty, YYLLOC).
21012 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
21014 (yyparse): When providing a default semantic action, provide a
21015 default location action.
21016 (after the $): No longer change `*YYLSP', just stack YYLOC the
21017 same way you stack YYVAL.
21018 * src/reader.c (read_declarations): Use warns.
21019 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
21020 (copy_action, case '@'): Likewise.
21021 Use a standard error message, to save useless work from
21024 2000-03-17 Akim Demaille <akim@epita.fr>
21026 * src/bison.s1: Formatting and cosmetics changes.
21027 * src/reader.c: Likewise.
21028 Update the Copyright notice.
21030 2000-03-17 Akim Demaille <akim@epita.fr>
21032 * src/bison.s1 (#line): All set to `#line' only, since the
21033 Makefile now handles them.
21035 2000-03-16 Akim Demaille <akim@epita.fr>
21037 * src/output.c (output_rule_data): Output the documentation of
21038 some of the tables.
21039 (Copyright notice): Update.
21040 Formatting changes.
21042 2000-03-16 Akim Demaille <akim@epita.fr>
21044 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
21045 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
21046 One `#if YYDEBUG' remains, since it uses variables which are
21047 defined only if `YYDEBUG != 0'.
21049 2000-03-16 Akim Demaille <akim@epita.fr>
21051 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
21052 and related variables so that the similarities are highlighted.
21054 2000-03-16 Akim Demaille <akim@epita.fr>
21056 * src/bison.s1: Properly indent CPP directives.
21058 2000-03-16 Akim Demaille <akim@epita.fr>
21060 * src/bison.s1: Properly indent the `alloca' CPP section.
21062 2000-03-16 Akim Demaille <akim@epita.fr>
21064 Do not hard code values of directories in `configure.in'.
21065 Update the `configure' tool chain.
21067 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
21069 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
21070 (AC_OUTPUT): Add m4/Makefile.
21071 Bump to bison 1.28a, 1.29 has never been released.
21072 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
21073 handled via src/Makefile.am.
21074 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
21075 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
21077 * Makefile.am (SUBDIRS): Add m4.
21078 (ACLOCAL_AM_FLAGS): New variable.
21079 (AUTOMAKE_OPTIONS): Add check-news.
21080 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
21081 the proper line number and file name.
21082 (DEFS): Propagate the location of bison library files and of the
21084 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
21086 * acinclude.m4: Remove, replaced by the directory m4.
21087 * m4/Makefile.am (EXTRA_DIST): New variable.
21088 * m4/gettext.m4: New file, from the fileutils.
21089 * m4/lcmessage.m4: Likewise
21090 * m4/progtest.m4: Likewise.
21091 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
21093 2000-03-10 Akim Demaille <akim@epita.fr>
21096 Formatting changes of various comments.
21097 Respect the GNU coding standards at various places.
21098 Don't use `_()' when no translation is needed.
21100 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21103 OS/2 honors TMPDIR environment variable.
21105 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21107 * doc/bison.texinfo: Tweaked spelling and grammar.
21109 Removed reference to price of printed copy.
21110 Mention BISON_SIMPLE and BISON_HAIRY.
21112 1999-12-13 Jesse Thilo <jthilo@gnu.org>
21114 * configure.in, NEWS:
21115 Bison 1.29 released.
21117 1999-10-27 Jesse Thilo <jthilo@gnu.org>
21119 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
21120 Added reference card.
21122 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21124 * po/ru.po: Added Russian translation.
21126 1999-07-26 Jesse Thilo <jthilo@gnu.org>
21128 * configure.in: Added Russian translation.
21130 1999-07-06 Jesse Thilo <jthilo@gnu.org>
21132 * configure.in, NEWS, README:
21133 Released version 1.28.
21135 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21138 Squashed redefinition warning on some systems.
21140 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
21141 Have configure build version string instead of relying on ANSI string
21144 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21146 * po/POTFILES.in: Got rid of version.c.
21148 1999-06-14 Jesse Thilo <jthilo@gnu.org>
21150 * acconfig.h, configure.in:
21151 Have configure build version string instead of relying on ANSI string
21154 1999-06-08 Jesse Thilo <jthilo@gnu.org>
21157 Dropped mention of `+' for long-named options.
21159 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21161 * src/files.c: Added <unistd.h> for unlink().
21163 * src/Makefile.am, src/system.h:
21166 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21168 * README: Added a FAQ list.
21170 * configure.in, acconfig.h:
21173 1999-05-30 Jesse Thilo <jthilo@gnu.org>
21175 * doc/FAQ, doc/Makefile.am:
21178 1999-05-19 Jesse Thilo <jthilo@gnu.org>
21180 * src/alloc.h, src/symtab.h, src/version.c:
21181 Protected inclusion of "config.h" with HAVE_CONFIG_H.
21183 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21185 * src/.cvsignore, src/Makefile.am:
21186 Reorganized: sources in `src', documentation in `doc'.
21188 * src/lex.c (literalchar):
21189 fixed the code for escaping double quotes (thanks
21192 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21194 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
21195 Adjusted paths to reflect directory reorganization.
21197 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21199 * doc/.cvsignore, doc/Makefile.am:
21200 Reorganized: sources in `src', documentation in `doc'.
21202 1999-04-18 Jesse Thilo <jthilo@gnu.org>
21205 Updated AC_INIT file to reflect directory reorganization.
21207 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
21208 Reorganized: sources in `src', documentation in `doc'.
21210 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21213 Don't declare calloc() and realloc() if not necessary.
21215 1999-04-13 Jesse Thilo <jthilo@gnu.org>
21217 * configure.in, acconfig.h, acinclude.m4:
21218 Don't declare calloc() and realloc() if not necessary.
21220 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21222 * po/.cvsignore: Added i18n support.
21224 1999-03-23 Jesse Thilo <jthilo@gnu.org>
21226 * acconfig.h, configure.in, Makefile.am:
21227 Added i18n support.
21229 1999-03-22 Jesse Thilo <jthilo@gnu.org>
21231 * src/bison.s1: Fixed #line numbers.
21233 1999-03-15 Jesse Thilo <jthilo@gnu.org>
21235 * po/es.po, po/fr.po, po/nl.po, po/de.po:
21236 Added PO files from Translation Project.
21238 1999-03-03 Jesse Thilo <jthilo@gnu.org>
21241 Added support for non-ANSI compilers (ansi2knr).
21243 1999-02-16 Jesse Thilo <jthilo@gnu.org>
21245 * configure.in: Bumped version number to 1.27.
21248 Added `bison.simple' to list of files removed by `make distclean'.
21250 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21252 * src/files.c, src/files.h:
21253 Defined locations of parser files in config.h instead of Makefile.
21255 1999-02-12 Jesse Thilo <jthilo@gnu.org>
21257 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
21258 Defined locations of parser files in config.h instead of Makefile.
21260 1999-02-09 Jesse Thilo <jthilo@gnu.org>
21263 Removed inappropriate use of $< macro.
21265 1999-02-05 Jesse Thilo <jthilo@gnu.org>
21267 * po/Makefile.in.in, po/POTFILES.in:
21268 Add `po' directory skeleton.
21270 1999-01-27 Jesse Thilo <jthilo@gnu.org>
21272 * README: Document help-bison list.
21274 * configure.in: Add check for mkstemp().
21276 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21278 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
21279 Hush a few compiler warnings.
21282 Add tryclose(), which verifies that fclose was successful.
21283 Hush a couple of compiler warnings.
21285 1999-01-20 Jesse Thilo <jthilo@gnu.org>
21287 * Makefile.am, OChangeLog:
21288 ChangeLog is now automatically generated. Include the old version as
21291 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21293 * src/gram.h, src/lalr.c, src/lex.c, src/lex.h, src/machine.h, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reader.c, src/reduce.c, src/state.h, src/symtab.c, src/symtab.h, src/types.h, src/vmsgetargs.c, src/warshall.c, src/allocate.c, src/alloc.h, src/bison.s1, src/closure.c, src/conflicts.c, src/derives.c, src/files.c, src/files.h, src/getargs.c, src/gram.c, src/LR0.c:
21294 Update FSF address.
21296 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21298 * doc/bison.texinfo: Fix formatting glitch.
21300 * doc/bison.texinfo: Update FSF address.
21302 1999-01-14 Jesse Thilo <jthilo@gnu.org>
21304 * acconfig.h: Update FSF address.
21306 1999-01-08 Jesse Thilo <jthilo@gnu.org>
21309 Don't define PACKAGE here, since config.h defines it.
21311 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21313 * src/reader.c: Update copyright date.
21316 Ditch sprintf to statically-sized buffers in fatal/warn functions in
21317 favor of output directly to stderr (avoids buffer overruns).
21319 * src/reader.c: Some checks for premature EOF.
21321 * src/allocate.c, src/alloc.h, src/closure.c, src/conflicts.c, src/derives.c, src/getargs.c, src/gram.c, src/lalr.c, src/lex.c, src/LR0.c, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reduce.c, src/symtab.c, src/symtab.h, src/warshall.c:
21322 Use prototypes if the compiler understands them.
21324 * src/files.c: Honor TMPDIR on Unix hosts.
21325 Use prototypes if the compiler understands them.
21328 Fix a couple of buffer overrun bugs.
21329 Use prototypes if the compiler understands them.
21331 * src/system.h: Include unistd.h and ctype.h.
21332 Use #ifdef instead of #if for NLS symbols.
21334 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21336 * doc/bison.texinfo:
21337 Delete comment "consider using @set for edition number, etc..." since
21338 we now are doing so.
21340 1998-12-30 Jesse Thilo <jthilo@gnu.org>
21343 Use prototypes if the compiler understands them.
21345 * NEWS: Document 1.26 highlights.
21347 * Makefile.am: Require Automake 1.3 or later.
21350 Use prototypes if the compiler understands them.
21352 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21355 Use VERSION symbol from automake for version number.
21357 1998-12-29 Jesse Thilo <jthilo@gnu.org>
21359 * acconfig.h, configure.in, version.cin:
21360 Use VERSION symbol from automake for version number.
21362 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21365 Distribute original version of simple parser (bison.s1), not built
21366 version (bison.simple).
21368 1998-11-28 Jesse Thilo <jthilo@gnu.org>
21370 * doc/bison.texinfo: Add info dir entry.
21372 * doc/bison.texinfo:
21373 Let automake put version number into documentation.
21375 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21377 * src/bison.cld, src/build.com, src/vmshlp.mar:
21378 Add non-RCS files from /gd/gnu/bison.
21380 1998-11-26 Jesse Thilo <jthilo@gnu.org>
21383 Document the BISON_HAIRY and BISON_SIMPLE variables.
21385 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21387 * src/version.c: Build version.c automatically.
21390 Fix token numbering (used to start at 258, not 257).
21392 * src/system.h: Include config.h.
21394 * src/getargs.c: Update bug report address.
21396 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
21397 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
21399 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21402 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21404 * configure.in, version.cin:
21405 Build version.c automatically.
21407 * AUTHORS: Add AUTHORS file.
21409 * README: Update bug report address.
21412 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
21414 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
21415 Add automake stuff.
21417 1998-11-25 Jesse Thilo <jthilo@gnu.org>
21419 * doc/bison.texinfo: Clean up some formatting.
21421 1998-05-05 Richard Stallman <rms@gnu.org>
21423 * doc/bison.texinfo:
21424 Explain better why to make a pure parser.
21426 1998-01-05 Richard Stallman <rms@gnu.org>
21428 * src/files.c (openfiles):
21429 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
21430 find a temporary directory, if possible. Do not unlink files while
21433 1997-08-25 Richard Stallman <rms@gnu.org>
21435 * src/reader.c (stack_offset;):
21436 Change some warni to warns.
21438 * src/lex.c (literalchar): Use warns, not warni.
21440 1997-06-28 Richard Stallman <rms@gnu.org>
21442 * src/bison.s1: Add a Bison version comment.
21444 * src/main.c (fatal, warn, berror):
21447 1997-06-28 Richard Stallman <rms@gnu.org>
21449 * Makefile.in (bison_version): New variable.
21450 (dist): Use that variable.
21451 (bison.s1): Substitute the Bison version into bison.simple.
21453 * bison.simple: Add a Bison version comment.
21455 1997-06-18 Richard Stallman <rms@gnu.org>
21457 * src/main.c (fatal, warn, berror):
21458 Make error messages standard.
21459 (toomany): Improve error message text.
21461 * src/LR0.c, src/closure.c, src/conflicts.c, src/derives.c, src/files.c, src/lalr.c, src/lex.c, src/nullable.c, src/output.c, src/print.c, src/reader.c, src/reduce.c, src/symtab.c:
21462 new.h renamed to alloc.h.
21464 1997-06-18 Richard Stallman <rms@gnu.org>
21466 * Makefile.in: new.h renamed to alloc.h.
21468 1997-05-24 Richard Stallman <rms@gnu.org>
21470 * src/lex.c (literalchar):
21471 Fix the code for escaping \, " and '.
21473 (lex): Avoid trouble when there are many chars
21474 to discard in a char literal with just several chars in it.
21476 1997-05-17 Richard Stallman <rms@gnu.org>
21479 Use malloc, if using alloca is troublesome.
21480 (YYSTACK_USE_ALLOCA): New flag macro.
21481 Define it for some systems and compilers.
21482 (YYSTACK_ALLOC): New macro.
21483 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21484 If it was malloc'd, free it.
21486 1997-05-17 Richard Stallman <rms@gnu.org>
21489 Use malloc, if using alloca is troublesome.
21490 (YYSTACK_USE_ALLOCA): New flag macro.
21491 Define it for some systems and compilers.
21492 (YYSTACK_ALLOC): New macro.
21493 (yyparse): Use YYSTACK_ALLOC to allocate stack.
21494 If it was malloc'd, free it.
21496 1997-04-23 Richard Stallman <rms@gnu.org>
21499 (alloca) [__hpux]: Always define as __builtin_alloca.
21501 1997-04-23 Richard Stallman <rms@gnu.org>
21504 (alloca) [__hpux]: Always define as __builtin_alloca.
21506 1997-04-22 Richard Stallman <rms@gnu.org>
21509 [__hpux]: Include alloca.h (right for HPUX 10)
21510 instead of declaring alloca (right for HPUX 9).
21512 * src/bison.s1 (__yy_memcpy):
21513 Declare arg `count' as unsigned int.
21514 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21516 1997-04-22 Richard Stallman <rms@gnu.org>
21519 [__hpux]: Include alloca.h (right for HPUX 10)
21520 instead of declaring alloca (right for HPUX 9).
21522 * bison.simple (__yy_memcpy):
21523 Declare arg `count' as unsigned int.
21524 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
21526 1997-01-03 Richard Stallman <rms@gnu.org>
21528 * src/allocate.c: [__STDC__ or _MSC_VER]:
21529 Declare calloc and realloc to return void *.
21531 1997-01-02 Richard Stallman <rms@gnu.org>
21534 [_MSC_VER]: Include stdlib.h and process.h.
21535 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
21537 * src/main.c (main): Return FAILURE as a value.
21538 (printable_version): Declare arg as int, not char.
21540 1997-01-02 Richard Stallman <rms@gnu.org>
21542 * Makefile.in (dist):
21543 Explicitly check for symlinks, and copy them.
21545 1996-12-19 Richard Stallman <rms@gnu.org>
21548 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
21550 1996-12-18 Paul Eggert <eggert@gnu.org>
21552 * src/bison.s1 (yyparse):
21553 If __GNUC__ and YYPARSE_PARAM are both defined,
21554 declare yyparse to have a void * argument.
21556 1996-12-18 Paul Eggert <eggert@gnu.org>
21558 * bison.simple (yyparse):
21559 If __GNUC__ and YYPARSE_PARAM are both defined,
21560 declare yyparse to have a void * argument.
21562 1996-12-17 Richard Stallman <rms@gnu.org>
21564 * src/reduce.c (nbits): Add some casts.
21566 1996-08-12 Richard Stallman <rms@gnu.org>
21568 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
21570 1996-08-12 Richard Stallman <rms@gnu.org>
21572 * bison.simple: Test _MSDOS as well as _MSDOS_.
21574 1996-07-31 Richard Stallman <rms@gnu.org>
21577 [__sun && __i386]: Include alloca.h.
21579 1996-07-31 Richard Stallman <rms@gnu.org>
21582 [__sun && __i386]: Include alloca.h.
21584 1996-07-30 Richard Stallman <rms@gnu.org>
21586 * src/bison.s1: Comment change.
21588 * src/bison.s1: Test _MSDOS_, not MSDOS.
21590 1996-07-30 Richard Stallman <rms@gnu.org>
21592 * bison.simple: Comment change.
21594 * bison.simple: Test _MSDOS_, not MSDOS.
21596 1996-06-01 Richard Stallman <rms@gnu.org>
21598 * src/reduce.c, src/reader.c, src/print.c, src/output.c, src/nullable.c, src/lex.c, src/lalr.c, src/getargs.c, src/derives.c, src/conflicts.c, src/closure.c, src/allocate.c:
21599 Insert `_' macro around many string constants.
21602 Insert `_' macro around many string constants.
21604 (main): Call setlocale, bindtextdomain and textdomain.
21606 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
21607 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
21608 [ENABLE_NLS]: Include libintl.h.
21609 [ENABLE_NLS] (gettext): Define.
21610 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
21611 (N_, PACKAGE, LOCALEDIR): New macros.
21613 1996-06-01 Richard Stallman <rms@gnu.org>
21615 * POTFILES.in: New file.
21617 * Makefile.in (allocate.o):
21618 Define target explicitly.
21620 * Makefile.in (CFLAGS): Set to @CFLAGS@.
21621 (LDFLAGS): Set to @LDFLAGS@.
21622 (configure): Run autoconf only if preceding `cd' succeeds.
21623 (bison.s1): Redirect output to temporary file then move the
21624 temporary to the target, rather than redirecting directly to bison.s1.
21625 (clean): Remove config.status and config.log.
21626 (distclean): Don't remove config.status here.
21628 1996-05-12 Richard Stallman <rms@gnu.org>
21631 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21633 1996-05-12 Richard Stallman <rms@gnu.org>
21636 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
21638 1996-05-11 Richard Stallman <rms@gnu.org>
21640 * src/bison.s1 (__yy_memcpy):
21641 Really reorder the args, as was supposedly done on Feb 14 1995.
21642 (yyparse): Calls changed accordingly.
21644 1996-05-11 Richard Stallman <rms@gnu.org>
21646 * Makefile.in (dist): Don't use $(srcdir).
21648 * bison.simple (__yy_memcpy):
21649 Really reorder the args, as was supposedly done on Feb 14 1995.
21650 (yyparse): Calls changed accordingly.
21652 1996-01-27 Richard Stallman <rms@gnu.org>
21654 * src/output.c (output_rule_data):
21655 Test YYERROR_VERBOSE in the conditional
21656 around the definition of ttyname.
21658 1995-12-29 Richard Stallman <rms@gnu.org>
21661 Fix line numbers in #line commands.
21663 1995-12-29 Richard Stallman <rms@gnu.org>
21666 Fix line numbers in #line commands.
21668 1995-12-27 Richard Stallman <rms@gnu.org>
21670 * src/bison.s1 (YYPARSE_PARAM_DECL):
21671 In C++, make it always null.
21672 (YYPARSE_PARAM_ARG): New macro.
21673 (yyparse): Use YYPARSE_PARAM_ARG.
21675 1995-12-27 Richard Stallman <rms@gnu.org>
21677 * bison.simple (YYPARSE_PARAM_DECL):
21678 In C++, make it always null.
21679 (YYPARSE_PARAM_ARG): New macro.
21680 (yyparse): Use YYPARSE_PARAM_ARG.
21682 1995-11-29 Richard Stallman <rms@gnu.org>
21684 * doc/bison.texinfo:
21685 Describe literal string tokens, %raw, %no_lines, %token_table.
21687 1995-11-29 Daniel Hagerty <hag@gnu.org>
21689 * doc/bison.texinfo: Fixed update date
21691 1995-10-16 Richard Stallman <rms@gnu.org>
21693 * src/version.c: Version 1.25.
21695 1995-10-16 Richard Stallman <rms@gnu.org>
21697 * NEWS: *** empty log message ***
21699 1995-10-16 Richard Stallman <rms@gnu.org>
21701 * doc/bison.1, doc/bison.rnh:
21704 1995-10-15 Richard Stallman <rms@gnu.org>
21706 * src/vmsgetargs.c, src/getargs.c:
21707 Added -n, -k, and -raw switches.
21708 (noparserflag, toknumflag, rawtoknumflag): New variables.
21710 * src/symtab.h (SALIAS):
21711 New #define for adding aliases to %token.
21712 (struct bucket): Added `alias' field.
21714 * src/reduce.c (reduce_grammar):
21715 Revise error message.
21716 (print_notices): Remove final `.' from error message.
21718 * src/reader.c (reader_output_yylsp):
21720 (readgram): Use `#if 0' around code that accepted %command
21721 inside grammar rules: The documentation doesn't allow it,
21722 and it will fail since the %command processors scan for the next %.
21723 (parse_token_decl): Extended the %token
21724 declaration to allow a multi-character symbol as an alias.
21725 (parse_thong_decl): New function.
21726 (read_declarations): Added %thong declarations.
21727 (read_declarations): Handle NOOP to deal with allowing
21728 % declarations as another means to specify the flags.
21729 (readgram): Allow %prec prior to semantics embedded in a rule.
21730 (skip_to_char, read_declarations, copy_definition)
21731 (parse_token_decl, parse_start_decl, parse_type_decl)
21732 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
21733 (get_type_name, copy_guard, copy_action, readgram)
21734 (get_type, packsymbols): Revised most error messages.
21735 Changed `fatal' to `warnxxx' to avoid aborting for error.
21736 Revised and use multiple warnxxx functions to avoid using VARARGS1.
21737 (read_declarations): Improve the error message for
21738 an invalid character. Do not abort.
21739 (read_declarations, copy_guard, copy_action): Use
21740 printable_version to avoid unprintable characters in printed output.
21741 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
21742 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
21743 Allow the type of a non-terminal can be given
21744 more than once, as long as all specifications give the same type.
21747 (output_headers, output_trailers, output, output_gram)
21748 (output_rule_data): Implement noparserflag variable.
21749 Implement toknumflag variable.
21750 (output): Call reader_output_yylsp to output LTYPESTR.
21752 * src/main.c (main):
21753 If reader sees an error, don't process the grammar.
21754 (fatals): Updated to not use VARARGS1.
21755 (printable_version, int_to_string, warn, warni, warns, warnss)
21756 (warnsss): New error reporting functions. Avoid abort for error.
21759 Added THONG and NOOP for alias processing.
21760 Added SETOPT for the new code that allows setting options with %flags.
21763 Include getopt.h. Add some extern decls.
21764 (safegetc): New function to deal with EOF gracefully.
21765 (literalchar); new function to deal with reading \ escapes.
21766 (lex): Use literalchar.
21767 (lex): Implemented "..." tokens.
21768 (literalchar, lex, parse_percent_token): Made tokenbuffer
21769 always contain the token. This includes growing the token
21770 buffer while reading an integer.
21771 (parse_percent_token): Replaced if-else statement with percent_table.
21772 (parse_percent_token): Added % declarations as another
21773 way to specify the flags -n, -l, and -r. Also added hooks for
21774 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
21775 major changes to files.c.
21776 (lex) Retain in the incoming stream a character following
21778 (skip_white_space, lex): Revised most error messages
21779 and changed fatal to warn to avoid aborting.
21780 (percent_table): Added %thong declarations.
21782 * src/gram.h: Comment changes.
21784 * src/files.c (openfiles, open_extra_files, done):
21786 and actfile file. Handle noparserflag. Both for -n switch.
21788 * src/conflicts.c (resolve_sr_conflict):
21789 Remove use of alloca.
21791 1995-06-01 Jim Meyering <meyering@gnu.org>
21793 * doc/bison.texinfo: *** empty log message ***
21795 1995-05-06 Richard Stallman <rms@gnu.org>
21797 * src/bison.s1: Comment change.
21799 1995-05-06 Richard Stallman <rms@gnu.org>
21801 * bison.simple: Comment change.
21803 1995-05-03 Richard Stallman <rms@gnu.org>
21805 * src/version.c: Version now 1.24.
21807 * src/bison.s1: Change distribution terms.
21809 * src/version.c: Version now 1.23.
21811 1995-05-03 Richard Stallman <rms@gnu.org>
21813 * doc/bison.texinfo:
21814 Rewrite "Conditions for Using Bison".
21815 Update version to 1.24.
21817 1995-05-03 Richard Stallman <rms@gnu.org>
21819 * bison.simple: Change distribution terms.
21821 1995-02-23 Richard Stallman <rms@gnu.org>
21823 * src/files.c: Test __VMS_POSIX as well as VMS.
21825 1995-02-14 Jim Meyering <meyering@gnu.org>
21827 * src/bison.s1 (__yy_memcpy):
21828 Renamed from __yy_bcopy to avoid
21829 confusion. Reverse FROM and TO arguments to be consistent with
21832 1995-02-14 Jim Meyering <meyering@gnu.org>
21834 * bison.simple (__yy_memcpy):
21835 Renamed from __yy_bcopy to avoid
21836 confusion. Reverse FROM and TO arguments to be consistent with
21839 1994-11-10 David J. MacKenzie <djm@gnu.org>
21845 * Makefile.in (DISTFILES): Include NEWS.
21847 * Makefile.in (DISTFILES):
21848 Include install-sh, not install.sh.
21850 * configure.in: Update to Autoconf v2 macro names.
21852 1994-10-05 David J. MacKenzie <djm@gnu.org>
21854 * Makefile.in: fix typo
21856 * Makefile.in (prefix, exec_prefix):
21857 Let configure set them.
21859 1994-09-28 David J. MacKenzie <djm@gnu.org>
21861 * Makefile.in: Set datadir to $(prefix)/share.
21863 1994-09-15 Richard Stallman <rms@gnu.org>
21866 Update copyright notice and GPL version.
21868 1994-09-15 Richard Stallman <rms@gnu.org>
21871 Update copyright notice and GPL version.
21873 1994-07-12 Richard Stallman <rms@gnu.org>
21875 * src/reduce.c, src/reader.c:
21878 1994-05-05 David J. MacKenzie <djm@gnu.org>
21880 * Makefile.in: entered into RCS
21882 1994-03-26 Richard Stallman <rms@gnu.org>
21884 * src/bison.s1: entered into RCS
21886 1994-03-26 Richard Stallman <rms@gnu.org>
21888 * bison.simple: entered into RCS
21890 1994-03-25 Richard Stallman <rms@gnu.org>
21892 * src/main.c: entered into RCS
21894 1994-03-24 Richard Stallman <rms@gnu.org>
21896 * src/conflicts.c: entered into RCS
21898 1994-01-02 Richard Stallman <rms@gnu.org>
21900 * Makefile.in: *** empty log message ***
21902 1993-11-21 Richard Stallman <rms@gnu.org>
21904 * src/bison.s1: *** empty log message ***
21906 1993-11-21 Richard Stallman <rms@gnu.org>
21908 * doc/bison.texinfo: entered into RCS
21910 * doc/bison.texinfo: *** empty log message ***
21912 1993-11-21 Richard Stallman <rms@gnu.org>
21914 * bison.simple: *** empty log message ***
21916 1993-10-25 David J. MacKenzie <djm@gnu.org>
21918 * doc/bison.texinfo: *** empty log message ***
21920 1993-10-19 Richard Stallman <rms@gnu.org>
21922 * src/bison.s1: *** empty log message ***
21924 1993-10-19 Richard Stallman <rms@gnu.org>
21926 * bison.simple: *** empty log message ***
21928 1993-10-14 Richard Stallman <rms@gnu.org>
21930 * src/bison.s1: *** empty log message ***
21932 1993-10-14 Richard Stallman <rms@gnu.org>
21934 * bison.simple: *** empty log message ***
21936 1993-09-14 David J. MacKenzie <djm@gnu.org>
21938 * doc/bison.texinfo: *** empty log message ***
21940 1993-09-13 Noah Friedman <friedman@gnu.org>
21942 * Makefile.in: *** empty log message ***
21944 1993-09-10 Richard Stallman <rms@gnu.org>
21946 * src/conflicts.c: *** empty log message ***
21948 * src/system.h: entered into RCS
21950 1993-09-10 Richard Stallman <rms@gnu.org>
21952 * doc/bison.1: entered into RCS
21954 1993-09-06 Noah Friedman <friedman@gnu.org>
21956 * src/version.c: entered into RCS
21958 1993-09-06 Noah Friedman <friedman@gnu.org>
21960 * Makefile.in: *** empty log message ***
21962 1993-07-30 David J. MacKenzie <djm@gnu.org>
21964 * Makefile.in: *** empty log message ***
21966 1993-07-24 Richard Stallman <rms@gnu.org>
21968 * src/bison.s1: *** empty log message ***
21970 1993-07-24 Richard Stallman <rms@gnu.org>
21972 * bison.simple: *** empty log message ***
21974 1993-07-08 David J. MacKenzie <djm@gnu.org>
21976 * Makefile.in: *** empty log message ***
21978 1993-07-04 Richard Stallman <rms@gnu.org>
21980 * src/bison.s1: *** empty log message ***
21982 1993-07-04 Richard Stallman <rms@gnu.org>
21984 * bison.simple: *** empty log message ***
21986 1993-06-26 David J. MacKenzie <djm@gnu.org>
21988 * src/getargs.c: entered into RCS
21990 1993-06-26 David J. MacKenzie <djm@gnu.org>
21992 * doc/bison.texinfo: *** empty log message ***
21994 * doc/bison.1: New file.
21996 1993-06-25 Richard Stallman <rms@gnu.org>
21998 * src/getargs.c: New file.
22000 1993-06-16 Richard Stallman <rms@gnu.org>
22002 * src/bison.s1: *** empty log message ***
22004 1993-06-16 Richard Stallman <rms@gnu.org>
22006 * bison.simple: *** empty log message ***
22008 1993-06-03 Richard Stallman <rms@gnu.org>
22010 * src/bison.s1: New file.
22012 1993-06-03 Richard Stallman <rms@gnu.org>
22014 * doc/bison.texinfo: *** empty log message ***
22016 1993-06-03 Richard Stallman <rms@gnu.org>
22018 * bison.simple: New file.
22020 1993-05-19 Richard Stallman <rms@gnu.org>
22022 * doc/bison.texinfo: New file.
22024 1993-05-07 Noah Friedman <friedman@gnu.org>
22026 * Makefile.in: *** empty log message ***
22028 1993-04-28 Noah Friedman <friedman@gnu.org>
22030 * src/reader.c: *** empty log message ***
22032 1993-04-23 Noah Friedman <friedman@gnu.org>
22034 * src/alloc.h: entered into RCS
22036 1993-04-20 David J. MacKenzie <djm@gnu.org>
22038 * src/version.c: *** empty log message ***
22040 * src/files.c, src/allocate.c:
22043 * src/reader.c: *** empty log message ***
22045 * src/lex.c: entered into RCS
22047 * src/conflicts.c: New file.
22049 * src/symtab.c: entered into RCS
22051 * src/alloc.h: New file.
22053 * src/LR0.c: entered into RCS
22055 1993-04-18 Noah Friedman <friedman@gnu.org>
22057 * src/reader.c: New file.
22059 * src/version.c: *** empty log message ***
22061 1993-04-18 Noah Friedman <friedman@gnu.org>
22063 * Makefile.in: *** empty log message ***
22065 1993-04-17 Noah Friedman <friedman@gnu.org>
22067 * Makefile.in: *** empty log message ***
22069 1993-04-15 Richard Stallman <rms@gnu.org>
22071 * src/main.c, src/files.c:
22074 1993-04-15 Noah Friedman <friedman@gnu.org>
22076 * configure.in: entered into RCS
22078 * configure.in: *** empty log message ***
22080 * configure.in: New file.
22082 1993-04-14 Richard Stallman <rms@gnu.org>
22084 * Makefile.in: New file.
22086 1993-04-13 Richard Stallman <rms@gnu.org>
22088 * src/version.c: New file.
22090 1993-03-25 Richard Stallman <rms@gnu.org>
22092 * src/output.c: entered into RCS
22094 1992-09-25 Richard Stallman <rms@gnu.org>
22096 * configure.bat: entered into RCS
22098 1992-06-22 Richard Stallman <rms@gnu.org>
22100 * src/vmsgetargs.c: entered into RCS
22102 1992-06-22 Richard Stallman <rms@gnu.org>
22104 * doc/bison.rnh: entered into RCS
22106 1992-04-20 David J. MacKenzie <djm@gnu.org>
22108 * README: entered into RCS
22110 1992-01-22 Richard Stallman <rms@gnu.org>
22112 * src/machine.h: entered into RCS
22114 1991-12-21 Richard Stallman <rms@gnu.org>
22116 * src/lalr.c, src/closure.c:
22119 1991-12-20 Richard Stallman <rms@gnu.org>
22121 * src/state.h: entered into RCS
22123 1991-12-18 Richard Stallman <rms@gnu.org>
22125 * src/print.c, src/nullable.c, src/derives.c:
22128 1991-11-03 David J. MacKenzie <djm@gnu.org>
22130 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
22133 1988-09-09 Richard Stallman <rms@gnu.org>
22135 * src/bison.hairy: entered into RCS
22137 1987-12-16 Richard Stallman <rms@gnu.org>
22139 * REFERENCES: entered into RCS
22144 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
22145 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
22146 2007, 2008, 2009 Free Software Foundation, Inc.
22148 Copying and distribution of this file, with or without
22149 modification, are permitted provided the copyright notice and this
22150 notice are preserved.