1 2009-08-08 Alex Rozenman <rozenman@gmail.com>
3 Convert "misleading reference" messages to warnings.
4 * src/scan-code.l: New function 'show_sub_messages', more
6 * tests/named-ref.at: Adjust tests.
8 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
10 maint: run "make update-copyright"
12 2009-08-06 Joel E. Denny <jdenny@clemson.edu>
14 maint: make update-b4-copyright easier to use
15 * build-aux/update-b4-copyright: In warnings, report line
16 numbers rather than character positions.
17 * cfg.mk (update-copyright-local): Set to update-b4-copyright so
18 that update-copyright runs it.
21 2009-08-05 Joel E. Denny <jdenny@clemson.edu>
23 maint: clean up update-b4-copyright code
24 * build-aux/update-b4-copyright: Do not accept 2-digit
25 UPDATE_COPYRIGHT_YEAR, which was not handled correctly.
26 Don't accept a `[' in a b4_copyright argument.
27 Format code more consistently.
28 Don't assume b4*copyright never occurs.
30 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
32 maint: automate b4_copyright updates.
33 * Makefile.am (update-b4-copyright): New target rule.
34 * build-aux/local.mk (EXTRA_DIST): Add update-b4-copyright.
35 * build-aux/update-b4-copyright: New.
36 * data/yacc.c: Remove stray characters around b4_copyright
39 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
41 maint: automate annual package-wide copyright-year update.
42 * .x-update-copyright: New.
43 * Makefile.am (EXTRA_DIST): Remove maint.mk.
44 * bootstrap.conf (gnulib_modules): Add maintainer-makefile and
45 update-copyright. Remove gnumakefile, which is implied by
47 * cfg.mk (bootstrap-tools): Copy from old maint.mk.
49 * maint.mk: Remove, now copied from gnulib.
50 * examples/extexi: Add missing "(C)" in copyright statement so
51 update-copyright can recognize it.
52 * src/LR0.h: Likewise.
53 * src/print.h: Likewise.
54 * src/print_graph.h: Likewise.
55 * src/gram.c: Add missing comma in copyright statement.
56 * src/gram.h: Likewise.
58 2009-08-04 Joel E. Denny <jdenny@clemson.edu>
61 * examples/calc++/Makefile.am: Say $(srcdir)/calc.stamp instead
64 2009-08-01 Joel E. Denny <jdenny@clemson.edu>
66 Pacify "gcc -Wunused" for the input function from Flex.
67 Reported by Alex Rozenman. This warning shows up with gcc-4.3.0
69 * src/scan-code.l: Add "%option noinput", which I cannot find in
70 the Flex manual, but which Flex has supported since at least as
71 far back as 2.5.4. However, if any of our developers still use
72 Flex 2.5.4, they'll need to stop configuring with
73 --enable-gcc-warnings because "%option noinput" didn't work
74 correctly until Flex 2.5.6.
75 * src/scan-gram.l: Likewise.
76 * src/scan-skel.l: Likewise.
78 2009-07-31 Alex Rozenman <rozenman@gmail.com>
80 Fix --enable-gcc-warnings problems.
81 * src/reader.c: Adjust variable names.
82 * src/scan-code.l: Fix prototypes and adjust names.
83 * src/named-ref.c: Remove redundant "if".
85 2009-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
87 Fix a --enable-gcc-warnings problem.
88 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Actually use length
91 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
93 Warn about character literals not of length one.
94 * NEWS (2.5): Document.
95 * src/scan-gram.l (INITIAL): Remove comment that we don't check
97 (SC_ESCAPED_CHARACTER): Warn if length is wrong.
98 * tests/input.at (Bad character literals): New test group.
100 2009-07-24 Alex Rozenman <rozenman@gmail.com>
102 Fix some memory leaks.
103 * src/named-ref.c: Add a pointer check (named_ref_free).
104 * src/scan-code.l: New function (variant_table_free). Called in
106 * src/symlist.c: Call to named_ref_free (symbol_list_free).
108 2009-07-24 Joel E. Denny <jdenny@ces.clemson.edu>
110 * src/lalr.c (state_lookahead_tokens_count): Correct comment.
112 2009-07-22 Joel E. Denny <jdenny@ces.clemson.edu>
114 Some M4 cleanup in the testsuite.
115 Suggested by Eric Blake at
116 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00083.html>.
117 * tests/existing.at (_AT_TEST_EXISTING_GRAMMAR): Do not
118 complicate the code by distinguishing between a missing value
119 and an empty string value for an optional argument. This fix is
120 allowed by the similar fix in AT_TEST_TABLES_AND_PARSE below.
121 * tests/local.at (_AT_TEST_TABLES_AND_PARSE): Merge into...
122 (AT_TEST_TABLES_AND_PARSE): ... this now that the special
123 arguments are not needed because of the following changes.
125 Bison developers should use GNU M4 and should not use
126 POSIXLY_CORRECT when building the test suite, so do not
127 complicate the code by avoiding $10 and above.
128 Do not quote an empty string value for an optional argument, and
129 do not distinguish between a missing value and an empty string
132 2009-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
134 Revert unnecessary column realignment in --help output.
135 Reported by Akim Demaille at
136 <http://lists.gnu.org/archive/html/bison-patches/2009-06/msg00010.html>.
137 * src/getargs.c (usage): Here.
139 2009-07-04 Alex Rozenman <rozenman@gmail.com>
141 Alphabetical order in src/local.mk.
142 * src/local.mk: Adjust.
144 2009-07-04 Alex Rozenman <rozenman@gmail.com>
146 Style changes and factoring.
147 * src/named-ref.h: Add comments.
148 * src/parse-gram.y: Readability and style changes.
149 * src/reader.c: Factoring: assign_named_ref function.
150 * src/scan-code.l: Factoring and style changes. Rename
151 parse_named_ref to parse_ref. Use "c-ctype.h" from gnulib.
152 Use "unsigned" type for variant index. Improve readablity.
153 * src/scan-gram.l: Change error messages and add comments.
154 * src/symlist.h: symbol_list_null: New function decl.
155 * src/symlist.c: symbol_list_null: Implement here.
156 * tests/named-refs.at: Adjust for new error messages.
158 2009-06-29 Eric Blake <ebb9@byu.net>
160 scan-code: avoid compiler warnings
161 * src/scan-code.l (parse_named_ref): Use correct specifiers.
163 2009-06-29 Akim Demaille <demaille@gostai.com>
165 build: avoid concurrent extraction of calc++.
166 * examples/calc++/Makefile.am (calc.stamp): New.
167 Depend on it to create the sources of calc++ so that concurrent
168 builds don't launch several "extexi" in parallel.
169 Not only this is inefficient, this also builds incorrect sources
170 with several extractions mixed together.
172 2009-06-29 Akim Demaille <demaille@gostai.com>
175 * data/bison.m4: Move code related to specific variables after the
176 definition of the variable-maintaining macros so that we don't
177 "invoke" b4_percent_define_check_values before it is defined.
179 2009-06-29 Akim Demaille <demaille@gostai.com>
181 variables: parse.error
183 Implement, document, and test the replacement of %error-verbose
184 by %define parse.error "verbose".
185 * data/bison.m4 (b4_error_verbose_if): Reimplement to track the
186 values of the parse.error variable.
187 Make "simple" its default value.
188 Check the valid values.
189 * src/parse-gram.y: Use %define parse.error.
190 (PERCENT_ERROR_VERBOSE): New token.
192 * src/scan-gram.l: Support %error-verbose.
194 * doc/bison.texinfo (Decl Summary): Replace the documentation of
195 %define error-verbose by that of %define parse.error.
198 * tests/actions.at, tests/calc.at: Use parse.error instead of
201 2009-06-27 Alex Rozenman <rozenman@gmail.com>
203 Implement support for named symbol references.
204 * src/parse-gram.y: Add new syntax (named_ref.opt).
205 * src/reader.c: Store named refs in symbol lists.
206 * src/reader.h: New argument for symbol_append and
207 action_append functions.
208 * src/scan-code.h: Add new field (named_ref) into
209 code_props data structure. Keeps named ref of midrule
211 * src/scan-code.l: Support for named refs in semantic
212 action code. New function 'parse_named_ref'.
213 * src/scan-gram.l: Support bracketed id.
214 * src/symlist.c: Store named refs in symbol lists.
215 * src/symlist.h: New field in symbol list: named_ref.
216 * src/named-ref.h: New file, a struct for named_ref.
217 * src/named-ref.cp: New file, named_ref_new function.
218 * src/local.mk: Add two new files.
219 * tests/testsuite.at: Include new test group:
220 * tests/named-refs.at: this new file.
222 2009-06-25 Akim Demaille <demaille@gostai.com>
224 hash: check insertion for memory exhaustion.
225 * src/uniqstr.c (uniqstr_new): New.
227 2009-06-24 Akim Demaille <demaille@gostai.com>
229 variables: rename namespace as api.namespace.
231 http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00033.html
233 * data/bison.m4 (b4_percent_define_copy_, b4_percent_define_copy):
235 (b4_percent_define_use): New.
236 Use it where applicable.
237 * data/c++.m4: Replace uses of the variable "namespace" by
239 Default the latter to the former.
240 * doc/bison.texinfo (Decl Summary): Document "namespace" as
242 Document api.namespace.
243 Use @samp to document %define uses, keep @code for identifiers.
245 * tests/c++.at, tests/input.at: Test api.namespace instead of
246 namespace. (The tests passed with namespace.)
248 2009-06-11 Akim Demaille <demaille@gostai.com>
251 * data/xslt/xml2dot.xsl, data/xslt/xml2xhtml.xsl: Space changes.
252 * src/print-xml.c: Style changes.
253 * tests/conflicts.at: Comment changes.
255 2009-06-11 Akim Demaille <demaille@gostai.com>
257 xml: beware of user strings used to give a %prec to rules.
258 * tests/conflicts.at (%prec with user strings): New.
259 * src/gram.c (grammar_rules_print_xml): Escape the precedence for
262 2009-06-11 Akim Demaille <demaille@gostai.com>
264 hash: check insertion for memory exhaustion.
265 * src/muscle-tab.c (muscle_insert, muscle_grow)
266 * src/state.c (state_hash_insert): Check the return value of
269 2009-06-11 Akim Demaille <demaille@gostai.com>
271 tests: honor TESTSUITEFLAGS in every check target.
272 * tests/local.mk (RUN_TESTSUITE): New.
273 (check-local, installcheck-local, maintainer-check-g++)
274 (maintainer-check-posix, maintainer-check-valgrind): Use it.
276 2009-06-10 Akim Demaille <demaille@gostai.com>
278 deterministic test suite.
279 Some consistency checks on symbols are performed after all the
280 symbols were read, by an iteration over the symbol table. This
281 traversal is nondeterministic, which can be a problem for test
284 Addresses another form of nondeterminism reported by Joel E. Denny.
285 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
287 * tests/input.at (Numbered tokens): Split the hexadecimal/decimal
289 Use different file names for the three tests to make the
292 2009-06-10 Akim Demaille <demaille@gostai.com>
295 * gnulib: Update to latest.
296 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore,
297 * m4/.gitignore: Regen.
298 * src/symtab.c (symbol_from_uniqstr, semantic_type_from_uniqstr):
299 Call xalloc_die on hash_insert failures.
300 Requested by the new __warn_unused_result__ attribute of
303 2009-06-10 Akim Demaille <demaille@gostai.com>
305 deterministic user-token-number redeclaration errors.
306 Address nondeterminism reported by Joel E. Denny.
307 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00023.html
309 * src/uniqstr.h: Comment changes.
310 * src/location.h (boundary_cmp, location_cmp): New.
311 * src/symtab.c (user_token_number_redeclaration): New.
312 (symbol_translation): Use it.
313 * tests/input.at (Numbered tokens): Adjust the expected output.
315 2009-05-25 Akim Demaille <demaille@gostai.com>
317 build: avoid ignored errors.
318 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Don't generate ignored
319 errors, they pollute the output.
321 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
323 Convert multiple variable definition warnings to complaints.
324 * NEWS (2.5): Add a new entry for that change.
325 * doc/bison.texinfo (Decl Summary): Update %define entry.
326 (Bison Options): Update -D/--define/-F/--force-define entry.
327 * src/muscle-tab.c (muscle_percent_define_insert): Implement.
328 * src/muscle-tab.h (muscle_percent_define_insert): Update
330 * tests/input.at (`%define errors'): Update.
331 (`%define, --define, --force-define'): Update.
333 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
335 -F/--force-define and relative %define/-D/--define priorities.
336 * NEWS (2.5): Add documentation to -D/--define entry.
337 * build-aux/cross-options.pl: Hard-code association of
338 --force-define with %define.
339 * doc/bison.texinfo (Decl Summary): In %define entry,
340 cross-reference command-line options.
341 (Bison Options): Add documentation to -D/--define entry.
342 (Option Cross Key): Widen column for --force-define row.
343 * src/getargs.c (usage): Document -F/--force-define. Realign
345 (short_options, long_options, getargs): Parse -F/--force-define,
346 and update muscle_percent_define_insert invocations.
347 * src/muscle-tab.h (muscle_percent_define_how): New enum type.
348 (muscle_percent_define_insert): Add argument with that type.
349 * src/muscle-tab.c (muscle_percent_define_insert): Implement
350 -F/--force-define behavior and priorities.
351 (muscle_percent_define_ensure): Update
352 muscle_percent_define_insert invocation.
353 * src/parse-gram.y (prologue_declaration): Update
354 muscle_percent_define_insert invocations.
355 * tests/input.at (`%define, --define'): Rename to...
356 (`%define, --define, --force-define'): ... this and extend.
358 2009-05-22 Joel E. Denny <jdenny@ces.clemson.edu>
360 Update some comments to make sense for -D.
361 * data/bison.m4 (b4_check_user_names): In header comments, say
362 "user occurrence" instead of "grammar occurrence".
363 * src/muscle-tab.h (muscle_percent_define_insert): Likewise.
364 (muscle_percent_code_grow): Likewise just for consistency.
366 2009-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
368 * data/c++.m4 (b4_namespace_close): Simplify slightly.
370 2009-05-19 Joel E. Denny <jdenny@ces.clemson.edu>
372 Handle a trailing `:' in a user-supplied C++ namespace better.
373 * data/c++.m4 (b4_namespace_close): Don't let it be printed
374 among the closing braces here. This fix might make the
375 generated code easier to debug, but otherwise it should be
376 insignificant because a trailing `:' is a C++ error already.
378 2009-05-19 Akim Demaille <demaille@gostai.com>
380 remove useless variable.
381 * src/getargs.c (skeleton_arg): Remove now useless variable.
382 Should help the compiler see that this printf-like call is sane.
384 2009-05-15 Akim Demaille <demaille@gostai.com>
386 Rename token.prefix as api.tokens.prefix.
388 http://lists.gnu.org/archive/html/bison-patches/2009-05/msg00024.html.
390 * NEWS, data/bison.m4, data/c.m4, data/java.m4, doc/bison.texinfo,
391 * tests/c++.at, tests/calc.at, tests/java.at, tests/local.at
392 (token.prefix): Rename as...
393 (api.tokens.prefix): this.
395 2009-05-11 Akim Demaille <demaille@gostai.com>
397 doc: use C++ headers.
398 * doc/bison.texinfo (Calc++ Scanner): Prefer C++ headers to C
401 2009-05-11 Akim Demaille <demaille@gostai.com>
404 * doc/bison.simple (Decl Summary): Document token.prefix.
405 (Calc++ Parser): Various fixes.
408 Introduce a macro TOKEN to shorten the code and make it more
410 (Calc++ Scanner): Adjust.
411 * NEWS (Variable token.prefix): New.
413 2009-05-04 Akim Demaille <demaille@gostai.com>
415 bison: catch bad symbol names.
416 * src/scan-gram.l({int}{id}): Report as an invalid identifier.
417 * tests/input.at: Adjust.
419 2009-05-04 Akim Demaille <demaille@gostai.com>
421 identifiers: dashes are letters.
422 Dashes can now start identifiers (symbols and directives).
424 * src/scan-gram.l ({letter}): Add dash.
426 * tests/input.at (Symbols): Adjust.
427 Remove stray comment.
428 * tests/regression.at (Invalid inputs): Adjust error message.
429 * doc/bison.texinfo (Symbols): Update.
431 2009-05-01 Joel E. Denny <jdenny@ces.clemson.edu>
433 Declare %code to be a permanent feature.
434 * NEWS (2.4.2): Here.
435 * doc/bison.texinfo (Prologue Alternatives): Don't say it's
437 (Decl Summary): Likewise.
439 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
441 Convert underscores to dashes in some %define variable names.
442 For now, just api.push-pull and lr.keep-unreachable-states.
443 Maintain old names for backward compatibility.
444 * NEWS (2.5): Document.
445 * data/c.m4 (b4_identification): Update comment.
446 * data/yacc.c: Update access.
447 * doc/bison.texinfo: Update.
448 * etc/bench.pl.in (bench_push_parser): Update use.
449 * src/files.c (tr): Move to...
450 * src/getargs.c, src/getargs.h (tr): ... here because I can't
451 think of a better place to expose it. My logic is that, for all
452 uses of tr so far, command-line arguments can be involved, and
453 getargs.h is already included.
454 * src/main.c (main): Update access.
455 * src/muscle_tab.c (muscle_percent_define_insert): Convert old
456 variable names to new variable names before assigning value.
457 * src/reader.c (reader): Update setting default.
458 * tests/calc.at: Update uses.
459 * tests/conflicts.at (Unreachable States After Conflict
460 Resolution): Update use.
461 * tests/input.at (%define enum variables): Update use.
462 (%define backward compatibility): New test group.
463 * tests/push.at: Update uses.
464 * tests/reduce.at: Update uses.
465 * tests/torture.at: Update uses.
467 2009-04-30 Joel E. Denny <jdenny@ces.clemson.edu>
469 Set all front-end %define defaults in one place.
470 * src/main.c (main): Move lr.keep_unreachable_states default...
471 * src/reader.c (reader): ... to here.
473 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
475 Rename lr.default_reductions to lr.default-reductions.
477 * doc/bison.texinfo: Here.
478 * src/lalr.c (initialize_LA): Here.
479 * src/print.c (print_reductions): Here.
480 * src/reader.c (reader): Here.
481 * src/tables.c (action_row): Here.
482 * tests/input.at (%define enum variables): Here.
483 * tests/reduce.at (AT_TEST_LR_DEFAULT_REDUCTIONS): Here.
485 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
487 Pacify ./configure --enable-gcc-warnings.
488 * tests/input.at (Symbols): Prototype yyerror and yylex.
490 2009-04-29 Joel E. Denny <jdenny@ces.clemson.edu>
492 Document how `%define "var" "value"' is not M4-friendly.
493 * src/parse-gram.y (variable): In comments here.
495 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
497 Clean up recent patches a little.
498 Reported by Akim Demaille.
499 * doc/bison.texinfo (Understanding): Fix typos.
500 * src/print.c (print_reductions): Don't use negated variable.
502 2009-04-24 Joel E. Denny <jdenny@ces.clemson.edu>
504 List accepted values for a %define enum variable with an invalid value.
505 Suggested by Akim Demaille at
506 <http://lists.gnu.org/archive/html/bison-patches/2009-04/msg00082.html>.
507 * data/bison.m4 (_b4_percent_define_check_values): Implement.
508 * src/muscle-tab.c (muscle_percent_define_check_values): Implement.
509 * tests/input.at (%define lr.default_reductions invalid values): Merge
511 (%define enum variables): ... here, and update output.
513 2009-04-23 Joel E. Denny <jdenny@ces.clemson.edu>
515 Rename "default rule" to "default reduction".
516 This includes changing variable names in code, changing
517 comments, and renaming %define lr.default_rules to %define
518 lr.default_reductions.
519 * NEWS (2.5): Update IELR documentation.
520 * data/bison.m4 (b4_integral_parser_tables_map): Adjust YYDEFACT
522 * data/glr.c, data/lalr1.java: Sync copyright dates.
523 * doc/bison.texinfo (Decl Summary): Adjust lr.default_reductions
524 and lr.type documentation. Make some other wording
526 (Glossary): Adjust cross-references and Default Reduction
528 * src/lalr.c (state_lookahead_tokens_count): Adjust code.
529 Remove a confusing comment pointed out by Akim Demaille.
530 (initialize_LA): Adjust code.
531 * src/print-xml.c (print_reductions): Adjust code.
532 * src/print.c (print_reductions): Adjust code.
533 * src/reader.c (reader): Adjust code.
534 * src/tables.c (action_row): Adjust code.
535 (token_actions): Adjust code.
536 * src/tables.h: Adjust YYDEFACT documentation.
537 * tests/input.at (%define lr.default_rules invalid values):
538 Rename test group to...
539 (%define lr.default_reductions invalid values): ... this, and
540 update grammar file and expected output.
541 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): Rename to...
542 (AT_TEST_LR_DEFAULT_REDUCTIONS): ... this, and update.
544 2009-04-21 Akim Demaille <demaille@gostai.com>
546 tests: check the use of dashes and periods in symbols.
547 * tests/input.at (Symbol): New test group.
549 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
551 Document %define lr.type and lr.default_rules.
552 * NEWS (2.5): Add an entry.
553 * src/getargs.c (usage): Mention IELR(1) and canonical LR(1)
554 besides just LALR(1) and GLR(1).
555 * doc/bison.texinfo (Introduction): Likewise.
556 (Language and Grammar): Bison is no longer limited to LALR(1)
558 (GLR parsing): Say deterministic or LR(1) rather than LALR(1)
559 when trying to distinguish from GLR. Talk about LR(1) grammars
560 rather than LALR(1) grammars.
561 (Decl Summary): In %define api.push_pull entry, say it applies
562 to deterministic parsers in C rather than LALR(1) parsers in C.
563 Add lr.default_rules entry.
565 (Mystery Conflicts): Bison is no longer limited to LALR(1)
567 (Generalized LR Parsing): Same changes as for the previous GLR
569 (Memory Management): Say deterministic rather than LALR(1).
570 (Understanding): Correct some bison output.
571 Index discussion of "accepting state".
572 Say deterministic rather than LALR(1).
573 (Bison Options): In --yacc entry, say deterministic rather than
575 In --report, --graph, and --xml entries, just don't mention
577 (C++ Parsers): Say deterministic rather than LALR(1).
578 (Table of Symbols): Likewise in YYSTACK_USE_ALLOCA entry.
579 (Glossary): Add Accepting State, Consistent State, Default Rule,
580 and IELR(1) definitions.
581 In Generalized LR (GLR) definition, make same changes as in
582 previous GLR sections.
583 In LALR(1) definition, say Bison uses LALR(1) by default rather
584 than implying Bison is limited to LALR(1).
585 (LocalWords): Add IELR.
587 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
589 Finish implementing %define lr.type.
590 Its value can be "LALR", "IELR", or "canonical LR".
591 * lib/timevar.def (TV_IELR_PHASE1): New var.
592 (TV_IELR_PHASE2): New var.
593 (TV_IELR_PHASE3): New var.
594 (TV_IELR_PHASE4): New var.
595 * src/Makefile.am (bison_SOURCES): Add AnnotationList.c,
596 AnnotationList.h, InadequacyList.c, InadequacyList.h, Sbitset.c,
597 Sbitset.h, ielr.h, and ielr.c.
598 * src/getargs.h, src/getargs.c (enum trace, trace_args,
599 trace_types): Add trace_ielr.
600 * src/lalr.h, src/lalr.c (ngotos): Export it.
602 (goto_follows): ... this, update all uses, and export it.
603 (set_goto_map): Export it.
604 (map_goto): Export it.
605 (compute_lookahead_tokens): Don't free goto_follows yet. Now
607 (initialize_LA): Export it. Move lookback allocation to...
608 (lalr): ... here because, for canonical LR, initialize_LA must
609 be invoked but lookback and much of the rest of LALR isn't
611 * main.c (main): Instead of lalr, invoke ielr, which invokes
613 * src/reader.c (reader): Default lr.type to "LALR".
614 Default lr.default_rules to "accepting" if lr.type is "canonical
615 LR". Leave the default as "all" otherwise.
616 Check for a valid lr.type value.
617 * src/state.h, src/state.c (struct state_list): Add state_list
619 (state_new): Initialize state_list member to NULL.
620 (state_new_isocore): New function, exported.
621 * tests/existing.at (AT_TEST_EXISTING_GRAMMAR): New macro that
622 exercises all values of lr.type.
623 (GNU AWK Grammar): Rename test group to...
624 (GNU AWK 3.1.0 Grammar): ... this, and extend to use
625 AT_TEST_EXISTING_GRAMMAR.
626 (GNU Cim Grammar): Extend to use AT_TEST_EXISTING_GRAMMAR.
627 (GNU pic Grammar): Rename test group to...
628 (GNU pic (Groff 1.18.1) Grammar): ... this, and extend to use
629 AT_TEST_EXISTING_GRAMMAR.
630 * tests/reduce.at (AT_TEST_LR_TYPE): New macro that exercises
631 all values of lr.type.
632 (Single State Split): New test groups using AT_TEST_LR_TYPE.
633 (Lane Split): Likewise.
634 (Complex Lane Split): Likewise.
635 (Split During Added Lookahead Propagation): Likewise.
637 2009-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
639 Add new files for IELR and canonical LR implementation.
640 * src/AnnotationList.c: New.
641 * src/AnnotationList.h: New.
642 * src/InadequacyList.c: New.
643 * src/InadequacyList.h: New.
644 * src/Sbitset.c: New.
645 * src/Sbitset.h: New.
649 2009-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
651 Implement %define lr.default_rules.
652 Its value describes the states that are permitted to contain
653 default rules: "all", "consistent", or "accepting".
654 * src/reader.c (reader): Default lr.default_rules to "all".
655 Check for a valid lr.default_rules value.
656 * src/lalr.c (state_lookahead_tokens_count): If lr.default_rules
657 is "accepting", then only mark the accepting state as
659 (initialize_LA): Tell state_lookahead_tokens_count whether
660 lr.default_rules is "accepting".
661 * src/tables.c (action_row): If lr.default_rules is not "all",
662 then disable default rules in inconsistent states.
663 * src/print.c (print_reductions): Use this opportunity to
664 perform some assertions about whether lr.default_rules was
666 * tests/local.at (AT_TEST_TABLES_AND_PARSE): New macro that
667 helps with checking the parser tables for a grammar.
668 * tests/input.at (%define lr.default_rules invalid values): New
670 * tests/reduce.at (AT_TEST_LR_DEFAULT_RULES): New macro using
671 AT_TEST_TABLES_AND_PARSE.
672 (`no %define lr.default_rules'): New test group generated by
673 AT_TEST_LR_DEFAULT_RULES.
674 (`%define lr.default_rules "all"'): Likewise.
675 (`%define lr.default_rules "consistent"'): Likewise.
676 (`%define lr.default_rules "accepting"'): Likewise.
678 2009-04-20 Akim Demaille <demaille@gostai.com>
682 2009-04-20 Akim Demaille <demaille@gostai.com>
685 * src/output.c (token_definitions_output): Use symbol_id_get
686 instead of duplicating its logic.
687 * TODO (YYERRCODE): Extend.
689 2009-04-20 Akim Demaille <demaille@gostai.com>
691 variables: prefer error-verbose to error_verbose.
692 * data/bison.m4 (b4_error_verbose_if): Based on error-verbose
693 instead of error_verbose.
694 * src/scan-gram.l (%error-verbose): Map to the error-verbose
696 * doc/bison.texinfo: Promote %define error-verbose instead of
698 * tests/actions.at: Prefer %define error-verbose to %error-verbose.
700 2009-04-15 Akim Demaille <demaille@gostai.com>
702 variables: accept dashes.
703 * data/bison.m4 (b4_percent_define_if_define_): Also map dashes to
705 * src/scan-gram.l ({id}): Also accept dashes after the initial
707 ({directive}): Use {id}.
708 * src/parse-gram.y: Comment and formatting changes.
709 * doc/bison.texinfo (Symbols): Adjust the lexical definitions of
711 * src/complain.h, src/complain.c (yacc_at): New.
712 * src/symtab.c (symbol_new): Use yacc_at to report inappropriate
714 * src/output.c (token_definitions_output): Do not #define token
717 2009-04-20 Akim Demaille <demaille@gostai.com>
719 Consistently refer to Yacc, not YACC.
720 * src/getargs.c (usage, warnings_args): s/YACC/Yacc/.
722 2009-04-17 Joel E. Denny <jdenny@ces.clemson.edu>
724 Pacify make maintainer-check-posix.
725 * tests/input.at (%define, --define): Move bison command-line
726 options before grammar file name.
728 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
730 Document semicolon warnings.
733 2009-04-14 Akim Demaille <demaille@gostai.com>
735 variables: use `parse.assert' instead of `assert'.
736 * TODO (assert): Remove.
737 * data/bison.m4 (b4_assert_if): Replace with...
738 (b4_parse_assert_if): this.
739 * data/lalr1.cc, data/variant.hh, tests/c++.at: Adjust.
740 * doc/bison.texinfo (Decl Summary): Document parse.assert.
742 2009-04-14 Akim Demaille <demaille@gostai.com>
744 variables: use `parse.trace' instead of `debug'.
745 * src/getargs.c (getargs): Map -t to %define trace.parse.
746 * src/scan-gram.l (%debug): Map to %define trace.parse.
747 * data/bison.m4 (b4_percent_define_if_define): Map `.' in variable
748 names to `_' in macro names.
749 (b4_debug_if): Replace with...
750 (b4_parse_trace_if): this.
751 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
752 * data/yacc.c: Adjust.
753 * doc/bison.texinfo (Decl Summary): Document %debug as obsoleted.
754 Use @code to label the variable list.
755 Document the variable parse.trace.
756 (Tracing): Promote the parse.trace variable.
757 * TODO: %printer is not documented.
759 2009-04-14 Akim Demaille <demaille@gostai.com>
762 * doc/bison.texinfo (Decl Summary): Fix entry about %debug.
763 (Table of Symbols): Remove duplicate entry for %debug.
765 2009-04-10 Eric Blake <ebb9@byu.net>
767 submodules: update to latest
768 * submodules/autoconf: Use latest upstream Autoconf.
770 2009-04-06 Eric Blake <ebb9@byu.net>
772 Work around autoconf 2.63b bug in testsuite.
773 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Avoid tripping
774 autoconf bug related to # in test.
776 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
778 * NEWS (2.5): New section. Describe new -D/--define feature.
780 2009-04-06 Akim Demaille <demaille@gostai.com>
783 * src/parse-gram.h, src/parse-gram.c: Regen.
785 2009-04-06 Akim Demaille <demaille@gostai.com>
787 rename muscle_tab.* as muscle-tab.* for consistency.
788 * src/muscle_tab.h, src/muscle_tab.c: Rename as...
789 * src/muscle-tab.h, src/muscle-tab.c: these.
790 * src/getargs.c, src/local.mk, src/main.c, src/output.c,
791 * src/parse-gram.y, src/reader.c, src/scan-code.l: Adjust.
793 2009-04-06 Akim Demaille <demaille@gostai.com>
795 Makefile: introduce $(BISON).
796 * src/local.mk (BISON): New.
799 2009-04-06 Akim Demaille <demaille@gostai.com>
801 parser: handle %locations as %define locations.
802 * src/getargs.h, src/getargs.c (locations_flag): Remove.
803 * src/getargs.c, src/scan-code.l: Use muscle_percent_define_ensure
804 to set "locations" to true.
805 * src/output.c (prepare): Don't output "locations".
806 * src/scan-gram.l (%locations): Handle it as a %<flag>.
807 * src/parse-gram.y: It's no longer a token.
809 * data/bison.m4 (b4_locations_if): Define it with
810 b4_percent_define_if_define.
811 * data/c.m4, data/glr.cc: Adjust.
813 2009-04-06 Akim Demaille <demaille@gostai.com>
816 * src/parse-gram.c: Regen.
818 2009-04-06 Akim Demaille <demaille@gostai.com>
820 muscle: factor the handling of obsolete of obsolete directives.
821 Suggested by Joel E. Denny.
823 * src/muscle_tab.h, src/muscle_tab.c (muscle_percent_define_ensure):
824 New, extracted from...
825 * src/parse-gram.y (prologue_declaration: pure-parser): here.
827 (prologue_declaration: "%<flag>"): Use
828 muscle_percent_define_ensure.
829 (%error-verbose, %pure-parser): No longer tokens.
830 * src/scan-gram.l (pure-parser): Return as a %<flag>.
832 2009-04-06 Joel E. Denny <jdenny@ces.clemson.edu>
834 Fix options documentation.
835 * build-aux/cross-options.pl: As in --help output, write optional
836 arguments as [=ARG] not =[ARG].
837 * doc/bison.texinfo (Bison Options): Add -W/--warnings argument.
839 2009-04-04 Joel E. Denny <jdenny@ces.clemson.edu>
841 Replace BISON_PROG_GNU_M4 with Autoconf's AC_PROG_GNU_M4.
842 If the first m4 in $PATH is wrong, it keeps looking. Moreover, its
843 requirements for a correct m4 are stricter.
844 * m4/m4.m4: Make it a symbolic link to submodules/autoconf/m4/m4.m4.
845 * configure.ac: Update to use AC_PROG_GNU_M4.
846 Reported by Eric Blake.
848 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
850 Help with updating web manual.
851 * HACKING: Incorporate instructions from gnulib/doc/README.
852 * bootstrap.conf (gnulib_modules): Add gendocs.
854 2009-04-03 Akim Demaille <demaille@gostai.com>
857 * src/parse-gram.h, src/parse-gram.c: Regen.
859 2009-04-03 Akim Demaille <demaille@gostai.com>
861 Factor %FLAG at scan level.
862 * src/parse-gram.y (PERCENT_DEBUG, PERCENT_ERROR_VERBOSE): Token
863 definitions and associated rules, replaced by....
864 (PERCENT_FLAG): this new token type, and rule.
865 * src/scan-gram.l (RETURN_PERCENT_FLAG): New.
866 Use it for %debug and %error-verbose.
868 2009-04-03 Akim Demaille <demaille@gostai.com>
871 * src/parse-gram.h, src/parse-gram.c: Regen.
873 2009-04-03 Akim Demaille <demaille@gostai.com>
875 Treat %debug as %define debug.
876 * data/bison.m4 (b4_debug_if): New.
877 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c,
878 * data/lalr1.java: Use it instead of b4_debug_flag.
879 * src/getargs.h, src/getargs.c (debug_flag): Remove.
880 * src/output.c (prepare): Don't output it.
881 * src/parse-gram.y: Treat %debug as %define debug.
883 2009-04-03 Akim Demaille <demaille@gostai.com>
885 Treat %error-verbose as %define error_verbose.
886 This allows to pass -Derror_verbose on the command line. Better
887 yet, it allows to pass -Derror_verbose=$(ERROR_VERBOSE), with
888 ERROR_VERBOSE being defined as false or true.
889 * data/bison.m4 (b4_percent_define_if_define): Instead of relying
890 on b4_percent_define_ifdef, for does not check the defined value,
891 but only whether the symbol is defined, rely on
892 b4_percent_define_flag_if, so that a value of "false" is processed
894 If not defined, define the flag to "false".
895 (b4_error_verbose_if): New.
896 * data/glr.c, data/lalr1.cc, data/yacc.c: Use it instead of
897 b4_error_verbose_flag.
898 * src/getargs.h, src/getargs.c (error_verbose_flag): Remove.
899 * src/output.c (prepare): Don't output it.
900 * src/parse-gram.y (%error-verbose): Treat as %define error_verbose.
902 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
904 Fix strange %define locations for default values.
905 Reported by Akim Demaille at
906 <http://lists.gnu.org/archive/html/bug-bison/2007-12/msg00001.html>
907 and discussed again starting at
908 <http://lists.gnu.org/archive/html/bison-patches/2008-11/msg00102.html>.
909 * data/bison.m4 (b4_percent_define_default): Leave syncline blank
910 because location information is bogus.
911 Use angle brackets to delimit fake file name because square brackets
912 look like underexpanded m4. Choose a better fake file name.
913 Use negative line numbers.
914 * src/muscle_tab.c (muscle_percent_define_default): Likewise.
915 * src/location.c (location_print): If line for a boundary is negative,
916 only print that boundary's file name.
917 * src/location.h: Document that.
918 * tests/skeletons.at (%define Boolean variables: invalid skeleton
919 defaults): Update output.
921 2009-04-03 Joel E. Denny <jdenny@ces.clemson.edu>
923 Pacify ./configure --enable-gcc-warnings.
924 * Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS) because many files
925 in lib won't compile with it.
926 * src/local.mk (src_bison_CFLAGS): Use $(WERROR_CFLAGS) here only.
928 2009-03-31 Akim Demaille <demaille@gostai.com>
930 bootstrap: --help to stdout.
931 * bootstrap (usage): Don't send --help to stderr.
932 Use a here doc instead of a long string.
934 2009-03-31 Akim Demaille <demaille@gostai.com>
936 bootstrap: README-hacking no longer exists
937 * bootstrap (checkout_only_file): Set to HACKING.
939 2009-03-26 Akim Demaille <demaille@gostai.com>
941 doc: merge HACKING and README-hacking.
942 Two files is confusing.
943 Reported by Alexandre Duret-Lutz.
945 * README-hacking: Merge into...
946 * HACKING (Working from the repository): here.
948 2009-03-26 Akim Demaille <demaille@gostai.com>
950 doc: update README-hacking.
951 * README-hacking: We now use git and git submodules.
952 Reported by Ralf Wildenhues and Alexandre Duret-Lutz.
954 2009-03-26 Akim Demaille <demaille@gostai.com>
956 lalr1.cc: avoid GCC 4.3 warnings.
957 GCC 4.3 now warns about "a || b && c" and asks for explicit
959 Reported by Alexandre Duret-Lutz.
960 * data/location.cc: Update copyright years.
961 (Position::operator==): Use parens to make precedence explicit.
962 Compare lines and columns first, as they are more likely to be
963 different, and they are faster to compare.
965 2009-03-26 Akim Demaille <demaille@gostai.com>
968 * gnulib: Update to latest.
969 * src/local.mk (AM_CFLAGS): Move to...
971 * etc/prefix-gnulib-mk (prefix_assignment): Also transform
974 2009-03-02 Akim Demaille <demaille@gostai.com>
978 2009-03-02 Akim Demaille <demaille@gostai.com>
980 Share b4_yytranslate_define.
981 * data/lalr1.cc (b4_yytranslate_define): Move to...
984 2009-03-02 Akim Demaille <demaille@gostai.com>
986 Use locations in the variant example.
987 Yes, this obfuscates the point of this example, variants only.
988 But glr.cc cannot work (yet?) without locations. This change
989 makes it easier to use this example with glr.cc.
991 * examples/variant.yy (assert): %define it.
992 (locations): Request them.
993 (yylex): Bind the location to the stage.
995 2009-03-02 Akim Demaille <demaille@gostai.com>
997 Dub make_TOKEN as a public type interface.
998 * data/c++.m4 (b4_symbol_constructor_declare)
999 (b4_symbol_constructor_define): New empty stubs.
1000 (b4_public_types_declare, b4_public_types_define): Use them.
1001 * data/lalr1.cc (b4_symbol_constructor_declare)
1002 (b4_symbol_constructor_declare_)
1003 (b4_symbol_constructor_define_, b4_symbol_constructor_define):
1005 * data/variant.hh: here.
1006 Remove the "b4_variant_if" parts, as variant.hh is loaded only if
1008 * data/lalr1.cc: No longer invoke b4_symbol_constructor_define and
1009 b4_symbol_constructor_declare, as it is now done by
1010 b4_public_types_define and b4_public_types_declare.
1012 2009-03-02 Akim Demaille <demaille@gostai.com>
1014 Coding style changes.
1015 * data/lalr1.cc (b4_symbol_constructor_declaration_)
1016 (b4_symbol_constructor_declarations)
1017 (b4_symbol_constructor_definition_)
1018 (b4_symbol_constructor_definitions)
1019 (b4_yytranslate_definition): Rename as...
1020 (b4_symbol_constructor_declare_)
1021 (b4_symbol_constructor_declare)
1022 (b4_symbol_constructor_define_)
1023 (b4_symbol_constructor_define)
1024 (b4_yytranslate_define): these.
1025 * data/variant.hh (b4_variant_definition): Rename as...
1026 (b4_variant_define): this.
1028 2009-03-02 Akim Demaille <demaille@gostai.com>
1030 Factor b4_assert_if, b4_lex_symbol_if, and b4_variant_if.
1031 * data/bison.m4 (b4_percent_define_if_define): New.
1032 * data/c++.m4 (b4_variant_if): Move to...
1033 * data/bison.m4: Here, using b4_percent_define_if_define.
1034 * data/lalr1.cc (b4_assert_if, b4_lex_symbol_if): Move to...
1035 * data/bison.m4: Here, using b4_percent_define_if_define.
1037 2009-03-02 Akim Demaille <demaille@gostai.com>
1039 Dub symbol_type_base as a public type.
1040 * data/c++.m4 (b4_public_types_declare): Now define
1041 symbol_type_base and symbol_type.
1042 (b4_public_types_define): New.
1043 In both cases, the definitions are taken verbatim from lalr1.cc.
1044 * data/lalr1.cc: Adjust.
1046 2009-03-02 Akim Demaille <demaille@gostai.com>
1048 b4_public_types_declare.
1049 * data/c++.m4 (b4_public_types_declare): New.
1050 * data/glr.cc, data/lalr1.cc: Use it.
1052 2009-03-02 Akim Demaille <demaille@gostai.com>
1054 b4_semantic_type_declare.
1055 * data/c++.m4 (b4_semantic_type_declare): New.
1056 Factors and generalizes what was in glr.cc and lalr1.cc.
1057 * data/variant.hh (b4_semantic_type_declare): Redefine it for
1059 * data/lalr1.cc, data/glr.cc: Use it.
1061 2009-02-26 Akim Demaille <demaille@gostai.com>
1064 * gnulib: Upgrade from master.
1065 * lib/.cvsignore, lib/.gitignore, m4/.cvsignore, m4/.gitignore:
1068 2009-02-25 Akim Demaille <demaille@gostai.com>
1070 Remove useless arguments.
1071 * data/glr.c (yy_reduce_print): $$ and @$ are not used and not
1074 2009-02-25 Akim Demaille <demaille@gostai.com>
1077 * data/lalr1.cc: here.
1079 2009-02-25 Akim Demaille <demaille@gostai.com>
1081 Fix glr.cc's debug level handling.
1082 * data/glr.cc (yydebug_): Remove, as it is actually yydebug from
1083 glr.c which is used.
1084 (debug_level, set_debug_level): Adjust.
1086 2009-02-25 Akim Demaille <demaille@gostai.com>
1089 * data/glr.c: Add 2007 and 2008 here, consistenly with the comments.
1091 2009-02-25 Akim Demaille <demaille@gostai.com>
1094 * etc/bench.pl.in (generate_grammar_list): Consitently use
1095 location_type, not yy::location.
1097 2009-02-25 Akim Demaille <demaille@gostai.com>
1100 * data/lalr1.cc: here.
1102 2009-02-19 Akim Demaille <demaille@gostai.com>
1104 Make yyparser::error public.
1105 * data/lalr1.cc: here.
1106 There is no good reason to keep it private (and it is convenient
1107 to use it from the scanner for instance). It is already public in
1110 2009-02-19 Akim Demaille <demaille@gostai.com>
1113 * data/glr.cc: here.
1115 2009-02-19 Akim Demaille <demaille@gostai.com>
1117 Remove trailing blanks.
1118 The epilogue has its own ending \n, no need to add another.
1120 * data/glr.c, data/lalr1.java, data/yacc.c: dnl when outputing the
1122 * data/glr.cc: dnl when extending the epilogue.
1123 Remove stray "private:".
1125 2009-02-19 Akim Demaille <demaille@gostai.com>
1128 * data/c.m4 (b4_c_function_decl): Here.
1130 2009-02-19 Akim Demaille <demaille@gostai.com>
1133 * data/lalr1.cc: here.
1135 2009-02-19 Akim Demaille <demaille@gostai.com>
1138 * data/variant.hh: New, extracted from...
1139 * data/lalr1.cc: here.
1141 * data/local.mk: Adjust.
1143 2009-02-19 Akim Demaille <demaille@gostai.com>
1145 Extract stack.hh from lalr1.cc.
1146 * data/stack.hh: New.
1147 * data/lalr1.cc: Extract from here.
1148 * data/local.mk: Adjust.
1150 2009-02-03 Joel E. Denny <jdenny@ces.clemson.edu>
1152 Add reminder about uploading public key to keys.gnupg.net.
1153 * HACKING (Release Procedure): Here.
1155 2009-01-28 Akim Demaille <demaille@gostai.com>
1157 * NEWS: Update information about 2.4.1 and 2.4.2.
1159 2008-11-04 Akim Demaille <demaille@gostai.com>
1162 * NEWS: Use more outline-mode markup.
1163 Suggested by Jim Meyering.
1165 2009-01-08 Akim Demaille <demaille@gostai.com>
1167 Fix grep portability issues.
1168 Grep on Solaris does not support -q.
1169 Reported by Summum Bonum.
1171 * NEWS: Add a stub for 2.4.2.
1172 * THANKS: Add Summum Bonum.
1173 * tests/atlocal.in (EGREP): New.
1174 (CC, CXX, XSLTPROC): Make it possible to override them via
1176 * tests/java.at: Use $EGREP instead of egrep.
1177 Use AT_CHECK's ignore instead of grep's -q.
1179 2008-12-11 Akim Demaille <demaille@gostai.com>
1181 Pass the token type to yysyntax_error.
1182 * data/yacc.c (yysyntax_error): Take the transated token instead
1187 2008-12-11 Akim Demaille <demaille@gostai.com>
1190 * data/glr.c: Formatting changes.
1192 2008-12-11 Akim Demaille <demaille@gostai.com>
1194 Propagate i18n changes into glr.c.
1196 * data/glr.c (yyreportSyntaxError): Use "switch" instead of
1197 building the error message format dynamically.
1198 * data/lalr1.java: Formatting changes.
1200 2008-12-11 Akim Demaille <demaille@gostai.com>
1203 * tests/local.mk: Replace "cd && testsuite" by "testsuite -C".
1204 Solves problems when top_srcdir is an absolute path.
1205 Suggested by Eric Blake.
1206 * configure.ac: Require Autoconf 2.62.
1208 2008-12-11 Akim Demaille <demaille@gostai.com>
1210 Simplify the i18n of the error messages.
1211 * data/lalr1.cc: Comment changes.
1212 * data/yacc.c (yysyntax_error): Rewrite, using a switch as in
1213 lalr1.cc instead of building dynamically the format string.
1215 2008-12-08 Akim Demaille <demaille@gostai.com>
1217 Fix portability issue in the test suite.
1218 * tests/local.at (AT_MATCHES_CHECK): New.
1219 Based on Perl instead of Sed. Sed has too many portability
1220 pitfalls, not ever Sed is GNU Sed.
1221 * tests/actions.at (Fix user actions without a trailing semicolon):
1224 2008-12-08 Akim Demaille <demaille@gostai.com>
1227 * data/README: Document glr.cc, lalr1.java, m4sugar and xslt.
1229 2008-12-08 Akim Demaille <demaille@gostai.com>
1231 Install autoconf as a submodule to get m4sugar.
1232 * .gitmodules: Add submodules/autoconf.
1233 * data/m4sugar/foreach.m4, data/m4sugar/m4sugar.m4: Now links into
1234 submodules/autoconf.
1236 2008-12-08 Akim Demaille <demaille@gostai.com>
1238 Test token.prefix in all the skeletons.
1239 * data/java.m4 (b4_token_enum): Use the token.prefix.
1240 * tests/local.at (AT_BISON_OPTION_PUSHDEFS): Define AT_TOKEN_PREFIX.
1241 * tests/calc.at (_AT_DATA_CALC_Y): Use it.
1242 Add checks for yacc.c, glr.c, lalr1.cc and glr.cc.
1243 * tests/java.at: Comment changes.
1244 (AT_CHECK_JAVA_MINIMAL): Define the END token.
1245 (Java parser class and package names): Add token.prefix check.
1247 2008-12-08 Akim Demaille <demaille@gostai.com>
1249 Fix regeneration of atconfig.
1250 * tests/local.mk (tests/atconfig): The rule was incorrect, but
1251 remove it: now that there is no tests/Makefile.am, the top-level
1252 Makefile properly updates atconfig when needed.
1254 2008-12-07 Di-an Jan <dianj@freeshell.org>
1256 Implement the FIXME that ends an user action with a semicolon
1257 if it seems necessary.
1258 * src/scan-code.l (flex rules section): Flag cpp directive from
1259 any `#' to the first unescaped end-of-line. Semicolon is not
1260 needed after `;', `{', '}', or cpp directives and is needed after
1261 any other token (whitespaces and comments have no effect).
1262 * tests/actions.at (Fix user actions without a trailing semicolon):
1264 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add semicolons to
1265 to make user actions complete statements.
1266 Adjust column numbers in error messages.
1267 * tests/regression.at (Fix user actions without a trailing semicolon):
1268 Remove. Covered by new test.
1270 2008-12-07 Akim Demaille <demaille@gostai.com>
1273 * gnulib: Update from master.
1275 2008-12-05 Eric Blake <ebb9@byu.net>
1277 Avoid compiler warning.
1278 * src/output.c (muscle_insert_item_number_table): Delete unused
1281 2008-12-02 Eric Blake <ebb9@byu.net>
1283 Build testsuite with newer autoconf.
1284 * tests/output.at (m4_expand): Don't override in newer autoconf,
1285 where the underlying implementation changed.
1286 * tests/cxx-type.at (_AT_RESOLVED_GLR_OUTPUT)
1287 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT)
1288 (_AT_AMBIG_GLR_OUTPUT_WITH_LOC, _AT_GLR_STDERR)
1289 (_AT_VERBOSE_GLR_STDERR): Expand to double-quoted strings,
1290 since some of them contain unbalanced ')'.
1292 2008-12-01 Akim Demaille <demaille@gostai.com>
1294 Use b4_symbol for printers and destructors everywhere.
1295 * data/bison.m4 (b4_symbol_action_location): New.
1296 * data/c.m4 (b4_symbol_actions): Remove.
1297 Adjust all callers to use by b4_symbol_foreach and the corresponding
1298 b4_symbol_printer/destructor macro.
1299 * data/glr.cc: Adjust.
1300 * data/lalr1.java: Adjust the %destructor sanity check.
1301 * src/output.c (symbol_code_props_output): Remove, we no longer
1302 need the b4_symbol_printers/destructors tables.
1304 2008-12-01 Akim Demaille <demaille@gostai.com>
1306 Use b4_symbol_case_.
1307 * data/lalr1.cc, data/bison.m4 (b4_symbol_action): Use
1310 2008-12-01 Akim Demaille <demaille@gostai.com>
1312 Move b4_symbol based macro to bison.m4.
1313 * data/lalr1.cc (b4_symbol_, b4_symbol, b4_symbol_if)
1314 (b4_symbol_action, b4_symbol_destructor, b4_symbol_printer)
1315 (b4_symbol_case_, b4_symbol_foreach, b4_type_action_)
1316 (b4_type_foreach): Move to...
1317 * data/bison.m4: Here.
1318 * data/lalr1.cc (b4_symbol_action): Specialize for C++: use
1319 b4_symbol_value_template instead of b4_symbol_value.
1321 2008-12-01 Akim Demaille <demaille@gostai.com>
1323 b4_symbol/type_foreach.
1324 * data/lalr1.cc (b4_symbol_foreach, b4_type_foreach): New.
1327 2008-12-01 Akim Demaille <demaille@gostai.com>
1329 Use the symbol properties to output the printer/destructor for lalr1.cc.
1330 Instead of defining complex list of tuples to define various
1331 properties of the symbols, we now prefer to define symbols as
1332 "structs" in m4: using the symbol key (its number), and the
1333 property name, b4_symbol gives it value. Use this to handle
1334 destructors and printers.
1336 * src/output.c (CODE_PROP): New.
1337 (prepare_symbol_definitions): Use it to define the printer and
1338 destructor related attributes of the symbols.
1339 * data/lalr1.cc (b4_symbol_actions): Rename as...
1340 (b4_symbol_action): this.
1341 Use b4_symbol instead of 6 arguments.
1342 (b4_symbol_printer, b4_symbol_destructor): New.
1343 Use them instead of b4_symbol_actions.
1345 2008-12-01 Akim Demaille <demaille@gostai.com>
1347 Avoid capturing variables too easily.
1348 * src/muscle_tab.h (MUSCLE_INSERT_BOOL, MUSCLE_OBSTACK_SGROW): Use
1349 v__ and p__ instead of v and p.
1351 2008-12-01 Akim Demaille <demaille@gostai.com>
1353 Remove spurious empty line before syncline.
1354 * data/bison.m4 (b4_syncline): Don't output an empty line before
1357 2008-11-26 Akim Demaille <demaille@gostai.com>
1359 Convert lib/Makefile.am into lib/local.mk.
1360 The real problem is rather gnulib.mk, which itself is extracted
1361 from a Makefile.am that gnulib expects to the "recursive". The
1362 tool prefix-gnulib-mk converts such a gnulib.mk to be
1363 non-recursive. Also, some AC_SUBST variables need to be adjusted.
1365 * etc/prefix-gnulib-mk: New.
1366 * bootstrap (slurp): Use it to convert further gnulib.mk.
1367 No longer try to avoid re-creation of lib/gnulib.mk as the changes
1369 * lib/Makefile.am: Rename as...
1370 * lib/local.mk: this.
1371 Adjust to be prefixed.
1372 * Makefile.am, configure.ac: Adjust.
1373 * src/local.mk (AM_CPPFLAGS): Extend it, don't define it.
1375 2008-11-26 Akim Demaille <demaille@gostai.com>
1378 * tests/local.mk (TESTSUITE_FLAGS, AUTOTEST_FLAGS): Rename as...
1379 (TESTSUITEFLAGS, AUTOTESTFLAGS): these to compy with the GCS.
1380 Reported by Eric Blake.
1382 2008-11-26 Akim Demaille <demaille@gostai.com>
1384 Use b4_parser_tables_define in glr.cc.
1385 * data/glr.c: Use b4_parser_tables_define instead of defining the
1386 (deterministic integral) tables by hand.
1388 2008-11-26 Akim Demaille <demaille@gostai.com>
1390 Use b4_parser_tables_define in Java.
1391 * data/java.m4 (b4_typed_parser_table): Rename as...
1392 (b4_typed_parser_table_define): this, for consistency.
1393 Accept a comment as $4.
1395 (b4_integral_parser_table): Rename as...
1396 (b4_integral_parser_table_define): this.
1397 * data/lalr1.java: Adjust all uses.
1398 Use b4_parser_tables_define instead of generation by hand.
1400 2008-11-26 Akim Demaille <demaille@gostai.com>
1402 Prepare the convergence bw C style and Java table generation.
1403 * data/bison.m4 (b4_tables_map, b4_tables_declare)
1404 (b4_tables_define): Rename as...
1405 (b4_integral_parser_tables_map, b4_parser_tables_declare)
1406 (b4_parser_tables_define): these.
1407 * data/c.m4 (b4_table_define): Rename as...
1408 (b4_integral_parser_table_define): this.
1409 * data/lalr1.cc: Adjust.
1410 (b4_table_define, b4_table_declare): Rename as...
1411 (b4_integral_parser_table_define)
1412 (b4_integral_parser_table_declare): these.
1413 (yyrline_): Move the comment where it is actually used.
1414 * data/yacc.c: Adjust.
1415 (yyrline): Use b4_integral_parser_table_define.
1417 2008-11-26 Akim Demaille <demaille@gostai.com>
1420 * src/parse-gram.h, src/parse-gram.c: Regen.
1422 2008-11-26 Akim Demaille <demaille@gostai.com>
1424 Factor the generation of the (integral) tables bw yacc.c and lalr1.cc.
1425 * data/lalr1.cc (b4_tables_map): Move to...
1426 * data/bison.m4: here.
1427 Update the comment for yytable during the flight.
1428 (b4_tables_declare, b4_tables_define): New.
1429 * data/lalr1.cc: Use them.
1430 * data/c.m4 (b4_table_define): New.
1431 * data/yacc.c: Use b4_tables_define instead of output the tables
1433 * tests/regression.at (Web2c Actions): Adjust the expected output,
1434 the order of the tables changed.
1436 2008-11-26 Akim Demaille <demaille@gostai.com>
1438 Get rid of (yy)rhs and (yy)prhs.
1439 These tables are no longer needed in the parsers, and they don't seem to
1440 be useful. They are not documented either.
1442 * src/output.c (prepare_rules): Get rid of rhs and prhs.
1443 Adjust the computation of (yy)r2.
1445 2008-11-26 Akim Demaille <demaille@gostai.com>
1447 Rule length is unsigned.
1448 * src/gram.h, src/gram.c (rule_rhs_length): Return a size_t.
1450 2008-11-26 Akim Demaille <demaille@gostai.com>
1452 Get rid of lalr1-split.cc.
1453 It was no longer maintainer.
1455 * data/lalr1-split.cc: Remove.
1456 * etc/bench.pl.in (bench_fusion_parser): Remove.
1459 2008-11-26 Akim Demaille <demaille@gostai.com>
1461 Use yy* consistently.
1462 * data/glr.c: Now that yyrhs no longer exists as a global
1463 variable, rename local "rhs" variables into "yyrhs" for
1466 2008-11-25 Akim Demaille <demaille@gostai.com>
1468 Get rid of yyrhs and yyprhs in glr.c.
1469 * data/glr.c (yyrhs, yyprhs): Remove.
1470 Instead, use the state stack and yystos.
1472 2008-11-25 Akim Demaille <demaille@gostai.com>
1475 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): If glr, declare it
1476 as an Autotest keyword.
1478 2008-11-25 Akim Demaille <demaille@gostai.com>
1480 Prefer TESTSUITE_FLAGS.
1481 TESTSUITEFLAGS is barely readable.
1483 * tests/local.mk (TESTSUITE_FLAGS): Default to $(TESTSUITEFLAGS)
1484 for backward compatibility.
1485 Use the former instead of the latter.
1487 2008-11-25 Akim Demaille <demaille@gostai.com>
1489 Get rid of yyrhs and yyprhs in larl1.java.
1490 * data/lalr1.java (yyrhs_, yyprhs_): Remove.
1491 (yy_reduce_print): Rather, use yystos_ and the state stack.
1493 2008-11-25 Akim Demaille <demaille@gostai.com>
1497 2008-11-25 Akim Demaille <demaille@gostai.com>
1499 Get rid of yyrhs and yyprhs in yacc.c.
1500 They were used to get the symbol types, given a rule number, when
1501 displaying the top of the stack before a reduction. But the
1502 symbol type is available from the state stack. This has two be
1503 benefits: two tables less in the parser (making it smaller), and a
1504 more consistent use of the three stacks which will help to fuse
1507 * data/yacc.c (yyprhs, yyrhs): Remove.
1508 (YY_REDUCE_PRINT): Pass yyssp to yy_reduce_print.
1509 (yy_reduce_print): Take yyssp as argument.
1510 Use it, together with yystos, to get the symbol type.
1511 * tests/regression.at (Web2c Report): Remove these tables from the
1514 2008-11-25 Akim Demaille <demaille@gostai.com>
1517 The point is to factor the generation of the tables across skeletons.
1518 This is language dependant.
1520 * data/c.m4 (b4_comment_): New.
1521 Should be usable to define how to generate tables independently of
1523 (b4_c_comment): New.
1524 (b4_comment): Bounce to b4_c_comment.
1525 Now support $2 = [PREFIX] for indentation.
1526 * data/lalr1.cc (b4_table_declare): Don't output a comment if
1527 there is no comment.
1528 Indent it properly when there is one.
1529 Output the ending semicolon.
1530 (b4_table_define): Space changes.
1531 Output the ending semicolon.
1532 (b4_tables_map): New.
1533 Use it twice instead of declaring and defining the (integral)
1536 2008-11-25 Akim Demaille <demaille@gostai.com>
1539 * data/lalr1.cc (b4_table_declare): New.
1540 Use it to declare the tables defined with b4_table_define.
1541 (b4_table_define): Declare a third arg to match b4_table_declare
1543 Move all the comments around invocations of b4_table_define into
1544 the invocations itselves.
1545 Move things around to have the order for declarations and
1548 2008-11-25 Akim Demaille <demaille@gostai.com>
1551 * data/lalr1.java: here.
1553 2008-11-25 Akim Demaille <demaille@gostai.com>
1555 b4_args is more general than only C++.
1556 * data/lalr1.cc (b4_args, _b4_args): Move to...
1557 * data/bison.m4: here.
1559 2008-11-21 Di-an Jan <dianj@freeshell.org>
1561 Implement no-XXX arguments for --warnings, --report, --trace.
1562 * src/getargs.c (flags_argmatch): Handles no-XXX.
1563 Fix typo in doxygen comment.
1565 2008-11-21 Akim Demaille <demaille@gostai.com>
1567 Display the changes in cross-options.texi.
1568 * build-aux/cross-options.pl ($sep): New, to separate items.
1569 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): Use diff to display the
1572 2008-11-20 Di-an Jan <dianj@freeshell.org>
1574 Improves options in the manual.
1575 * doc/bison.texinfo (-g, -x): Add space before argument.
1576 (Option Cross Key): Implement FIXME: listing directives also.
1577 * build-aux/cross-options.pl: Read from <STDIN> rather than <>.
1578 (Short Option): Special case -d. Put arguments inside @option.
1579 (Bison Directive): Add column, automatically extracted from
1580 src/scan-gram.l (actual name passed as the first argument)
1581 with special case for %define.
1582 * doc/local.mk (doc/cross-options.texi): Pass src/scan-gram.l
1583 to build-aux/cross-options.pl.
1584 * src/getargs.c (usage): Document limitations of cross-options.pl.
1585 * src/scan-gram.l: Likewise.
1587 2008-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
1589 Fix unexpanded macros in GLR defines file.
1590 Reported by Csaba Raduly at
1591 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00048.html>.
1592 * THANKS (Csaba Raduly): Add.
1593 * data/glr.c: Fix overquoting on b4_prefix for yylval and yylloc.
1594 * tests/calc.at (_AT_DATA_CALC_Y): If %defines is specified, generate
1595 lexer in a separate module that includes the defines file.
1596 (AT_CHECK_CALC): From AT_FULL_COMPILE, request compilation of lexer
1598 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_DEFINES_IF.
1599 Adjust AT_LOC and AT_VAL to use AT_NAME_PREFIX.
1600 (AT_BISON_OPTION_POPDEFS): Pop AT_DEFINES_IF.
1601 (AT_DATA_SOURCE_PROLOGUE): New.
1602 (AT_DATA_GRAMMAR_PROLOGUE): Use AT_DATA_SOURCE_PROLOGUE.
1603 (AT_DATA_SOURCE): New.
1604 (AT_FULL_COMPILE): Extend to support an additional source file.
1606 2008-11-18 Akim Demaille <demaille@gostai.com>
1609 * TODO: More short term issues.
1611 2008-11-18 Akim Demaille <demaille@gostai.com>
1614 * src/parse-gram.h, src/parse-gram.c: Regen.
1616 2008-11-18 Akim Demaille <demaille@gostai.com>
1618 Use b4_subtract where possible.
1619 * data/lalr1.cc (b4_subtract): Move to...
1620 * data/bison.m4: here.
1621 * data/glr.c (b4_rhs_data): Use it.
1622 * data/yacc.c (b4_rhs_value, b4_rhs_location): Use it.
1624 2008-11-18 Akim Demaille <demaille@gostai.com>
1626 Remove incorrect mode specification.
1627 * data/glr.cc: Don't pretend it's C code.
1629 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1631 Simplify last patch slightly.
1632 * src/getargs.c (getargs): Here.
1634 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1636 Fix last warning from --enable-gcc-warnings.
1637 * src/getargs.c (getargs): Don't assign const address to non-const
1640 2008-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
1642 Don't let maintainer-*-check targets force a version update.
1643 * cfg.mk (_is-dist-target): Implement. maintainer-check* was already
1646 2008-11-17 Di-an Jan <dianj@freeshell.org>
1648 * doc/bison.texinfo: Synchronize ``Detail Node Listing''.
1649 Align menus. Adjust word wrapping. Use node names for menu names.
1650 (Examples): Don't abbreviate node names.
1651 (LocalWords): Remove abbreviations.
1652 (Copying): Make description a sentence.
1653 (Java Action Features): Remove period to match the rest of menu.
1655 2008-11-17 Di-an Jan <dianj@freeshell.org>
1657 Handles several --enable-gcc-warnings.
1658 * src/getargs.c (command_line_location): Set parameters to void.
1659 * src/output.c (symbol_type_name_cmp): Make static.
1660 (symbols_by_type_name): Set parameters to void.
1661 (symbol_definitions_output): Remove unused parameter. Rename as...
1662 (prepare_symbol_definitions): this.
1663 (muscles_output): Move symbol_definitions_output to...
1664 (output): here as prepare_symbol_definitions.
1665 * tests/c++.at (AT_CHECK_VARIANTS): Remove unused parameters of main.
1666 (AT_CHECK_NAMESPACE): Make unused parameter lloc unnamed.
1668 2008-11-17 Di-an Jan <dianj@freeshell.org>
1670 * tests/c++.at (AT_CHECK_VARIANTS): Fixes tests 198-202.
1671 Use AT_DATA_GRAMMAR instead of AT_DATA for compiled tests.
1673 2008-11-16 Akim Demaille <demaille@gostai.com>
1675 Add missing $(EXEEXT).
1676 * doc/local.mk ($(CROSS_OPTIONS_TEXI)): The target is
1677 "src/bison$(EXEEXT)".
1678 Reported by Di-an Jan.
1680 2008-11-15 Akim Demaille <demaille@gostai.com>
1684 2008-11-15 Akim Demaille <demaille@gostai.com>
1687 * tests/input.at: here.
1689 2008-11-15 Akim Demaille <demaille@gostai.com>
1691 Remove duplicate header inclusion.
1694 2008-11-15 Akim Demaille <demaille@gostai.com>
1696 * src/parse-gram.h, src/parse-gram.c: Regen.
1698 2008-11-15 Akim Demaille <demaille@gostai.com>
1700 Support parametric types.
1702 There are two issues to handle: first scanning nested angle
1703 bracket pairs to support types such as std::pair< std::string,
1704 std::list<std::string> > >.
1706 Another issue is to address idiosyncracies of C++: do not glue two
1707 closing angle brackets together (otherwise it's operator>>), and
1708 avoid sticking blindly a TYPE to the opening <, as it can result
1709 in '<:' which is a digraph for '['.
1711 * src/scan-gram.l (brace_level): Rename as...
1714 Implement support for complex tags.
1717 * data/lalr1.cc (b4_symbol_value, b4_symbol_value_template)
1718 (b4_symbol_variant): Leave space around types as parameters.
1719 * examples/variant.yy: Use nested template types and leading ::.
1720 * src/parse-gram.y (TYPE, TYPE_TAG_ANY, TYPE_TAG_NONE, type.opt):
1722 (TAG, TAG_ANY, TAG_NONE, tag.opt): these.
1723 * tests/c++.at: Test parametric types.
1725 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1728 This is not sufficient, but we test at least that the make_SYMBOL
1729 interface is not affected by token.prefix. A more general test
1730 will be implemented when the support of token.prefix is generalized
1733 * tests/c++.at: One more variant test, using token.prefix.
1735 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1737 Test the make_TOKEN interface.
1738 * tests/c++.at (AT_CHECK_VARIANTS): Require and use locations.
1739 Factor the common code in yylex.
1740 Use it to test "%define lex_symbol".
1742 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1746 2008-11-15 Akim Demaille <akim@betelgeuse.gostai.ensta.fr>
1748 Simplify code for variants bench marks.
1749 * etc/bench.pl.in (&generate_grammar_list): Define and use
1751 Factor the common code in yylex.
1753 2008-11-15 Akim Demaille <demaille@gostai.com>
1755 Better error message.
1756 * bootstrap (find_tool): Fix the error message.
1758 2008-11-15 Akim Demaille <demaille@gostai.com>
1760 Update variant.yy to newest interface.
1761 * examples/variant.yy: Define lex_symbol.
1764 2008-11-15 Akim Demaille <demaille@gostai.com>
1766 Don't use locations in variant.yy.
1767 * examples/variant.yy: Adjust to not using locations.
1769 2008-11-15 Akim Demaille <demaille@gostai.com>
1772 * data/local.mk, etc/local.mk, examples/local.mk: Use Automake
1773 comments for the license.
1775 2008-11-15 Akim Demaille <demaille@gostai.com>
1777 Remove tests/Makefile.am.
1778 * tests/Makefile.am: Rename as...
1779 * tests/local.mk: this.
1780 * Makefile.am, configure.ac: Adjust.
1781 * Makefile.am (DISTCLEANFILES): Define.
1782 (maintainer-check, maintainer-xml-check, maintainer-push-check):
1783 Remove, we no longer need to bounce to the real targets.
1785 2008-11-15 Akim Demaille <demaille@gostai.com>
1789 2008-11-15 Akim Demaille <demaille@gostai.com>
1792 * Makefile.am (EXTRA_DIST): Move djgpp related part to...
1793 * djgpp/local.mk: this new file.
1795 2008-11-15 Akim Demaille <demaille@gostai.com>
1797 Remove doc/Makefile.am.
1798 * doc/Makefile.am: Rename as...
1799 * doc/local.mk: this.
1801 * Makefile.am, configure.ac: Adjust.
1802 * Makefile.am (MOSTLYCLEANFILES): New.
1803 * src/local.mk: Adjust.
1805 2008-11-15 Akim Demaille <demaille@gostai.com>
1807 Move sc_tight_scope into maint.mk.
1808 It does not work, and I don't know how it was supposed to work: it
1809 seems to be looking for sources in the build tree. I just moved
1810 it at a better place, fixing it is still required.
1812 * src/local.mk (echo): Remove.
1813 (sc_tight_scope): Move to...
1816 2008-11-15 Akim Demaille <demaille@gostai.com>
1819 * src/parse-gram.h, src/parse-gram.h: Regen.
1821 2008-11-15 Akim Demaille <demaille@gostai.com>
1823 Remove src/Makefile.am.
1824 * src/Makefile.am: Rename as...
1825 * src/local.mk: this.
1826 Prefix all the paths with src/.
1827 (AUTOMAKE_OPTIONS): Build object files in the sub dirs.
1828 (AM_CPPFLAGS): Find find in builddir/src.
1829 (YACC): Move the flags into...
1831 * maint.mk (sc_tight_scope): Disable.
1832 It used to bounce to the version in src/Makefile.am which is now
1833 part of this very Makefile.
1834 * Makefile.am, configure.ac: Adjust.
1835 * src/scan-code-c.c, src/scan-code.l: We can no longer rely on
1836 include "..." to find files "here": we are no longer in src/, so
1837 qualify the includes with src/.
1838 * doc/Makefile.am (PREPATH): No longer include the top_builddir
1840 (.x.1): Adjust to be able to create src/foo from the top level
1841 Makefile, instead of going bounce to src/Makefile the creation of
1844 2008-11-15 Akim Demaille <demaille@gostai.com>
1846 Remove useless variable.
1847 * doc/Makefile.am (srcsrcdir): Remove.
1849 2008-11-15 Akim Demaille <demaille@gostai.com>
1851 Remove data/Makefile.am.
1852 * data/Makefile.am: Rename as...
1853 * data/local.mk: this.
1855 * Makefile.am, configure.ac: Adjust.
1857 2008-11-15 Akim Demaille <demaille@gostai.com>
1859 Remove etc/Makefile.am.
1860 * etc/Makefile.am: Rename as...
1861 * etc/local.mk: this.
1863 * Makefile.am, configure.ac: Adjust.
1865 2008-11-15 Akim Demaille <demaille@gostai.com>
1867 Remove examples/local.mk.
1868 examples/calc++/Makefile.am might be interesting to keep as is, since
1869 it is an example in itself.
1871 * examples/Makefile.am: Rename as...
1872 * examples/local.mk: this.
1874 * Makefile.am, configure.ac: Adjust.
1876 2008-11-15 Akim Demaille <demaille@gostai.com>
1878 Remove build-aux/Makefile.am.
1879 Recursive Makefiles are really way too slow, let's get rid of some of
1882 * build-aux/Makefile.am: Rename as...
1883 * build-aux/local.mk: this.
1885 * Makefile.am, configure.ac: Adjust.
1887 2008-11-15 Akim Demaille <demaille@gostai.com>
1889 Provide convenience constructors for locations and positions.
1890 * data/location.cc (position::position): Accept file, line and
1891 column as arguments with default values.
1892 Always qualify initial line and column literals as unsigned.
1893 (location::location): Provide convenience constructors.
1895 2008-11-15 Akim Demaille <demaille@gostai.com>
1897 Instead of using make_symbol<TOK_FOO>, generate make_FOO for each
1899 Using template buys us nothing, and makes it uselessly complex to
1900 construct a symbol. Besides, it could not be generalized to other
1901 languages, while make_FOO would work in C/Java etc.
1903 * data/lalr1.cc (b4_symbol_): New.
1904 (b4_symbol): Use it.
1905 (b4_symbol_constructor_declaration_)
1906 (b4_symbol_constructor_definition_): Instead of generating
1907 specializations of an overloaded template function, just generate
1908 several functions whose names are forged from the token names
1909 without the token.prefix.
1910 (b4_symbol_constructor_declarations): Generate them for all the
1911 symbols, not just by class of symbol type, now that instead of
1912 specializing a function template by the token, we generate a
1913 function named after the token.
1914 (b4_symbol_constructor_specialization_)
1915 (b4_symbol_constructor_specializations): Remove.
1916 * etc/bench.pl.in: Adjust to this new API.
1918 2008-11-13 Akim Demaille <demaille@gostai.com>
1920 %define token.prefix.
1921 Provide a means to add a prefix to the name of the tokens as
1922 output in the generated files. Because of name clashes, it is
1923 good to have such a prefix such as TOK_ that protects from names
1924 such as EOF, FILE etc. But it clutters the grammar itself.
1926 * data/bison.m4 (token.prefix): Empty by default.
1927 * data/c.m4 (b4_token_enum, b4_token_define): Use it.
1928 * data/lalr1.cc (b4_symbol): Ditto.
1930 2008-11-13 Akim Demaille <demaille@gostai.com>
1932 Compute at M4 time some of the subtractions.
1933 * data/lalr1.cc (b4_subtract): New.
1934 (b4_rhs_data): Use it.
1936 2008-11-13 Akim Demaille <demaille@gostai.com>
1939 This allows the user to get the type of a token returned by yylex.
1941 * data/lalr1.cc (symbol::token): New.
1942 (yytoknum_): Define when %define lex_symbol, independently of
1944 (yytoken_number_): Move into...
1945 (symbol::token): here, since that's the only use.
1946 The other one is YYPRINT which was not officially supported
1947 by lalr1.cc, and anyway it did not work since YYPRINT uses this
1948 array under a different name (yytoknum).
1950 2008-11-13 Akim Demaille <demaille@gostai.com>
1953 * TODO (YYERRCODE): Mention the case of $undef.
1955 2008-11-13 Akim Demaille <demaille@gostai.com>
1958 * TODO (YYPRINT): New.
1960 2008-11-13 Akim Demaille <demaille@gostai.com>
1963 * data/lalr1.cc, data/yacc.c: Fix the description of the
1964 yytranslate and yytoknum tables.
1966 2008-11-13 Akim Demaille <demaille@gostai.com>
1968 Define make_symbol in the header.
1969 To reach good performances these functions should be inlined (yet
1970 this is to measure precisely). To this end they must be available
1973 * data/lalr1.cc (b4_symbol_constructor_definition_): Qualify
1974 location_type with the class name.
1975 Since will now be output in the header, declare "inline".
1976 No longer use b4_symbol_constructor_specializations, but
1977 b4_symbol_constructor_definitions in the header.
1978 Don't call it in the *.cc file.
1980 2008-11-13 Akim Demaille <demaille@gostai.com>
1982 Define yytranslate in the header for lex_symbol.
1983 * data/lalr1.cc: Move the invocation of b4_yytranslate_definition
1984 into the header file when using %define lex_symbol.
1985 (yytranslate_): Declare inline.
1987 2008-11-13 Akim Demaille <demaille@gostai.com>
1989 Define the constructors of symbol_type in
1990 b4_symbol_constructor_definitions.
1991 The constructors are called by the make_symbol functions, which a
1992 forthcoming patch will move elsewhere. Hence the interest of
1993 putting them together.
1995 The stack_symbol_type does not need to be moved, it is used only
1998 * data/lalr1.cc: Move symbol_type and symbol_base_type
1999 constructors into...
2000 (b4_symbol_constructor_definitions): here.
2003 2008-11-13 Akim Demaille <demaille@gostai.com>
2005 Make it easier to move the definition of yytranslate_.
2006 Forthcoming changes will make it possible to use yytranslate_
2007 from outside the parser implementation file.
2009 * data/lalr1.cc (b4_yytranslate_definition): New.
2012 2008-11-13 Akim Demaille <demaille@gostai.com>
2014 Remove useless class specification.
2015 * data/lalr1.cc (b4_symbol_constructor_specialization_): No need
2016 to refer to the class name to use a type defined by the class for
2017 arguments of member functions.
2019 2008-11-13 Akim Demaille <demaille@gostai.com>
2021 Finer input type for yytranslate.
2022 This patch is debatable: the tradition expects yylex to return an int
2023 which happens to correspond to token_number (which is an enum). This
2024 allows for instance to return characters (such as '*' etc.). But this
2025 goes against the stronger typing I am trying to have with the new
2026 lex interface which return a symbol_type. So in this case, feed
2027 yytranslate_ with a token_type.
2029 * data/lalr1.cc (yytranslate_): When in %define lex-symbol,
2030 expect a token_type.
2032 2008-11-13 Akim Demaille <demaille@gostai.com>
2034 Honor lex-params in %define lex_symbol mode.
2035 * data/lalr1.cc: Use b4_lex_param.
2037 2008-11-13 Akim Demaille <demaille@gostai.com>
2040 * src/output.c (symbol_definitions_output): Rename symbol
2041 attributes type_name and has_type_name as type and has_type.
2042 * data/lalr1.cc: Adjust uses.
2044 2008-11-13 Akim Demaille <demaille@gostai.com>
2046 Use b4_type_names for the union type.
2047 The union used to compute the size of the variant used to iterate
2048 over the type of all the symbols, with a lot of redundancy. Now
2049 iterate over the lists of symbols having the same type-name.
2051 * data/lalr1.cc (b4_char_sizeof_): New.
2052 (b4_char_sizeof): Use it.
2053 Adjust to be called with a list of numbers instead of a single
2055 Adjust its caller for new-line issues.
2057 2008-11-13 Akim Demaille <demaille@gostai.com>
2059 Define the "identifier" of a symbol.
2060 Symbols may have several string representations, for instance if
2061 they have an alias. What I call its "id" is a string that can be
2062 used as an identifier. May not exist.
2064 Currently the symbols which have the "tag_is_id" flag set are
2065 those that don't have an alias. Look harder for the id.
2067 * src/output.c (is_identifier): Move to...
2068 * src/symtab.c (is_identifier): here.
2069 * src/symtab.h, src/symtab.c (symbol_id_get): New.
2070 * src/output.c (symbol_definitions_output): Use it to define "id"
2072 Remove the definition of "tag_is_id".
2073 * data/lalr1.cc: Use the "id" and "has_id" whereever "tag" and
2074 "tag_is_id" were used to produce code.
2075 We still use "tag" for documentation.
2077 2008-11-11 Akim Demaille <demaille@gostai.com>
2079 Locations are no longer required by lalr1.cc.
2080 * data/lalr1.cc (_b4_args, b4_args): New.
2081 Adjust all uses of locations to make them optional.
2082 * tests/c++.at (AT_CHECK_VARIANTS): No longer use the locations.
2083 (AT_CHECK_NAMESPACE): Check the use of locations.
2084 * tests/calc.at (_AT_DATA_CALC_Y): Adjust to be usable with or
2085 without locations with lalr1.cc.
2087 * tests/output.at: Check lalr1.cc with and without location
2089 * tests/regression.at (_AT_DATA_EXPECT2_Y, _AT_DATA_DANCER_Y):
2090 Don't use locations.
2092 2008-11-11 Akim Demaille <demaille@gostai.com>
2095 * tests/local.at (AT_FULL_COMPILE): New.
2096 * tests/actions.at, tests/calc.at, tests/regression.at: Use it.
2098 2008-11-11 Akim Demaille <demaille@gostai.com>
2100 Support parens in calc++.
2101 * doc/bison.texinfo (Calc++ Scanner, Calc++ Parser): Support parens.
2102 * examples/calc++/test (run): Check the expected output.
2106 2008-11-11 Akim Demaille <demaille@gostai.com>
2108 Simplify lalr1.cc since %defines is mandatory.
2109 * data/lalr1.cc: Remove useless calls to b4_defines_if.
2111 2008-11-11 Akim Demaille <demaille@gostai.com>
2114 * TODO (yysyntax_error): New item.
2116 2008-11-11 Akim Demaille <demaille@gostai.com>
2119 * data/lalr1.cc: Use b4_error_verbose_if instead of #if
2122 2008-11-11 Akim Demaille <demaille@gostai.com>
2124 Support i18n of the parse error messages.
2125 * TODO (lalr1.cc/I18n): Remove.
2126 * data/lalr1.cc (yysyntax_error_): Support the translation of the
2127 error messages, as done in yacc.c.
2128 Stay within the yy* pseudo namespace.
2130 2008-11-11 Akim Demaille <demaille@gostai.com>
2133 * TODO (single stack, yysyntax_error): New.
2135 2008-11-11 Akim Demaille <demaille@gostai.com>
2137 Make it possible to return a symbol_type from yylex.
2138 * data/lalr1.cc (b4_lex_symbol_if): New.
2139 (parse): When lex_symbol is defined, expected yylex to return the
2141 * etc/bench.pl.in (generate_grammar_list): Extend to support this
2143 (bench_variant_parser): Exercise it.
2145 2008-11-11 Akim Demaille <demaille@gostai.com>
2147 Remove useless bench case.
2148 * etc/bench.pl.in (bench_variant_parser): VARIANT_DESTROY is
2151 2008-11-11 Akim Demaille <demaille@gostai.com>
2153 Improve display of directives.
2154 * etc/bench.pl.in (parse_term): Don't add useless eol.
2156 2008-11-11 Akim Demaille <demaille@gostai.com>
2158 Use string_cast in the bench.
2159 * etc/bench.pl.in (generate_grammar_list): Define and use
2162 2008-11-11 Akim Demaille <demaille@gostai.com>
2164 Replace yychar with a Boolean.
2165 * data/lalr1.cc (parse::yychar): Replace by...
2166 (parse::yyempty): this.
2168 2008-11-11 Akim Demaille <demaille@gostai.com>
2173 2008-11-11 Akim Demaille <demaille@gostai.com>
2175 Let yytranslate handle the eof case.
2176 * data/lalr1.cc (yytranslate_): Handle the EOF case.
2178 No longer expect yychar to be equal to yyeof_, rather, test the
2179 lookahead's (translated) kind.
2181 2008-11-11 Akim Demaille <demaille@gostai.com>
2183 yychar cannot be empty in yyerrlab.
2184 * TODO (yychar == yyempty_): New.
2185 * data/lalr1.cc: Remove the handling of this case.
2186 This eases forthcoming changes related to yychar and yytranslate.
2188 2008-11-11 Akim Demaille <demaille@gostai.com>
2190 Bench: syntactic sugar for %define/#define.
2191 * etc/bench.pl.in (parse_dirs): Support %d and #d with arguments.
2192 (&bench_push_parser, bench_variant_parser): Use this feature.
2196 2008-11-11 Akim Demaille <demaille@gostai.com>
2198 Less memory pressure on the "list" bench.
2199 * etc/bench.pl.in (generate_grammar_list): Do not accumulate all
2200 the values, to limit memory pressure.
2202 2008-11-11 Akim Demaille <demaille@gostai.com>
2204 Introduce make_symbol.
2205 make_symbol provides a means to construct a full symbol (kind,
2206 value, location) in a single shot. It is meant to be a Symbol
2207 constructor, parameterized by the symbol kind so that overloading
2208 would prevent incorrect kind/value pairs. Unfortunately
2209 parameterized constructors do not work well in C++ (unless the
2210 parameter also appears as an argument, which is not acceptable),
2211 hence the use of a function instead of a constructor.
2213 * data/lalr1.cc (b4_symbol_constructor_declaration_)
2214 (b4_symbol_constructor_declarations)
2215 (b4_symbol_constructor_specialization_)
2216 (b4_symbol_constructor_specializations)
2217 (b4_symbol_constructor_definition_)
2218 (b4_symbol_constructor_definitions): New.
2219 Use them where appropriate to generate declaration, declaration of
2220 the specializations, and implementations of the templated
2221 overloaded function "make_symbol".
2222 (variant::variant): Always define a default ctor.
2223 Also provide a copy ctor.
2224 (symbol_base_type, symbol_type): New ctor overloads for value-less
2226 (symbol_type): Now public, so that functions such as yylex can use
2229 2008-11-11 Akim Demaille <demaille@gostai.com>
2231 Inform m4 whether a tag is a valid id.
2232 * src/output.c (is_identifier): New.
2233 (symbol_definitions_output): Use it to define tag_is_id.
2234 But maybe this should be done at m4 level?
2236 2008-11-11 Akim Demaille <demaille@gostai.com>
2238 Test 214 was failing: it greps with a pattern containing [ ]*
2239 which obviously meant to catch spaces and tabs, but contained only
2240 spaces. Tabulations in sources are a nuisance, so to simplify the
2241 matter, get rid of all the tabulations in the Java sources. The
2242 other skeletons will be treated equally later.
2244 * data/java.m4, data/lalr1.java: Untabify.
2245 * tests/java.at: Simplify AT_CHECK_JAVA_GREP invocations:
2246 tabulations are no longer generated.
2248 2008-11-11 Paolo Bonzini <bonzini@gnu.org>
2250 * bootstrap.conf: Replace m4/warning.m4 with warnings module.
2251 * configure.ac: Adjust usage.
2252 * lib/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2253 * src/Makefile.am: Replace $(WARNING_CFLAGS) with $(WARN_CFLAGS).
2254 * tests/atlocal.in: Replace $(WARNING_*FLAGS) with $(WARN_*FLAGS).
2256 2008-11-10 Di-an Jan <dianj@freeshell.org>
2258 Workaround Java's ``code too large'' problem for parser tables
2259 in most cases, by using one function per initialization.
2260 * data/java.m4 (b4_typed_parser_table, b4_integral_parser_table): New.
2261 * data/lalr1.java (yypact_, yydefact_, yypgoto_, yydefgoto_,
2262 yytable_, yycheck_, yystos_, yytoken_number_, yyr1_, yyr2_, yyrhs_
2263 yyprhs_, yyrline_, yytranslate_table_): Use b4_integral_parser_table.
2264 (yytname_): Use b4_typed_parser_table.
2265 * doc/bison.texinfo (Java Bison Interface): Add note on Java's
2266 ``code too large'' error.
2268 2008-11-10 Di-an Jan <dianj@freeshell.org>
2270 * NEWS: Document them.
2272 General Java skeleton improvements.
2273 * configure.ac (gt_JAVACOMP): Request target of 1.4, which allows
2274 using gcj < 4.3 in the testsuite, according to comments in
2275 gnulib/m4/javacomp.m4.
2276 * data/java.m4 (stype, parser_class_name, lex_throws, throws,
2277 location_type, position_type): Remove extraneous brackets from
2278 b4_percent_define_default.
2279 (b4_lex_param, b4_parse_param): Remove extraneous brackets from
2280 m4_define and m4_define_default.
2281 * data/lalr1.java (b4_pre_prologue): Change to b4_user_post_prologue,
2282 which marks the end of user code with appropriate syncline, like all
2283 the other skeletons.
2284 (b4_user_post_prologue): Add. Don't silently drop.
2286 (parse): Inline yylex.
2287 * doc/bison.texinfo (bisonVersion, bisonSkeleton): Document.
2288 (%{...%}): Fix typo of %code imports.
2289 * tests/java.at (AT_JAVA_COMPILE): Add "java" keyword.
2291 Support annotations on parser class with %define annotations.
2292 * data/lalr1.java (annotations): Add to parser class modifier.
2293 * doc/bison.texinfo (Java Parser Interface): Document
2294 %define annotations.
2295 (Java Declarations Summary): Document %define annotations.
2296 * tests/java.at (Java parser class modifiers): Test annotations.
2298 Do not generate code for %error-verbose unless requested.
2299 * data/lalr1.java (errorVerbose): Rename to yyErrorVerbose.
2300 Make private. Make conditional on %error-verbose.
2301 (getErrorVerbose, setErrorVerbose): New.
2302 (yytnamerr_): Make conditional on %error-verbose.
2303 (yysyntax_error): Make some code conditional on %error-verbose.
2304 * doc/bison.texinfo (Java Bison Interface): Remove the parts
2305 about %error-verbose having no effect.
2306 (getErrorVerbose, setErrorVerbose): Document.
2308 Move constants for token names to Lexer interface.
2309 * data/lalr1.java (Lexer): Move EOF, b4_token_enums(b4_tokens) here.
2310 * data/java.m4 (b4_token_enum): Indent for move to Lexer interface.
2311 (parse): Qualify EOF to Lexer.EOF.
2312 * doc/bison.texinfo (Java Parser Interface): Move documentation of
2313 EOF and token names to Java Lexer Interface.
2314 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove Calc qualifier.
2316 Make yyerror public.
2317 * data/lalr1.java (Lexer.yyerror): Use longer parameter name.
2318 (yyerror): Change to public. Add Javadoc comments. Use longer
2319 parameter names. Make the body rather than the declarator
2320 conditional on %locations.
2321 * doc/bison.texinfo (yyerror): Document. Don't mark as protected.
2323 Allow user to add code to the constructor with %code init.
2324 * data/java.m4 (b4_init_throws): New, for %define init_throws.
2325 * data/lalr1.java (YYParser.YYParser): Add b4_init_throws.
2326 Add %code init to the front of the constructor body.
2327 * doc/bison.texinfo (YYParser.YYParser): Document %code init
2328 and %define init_throws.
2329 (Java Declarations Summary): Document %code init and
2330 %define init_throws.
2331 * tests/java.at (Java %parse-param and %lex-param): Adjust grep.
2332 (Java constructor init and init_throws): Add tests.
2334 2008-11-10 Akim Demaille <demaille@gostai.com>
2337 * TODO (-D): is implemented.
2338 (associativity): Same precedence must have the same associativity.
2339 For instance, how can a * b / c be parsed if * is %left and / is
2341 (YYERRORCODE, YYFAIL, YYBACKUP): New.
2343 2008-11-10 Akim Demaille <demaille@gostai.com>
2347 2008-11-10 Akim Demaille <demaille@gostai.com>
2349 More information about the symbols.
2350 * src/output.c (type_names_output): Document all the symbols,
2351 including those that don't have a type-name.
2352 (symbol_definitions_output): Define "is_token" and
2354 * data/lalr1.cc (b4_type_action_): Skip symbols that have an empty
2355 type-name, now that they are defined too in b4_type_names.
2357 2008-11-10 Akim Demaille <demaille@gostai.com>
2361 2008-11-10 Akim Demaille <demaille@gostai.com>
2363 Make parser::yytranslate static.
2364 Small speedup (1%) on the list grammar. And makes yytranslate_
2365 available in non member functions.
2367 * data/lalr1.cc (yytranslate_): Does not need to be a instance
2370 2008-11-10 Akim Demaille <demaille@gostai.com>
2372 Avoid trailing spaces.
2373 * data/c.m4: b4_comment(TEXT): Don't indent empty lines.
2374 * data/lalr1.cc: Don't indent before rule and symbol actions, as
2375 they can be empty, and anyway this incorrectly indents the first
2378 2008-11-10 Akim Demaille <demaille@gostai.com>
2382 2008-11-10 Akim Demaille <demaille@gostai.com>
2384 Use "enum" for integral constants.
2385 This is just nicer to read, I observed no speedup.
2387 * data/lalr1.cc (yyeof_, yylast_, yynnts_, yyempty_, yyfinal_)
2388 (yterror_, yyerrcode_, yyntokens_): Define as members of an enum.
2389 (yyuser_token_number_max_, yyundef_token_): Move into...
2390 (yytranslate_): here.
2392 2008-11-10 Akim Demaille <demaille@gostai.com>
2394 Shortcuts in bench directives.
2395 * etc/bench.pl.in (parse_dirs): New.
2397 (bench_variant_parser, bench_fusion_parser): Use %s and %d.
2398 Create the benches in "benches/".
2400 2008-11-10 Akim Demaille <demaille@gostai.com>
2403 * data/lalr1.cc: here.
2405 2008-11-10 Akim Demaille <demaille@gostai.com>
2407 Adjust verbose message to using emacs.
2408 * etc/bench.pl.in: Inform compilation-mode when we change the
2410 (generate_grammar_list): Recognize %define "variant" in addition
2413 2008-11-10 Akim Demaille <demaille@gostai.com>
2415 Classify symbols by type-name.
2416 * src/uniqstr.h (UNIQSTR_CMP): New.
2417 * src/output.c (symbol_type_name_cmp, symbols_by_type_name)
2418 (type_names_output): New.
2419 (muscles_output): Use it.
2420 * data/lalr1.cc (b4_symbol_action_): Remove.
2421 (b4_symbol_case_, b4_type_action_): New.
2422 Adjust uses of b4_symbol_action_ to use b4_type_action_.
2424 2008-11-10 Akim Demaille <demaille@gostai.com>
2426 Change the handling of the symbols in the skeletons.
2427 Before we were using tables which lines were the symbols and which
2428 columns were things like number, tag, type-name etc. It is was
2429 difficult to extend: each time a column was added, all the numbers had
2430 to be updated (you asked for colon $2, not for "tag"). Also, it was
2431 hard to filter these tables when only a subset of the symbols (say the
2432 tokens, or the nterms, or the tokens that have and external number
2433 *and* a type-name) was of interest.
2435 Now instead of monolithic tables, we define one macro per cell. For
2436 instance "b4_symbol(0, tag)" is a macro name which contents is
2437 self-decriptive. The macro "b4_symbol" provides easier access to
2440 * src/output.c (type_names_output): Remove.
2441 (symbol_numbers_output, symbol_definitions_output): New.
2442 (muscles_output): Call them.
2443 (prepare_symbols): Define b4_symbols_number.
2445 2008-11-10 Akim Demaille <demaille@gostai.com>
2448 * src/getargs.h, src/getargs.c (trace_muscle): New.
2449 (trace_types, trace_args): Support it.
2450 * src/output.c (output_skeleton): Use it.
2452 2008-11-10 Akim Demaille <demaille@gostai.com>
2455 * src/output.c (muscles_output): New, extracted from...
2456 (output_skeleton): here.
2459 2008-11-10 Akim Demaille <demaille@gostai.com>
2463 2008-11-10 Akim Demaille <demaille@gostai.com>
2465 Update the variant example.
2466 * examples/variant.yy: Formatting changes.
2469 2008-11-10 Akim Demaille <demaille@gostai.com>
2471 Support constructor with an argument.
2472 This improves the "list" bench by 2%.
2474 * data/lalr1.cc (variant::build): Add an overloaded version with
2476 * tests/c++.at (AT_CHECK_VARIANT): Check it.
2478 2008-11-10 Akim Demaille <demaille@gostai.com>
2481 * tests/c++.at (AT_CHECK_VARIANTS): New.
2482 Use it with and without %define assert.
2484 2008-11-10 Akim Demaille <demaille@gostai.com>
2486 Add %precedence support.
2487 Unfortunately it is not possible to reuse the %prec directive. This
2488 is because to please POSIX, we do not require to end the rules with a
2489 semicolon. As a result,
2493 is ambiguous: either a rule which precedence is that of baz, or a rule,
2494 and then a declaration of the precedence of the token baz.
2496 * doc/bison.texinfo: Document %precedence.
2497 (Precedence Only): New.
2498 * src/assoc.h, src/assoc.c (precedence_assoc): New.
2499 * src/conflicts.c (resolve_sr_conflict): Support it.
2500 * src/scan-gram.l, src/parse-gram.y (%precedence): New token.
2502 * tests/calc.at: Use %precedence for NEG.
2503 * tests/conflicts.at (%precedence does not suffice)
2504 (%precedence suffices): New tests.
2506 2008-11-09 Akim Demaille <demaille@gostai.com>
2508 Make benches in a sub dirs.
2509 * etc/bench.pl.in ($dir): New.
2511 Check the use of constructors with an argument.
2512 (bench_variant_parser): Fix.
2514 2008-11-09 Akim Demaille <demaille@gostai.com>
2518 2008-11-09 Akim Demaille <demaille@gostai.com>
2522 2008-11-09 Akim Demaille <demaille@gostai.com>
2524 Require the generation of parse-gram.output.
2525 * src/Makefile.am (YACC): Pass --report=all.
2527 2008-11-09 Akim Demaille <demaille@gostai.com>
2531 2008-11-09 Akim Demaille <demaille@gostai.com>
2534 * TODO: Remove obsolete items.
2537 2008-11-09 Akim Demaille <demaille@gostai.com>
2540 * etc/bench.pl.in (parse, parse_expr, parse_term, parse_fact)
2541 (@token, $grammar, $bench): New.
2542 (generate_grammar_variant): Rename as...
2543 (generate_grammar_list): this.
2544 (generate_grammar): Adjust.
2545 (bench_grammar): Rename as...
2547 Use it in the various bench-marking routines.
2548 (-b, -g): New options.
2550 2008-11-09 Akim Demaille <demaille@gostai.com>
2552 Use a static hierarchy for symbols in the C++ parser.
2553 * data/lalr1.cc (symbol_base_type, symbol_type)
2554 (stack_symbol_type): Make it a static hierarchy.
2555 Adjust dependencies.
2557 2008-11-09 Akim Demaille <demaille@gostai.com>
2559 bench.pl -d, --directive.
2560 * etc/bench.pl.in (@directive): New.
2561 (&bench_grammar): Use it.
2562 (&bench_list_grammar): New, to provide access to the "variant"
2565 (getopts): Support -d, --directive.
2567 2008-11-09 Akim Demaille <demaille@gostai.com>
2569 Use inline for small operations.
2570 * data/lalr1.cc (symbol_base_type, symbol_type)
2571 (stack_symbol_type): Declare constructor and other operations as
2573 (yy_destroy_): Inline.
2575 2008-11-09 Akim Demaille <demaille@gostai.com>
2577 Introduce a hierarchy for symbols.
2578 * data/lalr1.cc (symbol_base_type, symbol_type): New.
2579 (data_type): Rename as...
2580 (stack_symbol_type): this.
2581 Derive from symbol_base_type.
2582 (yy_symbol_value_print_): Merge into...
2583 (yy_symbol_print_): this.
2586 (yydestruct_): Rename as...
2587 (yy_destroy_): this.
2588 (b4_symbols_actions, YY_SYMBOL_PRINT): Adjust.
2589 (parser::parse): yyla is now of symbol_type.
2590 Use its type member instead of yytoken.
2592 2008-11-09 Akim Demaille <demaille@gostai.com>
2594 Rename data_type and stack_symbol_type.
2595 * data/lalr1.cc (data_type): Rename as...
2596 (stack_symbol_type): this.
2598 2008-11-09 Akim Demaille <demaille@gostai.com>
2600 Handle semantic value and location together.
2601 * data/lalr1.cc (b4_symbol_actions): Bounce $$ and @$ to
2602 yydata.value and yydata.location.
2603 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_)
2604 (YY_SYMBOL_PRINT): Now take semantic value and location as a
2607 (yydestruct_): New overload for a stack symbol.
2609 2008-11-09 Akim Demaille <demaille@gostai.com>
2611 Push a complete symbol, not connected parts.
2612 * data/lalr1.cc (yypush_): Take a data_type&, not disconnected
2613 state, value and location.
2616 2008-11-09 Akim Demaille <demaille@gostai.com>
2618 Agregate yylval and yylloc.
2619 * data/lalr1.cc (parser::yylval, parser::yylloc): Replace by...
2620 (parser::yyla): this.
2622 2008-11-09 Akim Demaille <demaille@gostai.com>
2624 Rely on the state stack to display reduction traces.
2625 To display rhs symbols before a reduction, we used information
2626 about the rule reduced, which required the tables yyrhs and
2627 yyprhs. Now use rely only on the state stack to get the same
2630 * data/lalr1.cc (b4_rhs_data, b4_rhs_state): New.
2632 (parser::yyrhs_, parser::yyprhs_): Remove.
2633 (parser::yy_reduce_print_): Use the state stack.
2635 2008-11-09 Akim Demaille <demaille@gostai.com>
2637 Fuse yyval and yyloc into yylhs.
2638 * data/lalr1.cc (b4_lhs_value, b4_lhs_location): Adjust to using
2640 (parse): Replace yyval and yyloc with yylhs.value and
2642 After a user action, compute yylhs.state earlier.
2643 (yyerrlab1): Do not play tricks with yylhs.location, rather, use a
2646 2008-11-09 Di-an Jan <dianj@freeshell.org>
2648 Remove unused variable.
2649 * src/output.c (type_names_output): Remove unused variable sep.
2651 2008-11-09 Paolo Bonzini <bonzini@gnu.org>
2653 Change tests/output.at quoting.
2654 * tests/output.at (AT_CHECK_OUTPUT): Use conventional m4 quoting when
2655 expanding arguments.
2657 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2659 Don't add a semicolon to actions for %skeleton or %language.
2660 It breaks Java test cases as reported by Akim Demaille.
2661 * src/scan-code.l: Implement.
2663 2008-11-07 Joel E. Denny <jdenny@ces.clemson.edu>
2665 Clean up %skeleton and %language priority implementation.
2666 * src/getargs.c (skeleton_prio): Use default_prio rather than 2, and
2667 remove static qualifier because others will soon need to see it.
2668 (language_prio): Likewise.
2669 (getargs): Use command_line_prio rather than 0.
2670 * src/getargs.h (command_line_prio, grammar_prio, default_prio): New
2672 (skeleton_prio): Extern it.
2673 (language_prio): Extern it.
2674 * src/parse-gram.y: Use grammar_prio rather than 1.
2676 2008-11-07 Akim Demaille <demaille@gostai.com>
2678 Moving push traces into yypush_.
2679 * data/lalr1.cc (yypush_): Now takes a optional trace message.
2682 2008-11-07 Akim Demaille <demaille@gostai.com>
2684 The single-stack C++ parser is now the standard one.
2685 * data/lalr1.cc: Rename as...
2686 * data/lalr1-split.cc: this.
2687 * data/lalr1-fusion.cc: Rename as...
2688 * data/lalr1.cc: this.
2689 * etc/bench.pl.in: Adjust.
2691 2008-11-07 Akim Demaille <demaille@gostai.com>
2693 Avoid empty-if warnings.
2694 Reported by Quentin Hocquet.
2696 * data/lalr1-fusion.cc (YY_SYMBOL_PRINT, YY_REDUCE_PRINT)
2697 (YY_STACK_PRINT): Provide some contents even when !YYDEBUG.
2699 2008-11-07 Akim Demaille <demaille@gostai.com>
2701 Pass command line location to skeleton_arg and language_argmatch.
2702 * src/getargs.h, src/getargs.c (skeleton_arg, language_argmatch):
2703 The location argument is now mandatory.
2704 Adjust all dependencies.
2705 (getargs): Use command_line_location.
2707 2008-11-07 Akim Demaille <demaille@gostai.com>
2710 * src/getargs.c (usage): Document -D.
2711 Fix help string for --locations.
2712 (command_line_location): New.
2713 (short_options, long_options, getargs): Support -D, --define.
2714 (getargs): Move -d support at the right place.
2715 * doc/bison.texinfo (Bison Options): Update.
2716 * tests/input.at (%define, --define): New.
2718 2008-11-07 Akim Demaille <demaille@gostai.com>
2720 Initialize the muscle table before parsing the command line.
2721 * src/getargs.c (quotearg.h, muscle_tab.h): Include.
2722 (getargs): Define file_name.
2723 * src/main.c (main): Initialize muscle_tab before calling
2725 * src/muscle_tab.c (muscle_init): No longer define file_name, as
2726 its value is not available yet.
2728 2008-11-07 Akim Demaille <demaille@gostai.com>
2730 Locations without columns for command line arguments.
2731 * src/location.c (location_print): Don't display negative columns.
2732 * src/location.h: Document this.
2734 2008-11-07 Akim Demaille <demaille@gostai.com>
2737 * src/getargs.c (usage): Fix help string for -W.
2739 2008-11-07 Akim Demaille <demaille@gostai.com>
2741 Handle more general types of option arguments.
2742 * build-aux/cross-options.pl: The argument ends at the first
2743 space, not the first non-symbol character.
2744 Use @var for each word appearing the argument description.
2746 2008-11-07 Akim Demaille <demaille@gostai.com>
2748 Destroy the variants that remain on the stack in case of error.
2749 * data/lalr1-fusion.cc (yydestruct_): Invoke the variant's
2751 Display the value only if yymsg is nonnull.
2752 (yyreduce): Invoke yydestruct_ when popping lhs symbols.
2754 2008-11-07 Akim Demaille <demaille@gostai.com>
2756 Add "%define assert" to variants.
2757 This is used to help the user catch cases where some value gets
2758 ovewritten by a new one. This should not happen, as this will
2761 Unfortunately this uncovered a bug in the C++ parser itself: the
2762 lookahead value was not destroyed between two calls to yylex. For
2763 instance if the previous lookahead was a std::string, and then an int,
2764 then the value of the std::string was correctly taken (i.e., the
2765 lookahead was now an empty string), but std::string structure itself
2768 This is now done in variant::build(other&) (which is used to take the
2769 value of the lookahead): other is not only stolen from its value, it
2770 is also destroyed. This incurs a new performance penalty of a few
2771 percent, and union becomes faster again.
2773 * data/lalr1-fusion.cc (variant::build(other&)): Destroy other.
2774 (b4_variant_if): New.
2775 (variant::built): New.
2776 Use it whereever the status of the variant changes.
2777 * etc/bench.pl.in: Check the penalty of %define assert.
2779 2008-11-07 Akim Demaille <demaille@gostai.com>
2781 Use "%define variant" in bench.pl.
2782 * etc/bench.pl.in: No longer use the pseudo directive %variants,
2783 just use %define variants.
2785 2008-11-07 Akim Demaille <demaille@gostai.com>
2788 * src/parse-gram.h, src/parse-gram.c: Regen.
2790 2008-11-04 Joel E. Denny <jdenny@ces.clemson.edu>
2792 Fix user actions without a trailing semicolon.
2793 Reported by Sergei Steshenko at
2794 <http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00001.html>.
2795 * THANKS (Sergei Steshenko): Add.
2796 * src/scan-code.l (SC_RULE_ACTION): Fix it.
2797 * tests/regression.at (Fix user actions without a trailing semicolon):
2800 2008-11-04 Akim Demaille <demaille@gostai.com>
2802 Use b4_copyright_years.
2803 * data/yacc.c (b4_copyright_years): New.
2804 Fix its value according to the comments in the file.
2805 Use it and undefine it.
2807 2008-11-04 Akim Demaille <demaille@gostai.com>
2810 * data/lalr1-fusion.cc, src/parse-gram.y: here.
2812 2008-11-04 Akim Demaille <demaille@gostai.com>
2815 * data/lalr1-fusion.cc: here.
2817 2008-11-04 Akim Demaille <demaille@gostai.com>
2819 Use strict on bench.pl.
2820 * etc/bench.pl.in (&run, &generate_grammar): New.
2821 Rename the grammar generating functions for consistency.
2822 Change the interface so that the list of benches to run is passed
2823 as (optionless) arguments.
2824 (&compile): Use &run.
2826 2008-11-04 Akim Demaille <demaille@gostai.com>
2828 Remove spurious initial empty lines.
2829 * data/glr.c, data/glr.cc, data/lalr1.cc, data/lalr1.java,
2830 * data/yacc.c: End the @output lines with an @.
2832 2008-11-04 Akim Demaille <demaille@gostai.com>
2834 Improve the display of sizes.
2835 * etc/bench.p.in: Higher precision.
2836 Sort by decreasing size.
2838 2008-11-04 Akim Demaille <demaille@gostai.com>
2840 Don't memcpy C++ structures.
2841 * data/lalr1-fusion.cc (b4_symbol_variant): Adjust additional
2843 (variant::build): New overload for
2844 copy-construction-that-destroys.
2845 (variant::swap): New.
2846 (parser::yypush_): Use it in variant mode.
2848 2008-11-04 Akim Demaille <demaille@gostai.com>
2850 Better defaults for bench.pl.
2851 * etc/bench.pl.in ($verbose, $cflags, $iterations): Change the
2853 Adjust &verbose uses.
2856 2008-11-04 Akim Demaille <demaille@gostai.com>
2858 Make variant.yy more complex.
2859 std::list cannot be copied via memcpy, they are more demanding than
2860 std::string. Use one std::list to strengthen the test.
2862 * examples/variant.yy: Use lalr1-fusion.cc, not lalr1.cc.
2864 Create a list of strings, instead of a single large string.
2866 2008-11-04 Akim Demaille <demaille@gostai.com>
2869 * etc/bench.pl.in (--bench, $bench): New.
2871 2008-11-04 Akim Demaille <demaille@gostai.com>
2874 * data/lalr1-fusion.cc (destroy): Use as() in its definition.
2875 Define it after as().
2877 2008-11-04 Akim Demaille <demaille@gostai.com>
2880 * data/lalr1-fusion.cc (b4_rhs_location): Remove useless parens.
2882 2008-11-04 Akim Demaille <demaille@gostai.com>
2884 Issue missing synclines after user actions.
2885 * data/c.m4 (b4_case): Issue synclines on the output file.
2887 2008-11-04 Akim Demaille <demaille@gostai.com>
2889 Remove trailing empty line.
2890 * data/lalr1-fusion.cc: Don't add an empty line after the user's
2893 2008-11-04 Akim Demaille <demaille@gostai.com>
2895 Fix output of copyright years.
2896 * data/bison.m4 (b4_copyright): Fix the indentation of the
2897 copyright year paragraph.
2898 Use b4_copyright_years when no years are given.
2899 * data/lalr1.cc, data/lalr1-fusion.cc, data/location.cc
2900 (b4_copyright_years): New.
2903 2008-11-04 Akim Demaille <demaille@gostai.com>
2905 Avoid the spurious initial empty line.
2906 * data/lalr1-fusion.cc, data/location.cc: Put a trailing "@" at
2907 the end of @output request to suppress the empty line that
2910 2008-11-04 Akim Demaille <demaille@gostai.com>
2912 Remove parser::rhs_number_type.
2913 * data/lalr1-fusion.cc (rhs_number_type): No longer define it.
2914 (yyrhs_): Use b4_table_define.
2916 2008-11-04 Akim Demaille <demaille@gostai.com>
2919 * data/lalr1-fusion.cc: Use an int to iterate up to an int.
2921 2008-11-04 Akim Demaille <demaille@gostai.com>
2923 Factor the declaration of the integer tables.
2924 * data/lalr1-fusion.cc (b4_table_define): New.
2927 2008-11-03 Akim Demaille <demaille@gostai.com>
2929 Fix indentation of tables in lalr1.cc
2930 * data/lalr1-fusion.cc: Fix the indentation.
2932 2008-11-03 Akim Demaille <demaille@gostai.com>
2934 Destroy the lhs symbols after reduction.
2935 * data/lalr1-fusion.cc (parse): After the user action, when in
2936 variant mode, destroy the lhs symbols.
2938 2008-11-03 Akim Demaille <demaille@gostai.com>
2940 Simplify yysyntax_error_ use.
2941 * data/lalr1-fusion.cc (yysyntax_error_): Always pass it the token
2942 type, but make it unnamed in the declaration when it is not used.
2944 2008-11-03 Akim Demaille <demaille@gostai.com>
2946 Let yy::variant::build return an lvalue.
2947 * data/lalr1-fusion.cc (variant::build): Return a reference to the
2950 2008-11-03 Akim Demaille <demaille@gostai.com>
2952 Define yy::variant only when needed.
2953 * data/lalr1-fusion.cc (yy::variant): Define only if variants are
2956 2008-11-03 Akim Demaille <demaille@gostai.com>
2958 Bench the three-stack lalr1.cc.
2959 * etc/bench.pl.in: Bench the three-stack lalr1.cc vs. the
2962 2008-11-03 Akim Demaille <demaille@gostai.com>
2964 Fail on parse error in calc++.
2965 * doc/bison.texinfo (calc++.cc): Propagate failures to the exit
2967 * examples/calc++/test ($me, $number, $exit, run): New.
2968 Use them to propagate errors to the exit status.
2970 2008-11-03 Akim Demaille <demaille@gostai.com>
2972 Don't specify the skeleton twice in the example.
2973 * examples/calc++/Makefile.am: Don't pass -S to Bison, the grammar
2974 file does what is needed.
2976 2008-11-03 Akim Demaille <demaille@gostai.com>
2978 bench: Improve output.
2979 * etc/bench.pl.in (bench_grammar): Tune the printf format.
2981 2008-11-03 Akim Demaille <demaille@gostai.com>
2983 bench: check impact of %debug on variants.
2984 * etc/bench.pl.in (variant_grammar): Fix the computation of
2986 Generate a grammar file that can work with or without %debug.
2987 Do use the @directive.
2988 (bench_variant_parser): Check impact of %debug.
2989 (@directives): Rename all the occurrences to...
2990 (@directive): this, for consistency.
2992 2008-11-03 Akim Demaille <demaille@gostai.com>
2994 bench: report the size too.
2995 * etc/bench.pl.in ($iterations): Defaults to -3.
2996 (&bench_grammar): Require hireswallclock.
2997 Compute and display the size of the result.
3000 2008-11-03 Akim Demaille <demaille@gostai.com>
3002 bench: More use of the verbosity level.
3003 * etc/bench.pl.in ($verbose, &verbose): New.
3005 More POD documentation.
3007 2008-11-03 Akim Demaille <demaille@gostai.com>
3009 bench.pl: a command line interface
3010 * etc/bench.pl.in: More doc.
3011 Some fixes in the documentation.
3012 ($cflags, $iterations, &help, &getopt): New.
3014 (&variant_grammar): Let the number of stages be 10 times what is
3017 2008-11-03 Akim Demaille <demaille@gostai.com>
3019 Bench the use of Boost.Variants.
3020 * etc/bench.pl.in ($cxx, &variant_grammar, &bench_variant_parser):
3022 (&compile): Be ready to compile C++ parsers.
3023 (&bench_push_parser): Move debug information to the outermost
3025 * THANKS: Add Michiel De Wilde.
3027 2008-11-03 Akim Demaille <demaille@gostai.com>
3029 bench.pl: Pass directives as a list instead of as a string.
3030 * etc/bench.pl.in (&directives): New.
3031 (&triangular_grammar, &calc_grammar): Use it to format the Bison
3033 (&triangular_grammar): Do use the directives (were ignored).
3034 (&bench_grammar, &bench_push_parser): Adjust to pass lists of
3037 2008-11-03 Akim Demaille <demaille@gostai.com>
3039 Improve genericity of bench.pl.
3040 * etc/bench.pl.in (&bench_grammar): Take the set of benches as
3042 (&bench_push_parser): New.
3045 2008-11-03 Akim Demaille <demaille@gostai.com>
3047 Add documentation to bench.pl.
3048 * etc/bench.pl.in: Comment changes.
3050 2008-11-03 Akim Demaille <demaille@gostai.com>
3052 Fuse the three stacks into a single one.
3054 In order to make it easy to perform benchmarks to ensure that
3055 there are no performance loss, lalr1.cc is forked into
3056 lalr1-fusion.cc. Eventually, lalr1-fusion.cc will replace
3059 Meanwhile, to make sure that lalr1-fusion.cc is correctly
3060 exercized by the test suite, the user must install a symbolic link
3061 from lalr1.cc to it.
3063 Instead of having three stacks (state, value, location), use a
3064 stack of triples. This considerably simplifies the code (and it
3065 will be easier not to require locations as currently does the C++
3066 parser), and also gives a 10% speedup according to
3067 etc/bench (probably mainly since memory allocation is done once
3068 instead of three times).
3070 Another motivation is to make it easier to destruct properly
3071 semantic values: now that they are bound to their state (hence
3072 symbol type) it will be easier to call the appropriate destructor.
3074 These changes should probably benefit the C parser too.
3076 * data/lalr1.cc: Copy as...
3077 * data/lalr1-fusion.cc: this new file.
3078 (b4_rhs_value, b4_rhs_location): New definitions overriding those
3080 (state_stack_type, semantic_stack_type, location_stack_type)
3081 (yystate_stack_, yysemantic_stack_, yylocation_stack_): Remove.
3082 (data_type, stack_type, yystack_): New.
3083 (YYLLOC_DEFAULT, yypush_): Adjust.
3084 (yyerror_range): Now based on data_type, not location_type.
3086 2008-11-03 Akim Demaille <demaille@gostai.com>
3088 Push the state, value, and location at the same time.
3089 This is needed to prepare a forthcoming patch that fuses the three
3092 * data/lalr1.cc (parser::yypush_): New.
3093 (parser::yynewstate): Change the semantics: instead of arriving to
3094 this label when value and location have been pushed, but yystate
3095 is to be pushed on the state stack, now the three of them must
3096 have been pushed before. yystate still must be the new state.
3097 This allows to use yypush_ everywhere instead of individual
3098 handling of the stacks.
3100 2008-11-03 Akim Demaille <demaille@gostai.com>
3102 Prefer references to pointers.
3103 * data/lalr1.cc (b4_symbol_actions): New, overrides the default C
3104 definition to use references instead of pointers.
3105 (yy_symbol_value_print_, yy_symbol_print_, yydestruct_):
3106 Take the value and location as references.
3109 2008-11-03 Akim Demaille <demaille@gostai.com>
3111 stack::size instead of stack::height.
3112 * data/lalr1.cc (stack::height): Rename as...
3113 (stack::size): this.
3114 Fix the output type.
3117 2008-11-03 Akim Demaille <demaille@gostai.com>
3119 Use variants to support objects as semantic values.
3120 This patch was inspired by work by Michiel De Wilde. But he used
3121 Boost variants which (i) requires Boost on the user side, (ii) is
3122 slow, and (iii) has useless overhead (the parser knows the type of
3123 the semantic value there is no reason to duplicate this
3124 information as Boost.Variants do).
3126 This implementation reserves a buffer large enough to store the
3127 largest objects. yy::variant implements this buffer. It was
3128 implemented with Quentin Hocquet.
3130 * src/output.c (type_names_output): New.
3131 (output_skeleton): Invoke it.
3132 * data/c++.m4 (b4_variant_if): New.
3133 (b4_symbol_value): If needed, provide a definition for variants.
3134 * data/lalr1.cc (b4_symbol_value, b4_symbol_action_)
3135 (b4_symbol_variant, _b4_char_sizeof_counter, _b4_char_sizeof_dummy)
3136 (b4_char_sizeof, yy::variant): New.
3137 (parser::parse): If variants are requested, define
3138 parser::union_type, parser::variant, change the definition of
3139 semantic_type, construct $$ before running the user action instead
3140 of performing a default $$ = $1.
3141 * examples/variant.yy: New.
3142 Based on an example by Michiel De Wilde.
3144 2008-11-03 Akim Demaille <demaille@gostai.com>
3146 Parameterize the extraction of semantic values.
3147 To make future changes easier, no longer rely on ".TYPE" being the
3148 way to get a semantic value.
3150 * data/c.m4 (b4_symbol_value): New.
3152 * data/c++.m4, data/yacc.c: Use it.
3153 * data/glr.c: Use b4_symbol_value.
3157 2008-11-03 Akim Demaille <demaille@gostai.com>
3159 Prepare easier M4 changes.
3160 * data/lalr1.cc: Use escaped [] instead of literals to prepare
3163 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3165 Initiate further development.
3166 * NEWS: Create an empty section for new entries.
3167 * gnulib: Update submodule to HEAD.
3169 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3171 * NEWS: Version 2.4.
3173 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3175 Prepare for next release.
3176 * NEWS: Briefly mention changes since 2.3b.
3177 * README: Say GNU m4 1.4.6, which we've been requiring in release
3178 announcements already, not 1.4.3, which breaks the build.
3180 2008-11-02 Joel E. Denny <jdenny@ces.clemson.edu>
3182 Say %language is experimental.
3183 We're thinking of extending it's effect on output file naming. See the
3185 <http://lists.gnu.org/archive/html/bison-patches/2008-10/msg00003.html>.
3186 * NEWS: Say it's experimental.
3187 * doc/bison.texinfo (Decl Summary): Say it's experimental, and so don't
3188 recommend it over %skeleton for now.
3189 (Bison Options): Likewise.
3190 (C++ Bison Interface): Use %skeleton not %language.
3191 (Calc++ Parser): Use %skeleton not %language.
3192 * src/getargs.c (usage): Say it's experimental.
3194 2008-11-01 Di-an Jan <dianj@freeshell.org>
3195 Paolo Bonzini <bonzini@gnu.org>
3197 Support all Java parser class modifiers.
3198 * data/java.m4 (b4_percent_define_get3): New.
3199 (b4_final_if, b4_strictfp_if): New.
3200 * data/lalr1.java (final, strictfp, extends, implements): Support.
3201 * doc/bison.texinfo (final, strictfp, extends, implements): Add
3203 * tests/java.at (AT_CHECK_JAVA_MINIMAL): New.
3204 (AT_CHECK_JAVA_MINIMAL_W_LEXER): New.
3205 (AT_CHECK_JAVA_GREP): New.
3206 (Java parser class modifiers): New test.
3207 (Java parser class extends and implements): New test.
3209 Model exception propagation better with throws and lex_throws.
3210 * data/java.m4 (b4_list2): New.
3211 (throws): Change default.
3212 * data/lalr1.java (yyaction): Add throws.
3213 (parse): Add lex_throws in addition to throws.
3214 * doc/bison.texinfo (throws, lex_throws): Add documentation.
3215 * tests/java.at (Java throws specifications): New test.
3217 Improve documentation for Java parsers.
3218 * doc/bison.texinfo (Java Parsers): Add subsections.
3219 Don't quote first argument of %define.
3220 (Java Bison Interface): Document output files. Move documentation
3221 of parser class and merge into Java Parser Interface. Document
3222 features that error out. Document directives with no effect.
3223 Move note about Javadoc higher.
3224 (Java Semantic Values): Explicitly mention stype.
3225 Document that generic types cannot be used.
3226 (Java Location Values): Use @deftypeivar. Document constructors.
3227 Correct return value for toString.
3228 (Java Parser Interface): List undocumented constants/fields.
3229 Move documentation of fields added by %parse-param closer to list
3230 of members. Document that token names are added as fields.
3231 Document constructors accurately. Remove error method.
3232 (Java Scanner Interface): Move note on %pure-parser to Java Bison
3233 Interface. Describe %code lexer and yylex accutately.
3234 Remove documentation that does not match the code.
3235 (Java Action Features): New.
3236 (Java Differences): Add reference. Add item on semantic values.
3237 Add note about @{ ... @}. Clarify %% epilogue placement.
3238 (Java Declarations Summary): New.
3241 * data/java.m4 (b4_prefix): Correct quoting for m4_define_default.
3242 (b4_remove_comma): Quote test argument.
3243 (b4_identification): Remove "bison" field.
3244 * tests/java.at (Java parser class and package names): New test.
3245 (Java %parse-param and %lex-param): New test.
3246 (Java stype, position_class and location_class): New test.
3248 2008-10-31 Di-an Jan <dianj@freeshell.org>
3250 * data/lalr1.jave: Update copyright years.
3251 (YYParser): Correct name of "generated from" file in Javadoc:
3252 use b4_file_name instead of @ofile@.
3253 (Location constructor): Correct Javadoc parameter name.
3254 (yylloc): Add missing opening m4 quote after b4_location_if.
3255 This removes a stray [ in the Javadoc of Lexer.getStartPos.
3256 (Lexer.yyerror): Fix incorrect m4 and Javadoc.
3257 (YYParser constructor): Correct Javadoc parameter name.
3259 2008-10-30 Joel E. Denny <jdenny@ces.clemson.edu>
3261 Always put auxiliary code files in the same dir as other output files.
3262 * src/files.c (compute_file_name_parts): When the user specifies
3263 --output but not --file-prefix, extract the directory prefix from the
3264 file prefix not from the grammar file name. This affects the location
3265 of files like location.hh generated by the C++ skeleton. The includes
3266 in the other output files require this fix.
3267 * tests/output.at (AT_CHECK_OUTPUT): Automatically create directories
3268 for expected output files.
3269 (Output files): Add a test for the above.
3271 2008-10-29 Joel E. Denny <jdenny@ces.clemson.edu>
3273 * gnulib: Update submodule to HEAD.
3275 2008-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
3277 Update copyright year.
3278 * src/files.c: Here.
3280 2008-10-28 Di-an Jan <dianj@freeshell.org> (tiny change)
3282 Don't overwrite the input file.
3283 * src/files.c (output_file_name_check): Fatal error if using input file
3285 * tests/output.at: (AT_CHECK_CONFLICTING_OUTPUT): Add return status
3287 (Conflicting output files): Add test.
3289 2008-10-28 Akim Demaille <demaille@gostai.com>
3292 * data/lalr1.cc: Formatting changes.
3294 2008-10-28 Akim Demaille <demaille@gostai.com>
3296 Don't define debugging functions when !YYDEBUG.
3297 * data/lalr1.cc (debug_stream, set_debug_stream)
3298 (debug_level_type, debug_level, set_debug_level): Don't
3299 declare them when YYDEBUG is not defined.
3300 The implementation are already YYDEBUG-aware.
3302 2008-10-28 Akim Demaille <demaille@gostai.com>
3304 Prefer "continue" for empty loop bodies.
3305 * etc/bench.pl.in: Use "continue" instead of {}.
3307 2008-10-28 Akim Demaille <demaille@gostai.com>
3309 Space and comments changes.
3310 * data/c++.m4, data/glr.c, data/lalr1.cc: Copyright year changes.
3311 * data/c.m4, data/lalr1.cc: Space changes.
3313 2008-10-28 Akim Demaille <demaille@gostai.com>
3315 Make gnulib a submodule.
3317 * .gitmodules (gnulib): New.
3319 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
3321 Fix yyerror_range for user-defined location type in C++. Reported by
3323 <http://lists.gnu.org/archive/html/bug-bison/2008-08/msg00008.html>.
3324 * data/lalr1.cc (parse): Change type of yyerror_range to location_type.
3325 * THANKS (Georg Sauthoff): Add.
3327 2008-10-18 Joel E. Denny <jdenny@ces.clemson.edu>
3329 Update several administrative files mainly to facilitate releasing.
3330 * HACKING (Administrivia): Make the git-merge-changelog notes more
3332 (Test suite): Don't say lalr1.cc is not exercised in the test suite.
3333 (Release Procedure): Update for git and add numerous details that were
3335 * Makefile.am (EXTRA_DIST): Remove Makefile.cfg and Makefile.maint.
3336 * maint.mk (announcement): Don't list bison as a bootstrap tool so
3337 that announcements don't claim we bootstrapped with whatever bison
3338 happened to be in PATH. Add flex as a bootstrap tool.
3339 * Makefile.maint: Remove, previously replaced by maint.mk.
3340 * Makefile.cfg: Remove, and migrate settings to...
3341 * cfg.mk: ... here for the sake of `make announcement'.
3342 * bootstrap.conf (gnulib_modules): Add announce-gen.
3343 * README: Say GNU Bison instead of just Bison. Suggested by Karl
3346 2008-10-08 Di-an Jan <dianj@freeshell.org> (tiny change)
3348 Small but important bugfixes for the Java skeleton.
3349 * data/lalr1.java (yyerror): Change Location to b4_location_type.
3350 (yy_symbol_print): Call toString on yyvaluep.
3352 2008-08-29 Akim Demaille <demaille@gostai.com>
3354 Clarify UPDATED use.
3355 * doc/bison.texinfo: It refers to the last edition of this file,
3356 not to the release date of Bison.
3357 Reported by Joel E. Denny.
3359 2008-08-29 Akim Demaille <demaille@gostai.com>
3361 * README: Update FAQ pointer.
3362 Reported by Joel E. Denny.
3364 2008-08-27 Eric Blake <ebb9@byu.net>
3366 Resync m4sugar from autoconf.
3367 * data/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine)
3368 (m4_init): Adjust to latest m4.git changes.
3369 (m4_mapall_sep, _m4_list_cmp, m4_version_compare): Reduce side
3371 * data/m4sugar/foreach.m4 (_m4_shiftn): Fix off-by-one bug.
3372 (_m4_list_cmp): Reduce side effects.
3374 2008-08-27 Akim Demaille <demaille@gostai.com>
3376 Check yyerrok in calc.at.
3377 * tests/calc.at (calc.y): Use yyerrok on "( error )".
3378 (AT_CHECK_CALC): Add a check that ensures that yyerrok works as
3381 2008-08-27 Akim Demaille <demaille@gostai.com>
3383 Support yyerrok in lalr1.cc.
3384 YYBACKUP is still to import back into lalr1.cc.
3385 * data/lalr1.cc (yyerrork, yyclearin, YYRECOVERING): Define.
3387 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
3389 For maintainer-check*, don't recompile for a $(VERSION) update.
3391 (_is-dist-target): Override the one in GNUmakefile.
3392 * Makefile.am (EXTRA_DIST): Add cfg.mk.
3394 2008-08-26 Joel E. Denny <jdenny@ces.clemson.edu>
3396 Update for recent change to gnulib.
3397 * src/parse-gram.y: Don't include strverscmp.h. It comes from
3400 2008-08-15 Eric Blake <ebb9@byu.net>
3402 Remaining m4sugar merge from autoconf.
3403 * data/m4sugar/m4sugar.m4: Copy entire file from autoconf.
3404 * data/m4sugar/foreach.m4: New file, copied from autoconf.
3405 * data/Makefile.am (dist_m4sugar_DATA): Distribute it.
3406 * src/output.c (output_skeleton): Tell m4 how to find it.
3408 Partial m4sugar merge from autoconf: m4_map.
3409 * data/m4sugar/m4sugar.m4 (m4_fst): Delete.
3410 (m4_map, m4_map_sep, _m4_map): Rewrite more efficiently.
3411 (m4_apply, _m4_apply, m4_mapall, m4_mapall_sep): New macros.
3412 * data/java.m4 (b4_token_enums): Use more efficient short-circuit
3414 * data/c.m4 (b4_token_defines, b4_token_enums, b4_c_ansi_formals):
3416 (b4_parse_param_for): Avoid m4_fst, now that autoconf no longer
3419 2008-08-07 Joel E. Denny <jdenny@ces.clemson.edu>
3421 Keep .version and PACKAGE_VERSION in sync.
3422 * Makefile.am ($(top_srcdir)/.version): Declare configure as a
3423 dependency, and add comments justifying this in more detail. Discussed
3425 <http://lists.gnu.org/archive/html/bison-patches/2008-07/msg00022.html>.
3427 2008-08-06 Eric Blake <ebb9@byu.net>
3429 Partial m4sugar merge from autoconf: m4_shiftn.
3430 * data/m4sugar/m4sugar.m4 (m4_shiftn): Faster implementation.
3431 (m4_shift2, m4_shift3): New macros.
3432 (m4_case, m4_bmatch, m4_bpatsubsts, m4_join): Adjust clients.
3433 * data/c.m4 (b4_c_function_def, b4_c_ansi_function_def)
3434 (b4_c_ansi_function_decl, b4_c_function_call): Likewise.
3435 * data/java.m4 (b4_remove_comma): Likewise.
3437 Partial m4sugar merge from autoconf: m4_wrap vs. m4 1.6.
3438 * data/m4sugar/m4sugar.m4 (m4_unquote, m4_wrap_lifo): New macros.
3439 (m4_wrap): Guarantee FIFO order, in spite of m4 1.6.
3440 (m4_init): Consolidate wrapped text into single m4_wrap.
3441 * data/bison.m4 (b4_check_user_names_wrap): Stick with LIFO order
3444 2008-08-05 Eric Blake <ebb9@byu.net>
3446 Partial m4sugar merge from autoconf: builtins, version.m4.
3447 * data/m4sugar/m4sugar.m4 (changeword): Nuke.
3448 (m4_prepend): Remove, as it is unused and inherently quadratic,
3449 whereas m4_append is linear in newer m4.
3450 (m4_mkstemp): New builtin.
3451 (m4_symbols): Make rename conditional.
3452 (m4_version_prereq): Ensure fatal error if used in bison, which
3453 intentionally lacks version.m4.
3455 Fix comments in m4sugar.
3456 * data/m4sugar/m4sugar.m4: Comment changes, borrowed from autoconf.
3458 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3460 Update for recent .gitignore fix in Gnulib.
3461 * bootstrap: Back out 2008-07-18 hack now that gnulib-tool creates
3462 anchored .gitignore entries.
3464 2008-08-02 Joel E. Denny <jdenny@ces.clemson.edu>
3466 Set gnu or gnits strictness.
3467 * configure.ac (AM_INIT_AUTOMAKE): Set gnu strictness during
3468 development and gnits strictness for releases. Based on Eric Blake's
3470 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00019.html>.
3472 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
3474 * NEWS: Clarify documentation of %language.
3476 2008-07-31 Paolo Bonzini <bonzini@gnu.org>
3478 Support usage of git-merge-changelog.
3479 * .gitattributes: New.
3480 * HACKING: Document usage of git-merge-changelog.
3481 * bootstrap: Install git-merge-changelog entries in .git/config
3484 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3486 Remove remaining dependence on CVS Id keyword.
3487 * ChangeLog: For the sake of people still using CVS, don't use dollars
3489 * data/xslt/bison.xsl: Remove Id from header comments, where it was
3491 * data/xslt/xml2dot.xsl: Likewise.
3492 * data/xslt/xml2text.xsl: Likewise.
3493 * data/xslt/xml2xhtml.xsl: Likewise.
3494 * doc/Doxyfile.in (PROJECT_NUMBER): Don't use ID.
3495 * doc/Makefile.am (neutralize): Remove, no longer needed.
3496 (.x.1): Don't use neutralize.
3497 (edit): Don't substitute for ID.
3498 (Doxyfile): Don't define Id, and thus don't depend on ChangeLog.
3500 2008-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
3502 Fix dependence on computed configure variables.
3503 * doc/Makefile.am (common_dep): Depend on $(top_srcdir)/configure not
3504 $(top_srcdir)/configure.ac so that changes to computed variables, such
3505 as PACKAGE_VERSION, are seen.
3506 * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
3508 2008-07-20 Joel E. Denny <jdenny@ces.clemson.edu>
3510 Update copyright dates for recent changes.
3511 * Makefile.am: Here.
3512 * src/Makefile.am: Here.
3513 * src/reduce.c: Here.
3514 * tests/reduce.at: Here.
3516 2008-07-18 Joel E. Denny <jdenny@ces.clemson.edu>
3518 Use git-version-gen for version names between releases.
3519 * .cvsignore (.tarball-version, GNUmakefile, *~): Add.
3520 * .gitignore (/.tarball-version, /GNUmakefile, /*~): Add.
3521 * .prev-version: New.
3522 * .version.in: Remove.
3523 * ChangeLog: Remove the Id previously used for capturing the CVS
3525 * GNUmakefile: Remove, now copied from Gnulib.
3526 * Makefile.am: Add code suggested by comments in
3527 build-aux/git-version-gen.
3528 (EXTRA_DIST): Remove GNUmakefile, handled by Gnulib. Add maint.mk,
3529 .prev-version, and .version.
3530 * NEWS (2.3b+): Rename to...
3531 (?.?): ... this because we're dropping the "+" version naming scheme,
3532 but, in general, we still can't be sure of our next release name.
3533 * bootstrap: Add a quick hack to remove from .gitignore the
3534 GNUmakefile entry that gnulib adds. We already have a /GNUmakefile
3535 entry. This should really be fixed in gnulib instead.
3536 * bootstrap.conf (gnulib_modules): Add gnumakefile.
3537 * configure.ac (AC_INIT): Set version name by invoking
3538 build-aux/git-version-gen.
3539 (AC_CONFIG_FILES): Remove .version, now generated by
3540 build-aux/git-version-gen.
3541 * maint.mk: New, copied from coreutils.
3542 * doc/.cvsignore (bison.1): Add.
3543 * doc/.gitignore (/bison.1): Add.
3544 * doc/bison.1: Remove, generated.
3545 * src/.cvsignore (revision.c): Remove.
3546 * src/.gitignore (/revision.c): Remove.
3547 * src/Makefile.am (bison_SOURCES): Remove revision.c and revision.h.
3548 (BUILT_SOURCES): Remove revision.c.
3549 (revision.c): Remove.
3550 * src/getargs.c (version): Don't print revision after the VERSION.
3551 * src/revision.h: Remove.
3553 2008-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
3555 Fix untranslatable composition of sentences. Reported by Goran
3557 <http://lists.gnu.org/archive/html/bug-bison/2008-06/msg00000.html>.
3558 * THANKS (Goran Uddeborg): Add.
3559 * src/reduce.c (reduce_print): Report the number of nonterminals and
3560 rules useless in the grammar in separate sentences.
3561 * tests/reduce.at (Useless Rules): Update output.
3562 (Reduced Automaton): Likewise.
3563 (Underivable Rules): Likewise.
3564 (Empty Language): Likewise.
3566 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3568 Fix some .gitignore and .cvsignore problems.
3569 * bootstrap (insert_sorted_if_absent): Replace all uses with...
3570 (insert_vc_ignore): ... this new function, which prepends `/' to all
3571 .gitignore entries before passing them to insert_sorted_if_absent.
3572 * bootstrap.conf (vc_ignore): Set to '.cvsignore .gitignore' so that
3573 .cvsignore files are maintained even though Bison developers run
3574 bootstrap while using Git.
3575 * .cvsignore (*.patch *.log log patches applied): Remove, apparently
3578 * .gitignore (/*.patch *.log log patches applied): Remove, broken and
3579 unneeded. Reported by Eric Blake.
3580 * lib/.gitignore (/*~): Add.
3581 * po/.cvsignore, runtime-po/.cvsignore: Sync with .gitignore.
3582 * examples/calc++/.gitignore (/calc++.exe): Add. Reported by Eric
3584 * src/.gitignore (/bison.exe): Add. Reported by Eric Blake.
3586 2008-07-15 Joel E. Denny <jdenny@ces.clemson.edu>
3588 Improve forward-compatibility with GNU M4. Reported by Eric Blake at
3589 <http://lists.gnu.org/archive/html/bug-bison/2008-07/msg00000.html>.
3590 * bootstrap.conf (gnulib_modules): Add unsetenv.
3591 * lib/.gitignore, lib/.cvsignore (/unsetenv.c): Add.
3592 * m4/.gitignore, m4/.cvsignore (/environ.m4): Add.
3594 * src/output.c (output_skeleton): For the m4 invocation, pass -dV as
3595 the first argument because it may become position-dependent, and unset
3596 POSIXLY_CORRECT so Bison's skeletons have access to GNU M4 extensions.
3597 Add comments explaining these issues in more detail.
3599 2008-07-14 Joel E. Denny <jdenny@ces.clemson.edu>
3601 Add .gitignore everywhere based on .cvsignore.
3603 * build-aux/.gitignore: New.
3604 * data/.gitignore: New.
3605 * doc/.gitignore: New.
3606 * etc/.gitignore: New.
3607 * examples/.gitignore: New.
3608 * examples/calc++/.gitignore: New.
3609 * lib/.gitignore: New.
3610 * m4/.gitignore: New.
3611 * po/.gitignore: New.
3612 * runtime-po/.gitignore: New.
3613 * src/.gitignore: New.
3614 * tests/.gitignore: New.
3616 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3618 * NEWS (2.3b+): New section, empty for now.
3619 * configure.ac (AC_INIT): 2.3b -> 2.3b+.
3621 2008-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
3623 * NEWS (2.3b): Update release date since there has been a delay in
3624 getting the announcements and tarballs out.
3626 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3628 * NEWS: Version 2.3b.
3629 * configure.ac (AC_INIT): Likewise.
3630 (PACKAGE_COPYRIGHT_YEAR): Update to 2008.
3632 2008-05-23 Joel E. Denny <jdenny@ces.clemson.edu>
3634 * HACKING: Don't say don't mention HACKING in the ChangeLog. We've
3635 been doing it for years.
3636 (Test suite): Mention maintainer-push-check and maintainer-xml-check.
3637 (Release Procedure): Add FIXME about make alpha being unmaintained.
3639 2008-05-13 Joel E. Denny <jdenny@ces.clemson.edu>
3641 * data/yacc.c: Reformat m4 a little for readability.
3642 * src/lalr.c (build_relations): Correct comment.
3644 2008-05-12 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3646 DJGPP specific issue.
3647 * djgpp/config.sed: Fixes required to run configure scripts generated
3650 2008-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
3652 * HACKING (Release Procedure): translation@iro.umontreal.ca is now
3653 coordinator@translationproject.org.
3655 2008-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
3657 * THANKS: Add Eric Blake.
3659 2008-04-23 Eric Blake <ebb9@byu.net>
3661 Revert prior patch, by working around autoconf regression.
3662 * tests/output.at (m4_expand): Add workaround for autoconf 2.62.
3663 ("Output file name: ("): Uncomment test.
3664 ("Output file name: )"): Likewise.
3665 Based on an idea from Noah Misch.
3667 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3669 Work-around an Autoconf 2.62 AT_SETUP bug that was not present in
3670 2.61. Reported by Juan Manuel Guerrero at
3671 <http://lists.gnu.org/archive/html/bug-bison/2008-04/msg00011.html>.
3672 * tests/output.at ("Output file name: ("): Comment out test case for
3674 ("Output file name: )"): Likewise.
3676 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3678 * GNUmakefile: Update git-version-gen invocation so make dist
3681 2008-04-21 Joel E. Denny <jdenny@ces.clemson.edu>
3683 Update to the current gnulib CVS repository, and fix trigraph handling
3685 * bootstrap: Update gnulib CVS repository URL.
3686 (symlink_to_dir): Encapsulate the code that guarantees the destination
3687 directory exists into...
3688 (check_dst_dir): ... this new function, and...
3689 (cp_mark_as_generated): ... reuse it here so that bootstrap doesn't
3690 fail when copying files into lib/uniwidth/.
3691 * src/output.c (prepare_symbols): When writing yytname muscles, where
3692 symbol names will be encoded in C-string literals, tell quotearg to
3693 escape trigraphs. This used to be the default in gnulib.
3694 * tests/regression.at (Token definitions): Because of the change in
3695 gnulib's quotearg behavior, string_as_id in parse-gram.y no longer
3696 escapes trigraphs in symbol names. Thus, yytname no longer has
3697 trigraphs unnecessarily doubly escaped. Update test case output.
3698 Extend test case to be sure Bison's own error messages will no longer
3699 have trigraphs in symbol names unnecessarily escaped once.
3701 2008-04-20 Joel E. Denny <jdenny@ces.clemson.edu>
3703 Fix make dist infinite loop reported by Juan Manuel Guerrero at
3704 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00009.html>.
3705 * .cvsignore: Add .version.
3707 * bootstrap.conf (gnulib_modules): Add git-version-gen.
3708 * configure.ac (AC_CONFIG_FILES): Add .version.
3709 * build-aux/.cvsignore: Add git-version-gen.
3711 2008-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
3713 * NEWS (2.3a+): Mention that -g now takes an argument.
3714 * doc/bison.texinfo (Bison Options): Reword -W entry a little for
3715 consistency. Update the -g and -x entries now that they take
3716 arguments. Use brackets to indicate optional arguments.
3717 * src/getargs.c (usage): Explain the relationship between arguments of
3718 long and short options more completely. Document --defines and -d
3719 separately since the former takes an argument but, for POSIX Yacc, the
3721 (short_options): Let -W take an optional argument like --warnings.
3722 (getargs): Sort cases.
3724 2008-02-28 Akim Demaille <demaille@gostai.com>
3726 * doc/bison.texinfo: Fix a few typos.
3728 2008-02-28 Akim Demaille <akim@epita.fr>
3730 * doc/bison.texinfo (Bison Options): Document -W.
3731 Based on Joel E. Denny's NEWS entry, and Automake's documentation.
3733 2008-02-28 Akim Demaille <akim@epita.fr>
3735 * src/getargs.c (short_options): Split and sort for readability.
3736 -g and -x take optional arguments, just like their long options.
3737 * build-aux/cross-options.pl: Use /x to make the regexp easier to
3739 Fix the handling of $opt which resulted in all the argument to be
3740 considered as optional.
3742 2008-02-22 Joel E. Denny <jdenny@ces.clemson.edu>
3744 * NEWS (2.3a+): Don't say %language is experimental. Mention Java and
3745 say its interface is experimental.
3746 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
3748 (Bison Options): In the -L and --language entry, mention Java.
3749 (Java Bison Interface): Say the interface is experimental.
3750 * src/getargs.c (usage): Mention -L and --language.
3752 * NEWS (2.3a+): Say the push parsing interface is experimental.
3753 * doc/bison.texinfo (Push Decl): Likewise.
3754 (Decl Summary): Likewise in the "%define api.push_pull" entry.
3755 (Push Parser Function): Likewise.
3756 (Pull Parser Function): Likewise.
3757 (Parser Create Function): Likewise.
3758 (Parser Delete Function): Likewise.
3759 (Table of Symbols): Likewise in the yypstate_delete, yypstate_new,
3760 yypull_parse, and yypush_parse entries.
3762 * NEWS (2.3a+): Mention XML support, and say the schema is
3764 * doc/bison.texinfo (Bison Options): Mention -x and --xml.
3765 * src/getargs.c (usage): Say the XML schema is experimental.
3767 * NEWS (2.3a+): Say option instead of flag.
3769 2008-02-21 Wojciech Polak <polak@gnu.org>
3771 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Change footer
3774 2008-02-20 Joel E. Denny <jdenny@ces.clemson.edu>
3776 Fix impure push parser compile error reported by Bob Rossi at
3777 <http://lists.gnu.org/archive/html/help-bison/2008-02/msg00023.html>.
3778 * data/yacc.c: Clean up whitespace in the output a little.
3779 (yypstate_allocated): Define for impure push parsers regardless of
3780 whether the pull interface is also requested.
3781 * tests/push.at (Push Parsing: Multiple impure instances): Extend to
3782 check impure push parsers without the pull interface.
3784 * data/yacc.c (yypstate_new): Don't try to invoke yyerror since
3785 yyerror takes arguments specified by %parse-param while yypstate_new
3787 * doc/bison.texinfo (Parser Create Function): Document that
3788 yypstate_new returns 0 for multiple impure parser instances.
3789 * tests/push.at (Push Parsing: Multiple impure instances): Update
3790 expected stderr output.
3792 2008-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
3794 * runtime-po/POTFILES.in (push.c): Remove.
3796 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3798 * data/Makefile.am (dist_pkgdata_DATA): Remove push.c.
3799 * data/push.c: Rename to...
3800 * data/yacc.c: ... this, overwriting it.
3801 * etc/bench.pl.in (bench_grammar): `%pure-parser'-> `%define api.pure'.
3802 `%push-pull-parser' -> `%define api.push_pull "both"'.
3803 Remove old yacc.c tests, and update push.c tests to yacc.c.
3805 2008-02-17 Joel E. Denny <jdenny@ces.clemson.edu>
3807 * data/bison.m4 (b4_percent_code_get): Output %code block comments like
3808 `"%code top" blocks' instead of `%code "top" blocks'.
3809 * data/push.c: Import yacc.c changes from 2008-01-09 and 2007-08-03.
3810 Clean up whitespace in the output a little.
3812 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3814 Fix documentation problems reported by Tim Josling at
3815 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00013.html>.
3816 * NEWS (2.3a+): Mention removal of --no-parser, -n, and %no-parser.
3817 * doc/bison.texinfo (Token Decl): Token numbers are *nonnegative*
3818 integers. Explain the effect of literal string aliases on error
3819 messages. Copy token 0 documentation from the C++ skeleton
3822 2008-02-16 Joel E. Denny <jdenny@ces.clemson.edu>
3824 Accept a token number in a %left, %right, or %nonassoc for POSIX
3825 conformance. Reported by Tim Josling at
3826 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00010.html>.
3827 * NEWS (2.3a+): Mention.
3828 * doc/bison.texinfo (Precedence Decl): Describe how literal strings
3829 and code numbers are treated by precedence declarations.
3830 * src/parse-gram.y (precedence_declaration): Use symbols.prec instead
3832 (symbols.prec): New, just like symbols.1 but uses symbol.prec instead
3834 (symbol.prec): New, just like symbol but allows INT.
3835 * src/symtab.c (symbol_user_token_number_set): Remove an aver that no
3837 * tests/regression.at (Token number in precedence declaration): New
3840 2008-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
3842 DJGPP specific issues.
3843 * djgpp/config.bat: Add filenames that are not 8.3 clean and that must
3844 be changed. Copyright timestamp adjusted.
3845 * djgpp/config.sed: Add filenames that are not 8.3 clean and that must
3846 be changed. Copyright timestamp adjusted.
3847 * djgpp/config.site: Copyright timestamp adjusted.
3848 * djgpp/config_h.sed: Copyright timestamp adjusted.
3849 * djgpp/djunpack.bat: Copyright timestamp adjusted.
3850 * djgpp/fnchnage.lst: Add filenames that are not 8.3 clean to the
3851 filename translation list.
3852 * djgpp/subpipe.c (init_subpipe): Check the environment variables
3853 TMPDIR, TMP and TEMP, in that order, to determinate where the temp
3854 files shall be created. Before trying to use the temp dir where the
3855 environment variable points to check that the dir really exists. If
3856 not default to the cwd as temp dir. Copyright timestamp adjusted.
3857 * djgpp/subpipe.h: Copyright timestamp adjusted.
3858 * djgpp/testsuite.sed: Copyright timestamp adjusted.
3860 2008-01-30 Paul Eggert <eggert@cs.ucla.edu>
3862 * doc/bison.texinfo: Update Back-Cover text to reflect new GNU wording.
3864 2008-01-09 Paul Eggert <eggert@cs.ucla.edu>
3866 * data/yacc.c (yyparse): Correct the comment when locations aren't used.
3867 Problem reported by Claudio Saavedra in
3868 <http://lists.gnu.org/archive/html/bug-bison/2008-01/msg00003.html>.
3870 2008-01-05 Wojciech Polak <polak@gnu.org>
3872 * data/xslt/xml2xhtml.xsl (xsl:template match="/"): Precede an XHTML
3873 document's title with the input grammar file name.
3875 2007-12-22 Joel E. Denny <jdenny@ces.clemson.edu>
3877 Automate regression testing of the XML/XSLT implementation. Discussed
3879 <http://lists.gnu.org/archive/html/bison-patches/2007-11/msg00021.html>.
3880 * configure.ac (XSLTPROC): New substitution.
3881 * Makefile.am (maintainer-xml-check): New phony target invoking...
3882 * tests/Makefile.am (maintainer-xml-check): ... this new phony target
3883 invoking make maintainer-check with BISON_TEST_XML=1.
3884 * tests/atlocal.in (XSLTPROC): New.
3885 * tests/local.at (AT_BISON_CHECK): New macro to (1) instruct Valgrind
3886 not to report reachable memory when Bison is expected to have a
3887 non-zero exit status and (2) to compare XML/XSLT output with --graph
3888 and --report=all output for every working grammar when
3890 (AT_BISON_CHECK_NO_XML): Likewise, but skip XML checks.
3891 (AT_BISON_CHECK_XML): New.
3892 (AT_QUELL_VALGRIND): New.
3893 * tests/testsuite.at (ORIGINAL_AT_CHECK): Remove this and...
3894 (AT_CHECK): ... don't redefine this since this was the old way to
3896 * tests/actions.at: Rewrite all AT_CHECK invocations for bison as
3897 AT_BISON_CHECK invocations.
3898 * tests/c++.at: Likewise.
3899 * tests/calc.at: Likewise.
3900 * tests/conflicts.at: Likewise.
3901 * tests/cxx-type.at: Likewise.
3902 * tests/existing.at: Likewise.
3903 * tests/glr-regression.at: Likewise.
3904 * tests/headers.at: Likewise.
3905 * tests/input.at: Likewise.
3906 * tests/java.at: Likewise.
3907 * tests/output.at: Likewise.
3908 * tests/push.at: Likewise.
3909 * tests/reduce.at: Likewise.
3910 * tests/regression.at: Likewise.
3911 * tests/sets.at: Likewise.
3912 * tests/skeletons.at: Likewise.
3913 * tests/synclines.at: Likewise.
3914 * tests/torture.at: Likewise.
3915 (Big triangle): Use AT_BISON_CHECK_NO_XML instead since this grammar
3916 tends to hang xsltproc.
3917 (Big horizontal): Likewise.
3919 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3921 In XML output, remove redundant class attribute on symbol element.
3922 * data/xslt/bison.xsl (xsl:key name="bison:symbolByName"): New.
3923 * data/xslt/xml2xhtml.xsl (xsl:template match="symbol"): Use it to
3924 look up a symbol to determine whether it's a nonterminal or terminal.
3925 * src/gram.c (rule_rhs_print_xml): Remove class attribute.
3926 * src/state.c (state_rule_lookahead_tokens_print_xml): Likewise.
3928 Add prec/assoc information to XML output.
3929 * src/gram.c (grammar_rules_print_xml): For each rule that has a
3930 %prec, add a percent_prec attribute.
3931 * src/print-xml.c (print_grammar): For each terminal that has a
3932 precedence or associativity, add a prec or assoc attribute.
3934 (xml_puts): Use xml_indent.
3935 (xml_printf): Use xml_indent.
3936 * src/print-xml.h (xml_indent): Prototype.
3938 * tests/existing.at (GNU pic Grammar): Fix a rule miscopied from
3939 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
3941 2007-12-08 Joel E. Denny <jdenny@ces.clemson.edu>
3943 * data/xslt/bison.xsl (bison:ruleNumber): Rename to...
3944 (bison:ruleByNumber): ... this for clarity.
3945 * data/xslt/xml2dot.xsl (xsl:template match="item"): Update.
3946 * data/xslt/xml2text.xsl (xsl:template match="item"): Update.
3947 (xsl:template match="reduction"): Update.
3948 (xsl:template match="item"): Update.
3949 (xsl:template match="reduction"): Update.
3951 In the XML output, don't print the list of rules where symbols appear.
3952 Compute it in XSLT instead. Discussed at
3953 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00024.html>.
3954 * data/xslt/bison.xsl (bison:ruleByLhs): New.
3955 (bison:ruleByRhs): New.
3956 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Use
3958 (xsl:template match="terminal/rule"): Remove.
3959 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3961 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3963 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Use
3964 bison:ruleByRhs and mode="number-link" for rule template.
3965 (xsl:template match="terminal/rule"): Remove.
3966 (xsl:template match="nonterminal"): Use bison:ruleByLhs and
3967 bison:ruleByRhs and mode="number-link" for rule template.
3968 (xsl:template match="nonterminal/left/rule|nonterminal/right/rule"):
3970 (xsl:template match="rule" mode="number-link"): ... this.
3971 * src/print-xml.c (print_grammar): Don't print the list of rules.
3973 2007-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
3975 Don't let --report affect XML output; always print all information.
3977 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00020.html>.
3978 * src/conflicts.c (log_resolution): Implement.
3979 * src/print-xml.c (print_core): Implement.
3980 (print_state): Implement.
3981 (print_xml): Implement.
3983 * NEWS (2.3a+): Fix quotes.
3984 * src/parse-gram.y (prologue_declaration): For consistency with -v,
3985 don't let %verbose clear the list specified by --report.
3987 2007-11-26 Akim Demaille <akim@epita.fr>
3989 * data/Makefile.am (dist_pkgdata_DATA): Ship and install bison.xsl.
3991 2007-11-24 Joel E. Denny <jdenny@ces.clemson.edu>
3993 In the XML output, list useless and unused symbols and rules with the
3994 useful ones and add a "usefulness" attribute. Discussed starting at
3995 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00017.html>.
3996 * src/gram.c (grammar_rules_partial_print_xml): Remove.
3997 (grammar_rules_print_xml): Print all rules instead of just those
3998 useful in the grammar, and add a "usefulness" attribute.
3999 * src/gram.h (grammar_rules_partial_print_xml): Remove prototype.
4000 * src/print-xml.c (print_rules_useless_in_parser): Remove.
4001 (print_grammar): Print all nonterminals instead of just useful ones,
4002 and add a "usefulness" attribute to nonterminals and terminals.
4003 (print_xml): Don't print a separate "reductions" or
4004 "rules-useless-in-parser" element.
4005 * src/reduce.c (reduce_output): Use reduce_token_unused_in_grammar.
4006 (reduce_xml): Remove.
4007 (reduce_token_unused_in_grammar): New.
4008 (reduce_nonterminal_useless_in_grammar): New.
4009 * src/reduce.h (reduce_xml): Remove prototype.
4010 (reduce_token_unused_in_grammar): Add prototype.
4011 (reduce_nonterminal_useless_in_grammar): Add prototype.
4012 * data/xslt/xml2text.xsl: Update for XML changes.
4013 * data/xslt/xml2xhtml.xsl: Update for XML changes.
4014 * tests/reduce.at (Useless Terminals): Update output.
4015 (Useless Rules): Update output.
4016 (Reduced Automaton): Update output.
4018 Say "Terminals unused in grammar" instead of "Unused terminals".
4019 * NEWS (2.3a+): Update.
4020 * doc/bison.texinfo (Understanding): Update example output.
4021 * src/reduce.c (reduce_output): Implement.
4022 * data/xslt/xml2text.xsl: Implement.
4023 * data/xslt/xml2xhtml.xsl: Implement.
4025 2007-11-18 Joel E. Denny <jdenny@ces.clemson.edu>
4027 Accept --report-file=FILE to override the default `.output' filename.
4028 * NEWS (2.3a+): Mention.
4029 * doc/bison.texinfo (Bison Options): Add an entry.
4030 * src/files.c (compute_output_file_names): Don't override
4031 spec_verbose_file if already set.
4032 * src/getargs.c (usage): Document --report-file.
4033 (REPORT_FILE_OPTION): New anonymous enum member.
4034 (long_options): Add entry for it.
4035 (getargs): Add case for it setting spec_verbose_file.
4037 * build-aux/cross-options.pl: Don't record a short option just because
4039 * doc/.cvsignore: Add yacc.1.
4041 2007-11-14 Akim Demaille <akim@epita.fr>
4043 * doc/yacc.1.in: New.
4044 * configure.ac, doc/Makefile.am: Adjust.
4045 * configure.ac (PACKAGE_COPYRIGHT_YEAR): New substitution, and new
4047 Use AC_SUBST for assignments too.
4048 * src/getargs.c (version): Use PACKAGE_COPYRIGHT_YEAR.
4050 2007-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
4052 * src/gram.c: Remove comments that duplicate comments in gram.h.
4054 When reporting useless rules and nonterminals, say "useless in grammar"
4055 instead of "useless", and say "useless in parser" instead of "never
4056 reduced". Discussed starting at
4057 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00033.html>.
4058 * NEWS (2.3a+): Mention this change.
4059 * data/xslt/xml2text.xsl: Update output text and expected input XML
4060 element names to match changes below.
4061 * data/xslt/xml2xhtml.xsl: Likewise.
4062 (xsl:template match="bison-xml-report"): Add missing entry in Table of
4063 Contents: "Rules useless in parser due to conflicts".
4064 * doc/bison.texinfo (Decl Summary): Reword a little.
4065 (Understanding): Update example output for changes below.
4066 * src/gram.c: (rule_useful_p): Rename to...
4067 (rule_useful_in_grammar_p): ... this.
4068 (rule_useless_p): Rename to...
4069 (rule_useless_in_grammar_p): ... this.
4070 (rule_never_reduced_p): Rename to...
4071 (rule_useless_in_parser_p): ... this.
4072 (grammar_rules_print): Update for renames.
4073 (grammar_rules_print_xml): Update for renames.
4074 (grammar_rules_never_reduced_report): Rename to...
4075 (grammar_rules_useless_report): ... this since it is used for either
4076 kind of useless rule.
4077 * src/gram.h: Reword comments and update function names in prototypes.
4078 * src/main.c (main): Say "rule useless in parser due to conflicts".
4079 * src/print-xml.c (print_rules_never_reduced): Rename to...
4080 (print_rules_useless_in_parser): ... this, and rename output XML
4081 element "rules-never-reduced" to "rules-useless-in-parser".
4082 (print_xml): Update for rename.
4083 * src/print.c (print_results): Say "Rules useless in parser due to
4085 * src/reduce.c (reduce_grammar_tables): Say "rule useless in grammar".
4086 (nonterminals_reduce): Say "nonterminal useless in grammar".
4087 (reduce_output): Say "Nonterminals useless in grammar".
4088 Say "Rules useless in grammar".
4089 (reduce_xml): Rename output XML element "useless" to
4090 "useless-in-grammar".
4091 (reduce_print): Don't report the count of grammatically useless rules
4092 as "rules never reduced" just because %yacc is specified.
4093 In the correct report of this count, say nonterminal(s) and rule(s)
4094 "useless in grammar".
4095 * tests/conflicts.at (S/R in initial): Update expected output.
4096 (Defaulted Conflicted Reduction): Likewise.
4097 (Unreachable States After Conflict Resolution): Likewise.
4098 * tests/existing.at (GNU pic Grammar): Likewise.
4099 * tests/reduce.at (Useless Nonterminals): Likewise.
4100 (Useless Rules): Likewise.
4101 (Reduced Automaton): Likewise.
4102 (Underivable Rules): Likewise.
4103 (Empty Language): Likewise.
4105 2007-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
4107 * data/bison.m4 (b4_cat): Put a newline after the end delimiter of the
4108 here document and before the EOF so that BSD's implementation of Bourne
4109 shell doesn't parse the delimiter as part of the here document.
4110 * doc/.cvsignore: Add cross-options.texi.
4111 * src/getargs.c (usage): Add a blank line after the warning categories.
4113 2007-11-08 Paolo Bonzini <bonzini@gnu.org>
4115 * data/lalr1.java (Lexer): Remove usage of b4_pure_if.
4117 2007-11-05 Akim Demaille <akim@epita.fr>
4119 Remove Id: from bison.1.
4120 * doc/Makefile.am (remove_time_stamp): Include the sed invocation.
4121 (perl -0777 -pi -e 's/\.PP\nId): New.
4122 (.x.1): Use it to ignore the version control revision.
4124 2007-11-05 Akim Demaille <demaille@gostai.com>
4126 * build-aux/Makefile.am: Ship cross-options.pl.
4127 * doc/Makefile.am: Always refer to cross-options.texi with
4129 (MAINTAINERCLEANFILES): Add it.
4131 2007-11-04 Akim Demaille <demaille@gostai.com>
4133 Generate the long/short option cross-table.
4134 * build-aux/cross-options.pl: New.
4135 * doc/Makefile.am (cross-options.texi): New.
4136 * doc/bison.texinfo: Use it.
4138 2007-11-04 Akim Demaille <demaille@gostai.com>
4140 Generate bison.1 using help2man.
4141 * doc/common.x, doc/bison.x: New.
4142 * doc/Makefile.am (bison.1, .x.1): New.
4143 The code is taken from autoconf-2.61/man/Makefile.am.
4144 * configure.ac: Look for help2man.
4146 2007-11-04 Akim Demaille <demaille@gostai.com>
4149 * src/getargs.c (usage): Document -W, make it clear that -d,
4150 -g and -x have optional arguments.
4152 2007-11-04 Akim Demaille <demaille@gostai.com>
4154 Find sha1sum when named gsha1sum.
4155 * bootstrap (find_tool): New.
4158 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4160 Deprecate %pure-parser and add `%define api.pure'. Discussed starting
4162 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00006.html>.
4163 * NEWS (2.3a+): Mention.
4164 * data/bison.m4 (b4_pure_if): Don't define it here.
4165 * data/c.m4 (b4_identification): Depend on individual skeletons to
4166 define b4_pure_flag, b4_push_flag, or b4_pull_flag if they use the
4167 values of the %define variables api.pure or api.push_pull. Define
4168 YYPURE, YYPUSH, and YYPULL accordingly.
4169 * data/glr.c: Define b4_pure_if based on `%define api.pure' unless
4170 glr.cc has already defined b4_pure_flag.
4171 * data/push.c: Define b4_pure_if based on `%define api.pure'.
4172 Remove YYPUSH and YYPULL since they're back in b4_identification again.
4173 * data/yacc.c: Define b4_pure_if based on `%define api.pure'.
4174 * doc/bison.texinfo (Pure Decl): Update.
4175 (Push Decl): Update.
4176 (Decl Summary): Add api.pure to %define entry.
4177 In %pure-parser entry, say it's deprecated and reference %define.
4178 (Pure Calling): Update.
4179 (Error Reporting): Update.
4180 (C++ Scanner Interface): Update.
4181 (How Can I Reset the Parser): Update.
4182 (Table of Symbols): In %pure-parser entry, say it's deprecated and
4184 * src/getargs.c (pure_parser): Remove global variable.
4185 * src/getargs.h (pure_parser): Remove extern.
4186 * src/output.c (prepare): Don't define pure_flag muscle.
4187 * src/parse-gram.y (prologue_declaration): Implement %pure-parser as a
4188 wrapper around `%define api.pure'.
4189 * tests/calc.at (Simple LALR Calculator): Update.
4190 (Simple GLR Calculator): Update.
4191 * tests/cxx-type.at (GLR: Resolve ambiguity, pure, no locations):
4193 (GLR: Resolve ambiguity, pure, locations): Update.
4194 (GLR: Merge conflicting parses, pure, no locations): Update.
4195 (GLR: Merge conflicting parses, pure, locations): Update.
4196 * tests/glr-regression.at (Uninitialized location when reporting
4198 * tests/input.at (Unused %define api.pure): New test case.
4199 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Update definition for
4200 AT_PURE_IF and AT_PURE_AND_LOC_IF.
4201 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4203 2007-10-28 Joel E. Denny <jdenny@ces.clemson.edu>
4205 %define push_pull -> %define api.push_pull. Discussed starting at
4206 <http://lists.gnu.org/archive/html/bison-patches/2007-09/msg00005.html>.
4207 * data/push.c: Expect the new name.
4208 * data/yacc.c: Likewise.
4209 * doc/bison.texinfo (Push Decl): Update.
4210 (Decl Summary): Update %define entry.
4211 (Push Parser Function): Update.
4212 (Pull Parser Function): Update.
4213 (Parser Create Function): Update.
4214 (Parser Delete Function): Update.
4215 * tests/calc.at (Simple LALR Calculator): Update.
4216 * tests/input.at (%define enum variables): Update.
4217 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update.
4218 (Push Parsing: Multiple impure instances): Update.
4219 (Push Parsing: Unsupported Skeletons): Update.
4220 * tests/torture.at (Exploding the Stack Size with Alloca): Update.
4221 (Exploding the Stack Size with Malloc): Update.
4223 * NEWS (2.3a+): Add an entry for the push parser, and clean up the
4226 2007-10-27 Joel E. Denny <jdenny@ces.clemson.edu>
4228 For the XML output's terminal element, rename @number to @token-number,
4229 and add @symbol-number. In the nonterminal element, rename @number to
4230 @symbol-number. Discussed starting at
4231 <http://lists.gnu.org/archive/html/bison-patches/2007-10/msg00040.html>.
4232 * data/xslt/xml2text.xsl (xsl:template match="terminal"): Update for
4234 (xsl:template match="nonterminal"): Likewise.
4235 * data/xslt/xml2xhtml.xsl (xsl:template match="terminal"): Likewise.
4236 (xsl:template match="nonterminal"): Likewise.
4237 * src/print-xml.c (print_grammar): Implement.
4239 2007-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
4241 * data/xslt/xml2dot.xsl (xsl:template match="automaton/state"): After
4242 2007-10-11 change, the child elements here are items not rules.
4243 (xsl:template match="item"): New.
4244 (xsl:template match="rule"): Update for new reduced itemset.
4245 (xsl:template match="point"): Remove.
4246 (xsl:template match="empty"): For consistency with --graph, don't
4247 output "/* empty */".
4248 * data/xslt/xml2text.xsl (xsl:template match="terminal"): When invoking
4249 line-wrap, don't pass a negative value as first-line-length since this
4250 won't work with the following changes.
4251 (xsl:template name="line-wrap"): Simplify slightly.
4252 (xsl:template name="ws-search"): Eliminate recursion.
4253 * src/print_graph.c (print_core): Don't print a reduction's lookahead
4254 set next to an item whose dot is not at the end of the RHS even if it
4255 happens to be associated with the same rule.
4257 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4259 Add %define lr.keep_unreachable_states.
4260 * NEWS (2.3a+): Mention it in the entry for unreachable state removal.
4261 * doc/bison.texinfo (Decl Summary): Mention it in the %define entry.
4262 * src/main.c (main): Implement it.
4263 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4264 Extend to test it, and fix a typo.
4266 2007-10-19 Joel E. Denny <jdenny@ces.clemson.edu>
4268 * NEWS (2.3a+): Add entry for recent .output file lookahead set fix.
4269 * doc/bison.texinfo (Understanding): Remove a bogus lookahead set in
4270 the example .output text.
4271 * tests/regression.at (Extra lookahead sets in report): Improve wording
4274 2007-10-17 Wojciech Polak <polak@gnu.org>
4276 * src/print-xml.c (print_grammar): Renamed
4277 <terminal> and <nonterminal> attributes:
4278 "type" to "number" and "symbol" to "name".
4279 * data/xslt/xml2text.xsl (xsl:template match="terminal"):
4280 Use new attribute names.
4281 (xsl:template match="nonterminal"): Likewise.
4282 * data/xslt/xml2xhtml.xsl: Likewise.
4284 2007-10-17 Joel E. Denny <jdenny@ces.clemson.edu>
4286 * doc/bison.texinfo (Bison Options): Add entry for --print-datadir.
4287 (Option Cross Key): Likewise.
4289 * src/print-xml.c (print_core): Don't print a reduction's lookahead set
4290 next to an item whose dot is not at the end of the RHS even if it
4291 happens to be associated with the same rule.
4292 * src/print.c (print_core): Likewise.
4293 * tests/conflicts.at (Unresolved SR Conflicts): Update output.
4294 (Resolved SR Conflicts): Update output.
4295 * tests/regression.at (Extra lookahead sets in report): New test case.
4297 2007-10-11 Wojciech Polak <polak@gnu.org>
4299 * src/print-xml.c (print_core): Remove item set
4301 * data/xslt/bison.xsl (bison:ruleNumber): New key.
4302 Improve processing time. Suggested by Joel E. Denny.
4303 * data/xslt/xml2dot.xsl (xsl:template name="escape"):
4304 Write xsl:param "required" attribute as comment.
4305 * data/xslt/xml2text.xsl (xsl:template match="item"): New.
4306 (xsl:template match="rule"): Support new reduced itemset.
4307 (xsl:template match="point"): Remove.
4308 * data/xslt/xml2xhtml.xsl: Likewise.
4310 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4312 * src/getargs.c (version): Update copyright year.
4314 2007-10-09 Joel E. Denny <jdenny@ces.clemson.edu>
4316 Make xml2dot.xsl and --graph produce the same output.
4317 * data/xslt/xml2dot.xsl (xsl:template match="rule"): Use a ` '
4318 instead of a `\n'. That is, don't add escapes yet or they'll be doubly
4320 (xsl:template name="output-node"): Use the new escape template instead
4321 of the string-replace template directly.
4322 (xsl:template name="output-edge"): Likewise.
4323 (xsl:template name="escape"): New, escapes backslashes and newlines in
4324 addition to quotation marks.
4325 * src/graphviz.c (start_graph, output_node, output_edge): Add
4326 whitespace to output for legibility.
4328 Make xml2text.xsl and --report produce the same output, and remove the
4329 XML "conflicts" element since a conflict summary is easily extracted
4331 * data/xslt/bison.xsl: New.
4332 (xsl:template match="state" mode="bison:count-conflicts): New.
4333 * data/xslt/xml2text.xsl: Import bison.xsl.
4334 (xsl:template match="bison-xml-report"): Instead of styling the
4335 "conflicts" element, style the "automaton" element with mode
4336 "conflicts". Unlike the former, the latter lists S/R and R/R
4337 conflicts for a state on the same line.
4338 (xsl:template match="conflicts"): Remove.
4339 (xsl:template match="conflict"): Remove.
4340 (xsl:template match="terminal"): Line-wrap the list of rules in which
4341 the terminal is used.
4342 (xsl:template match="nonterminal"): Likewise for nonterminals.
4343 (xsl:template match="automaton" mode="conflicts"): New.
4344 (xsl:template match="state" mode="conflicts"): New.
4345 (xsl:template name="line-wrap"): New.
4346 (xsl:template name="ws-search"): New.
4347 * data/xslt/xml2xhtml.xsl: Import bison.xsl.
4348 (xsl:template match="bison-xml-report"): Instead of styling the
4349 "conflicts" element, style the "automaton" element with mode
4351 (xsl:template match="conflicts"): Remove.
4352 (xsl:template match="conflict"): Remove.
4353 (xsl:template match="automaton" mode="conflicts"): New.
4354 (xsl:template match="state" mode="conflicts): New.
4355 * src/conflicts.c (conflicts_output_xml): Remove.
4356 * src/conflicts.h (conflicts_output_xml): Remove prototype.
4357 * src/print-xml.c (print_xml): Don't invoke conflicts_output_xml.
4358 * src/print.c (print_grammar): Consistently wrap at the 66th column so
4359 the corresponding XSLT is easier. Also, never wrap between a word and
4360 the comma that follows it.
4362 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
4364 Improve C++ namespace support. Discussed starting at
4365 <http://lists.gnu.org/archive/html/help-bison/2007-09/msg00016.html>.
4366 * data/c++.m4: (b4_namespace_ref, b4_namespace_open,
4367 b4_namespace_close): New macros that interpret the %define variable
4368 "namespace" so its value can contain "::" to indicate nested
4370 * data/glr.cc (b4_namespace): Don't define, and replace all uses with
4372 * data/lalr1.cc (b4_namespace): Likewise.
4373 * data/location.cc (b4_namespace): Likewise.
4374 * doc/bison.texinfo (Decl Summary): Move `%define push_pull' entry
4375 inside a new table in the general %define entry. Document `%define
4376 namespace' there as well. Point the %name-prefix entry to it since it
4377 explains it more completely in the case of C++.
4378 (C++ Bison Interface): Mention `%define namespace' instead of
4380 (Table of Symbols): Remove the `%define push_pull' entry. The %define
4382 * tests/c++.at (Relative namespace references): New test case.
4383 (Absolute namespace references): New test case.
4384 (Syntactically invalid namespace references): New test case.
4385 * tests/input.at (C++ namespace reference errors): New test case.
4387 2007-10-08 Joel E. Denny <jdenny@ces.clemson.edu>
4389 Add syncline support and location accessor to internal %define
4391 * data/bison.m4 (b4_percent_define_get_loc): New.
4392 (b4_percent_define_get_syncline): New.
4393 (b4_percent_define_flag_if): Use b4_percent_define_get_loc.
4394 (b4_percent_define_default): Record defining location as line 1 rather
4395 than 0 for the sake of synchronizing #line's, and define
4396 b4_percent_define_syncline(VARIABLE).
4397 (b4_percent_define_check_values): Use b4_percent_define_get_loc.
4398 * src/muscle_tab.c (muscle_syncline_grow): New.
4399 (muscle_code_grow): Use muscle_syncline_grow.
4400 (muscle_percent_define_insert): Use muscle_percent_define_get_loc, and
4401 define b4_percent_define_syncline(VARIABLE).
4402 (muscle_percent_define_get_loc): New.
4403 (muscle_percent_define_get_syncline): New.
4404 (muscle_percent_define_flag_if): Use muscle_percent_define_get_loc, and
4405 remove some unused variables.
4406 (muscle_percent_define_default): Record defining location as line 1
4407 rather than 0 for the sake of synchronizing #line's, and define
4408 b4_percent_define_syncline(VARIABLE).
4409 (muscle_percent_define_check_values): Use
4410 muscle_percent_define_get_loc.
4411 * src/muscle_tab.h (muscle_percent_define_get_loc): Prototype.
4412 (muscle_percent_define_get_syncline): Prototype.
4413 * tests/skeletons.at (%define Boolean variables: invalid skeleton
4414 defaults): Update output for location change.
4415 (Complaining during macro argument expansion): Extend to test
4416 b4_percent_define_get_loc and b4_percent_define_get_syncline errors.
4418 2007-10-07 Joel E. Denny <jdenny@ces.clemson.edu>
4420 Fix some error-reporting macro bugs.
4421 * data/bison.m4 (b4_cat): New.
4422 (b4_error, b4_error_at): Use b4_cat to send error directives directly
4423 to stdout so they don't become arguments to other macros. Update
4424 comments and add examples.
4425 (b4_warn, b4_warn_at, b4_complain, b4_complain_at): Update comments and
4427 (b4_fatal, b4_fatal_at): Likewise, and invoke m4_exit(1) immediately
4428 after printing the error directive so that M4 doesn't report subsequent
4429 problems that are induced by this problem.
4430 * src/scan-skel.l: Recognize @` digraph outside of directive arguments
4431 instead of just in them. Recognize @\n in both places. Both expand to
4432 the empty string. Needed by b4_cat.
4433 * tests/skeletons.at (Complaining during macro argument expansion):
4435 (Fatal errors make M4 exit immediately): New test case.
4437 2007-10-04 Joel E. Denny <jdenny@ces.clemson.edu>
4439 Implement --print-datadir.
4440 * src/getargs.c (usage): Mention.
4441 (PRINT_DATADIR_OPTION): New anonymous enum member.
4442 (long_options): Add entry for it.
4443 (getargs): Add case for it calling compute_pkgdatadir.
4444 * src/output.c (output_skeleton): Encapsulate data directory
4445 computation from here...
4446 (prepare): ... and from here...
4447 (compute_pkgdatadir): ... into this new function.
4448 * src/output.h (compute_pkgdatadir): Prototype.
4450 2007-09-29 Joel E. Denny <jdenny@ces.clemson.edu>
4452 * src/print-xml.c (escape_bufs): New static global variable
4454 (xml_escape_n): ... the static local variable buf here.
4455 (print_xml): Free memory for escape_bufs.
4456 * src/reduce.c (reduce_xml): XML-escape terminal symbol tags.
4458 2007-09-25 Joel E. Denny <jdenny@ces.clemson.edu>
4460 Replace `%push-parser' and `%push-pull-parser' with
4461 `%define push_pull "push"' and `%define push_pull "both"'.
4462 `%define push_pull "pull"' is the default.
4463 * doc/bison.texinfo (Push Decl, Push Parser Function,
4464 Pull Parser Function, Parser Create Function, Parser Delete Function):
4465 Update declarations.
4466 (Decl Summary, Table of Symbols): Replace %push-parser and
4467 %push-pull-parser entries with a %define push_pull entry.
4468 * data/bison.m4 (b4_percent_define_check_values): New macro.
4469 (b4_pull_if, b4_push_if, b4_use_push_for_pull_if): Move these
4471 * data/c.m4 (b4_identification): ... and the YYPUSH and YYPULL cpp
4473 * data/push.c: ... to here and compute them from the value of the
4474 %define variable push_pull.
4475 * data/c-skel.m4: Instead of choosing the push.c skeleton for push
4476 parsing requests here...
4477 * data/yacc.c: ... hack this to switch to push.c any time
4478 b4_use_push_pull_flag or the %define variable push_pull is set. This
4479 will go away when we mv push.c yacc.c.
4480 * data/c++-skel.m4, data/glr.c, data/java-skel.m4: Don't report that
4481 push parsing is not supported since unused %define variables are
4483 * src/getargs.c, src/getargs.h (pull_parser, push_parser): Remove.
4484 * src/muscle_tab.h (muscle_percent_define_check_values): Update
4485 comments for consistency with b4_percent_define_check_values.
4486 * src/output.c (prepare): Don't insert b4_pull_flag and b4_push_flag
4488 * src/parse-gram.y (PERCENT_PUSH_PARSER, PERCENT_PUSH_PULL_PARSER):
4490 (prologue_declaration): Remove %push-parser and %push-pull-parser
4492 * src/scan-gram.l (%push-parser, %push-pull-parser): Remove rules.
4493 * tests/calc.at: Update declarations.
4494 * tests/input.at (%define enum variables): New test case.
4495 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Update
4497 (Push Parsing: Multiple impure instances): Update declaration.
4498 (Push Parsing: Unsupported Skeletons): New test case.
4499 * tests/torture.at (Exploding the Stack Size with Alloca): Update
4501 (Exploding the Stack Size with Malloc): Update declaration.
4503 2007-09-24 Wojciech Polak <polak@gnu.org>
4505 Add XSLT transformations.
4507 * data/xslt/xml2dot.xsl: Transform XML into DOT.
4508 * data/xslt/xml2text.xsl: Transform XML into plain text.
4509 * data/xslt/xml2xhtml.xsl: Transform XML into XHTML.
4510 * data/Makefile.am (xsltdir): New variable.
4511 (dist_xslt_DATA): Add xslt/*.xsl files.
4513 2007-09-23 Paul Eggert <eggert@cs.ucla.edu>
4515 * src/conflicts.c (log_resolution): Fix indenting bugs I introduced.
4516 Problem reported by Wojciech Polak.
4517 * src/print-xml.c (xml_puts): Work even if LEVEL exceeds INT_MAX/2.
4518 (xml_printf): Undo change I made on 21 September; that is,
4519 indent 2 spaces, not 1.
4521 2007-09-23 Joel E. Denny <jdenny@ces.clemson.edu>
4523 Pacify ./configure --enable-gcc-warnings.
4524 * src/print-xml.c, src/print-xml.h (xml_puts): Make third argument
4525 `char const *' instead of `char *'.
4526 * src/state.c (state_rule_lookahead_tokens_print_xml): Remove unused
4527 local variable `sep'.
4529 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4531 * src/gram.c (rule_rhs_print_xml): Now static, since it isn't used
4533 * src/print-xml.c: Prefer "const" after types; that's more consistent.
4534 (xml_printf): Indent just 1 space for level.
4535 (e_char, xlate_char): Remove.
4536 (xml_escape_string): Rewrite to avoid undefined behavior (used
4537 storage that was freed from the stack).
4538 (xml_escape_n): Don't bother checking for subscript error.
4540 2007-09-21 Wojciech Polak <polak@gnu.org>
4542 Add Bison XML Automaton Report.
4544 Add support for an -x option to generate an XML report.
4545 It is not documented yet.
4546 * src/print-xml.c: New file.
4547 * src/print-xml.h: Likewise.
4548 * lib/timevar.def (TV_XML): New var.
4549 * src/Makefile.am (bison_SOURCES): Add print-xml.c, print-xml.h.
4550 * src/conflicts.c: Include print-xml.h.
4551 (solved_conflicts_xml_obstack): New var.
4552 (log_resolution, conflicts_solve, conflicts_free):
4553 Add support for XML report.
4554 (conflicts_output_val): New function.
4555 * src/conflicts.h (conflicts_output_val): New decl.
4556 * src/files.c (spec_xml_file): New var.
4557 (compute_output_file_names, output_file_names_free): Add XML support.
4558 * src/files.h (spec_xml_file): New decl.
4559 * src/getargs.c (xml_flag): New var.
4560 (usage, short_options, long_options, getargs): Add XML support.
4561 * src/getargs.h (xml_flag): New decl.
4562 * src/gram.c: Include print-xml.h.
4563 (rule_lhs_print_xml, rule_rhs_print_xml):
4564 (grammar_rules_partial_print_xml, grammar_rules_print_xml):
4566 * src/gram.h: Declare external ones.
4567 * src/main.c: Include print-xml.h.
4568 (main): Add XML support.
4569 * src/reduce.c: Include print-xml.h.
4570 (reduce_xml): New function.
4571 * src/reduce.h: Declare it.
4572 * src/state.c: Include print-xml.h.
4573 (state_new): Add XML support.
4574 (state_rule_lookahead_tokens_print_xml): New function.
4575 * src/state.h: Declare it.
4576 (struct state): New member solved_conflicts_xml.
4577 * src/symtab.c (symbol_class_get_string): New function.
4578 * src/symtab.h: Declare it.
4580 2007-09-21 Paul Eggert <eggert@cs.ucla.edu>
4582 * GNUmakefile: Switch to coreutils's version.
4583 * bootstrap: Likewise.
4584 * Makefile.cfg: Adjust to new GNUmakefile.
4585 * README-hacking: Likewise.
4589 2006-08-18 Paul Eggert <eggert@cs.ucla.edu>
4590 Bruno Haible <bruno@clisp.org>
4592 * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
4593 and is a script that invokes bison. Tighten the code. Add comments.
4595 2007-08-28 Joel E. Denny <jdenny@ces.clemson.edu>
4597 Spell "boolean" as "Boolean". Reported by Akim Demaille.
4598 * data/bison.m4 (b4_percent_define_flag_if): Fix complaint.
4599 * doc/bison.texinfo (Decl Summary): Fix.
4600 * src/muscle_tab.c (muscle_percent_define_flag_if): Fix complaint.
4601 * tests/input.at (Boolean %define variables): Update output.
4602 * tests/skeletons.at (%define boolean variables: invalid skeleton
4603 defaults): Rename to...
4604 (%define Boolean variables: invalid skeleton defaults): ... this and
4607 2007-08-17 Joel E. Denny <jdenny@ces.clemson.edu>
4609 In impure push mode, don't allow more than one yypstate to be allocated
4610 since multiple impure parsers would corrupt yynerrs.
4611 * data/push.c (yypstate_allocated): New static global variable
4613 (yypull_parse): If yypstate_new returns 0, don't report it as memory
4614 exhaustion if yypstate_allocated is 1, but still return 2.
4615 (yypstate_new): Invoke yyerror and return 0 if yypstate_allocated is
4616 already 1. Otherwise, set it to 1.
4617 (yypstate_delete): Set it to 0.
4618 * tests/push.at (Push Parsing: Multiple impure instances): New test
4621 2007-08-17 Bob Rossi <bob@brasko.net>
4623 * doc/bison.texinfo (Push Decl): Document the push parser.
4624 (Table of Symbols): Ditto.
4626 (Decl Summary): Ditto.
4627 (Multiple Parsers, Push Parser Function, Pull Parser Function,
4628 Parser Create Function, Parser Delete Function):
4629 Add new push parser symbols.
4630 (Table of Symbols): Document push-parser, push-pull-parser,
4631 yypush_parse, yypull_parse, yypstate_new and yypstate_delete.
4633 2007-08-15 Paul Eggert <eggert@cs.ucla.edu>
4636 * doc/gpl-3.0.texi: New file.
4637 * doc/gpl.texi: Remove.
4638 * COPYING, GNUmakefile, HACKING, Makefile.am, Makefile.cfg:
4639 * Makefile.maint, NEWS, PACKAGING, README, README-alpha:
4640 * README-hacking, TODO, bootstrap, bootstrap.conf:
4641 * configure.ac, data/Makefile.am, data/README, data/bison.m4:
4642 * data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4:
4643 * data/glr.c, data/glr.cc, data/java-skel.m4, data/java.m4:
4644 * data/lalr1.cc, data/lalr1.java, data/location.cc:
4645 * data/push.c, data/yacc.c, data/m4sugar/m4sugar.m4:
4646 * djgpp/Makefile.maint, djgpp/README.in, djgpp/config.bat:
4647 * djgpp/config.sed, djgpp/config.site, djgpp/config_h.sed:
4648 * djgpp/djunpack.bat, djgpp/subpipe.c, djgpp/subpipe.h:
4649 * djgpp/testsuite.sed, doc/Makefile.am, doc/bison.texinfo:
4650 * doc/fdl.texi, doc/refcard.tex, etc/Makefile.am, etc/README:
4651 * etc/bench.pl.in, examples/Makefile.am, examples/extexi:
4652 * examples/calc++/Makefile.am, lib/Makefile.am, lib/abitset.c:
4653 * lib/abitset.h, lib/bbitset.h, lib/bitset.c, lib/bitset.h:
4654 * lib/bitset_stats.c, lib/bitset_stats.h, lib/bitsetv-print.c:
4655 * lib/bitsetv-print.h, lib/bitsetv.c, lib/bitsetv.h:
4656 * lib/ebitset.c, lib/ebitset.h, lib/get-errno.c:
4657 * lib/get-errno.h, lib/lbitset.c, lib/lbitset.h:
4658 * lib/libiberty.h, lib/main.c, lib/subpipe.c, lib/subpipe.h:
4659 * lib/timevar.c, lib/timevar.def, lib/timevar.h:
4660 * lib/vbitset.c, lib/vbitset.h, lib/yyerror.c:
4661 * m4/c-working.m4, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4:
4662 * m4/timevar.m4, src/LR0.c, src/LR0.h, src/Makefile.am:
4663 * src/assoc.c, src/assoc.h, src/closure.c, src/closure.h:
4664 * src/complain.c, src/complain.h, src/conflicts.c:
4665 * src/conflicts.h, src/derives.c, src/derives.h, src/files.c:
4666 * src/files.h, src/flex-scanner.h, src/getargs.c:
4667 * src/getargs.h, src/gram.c, src/gram.h, src/graphviz.c:
4668 * src/lalr.c, src/lalr.h, src/location.c, src/location.h:
4669 * src/main.c, src/muscle_tab.c, src/muscle_tab.h:
4670 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
4671 * src/parse-gram.c, src/parse-gram.h, src/parse-gram.y:
4672 * src/print.c, src/print.h, src/print_graph.c:
4673 * src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c:
4674 * src/reduce.h, src/relation.c, src/relation.h:
4675 * src/revision.h, src/scan-code.h, src/scan-code.l:
4676 * src/scan-gram.h, src/scan-gram.l, src/scan-skel.h:
4677 * src/scan-skel.l, src/state.c, src/state.h, src/symlist.c:
4678 * src/symlist.h, src/symtab.c, src/symtab.h, src/system.h:
4679 * src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h:
4680 * tests/Makefile.am, tests/actions.at, tests/c++.at:
4681 * tests/calc.at, tests/conflicts.at, tests/cxx-type.at:
4682 * tests/existing.at, tests/glr-regression.at:
4683 * tests/headers.at, tests/input.at, tests/java.at:
4684 * tests/local.at, tests/output.at, tests/push.at:
4685 * tests/reduce.at, tests/regression.at, tests/sets.at:
4686 * tests/skeletons.at, tests/synclines.at, tests/testsuite.at:
4690 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4692 Get rid of broken %no-parser, -n, and --no-parser implementation and
4694 * TODO: Don't mention them.
4695 * doc/bison.1: Likewise.
4696 * doc/bison.texinfo (Decl Summary): Likewise.
4697 (Bison Options): Likewise.
4698 (Option Cross Key): Likewise.
4699 * src/getargs.c (no_parser_flag): Remove global variable.
4700 (usage): Don't print description of -n and --no-parser.
4701 (long_options): Remove --no-parser entry here.
4702 (getargs): Remove -n case in the switch here.
4703 * src/getargs.h (no_parser_flag): Remove extern.
4704 * tests/regression.at (Web2c Actions): Remove comment that mentions
4707 2007-08-11 Joel E. Denny <jdenny@ces.clemson.edu>
4709 * tests/push.at (Push Parsing: Memory Leak for Early Deletion): Do not
4710 name user variables starting with `yy'. Just pass NULL instead of a
4711 dummy local &yylval to yypush_parse.
4712 * tests/torture.at (AT_DATA_STACK_TORTURE): Do not name user variables
4715 2007-08-03 Joel E. Denny <jdenny@ces.clemson.edu>
4717 * data/yacc.c (yyexhaustedlab): Define it when YYERROR_VERBOSE is
4718 true since it's then always used regardless of whether yyoverflow is
4719 defined. Reported by Christian Burger at
4720 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00031.html>.
4721 * THANKS: Add Christian Burger.
4723 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
4724 node names: say "Decl Summary" not "Bison Declaration Summary".
4726 2007-07-28 Joel E. Denny <jdenny@ces.clemson.edu>
4728 * src/muscle_tab.c (muscle_percent_define_flag_if): In order to
4729 determine whether this function has already complained about an invalid
4730 value for a %define boolean variable, don't check whether Bison has
4731 ever examined the value. As written, the check was a tautology.
4732 Instead, record and check for this complaint using a separate muscle.
4734 2007-07-27 Joel E. Denny <jdenny@ces.clemson.edu>
4736 Fix push parsing memory leak reported by Brandon Lucia at
4737 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00032.html>.
4738 * THANKS: Add Brandon Lucia.
4739 * data/push.c (yypstate_delete): Free the stack if it was reallocated
4740 but the parse never completed and thus freed it.
4741 * tests/Makefile.am (TESTSUITE_AT): Add push.at.
4742 * tests/testsuite.at: Include push.at.
4743 * test/push.at: New.
4744 (Push Parsing: Memory Leak for Early Deletion): New test case.
4746 2007-07-17 Joel E. Denny <jdenny@ces.clemson.edu>
4748 Improve handling of multiple S/R conflicts in the same state and of S/R
4749 conflicts involving multiple reductions.
4750 * src/conflicts.c (resolve_sr_conflict): Don't assign the error action
4751 set for a state here or Bison will abort if it is reassigned on a
4752 later conflicted reduction in the same state.
4753 Similarly, don't finalize and assign the solved conflicts report here
4754 or it will be lost if it is reassigned on a later conflicted reduction
4756 (set_conflicts): Instead, assign them both here after all S/R conflicts
4757 in the state have been fully examined.
4758 * src/print.c (shift_set): Rename to...
4759 (no_reduce_set): ... this.
4760 (print_reductions): Update for rename, and add %nonassoc error action
4761 tokens to no_reduce_set so that, when printing the first remaining
4762 reduction on an error action token, the reduction is enclosed in
4764 (print_results): Update for rename.
4765 * tests/conflicts.at (Solved conflicts report for multiple reductions
4766 in a state): New test case.
4767 (%nonassoc error actions for multiple reductions in a state): New test
4770 * src/main.c (main): Don't depend on C99 features.
4772 2007-07-16 Joel E. Denny <jdenny@ces.clemson.edu>
4774 * build-aux/.cvsignore: Add compile.
4775 * lib/.cvsignore: Add charset.alias, ref-add.sed, ref-del.sed, and
4778 2007-07-10 Joel E. Denny <jdenny@ces.clemson.edu>
4780 * bootstrap (slurp): Create target directories that don't exist.
4781 Specifically, we need lib/uniwidth/ because of recent Gnulib changes.
4783 2007-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
4785 * LR0.c (new_itemsets): Fix wording in comments: say item index rather
4787 * closure.c (closure): Likewise.
4788 * state.h (reductions): Comment sorting of rules.
4789 (state): Comment sorting of items.
4791 2007-07-02 Joel E. Denny <jdenny@ces.clemson.edu>
4793 Fix C++ test cases after recent Gnulib changes. Discussed starting at
4794 <http://lists.gnu.org/archive/html/bug-bison/2007-07/msg00000.html>.
4795 * examples/calc++/Makefile.am (DEFAULT_INCLUDES): Override Automake's
4796 definition in order to avoid Gnulib headers since we don't use config.h
4798 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): Use AT_DATA_GRAMMAR
4799 rather than AT_DATA so that config.h is included.
4801 2007-07-01 Joel E. Denny <jdenny@ces.clemson.edu>
4803 * data/glr.c (yy_yypstack, yypstates, yypdumpstack): Use YYFPRINTF
4804 instead of fprintf. Guard these functions with #if YYDEBUG instead of
4805 #ifdef YYDEBUG for consistency with all other uses of YYDEBUG in Bison
4806 and so that YYFPRINTF is guaranteed to be defined here.
4808 2007-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
4810 * src/muscle_tab.c (muscle_percent_define_invalid_value): Replace
4812 (muscle_percent_define_check_values): ... this more helpful function.
4813 Again, it's not used yet, but it will be.
4814 * src/muscle_tab.h: Likewise.
4816 Improve some comments in parser table construction.
4817 * src/LR0.c (new_itemsets): Explain sorting of itemset and kernel_base.
4818 (generate_states): Don't mention ruleset, which is internal to closure.
4819 * src/closure.c (closure): Explain sorting of core and itemset, which
4820 is required for this function to behave correctly.
4821 * src/closure.h (closure): Mention sorting.
4823 2007-05-28 Joel E. Denny <jdenny@ces.clemson.edu>
4825 * src/lalr.c (state_lookahead_tokens_count): For code readability,
4826 move the check for disabled transitions to an aver since conflict
4827 resolution hasn't happened yet.
4829 * src/lalr.c (state_lookahead_tokens_count): Remove the check that
4830 labels a state as inconsistent just because it has error transitions.
4831 The original form of this check appeared in revision 1.1 of lalr.c,
4832 which was committed on 1991-12-21. Now (at least), changing the
4833 consistency label on such a state appears to have no useful effect in
4834 any of the places it is examined, which I enumerate below. The key
4835 point to understanding each item in this enumeration is that a state
4836 with an error transition is labelled consistent in the first place only
4837 if it has no rules, so the check cannot matter for states that have
4838 rules. (1) Labelling a state as inconsistent will cause set_conflicts
4839 to try to identify its conflicts, and a state must have *rules* to have
4840 conflicts. (2) Labelling a state as inconsistent will affect how
4841 action_row sets the default *rule* for the state. (3) Labelling a
4842 state as inconsistent will cause build_relations to add lookback edges
4843 to *rules* in that state.
4844 * src/state.h (struct state): Word the comment for member consistent
4847 2007-05-27 Joel E. Denny <jdenny@ces.clemson.edu>
4849 Don't depend on C99 features.
4850 * src/conflicts.c (conflicts_update_state_numbers): Fix for-loop.
4851 * src/lalr.c (lalr_update_state_numbers): Fix for-loop.
4852 * src/reader.c (check_and_convert_grammar): Fix for-loop.
4853 * src/state.c (state_mark_reachable_states): Fix for-loop.
4854 (state_remove_unreachable_states): Fix for-loop.
4856 Don't widen struct state with member reachable just to temporarily
4857 record reachability. Instead, use a local bitset.
4858 * src/state.h (struct state): Remove member.
4859 * src/state.c (state_new): Don't initialize it.
4860 (state_mark_reachable_states): Rename to...
4861 (state_record_reachable_states): ... this, and use bitset.
4862 (state_remove_unreachable_states): Use bitset.
4864 2007-05-26 Joel E. Denny <jdenny@ces.clemson.edu>
4866 * src/Makefile.am (yacc): Quote target action commands properly so
4867 that the yacc script isn't corrupt. Reported by Hans Aberg at
4868 <http://lists.gnu.org/archive/html/bug-bison/2007-05/msg00003.html>.
4870 * data/glr.c (yylval): As in yacc.c, don't extern in the header for
4871 the case of pure parsers. Reported by Frans Englich at
4872 <http://lists.gnu.org/archive/html/help-bison/2007-05/msg00018.html>.
4873 * THANKS: Add Frans Englich.
4875 * NEWS (2.3a+): In the %code entry, reference section `Bison
4876 Declaration Summary' from the manual now since the %code summary has
4878 * doc/bison.texinfo (Prologue Alternatives): Mention that directives
4879 in the rules section must be terminated by semicolons.
4881 2007-05-20 Joel E. Denny <jdenny@ces.clemson.edu>
4883 Extend the front-end API for %define variables to more completely
4884 mirror the back-end. This will be useful in the future.
4885 * data/bison.m4 (b4_percent_define_get, b4_percent_define_ifdef):
4886 Update comments to mention the new front-end counterparts of these
4888 * src/muscle_tab.c (MUSCLE_COMMON_DECODE): New macro with common code
4889 for muscle_string_decode and muscle_location_decode.
4890 (muscle_string_decode): New static function.
4891 (muscle_location_decode): Use MUSCLE_COMMON_DECODE.
4892 (muscle_percent_define_get, muscle_percent_define_ifdef): New
4894 (muscle_percent_define_flag_if): Use muscle_percent_define_ifdef and
4895 muscle_percent_define_get to mimic the b4_percent_define_flag_if
4896 implementation more closely.
4897 (muscle_percent_define_invalid_value): New function.
4898 * src/muscle_tab.h (muscle_percent_define_get,
4899 muscle_percent_define_ifdef, muscle_percent_define_invalid_value):
4902 2007-05-07 Joel E. Denny <jdenny@ces.clemson.edu>
4904 * NEWS (2.3a+): Mention yesterday's state-removal change.
4905 (2.3a): Remove the %language entry, which was added after 2.3a.
4906 * src/LR0.c, src/closure.c, src/closure.h, src/conflicts.c,
4907 src/conflicts.h, src/lalr.c, src/lalr.h, src/print.c,
4908 src/print_graph.c, src/state.c, src/state.h, tests/conflicts.at,
4909 tests/existing.at: Update copyright date.
4911 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4913 If conflict resolution makes states unreachable, remove those states,
4914 report rules that are then unused, and don't report conflicts in those
4916 * src/conflicts.c, src/conflicts.h (conflicts_update_state_numbers):
4917 New global function.
4918 * src/lalr.c, src/lalr.h (lalr_update_state_numbers): New global
4920 * src/main.c (main): After conflict resolution, remove the unreachable
4921 states and update all data structures that reference states by number.
4922 * src/state.c (state_new): Initialize each state's reachable member to
4924 (state_mark_reachable_states): New static function.
4925 (state_remove_unreachable_states): New global function.
4926 * src/state.h (struct state): Add member bool reachable.
4927 (state_remove_unreachable_states): Prototype.
4928 * tests/conflicts.at (Unreachable States After Conflict Resolution):
4930 * tests/existing.at (GNU pic Grammar): Update test case output now that
4931 an unused rule is discovered.
4933 2007-05-06 Joel E. Denny <jdenny@ces.clemson.edu>
4935 Minor code cleanup in parser table construction.
4936 * src/LR0.c (new_itemsets): Use item_number_is_symbol_number.
4937 (new_itemsets, save_reductions): Update for rename to nitemset.
4938 * src/closure.c (nritemset): Rename to...
4939 (nitemset): ... this since the "r" appears to meaningless and isn't
4940 used in the comments.
4941 (closure): Update for rename.
4942 * src/closure.h (nritemset): Update extern to...
4943 (nitemset): ... this.
4944 * src/lalr.c (LA): Fix a typo in comments.
4945 * src/print.c (print_core): Update for rename to nitemset.
4946 * src/print_graph.c (print_graph): Likewise.
4947 * src/state.h: Fix some typos in header comments.
4949 2007-04-04 Paul Eggert <eggert@cs.ucla.edu>
4951 * THANKS: Use ASCII for Sebastien Fricker's name. Bison source
4952 still sticks to ASCII. Sorry!
4954 * README-hacking: New file, taken mostly from coreutils, with changes
4955 for Bison. Contains much of the contents of:
4956 * README-cvs: Remove.
4957 * bootstrap: Sync from gnulib.
4958 * build-aux/.cvsignore: Remove *.t, mkinstalldirs.
4959 * lib/.cvsignore: Add wchar.h, wctype.h. Remove exit.h.
4961 2007-03-10 Joel E. Denny <jdenny@ces.clemson.edu>
4963 * doc/bison.texinfo (Destructor Decl): Fix typo reported by Sebastian
4965 (Java Differences): Fix some typos.
4966 * THANKS: Add Sebastian Setzer.
4968 2007-03-07 Paolo Bonzini <bonzini@gnu.org>
4970 * data/java.m4 (b4_single_class_if): Remove.
4971 (b4_abstract_if): Look at "%define abstract".
4973 (b4_union_name): Rename...
4974 (b4_yystype): ... to this. Map to "%define stype".
4975 (b4_rhs_value, b4_parse_param_decl, b4_lex_param_decl,
4976 b4_maybe_throws): Fix quoting.
4977 (b4_lex_param_call): Move below to keep b4_*_param_decl close.
4978 * data/lalr1.java (Lexer interface): Always define.
4979 (Lexer interface within parser class): Remove.
4980 (YYLexer class): New, used when "%code lexer" is present.
4981 (constructor): When "%code lexer" is used, pass %lex-param
4982 to the lexer constructor.
4983 (yylex, yyparse): Remove %lex-param from method invocations
4984 (YYStack, yyaction, yyparse): Rename b4_union_name to b4_yystype.
4986 * doc/bison.texinfo (Java Bison Interface): Mention "%define
4987 abstract". Rename "%define union_name" to "%define stype".
4988 Rename method names according to previous patch.
4989 (Java Scanner Interface): Describe "%code lexer" instead of
4990 "%pure-parser" and "%define single_class".
4991 (Java Differences): Mention "%code lexer".
4993 * tests/java.at (_AT_DATA_JAVA_CALC_Y): Remove final argument.
4994 Include scanner here, using macros from tests/local.at.
4995 (AT_DATA_CALC_Y): Remove final argument.
4996 (_AT_CHECK_JAVA_CALC): Likewise.
4997 (AT_CHECK_JAVA_CALC): Likewise. Test all four combinations
4998 of %locations and %error-verbose.
4999 (main): Test with and without %lex-param.
5000 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Push AT_LEXPARAM_IF.
5001 (AT_BISON_OPTION_POPDEFS): Pop it.
5003 2007-03-07 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5005 DJGPP spefic issue. Inhibit the use of disallowed characters for
5006 file name genertion on Win98, WinXP, etc. These are |<>":?*\
5007 and concern testsuite case 46.
5008 * Makefile.am: djgpp/testsuite.sed added to EXTRA_DIST
5009 * djgpp/testsuite.sed: Inhibit the use of disallowed characters.
5010 * djgpp/config.bat: Inhibit the use of disallowed characters.
5012 2007-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
5014 Miscellaneous %define and %code cleanup.
5015 * data/bison.m4 (b4_percent_define_flag_if): Correct comments on how
5016 values are interpreted.
5017 * doc/bison.texinfo (Decl Summary): Clean up and extend %define
5018 documentation a little more.
5019 * src/muscle_tab.c (MUSCLE_USER_NAME_CONVERT,
5020 muscle_percent_define_insert, muscle_percent_code_grow): New
5022 * src/muscle_tab.h (muscle_percent_define_insert,
5023 muscle_percent_code_grow): Prototype.
5024 * src/parse-gram.y (prologue_declaration): Use
5025 muscle_percent_define_insert and muscle_percent_code_grow when parsing
5026 %define and %code directives.
5028 Make it easy to share %define boolean variables between the front-end
5029 and back-end. Though not used yet, this will be useful in the future.
5030 * data/bison.m4 (b4_check_user_names): Rewrite comments to talk about
5031 Bison uses of names rather than just skeleton uses of names.
5032 (b4_percent_define_get, b4_percent_define_ifdef): Rename
5033 b4_percent_define_skeleton_variables(VARIABLE) to
5034 b4_percent_define_bison_variables(VARIABLE).
5035 (b4_percent_code_get, b4_percent_code_ifdef): Rename
5036 b4_percent_code_skeleton_qualifiers(QUALIFIER) to
5037 b4_percent_code_bison_qualifiers(QUALIFIER).
5038 (b4_check_user_names_wrap): Update for renames.
5039 * src/muscle_tab.c, src/muscle_tab.h (muscle_percent_define_flag_if,
5040 muscle_percent_define_default): New functions mimicking
5041 b4_percent_define_flag_if and b4_percent_define_default.
5043 For %define variables, report locations for invalid values and
5045 * data/bison.m4 (b4_percent_define_flag_if): Read
5046 b4_percent_define_loc(VARIABLE) to report the location of an invalid
5048 (b4_percent_define_default): Save a special location in
5049 b4_percent_define_loc(VARIABLE) in case the default value for VARIABLE
5050 must later be reported as invalid.
5051 * src/muscle_tab.c (muscle_location_grow, muscle_location_decode): New
5053 (muscle_percent_define_insert): Record the location of VARIABLE in
5054 muscle percent_define_loc(VARIABLE), and use it to report the previous
5055 location for a redefinition.
5056 (muscle_percent_define_flag_if): Update like b4_percent_define_flag_if.
5057 (muscle_percent_define_default): Update like b4_percent_define_default.
5058 (muscle_grow_user_name_list): Rename to...
5059 (muscle_user_name_list_grow): ... this for consistency and use
5060 muscle_location_grow.
5061 * src/muscle_tab.h (muscle_location_grow): Prototype.
5062 * tests/input.at (%define errors): Update expected output.
5063 * tests/skeletons.at (%define boolean variables: invalid skeleton
5064 defaults): New test case.
5066 2007-02-28 Joel E. Denny <jdenny@ces.clemson.edu>
5068 * src/print.c (lookahead_set, state_default_rule): Remove.
5069 (print_reductions): Replace state_default_rule invocation with
5070 equivalent use of yydefact, which was computed in token_actions in
5072 (print_results): Don't allocate lookahead_set.
5074 2007-02-27 Paolo Bonzini <bonzini@gnu.org>
5076 * data/lalr1.java: Prefix all private members with yy.
5078 2007-02-24 Joel E. Denny <jdenny@ces.clemson.edu>
5080 Use YYFPRINTF instead of fprintf where appropriate. Reported by
5081 Sebastien Fricker at
5082 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00035.html>.
5083 * THANKS: Add Sebastien Fricker.
5084 * data/glr.c, data/push.c, data/yacc.c (yy_reduce_print): Implement.
5085 * doc/bison.texinfo (Tracing): Make it clearer that YYFPRINTF must
5086 accept a variable number of arguments.
5088 2007-02-19 Joel E. Denny <jdenny@ces.clemson.edu>
5090 * bootstrap: Remove occurrences of .#bootmp from lib/Makefile.
5092 2007-02-13 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5094 * djgpp/config.bat: Adjustments concerning the use of autoconf 2.61.
5095 * djgpp/config.sed: Adjustments concerning the use of autoconf 2.61.
5096 * djgpp/config.site: Adjustments concerning the use of autoconf 2.61.
5098 2007-02-11 Paul Eggert <eggert@cs.ucla.edu>
5100 Undo my 2007-02-07 change, switching back to the c-strcase module
5101 introduced in the 2007-02-03 change. Bruno Haible reported that
5102 the 2007-02-07 change would be dangerous in Turkish if we add a
5103 language whose name contains "i", since "i" is not lowercase "I"
5105 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase.
5106 * lib/.cvsignore: Add c-ctype.c, c-ctype.h, c-strcase.h,
5107 c-strcasecomp.c, c-strncasecmp.c. Remove strcasecmp.c, strncasecmp.c.
5108 * m4/.cvsignore: Remove strcase.m4.
5109 * src/getargs.c: Revert 2007-02-07 change, as follows.
5110 Include c-strcase.h.
5111 (language_argmatch): Use c_strcasecmp rather than strcasecmp.
5113 2007-02-11 Bruno Haible <bruno@clisp.org>
5115 Enable the Java related testsuite tests when the only Java compiler
5116 found is a gcj < 4.3. Discussed at
5117 <http://lists.gnu.org/archive/html/bug-bison/2007-02/msg00016.html>.
5118 * configure.ac (gt_JAVACOMP): Don't specify a target_version.
5120 2007-02-11 Joel E. Denny <jdenny@ces.clemson.edu>
5122 * data/Makefile.am: Update copyright date.
5123 * data/push.c (yypull_parse): Report memory exhaustion and return 2 if
5124 yypstate_new returns NULL.
5125 (yypstate_new): Return NULL if malloc does.
5126 * src/reader.c (packgram): Move translation of rule actions from the
5127 beginning of packgram to...
5128 (check_and_convert_grammar): ... here right before packgram is invoked
5129 so it's easier to write more complete comments, and remove redundant
5132 2007-02-10 Joel E. Denny <jdenny@ces.clemson.edu>
5134 As in semantic actions, make @$ in %initial-action, %destructor, and
5135 %printer imply %locations.
5136 * src/scan-code.l (SC_SYMBOL_ACTION): Set locations_flag = true when
5138 * tests/actions.at (AT_CHECK_ACTION_LOCATIONS): New macro supporting...
5139 (@$ in %initial-action implies %locations,
5140 @$ in %destructor implies %locations,
5141 @$ in %printer implies %locations): ... these new test cases.
5143 2007-02-07 Paul Eggert <eggert@cs.ucla.edu>
5145 Undo most of the 2007-02-03 change, switching to the strcase module
5146 now that gnulib strcase has been fixed.
5147 * bootstrap.conf (gnulib_modules): Remove c-strcase. Add strcase.
5148 * lib/.cvsignore: Remove c-ctype.c, c-ctype.h, c-strcase.h,
5149 c-strcasecomp.c, c-strncasecmp.c. Add strcasecmp.c, strncasecmp.c
5150 * m4/.cvsignore: Add strcase.m4.
5151 * src/getargs.c: Revert 2007-02-03 change, as follows.
5152 Don't include c-strcase.h.
5153 (language_argmatch): Use strcasecmp rather than c_strcasecmp.
5154 strcasecmp has "unspecified behavior" outside the POSIX locale,
5155 but it works fine in practice if at least one argument is ASCII,
5156 as is the case in Bison.
5158 2007-02-07 Paolo Bonzini <bonzini@gnu.org>
5160 * tests/java.at: Skip tests if only one of javac/java is present.
5161 Reported by Joel E. Denny.
5162 * tests/atlocal.in: Adjust copyright years.
5164 2007-02-05 Paolo Bonzini <bonzini@gnu.org>
5166 * data/lalr1.java (Stack): Work around old verifiers that disallow
5167 access to the private fields of an inner class, from the outer class.
5168 We can make Stack's fields public because user code doesn't have access
5169 to the instance of Stack used by parse(). Reported by Paul Eggert.
5171 2007-02-03 Paul Eggert <eggert@cs.ucla.edu>
5173 * .cvsignore: Add javacomp.sh, javaexec.sh. Is this really
5174 the right spot for these files?
5175 * bootstrap.conf (gnulib_modules): Add c-strcase.
5176 * lib/.cvsignore: Add c-ctype.c c-ctype.h, c-strcasecomp.c,
5178 * src/getargs.c: Include c-strcase.h.
5179 (language_argmatch): Use c_strcasecmp rather than strcasecmp,
5180 to avoid unspecified behavior.
5182 2007-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
5184 * doc/bison.texinfo (Decl Summary): Correct typo.
5186 2007-01-30 Paolo Bonzini <bonzini@gnu.org>
5188 * data/bison.m4 (b4_percent_define_flag_if): Don't treat 0 as false.
5189 Complain if the value does not match empty, "true" or "false".
5190 * data/c++.m4: Adjust default definitions of %define variables.
5191 * data/java.m4: Adjust default definitions of %define variables.
5192 * doc/bison.texinfo (Decl Summary): Adjust the %define entry according
5194 * tests/input.at (Boolean %define variables): Test new behavior.
5196 2007-01-29 Paolo Bonzini <bonzini@gnu.org>
5198 * NEWS: Mention java.
5199 * TODO: Remove things that are done.
5200 * bootstrap.conf: Add javacomp-script and javaexec-script.
5201 * configure.ac: Invoke gt_JAVACOMP and gt_JAVAEXEC.
5203 * data/Makefile.am: Add new files.
5204 * data/java-skel.m4: New.
5205 * data/java.m4: New.
5206 * data/lalr1.java: New.
5208 * doc/bison.texinfo: Put "A Complete C++ Example" under
5209 C++ Parsers. Add Java Parsers. Put C++ Parsers and Java Parsers
5210 under Other Languages.
5212 * src/getargs.c (valid_languages): Add Java.
5213 * src/getargs.h (struct bison_language): Update size of string fields.
5215 * tests/Makefile.am: Add java.at.
5216 * tests/atlocal.in: Add CONF_JAVA and CONF_JAVAC.
5217 * tests/java.at: New.
5218 * tests/testsuite.at: Include it.
5220 2007-01-28 Joel E. Denny <jdenny@ces.clemson.edu>
5223 * src/scan-skel.l (at_directive_perform): Add at_directive_argc and
5224 at_directive_argv arguments so these no longer have to be global
5225 variables. Also, update the implementation for the following changes.
5226 (fail_for_at_directive_too_many_args,
5227 fail_for_at_directive_too_few_args): Add at_directive_name argument.
5228 (at_directive_name): Remove as at_directive_argv[0] will be used for
5230 (AT_DIRECTIVE_ARGC_MAX): Increment to make space in at_directive_argv
5231 for the directive name.
5232 (at_directive_argc, at_directive_argv): Make these local within
5233 skel_lex instead of global.
5234 (INITIAL): Update directive start action for above changes.
5235 (SC_AT_DIRECTIVE_ARG): Rename to...
5236 (SC_AT_DIRECTIVE_ARGS): ... this, and update for above changes.
5237 (SC_AT_DIRECTIVE_SKIP_WS): Update.
5238 (scan_skel): Move yylex_destroy to...
5239 (skel_scanner_free): ... here.
5240 * tests/skeletons.at (installed skeleton file name): Rename to...
5241 (installed skeleton file names): ... this.
5243 2007-01-27 Joel E. Denny <jdenny@ces.clemson.edu>
5245 * ChangeLog: For changes in doc/bison.texinfo, consistently reference
5246 node names: say "Table of Symbols" not "Bison Symbols", and say "Decl
5247 Summary" not "Directives".
5248 * doc/bison.texinfo (Decl Summary, Calc++ Parser): Cross-reference the
5249 %code entry in "Decl Summary" rather than the one in "Table of Symbols"
5250 since the former is now the more complete one.
5251 (Prologue Alternatives): Likewise and do the same for %defines.
5252 (Table of Symbols): Add summary of %code, add summary of %define, and
5253 move full %code documentation to...
5254 (Decl Summary): ... here for consistency with other entries in these
5256 Move %define entry in order to keep this list alphabetized.
5257 Reword %define entry a little to put less emphasis on the skeleton
5258 concept, which most users shouldn't have to think about.
5260 2007-01-26 Paul Eggert <eggert@cs.ucla.edu>
5262 Adjust to recent gnulib changes.
5263 * lib/.cvsignore: Remove stpcpy.h, strndup.h, strnlen.h.
5264 Add string.h, string_.h, unistd_.h, wchar_.h.
5265 * m4/.cvsignore: Add gnulib-common.m4, string_h.m4, wchar.m4.
5266 * src/system.h: Don't include <stpcpy.h>; this is now done by
5269 2007-01-23 Paolo Bonzini <bonzini@gnu.org>
5271 Simplify implementation of unqualified %code, implement macros for
5272 uniform treatment of boolean %define flags. Document %define.
5273 * data/bison.m4 (b4_percent_define_ifdef, b4_percent_define_flag_if,
5274 b4_percent_code_ifdef): New.
5275 (b4_percent_code_get): Map unqualified %code to b4_percent_code().
5276 * data/c++.m4: Define default value for global_tokens_and_yystype.
5277 * data/glr.cc: Likewise.
5278 * data/location.cc: Use b4_percent_define_flag_if.
5280 * doc/bison.texinfo (Decl Summary): Document %define.
5282 * src/parse-gram.y (Unqualified %code): Change muscle name to
5284 (content.opt): Default to empty.
5286 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
5288 Implement support for relative and absolute skeleton file names.
5289 Discussed starting at
5290 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00071.html>.
5291 * doc/bison.texinfo (Decl Summary): Document in %skeleton entry.
5292 (Bison Options): Document in --skeleton entry.
5293 * src/output.c (output_skeleton): Use strncpy rather than strcpy since
5294 full_skeleton can't necessarily hold all of pkgdatadir.
5295 If the specified skeleton file name contains a `/', don't prepend
5297 * src/parse-gram.y (prologue_declaration): If the specified skeleton
5298 file name contains a `/', prepend the grammar file directory.
5299 * tests/Makefile.am (TESTSUITE_AT): Add skeletons.at.
5300 * skeletons.at: New file.
5301 (relative skeleton file names): New test case.
5302 (installed skeleton file names): New test case.
5303 * tests/testsuite.at: Include skeletons.at.
5305 * bootstrap: Update copyright to 2007.
5307 2007-01-17 Paolo Bonzini <bonzini@gnu.org>
5309 * bootstrap: Remove occurrences of .#bootmp from the files.
5311 2007-01-17 Akim Demaille <akim@epita.fr>
5313 * doc/bison.texinfo (Calc++ Parser): Don't try to alias
5315 Use per-type %printer.
5317 2007-01-17 Joel E. Denny <jdenny@ces.clemson.edu>
5319 * NEWS, data/c++-skel.m4, data/c++.m4, data/c-skel.m4, data/c.m4,
5320 data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5321 djgpp/config.site, src/files.c, src/files.h, src/main.c,
5322 src/muscle_tab.c, src/muscle_tab.h, src/parse-gram.y, src/reader.h,
5323 src/scan-skel.h, src/scan-skel.l, tests/actions.at, tests/calc.at,
5324 tests/glr-regression.at, tests/input.at, tests/local.at,
5325 tests/output.at, tests/torture.at: Update copyright to 2007.
5327 2007-01-16 Akim Demaille <akim@epita.fr>
5329 * doc/bison.texinfo (Calc++ Parsing Driver): Let "parse" return an
5331 (Calc++ Scanner): Exit with failure if we can't open the input
5333 Accept "-" standing for stdin.
5334 (Calc++ Top Level): Print the result only if the parsing was
5337 2007-01-16 Akim Demaille <akim@epita.fr>
5339 * data/lalr1.cc (yy_reduce_print_): Add a missing end-of-line.
5341 2007-01-15 Paolo Bonzini <bonzini@gnu.org>
5342 and Joel E. Denny <jdenny@ces.clemson.edu>
5344 Clean up %define and %code implementation in M4 some. Most
5345 importantly, rename all related macros to be in the b4_percent_define
5346 and b4_percent_code namespaces. Also, complete support for `.' in
5347 %define variable names and %code qualifiers.
5348 * data/bison.m4 (b4_check_user_names): Check for special
5349 "SKELETON-NAMESPACE(name)" macros instead of using two nested
5351 (b4_get_percent_define, b4_get_percent_code): Rename to...
5352 (b4_percent_define_get, b4_percent_code_get): ... these.
5353 Extend documentation with examples.
5354 For SKELETON-NAMESPACE (as documented for b4_check_user_names), use
5355 b4_percent_define_skeleton_variables and
5356 b4_percent_code_skeleton_qualifiers.
5357 Expect any value for the %define variable `foo' to be stored in the
5358 macro named `b4_percent_define(foo)'; expect any %code blocks for the
5359 qualifier `foo' to be stored in a macro named `b4_percent_code(foo)';
5360 expect any unqualified %code blocks to be stored in a macro named
5361 `b4_percent_code_unqualified'.
5362 Use m4_indir so that %define variable names and %code qualifiers can
5363 contain `.', which is allowed by the grammar parser.
5364 (b4_percent_define_default): New macro to set a default value for a
5366 (m4_wrap): Update wrapped code, and fix some underquoting.
5367 (b4_check_user_names_wrap): Update and define outside the m4_wrap.
5368 Expect grammar uses of %define variables and %code qualifiers to be
5369 defined in b4_percent_define_user_variables and
5370 b4_percent_code_user_qualifiers.
5371 * data/c++.m4: Use b4_percent_define_default rather than
5372 m4_define_default. Fix some underquoting. Skeleton usage of %define
5373 variable define_location_comparison now implies skeleton usage of
5374 %define variable filename_type.
5375 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5376 data/push.c, data/yacc.c: Update macro names.
5377 * src/parse-gram.y (prologue_declaration, grammar_declaration): Update
5380 2007-01-14 Juan Manuel Guerrero <juan.guerrero@gmx.de>
5382 DJGPP specific issues.
5384 * djgpp/config.site: Set ac_cv_path_mkdir to a sane DJGPP specific
5385 default. Set gl_cv_absolute_wctype_h to a sane DJGPP specific default.
5387 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5389 * tests/glr-regression.at: Use AT_PARSER_CHECK rather than AT_CHECK to
5390 run parsers in all tests so that Valgrind is invoked during
5391 maintainer-check-valgrind.
5392 (Duplicate representation of merged trees): Free all semantic values.
5393 (Duplicated user destructor for lookahead): Likewise.
5395 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5397 * tests/local.at (AT_PARSER_CHECK): Add a PRE argument to specify a
5398 command-line prefix.
5399 * tests/torture.at (Exploding the Stack Size with Alloca): Stderr is
5400 ignored, so use that PRE to set --log-fd=1 in VALGRIND_OPTS so we don't
5401 miss Valgrind messages.
5402 (Exploding the Stack Size with Malloc): Likewise.
5404 2007-01-09 Joel E. Denny <jdenny@ces.clemson.edu>
5406 Ignore YYSTACK_USE_ALLOCA for push parsers since the stacks can't be
5407 locals. Reported by Juan Manuel Guerrero at
5408 <http://lists.gnu.org/archive/html/bug-bison/2007-01/msg00000.html>.
5409 * data/push.c: Enclose the #ifdef YYSTACK_USE_ALLOCA in b4_push_if.
5410 Fix some indentation also.
5411 * tests/torture.at (Exploding the Stack Size with Alloca): Add comment
5412 explaining this issue.
5414 2007-01-09 Paolo Bonzini <bonzini@gnu.org>
5415 and Joel E. Denny <jdenny@ces.clemson.edu>
5417 Simplify union and prologue handling, and escape union and lex/parse
5418 params with digraphs.
5419 * data/bison.m4 (b4_pre_prologue, b4_post_prologue): Set their default
5420 values to the empty string since these are no longer guaranteed
5421 initialized by the front-end.
5422 * data/glr.c, data/glr.cc, data/lalr1.cc, data/push.c, data/yacc.c: Add
5423 braces around b4_user_stype since this is no longer done by the
5425 * src/files.c, src/files.h (pre_prologue_obstack,
5426 post_prologue_obstack): Remove.
5427 * src/muscle_tab.c (muscle_pair_list_grow): Don't duplicate header
5428 comments here. Use MUSCLE_OBSTACK_SGROW so that values are escaped
5429 with digraphs. This fixes lex params and parse params.
5430 * src/muscle_tab.h (muscle_pair_list_grow): Update comments.
5431 * src/output.c (prepare): Remove muscle insertion of the prologues.
5432 (output): Remove freeing of pre_prologue_obstack and
5433 post_prologue_obstack.
5434 * src/parse-gram.y (prologue_declaration): Use muscle_code_grow rather
5435 than prologue_augment for prologue parsing so you don't need prologue
5437 (grammar_declaration): For %union RHS, use `braceless' instead of
5438 "{...}" so that braces are already stripped and code is escaped with
5440 * src/reader.c (prologue_augment): Remove.
5441 (reader): Remove initialization of pre_prologue_obstack and
5442 post_prologue_obstack.
5443 * src/reader.h (prologue_augment): Remove.
5445 * data/c.m4: Remove stray parenthesis.
5447 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5449 Remove quotes from variables names in %define directives and from
5450 qualifiers in %code directives, and restrict the characters that are
5451 allowed in them to M4-friendly ones. For %define, continue to support
5452 the quoted form as a deprecated feature. Discussed starting at
5453 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00023.html>.
5454 * NEWS (2.3a+): Add entry for the change to %define. Update entry for
5456 * doc/bison.texinfo (Prologue Alternatives): Update.
5457 (Decl Summary): In %defines entry, update mention of `%code requires'
5458 and `%code provides'.
5459 (C++ Location Values): Update %define uses.
5460 (Calc++ Parser Interface): Likewise.
5461 (Calc++ Parser): Likewise, and update `%code requires' uses.
5462 (Table of Symbols): Update %code documentation.
5463 * src/parse-gram.y (prologue_declaration): For %define variables, use
5464 `variable' instead of `STRING'.
5465 (grammar_declaration): For %code qualifiers, use `ID' instead of
5467 (variable): New nonterminal that takes an `ID' or a `STRING'.
5468 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update %code
5470 * tests/calc.at (_AT_DATA_CALC_Y): Update %define use.
5471 * tests/input.at (Reject unused %code qualifiers): Update %code uses.
5472 (%define errors): Update %define uses.
5474 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5476 * src/parse-gram.y (prologue_declaration): Use MUSCLE_INSERT_STRING
5477 instead of muscle_insert for %define values so that M4-special
5478 characters are replaced with digraphs.
5479 * tests/input.at (%define errors): Extend to check weird values.
5481 2007-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
5483 Instead of having skeletons declare all valid %define variables and
5484 %code qualifiers, provide macros that retrieve the associated values
5485 and build these lists automatically. Thus Bison will now warn when a
5486 variable or qualifier is not used by the skeleton in the current
5487 invocation regardless of whether it might sometimes be used by that
5488 skeleton in other invocations. Also, move all %define value macros to
5489 the b4_percent_define_ namespace, and remove the %define "NAME" {CODE}
5490 form, which is replaced by %code.
5491 * data/bison.m4 (b4_check_for_unrecognized_names): Rename to...
5492 (b4_check_user_names): ... this, and change the series of valid name
5493 arguments to a single list argument for names used in the skeleton
5494 similar to the existing list argument for names used in the grammar.
5495 Warn instead of complaining.
5496 (b4_get_percent_define, b4_get_percent_code): New to retrieve %define
5497 values and %code code, to format %code code properly, and to build
5498 lists of all %define variables and %code qualifiers used in the
5499 skeleton: b4_skeleton_percent_define_variables and
5500 b4_skeleton_percent_code_qualifiers.
5501 (b4_check_percent_define_variables, b4_check_percent_code_qualifiers):
5503 (m4_wrap): ... m4_wrap b4_check_user_names invocations instead so that
5504 the skeleton names lists can finish building first. In place of
5505 b4_used_percent_define_variables and b4_used_percent_code_qualifiers,
5506 expect the lists b4_user_percent_define_variables and
5507 b4_user_percent_code_qualifiers.
5508 * data/c++.m4: Where setting default values for b4_parser_class_name,
5509 b4_location_type, b4_filename_type, b4_namespace, and
5510 b4_define_location_comparison, update their names to the
5511 b4_percent_define_ namespace.
5512 * data/glr.c: Don't use b4_check_percent_define_variables and
5513 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5514 * data/glr.cc, data/lalr1.cc: Likewise, and use b4_get_percent_define.
5515 (b4_parser_class_name, b4_namespace): Define these using
5516 b4_get_percent_define for parser_class_name and namespace.
5517 * data/location.cc: Use b4_get_percent_define.
5518 * data/push.c: Don't use b4_check_percent_define_variables and
5519 b4_check_percent_code_qualifiers. Use b4_get_percent_code.
5520 * data/yacc.c: Likewise, and don't call m4_exit in
5521 b4_use_push_for_pull_if or m4_wrap code will never execute.
5522 * src/muscle_tab.c, src/muscle_tab.h (muscle_grow_used_name_list):
5524 (muscle_grow_user_name_list): ... this for consistency with the
5525 terminology used in bison.m4.
5526 * src/parse-gram.y (prologue_declaration): Prepend "percent_define_" to
5527 %define variable names, and rename muscle used_percent_define_variables
5528 to user_percent_define_variables.
5529 (grammar_declaration): Rename muscle used_percent_code_qualifiers to
5530 user_percent_code_qualifiers.
5532 (content.opt): Replace content RHS with STRING RHS so %define "NAME"
5533 {CODE} form is no longer accepted.
5534 * tests/input.at (Reject bad %code qualifiers): Rename to...
5535 (Reject unused %code qualifiers): ... this, and update test output.
5536 (%define error): Update test output.
5538 2007-01-07 Joel E. Denny <jdenny@ces.clemson.edu>
5540 Check for unrecognized %define variables similar to checking for
5541 unrecognized %code qualifiers. Check for redefined %define variables.
5542 * data/bison.m4 (b4_check_for_unrecognized_names): New macro that
5544 (b4_check_percent_code_qualifiers): ... this, which now wraps it.
5545 (b4_check_percent_define_variables): New, also wraps it.
5546 * data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
5547 variables using b4_check_percent_define_variables.
5548 * data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
5549 all those exercised in the test suite and all those listed in the
5550 `Default values' section of c++.m4. Are there others?
5551 * data/push.c, data/yacc.c: Declare no valid %define variables.
5552 * src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
5553 similar to muscle_find, but it works even when the muscle stores a
5555 (muscle_grow_used_name_list): New function for constructing the used
5556 name list muscles that b4_check_for_unrecognized_names requires.
5557 * src/parse-gram.y (prologue_declaration): Warn if a variable is
5558 %define'd more than once. Define the b4_used_percent_define_variables
5559 muscle with muscle_grow_used_name_list.
5560 (grammar_declaration): Abbreviate %code code with
5561 muscle_grow_used_name_list.
5562 * tests/input.at (%define errors): New.
5564 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5566 Provide warn_at, complain_at, and fatal_at function callbacks to the
5567 skeletons, and use this for %code qualifier complaints.
5568 * data/bison.m4 (b4_error_at): New, invoked by...
5569 (b4_warn_at, b4_complain_at, b4_fatal_at): ... these new macros to wrap
5570 the skeleton scanner's new @warn_at(...@), @complain_at(...@), and
5571 @fatal_at(...@) directives.
5572 (b4_check_percent_code_qualifiers): Rewrite to expect locations for
5573 qualifiers in b4_used_percent_code_qualifiers and to use
5575 * src/location.c, src/location.h (boundary_set_from_string): New global
5577 * src/muscle_tab.c, src/muscle_tab.h (muscle_boundary_grow): New global
5579 * src/parse-gram.y (grammar_declaration): Add locations for qualifiers
5580 to b4_used_percent_code_qualifiers.
5581 * src/scan-skel.l (fail_for_at_directive_too_few_args): New static
5583 (AT_DIRECTIVE_ARGC_MAX): Increase for boundary arguments.
5584 (lineno): Rename to...
5585 (out_lineno): ... this so I don't misunderstand it again.
5586 (SC_AT_DIRECTIVE_SKIP_WS): Don't increment out_lineno for newlines
5587 here; these newlines are in the input but not the output file.
5588 (SC_AT_DIRECTIVE_ARG): Likewise. Extract directive execution to...
5589 (at_directive_perform): ... this new static function, and add handling
5590 of new @warn_at(...@), @complain_at(...@), and @fatal_at(...@)
5592 * tests/input.at (Reject bad %code qualifiers): Update test output with
5593 locations and extend.
5595 * tests/output.at (Output file name: [, Output file name: ]): Remove
5596 bogus comment about these tests failing.
5598 2007-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
5600 Clean up b4_check_percent_code_qualifiers a little.
5601 * data/bison.m4 (b4_check_percent_code_qualifiers): Expect qualifiers
5602 in b4_used_percent_code_qualifiers to be double-M4-quoted. Rewrite
5603 documentation and add examples.
5604 * src/parse-gram.y (grammar_declaration): Double-M4-quote those
5607 2007-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
5609 Don't use m4_divert since it makes m4_divert_push and m4_divert_pop
5610 unreliable -- especially when they're hidden inside another macro.
5611 * data/bison.m4, data/c++-skel.m4, data/c++.m4, data/c-skel.m4,
5612 data/c.m4: Remove m4_divert(-1).
5613 * data/glr.c, data/glr.cc, data/lalr1.cc, data/location.cc,
5614 data/push.c, data/yacc.c: Likewise, and replace m4_divert(0) with
5615 m4_divert_push(0) and m4_divert_pop(0).
5616 * src/output.c (output_skeleton): Don't add an m4_divert_push(0) and
5617 an m4_wrap([m4_divert_pop(0)]) to the M4. Diversion -1, which is
5618 pushed and popped by m4sugar, should be first on the stack.
5620 Provide warn, complain, and fatal function callbacks to the skeletons.
5621 This provides more flexibility than m4_fatal, improves the error
5622 message format, and captures messages for translation. Discussed
5624 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00063.html>.
5625 * data/bison.m4 (b4_error): New, invoked by...
5626 (b4_warn, b4_complain, b4_fatal): ... these new macros to wrap the
5627 skeleton scanner's new @warn(...@), @complain(...@), and @fatal(...@)
5628 directives. Because these M4 macros might be called when the current
5629 diversion is -1 or 0, m4_divert_push and m4_divert_pop is used; thus
5630 the previous removal of uses of m4_divert, which caused trouble.
5631 (b4_check_percent_code_qualifiers): Use b4_complain instead of
5632 m4_fatal to report unrecognized %code qualifiers.
5633 * data/c++-skel.m4: Use b4_complain instead of m4_fatal to report C++
5634 push parser requests.
5635 * data/glr.c: Use b4_complain instead of m4_fatal to report
5636 non-deterministic push parser requests.
5637 Update @output usage to @output(...@) form.
5638 * data/glr.cc, data/lalr1.cc: Use b4_fatal instead of m4_fatal to
5639 report missing %defines. Update @output usage to @output(...@) form.
5640 * data/location.cc, data/push.c, data/yacc.c: Update @output usage to
5642 * src/main.c (main): Invoke skel_scanner_free.
5643 * src/scan-skel.h (skel_scanner_free): Prototype new function.
5644 * src/scan-skel.l (FLEX_NO_OBSTACK): Don't define; we now need the
5645 obstack_for_string from flex-scanner.h.
5646 (YY_DECL): Use to declare skel_lex static.
5647 (decode_at_digraphs): Remove; now handled in the new
5648 SC_AT_DIRECTIVE_ARG start condition.
5649 (fail_for_at_directive_too_many_args, fail_for_invalid_at): New static
5651 (at_directive_name, AT_DIRECTIVE_ARGC_MAX, at_directive_argc,
5652 at_directive_argv): New static globals.
5653 (INITIAL): Use fail_for_invalid_at.
5654 Don't parse `@output file_name\n' or `@basename(...@)'. Instead,
5655 recognize the start of a generalized `@directive(...@)' form and
5657 (SC_AT_DIRECTIVE_ARG): ... this new start condition to parse the
5658 directive args (using the new obstack_for_string), to decode the
5659 contained @ diagraphs, and to perform the directive. It recognizes
5660 @basename(...@), @warn(...@), @complain(...@), @fatal(...@), and
5662 (SC_AT_DIRECTIVE_SKIP_WS): New start condition started by
5663 SC_AT_DIRECTIVE_ARG to skip whitespace after the argument delimiter,
5665 (scan_skel): Initialize obstack_for_string on the first call.
5666 (skel_scanner_free): New function to free obstack_for_string.
5667 * tests/input.at (Reject bad %code qualifiers): Update test output.
5669 2007-01-04 Joel E. Denny <jdenny@ces.clemson.edu>
5671 Consolidate the 4 prologue alternative directives (%code, %requires,
5672 %provides, and %code-top) into a single %code directive with an
5673 optional qualifier field. Discussed at
5674 <http://lists.gnu.org/archive/html/bison-patches/2007-01/msg00012.html>.
5675 * NEWS (2.3a+): Rewrite the existing entry for the prologue
5677 * doc/bison.texinfo (Prologue Alternatives): Update.
5678 (Decl Summary): Update to %code "requires" and %code "provides".
5679 (Calc++ Parser): Update to %code "requires".
5680 (Table of Symbols): Remove entries for %requires, %provides, and
5681 %code-top. Rewrite %code entry, and add a %code "QUALIFIER" entry.
5682 * data/bison.m4 (b4_user_provides, b4_user_requires): Remove as these
5683 are replaced by b4_percent_code_provides and b4_percent_code_requires,
5684 which are skeleton-specific.
5685 (b4_check_percent_code_qualifiers): New. A skeleton can use this to
5686 declare what %code qualifiers it supports and to complain if any other
5687 qualifiers were used in the grammar.
5688 * data/glr.cc: Update to use b4_user_code([b4_percent_code_requires])
5689 and b4_user_code([b4_percent_code_provides]) in place of
5690 b4_user_requires and b4_user_provides.
5691 * data/glr.c, data/lalr1.cc, data/push.c, data/yacc.c: Likewise.
5692 Add b4_user_code([b4_percent_code_top]) and
5693 b4_user_code([b4_percent_code]).
5694 Invoke b4_check_percent_code_qualifiers.
5695 * src/parse-gram.y (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5696 PERCENT_REQUIRES): Remove.
5697 (grammar_declaration): Remove RHS's for %code-top, %provides, and
5698 %requires. Rewrite the %code RHS as the unqualified form defining the
5699 muscle b4_percent_code. Add another RHS for the qualified %code form,
5700 which defines muscles of the form b4_percent_code_QUALIFIER and the
5701 b4_used_percent_code_qualifiers muscle.
5702 * src/scan-gram.l (PERCENT_CODE_TOP, PERCENT_PROVIDES,
5703 PERCENT_REQUIRES): Remove.
5704 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Update to use
5705 %code "requires" and %code "provides".
5706 * tests/input.at (Reject bad %code qualifiers): New.
5708 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5710 Use the new code_props interface for destructors and printers.
5711 * src/symtab.h (symbol, semantic_type): Remove destructor_location and
5712 printer_location members, and change the type of the destructor and
5713 printer members to code_props.
5714 (symbol_destructor_set, symbol_destructor_get, symbol_printer_set,
5715 symbol_printer_get, semantic_type_destructor_set,
5716 semantic_type_printer_set, default_tagged_destructor_set,
5717 default_tagless_destructor_set, default_tagged_printer_set,
5718 default_tagless_printer_set): Use code_props in arguments and return
5719 types in place of char const * and location.
5720 (symbol_destructor_location_get, symbol_printer_location_get): Remove
5721 since the locations are now contained in the return of
5722 symbol_destructor_get and symbol_printer_get.
5723 * src/output.c (symbol_destructors_output, symbol_printers_output):
5725 (symbol_code_props_output): ... this to eliminate duplicate code.
5726 (output_skeleton): Update to use symbol_code_props_output.
5727 * src/reader.c (symbol_should_be_used): Update use of
5728 symbol_destructor_get.
5729 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
5730 Update uses of the various _destructor_set and _printer_set functions.
5731 * src/symtab.c: (default_tagged_destructor_location,
5732 default_tagless_destructor_location, default_tagged_printer_location,
5733 default_tagless_printer_location): Remove since we...
5734 (default_tagged_destructor, default_tagless_destructor,
5735 default_tagged_printer, default_tagless_printer): ... change the type
5736 of these to code_props.
5737 (symbol_new, semantic_type_new, symbol_destructor_set,
5738 semantic_type_destructor_set, symbol_destructor_get,
5739 symbol_printer_set, semantic_type_printer_set, symbol_printer_get,
5740 symbol_check_alias_consistency, default_tagged_destructor_set,
5741 default_tagless_destructor_set, default_tagged_printer_set,
5742 default_tagless_printer_set): Update.
5743 (symbol_destructor_location_get, symbol_printer_location_get): Remove.
5744 (SYMBOL_CODE_PRINT): New similar to SYMBOL_ATTR_PRINT but for
5746 (symbol_print): Use SYMBOL_CODE_PRINT.
5748 2007-01-03 Joel E. Denny <jdenny@ces.clemson.edu>
5750 Use the new code_props interface for rule actions.
5751 * src/symlist.h (symbol_list): Replace action, action_location, and
5752 used members with a code_props action_props member.
5753 * src/reader.c (symbol_should_be_used, grammar_rule_check,
5754 grammar_midrule_action, grammar_current_rule_merge_set,
5755 grammar_current_rule_symbol_append, packgram): Update.
5756 * src/scan-code.h (translate_rule_action): Remove, no longer used.
5757 * src/scan-code.l (handle_action_dollar): Update.
5758 (translate_rule_action): Remove, no longer used.
5759 * src/symlist.c (symbol_list_sym_new, symbol_list_syms_print): Update.
5761 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5763 Use the new code_props interface in parse-gram.y.
5764 * src/parse-gram.y (prologue_declaration, braceless, epilogue.opt):
5765 Update all uses of translate_* functions to use the new code_props
5766 interface and to use gram_scanner_last_string_free and
5767 code_scanner_last_string_free where possible.
5768 (grammar_declaration): symbol_list_destructor_set and
5769 symbol_list_printer_set now perform the translation, so don't do it
5770 here. Use gram_scanner_last_string_free where possible.
5771 * src/scan-code.h, src/scan-code.l (translate_symbol_action,
5772 translate_code): Remove, no longer used.
5773 * src/symlist.h, src/symlist.c (symbol_list_destructor_set,
5774 symbol_list_printer_set): Perform code translation here rather than
5775 depending on the caller to do so.
5777 * src/symlist.h (struct symbol_list): Correct some documentation typos.
5778 * src/scan-gram.h (gram_last_string): Remove declaration.
5779 * src/scan-gram.l (last_string): Declare it static.
5781 2007-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
5783 Encapsulate code properties and related functionality for the various
5784 destructors, printers, and actions into a code_props structure and
5785 interface. This patch merely implements code_props in scan-code.h and
5786 scan-code.l. Future patches will rewrite other modules to use it.
5787 Discussed starting at
5788 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00020.html>.
5789 * src/location.h (EMPTY_LOCATION_INIT): Define so that it's easier to
5790 consistently initialize const structs that have an empty location
5792 * src/location.c (empty_location): Initialize with EMPTY_LOCATION_INIT
5793 to ensure consistency.
5794 * src/scan-code.h (code_props): New structure.
5795 (code_props_none_init, CODE_PROPS_NONE_INIT, code_props_none): New
5796 function, macro, and const global variable for initializing a
5797 code_props with no code.
5798 (code_props_plain_init, code_props_symbol_action_init,
5799 code_props_rule_action_init, code_props_translate_code): The rest of
5800 the new code_props functional interface. Among other things, the init
5801 functions set the code_props kind field so that
5802 code_props_translate_code will know whether to behave like
5803 translate_symbol_action, translate_rule_action, or translate_code.
5804 These old translate functions must remain until all other modules are
5805 updated to use the new code_props interface.
5806 (code_scanner_last_string_free): New function similar to
5807 gram_scanner_last_string_free.
5808 (code_scanner_free): Add documentation.
5809 * src/scan-code.l: Implement the new interface.
5810 (code_lex): Make it static, add a code_props* argument, and remove the
5812 (last_string): New static global similar to the one in scan-gram.l.
5813 (SC_RULE_ACTION): Update to use the code_props* argument to code_lex
5815 (SC_SYMBOL_ACTION): For $$, set the is_value_used member of the
5816 code_props since Bison may one day use this information for destructors
5818 (<*><<EOF>>): Use STRING_FINISH so that last_string is set.
5819 (handle_action_dollar): Use symbol_list_n_get and set used flag
5820 directly since symbol_list_n_used_set is removed.
5821 (translate_action): Add a code_props* argument and remove the rule,
5822 action, and location arguments. Pass the code_props* on to code_lex.
5823 (translate_rule_action, translate_symbol_action, translate_code):
5824 Rewrite as wrappers around the new code_props interface.
5825 * src/symlist.h, src/symlist.c (symbol_list_n_used_set): Remove since
5826 it would eventually need to break the encapsulation of code_props.
5828 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5830 * etc/.cvsignore: New.
5832 2007-01-01 Joel E. Denny <jdenny@ces.clemson.edu>
5834 Add maintainer-push-check to run maintainer-check using push parsing in
5835 place of pull parsing where available.
5836 * Makefile.am (maintainer-push-check): New.
5837 * data/bison.m4 (b4_use_push_for_pull_if): New.
5838 * data/push.c: Redefine b4_push_if and b4_use_push_for_pull_if
5839 appropriately based on their existing values.
5840 (yypush_parse): Don't print push-parser-specific diagnostics if push
5841 parsing is being used in place of pull parsing.
5842 * data/yacc.c: If push parsing should replace pull parsing, redirect to
5844 * src/output.c (prepare): Check BISON_USE_PUSH_FOR_PULL environment
5845 variable, and insert b4_use_push_for_pull_flag into muscles.
5846 * tests/Makefile.am (maintainer-push-check): New.
5848 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5850 * data/push.c (yypush_parse): Set yynew = 1 at the end of a parse
5851 (whether successful or failed) so that yypush_parse can be invoked
5852 again to start a new parse using the same yypstate.
5853 * tests/torture.at (AT_DATA_STACK_TORTURE): For push mode, extend to
5854 check multiple yypull_parse invocations on the same yypstate. For pull
5855 mode, extend to check multiple yyparse invocations.
5856 (Exploding the Stack Size with Alloca): Extend to try with
5858 (Exploding the Stack Size with Malloc): Likewise.
5860 * tests/calc.at (Simple LALR Calculator): Don't specify
5861 %skeleton "push.c" since %push-pull-parser implies that now.
5862 * tests/headers.at (export YYLTYPE): Don't check for the push
5863 declarations. Otherwise, this test case can't be used to see if push
5864 mode can truly emulate pull mode.
5865 * tests/input.at (Torturing the Scanner): Likewise.
5866 * tests/local.at (AT_YACC_OR_PUSH_IF, AT_PUSH_IF): Remove.
5867 (AT_YYERROR_SEES_LOC_IF): Rather than AT_YACC_OR_PUSH_IF, use
5868 AT_YACC_IF, which now includes the case of push mode since %skeleton
5869 need not be used for push mode. This will be more intuitive once
5870 push.c is renamed to yacc.c.
5872 2006-12-31 Joel E. Denny <jdenny@ces.clemson.edu>
5874 For push mode, convert yyparse from a macro to a function, invoke yylex
5875 instead of passing a yylexp argument to yypull_parse, and don't
5876 generate yypull_parse or yyparse unless %push-pull-parser is declared.
5877 Discussed starting at
5878 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00163.html>.
5879 * data/bison.m4 (b4_pull_if): New.
5880 * data/c.m4 (b4_identification): Define YYPULL similar to YYPUSH.
5881 * data/push.c: Improve M4 quoting a little.
5882 (b4_generate_macro_args, b4_parenthesize): Remove.
5883 (yyparse): If there's a b4_prefix, #define this to b4_prefix[parse]
5884 any time a pull parser is requested.
5885 Don't #define this as a wrapper around yypull_parse. Instead, when
5886 both push and pull are requested, make it a function that does that
5888 (yypull_parse): If there's a b4_prefix, #define this to
5889 b4_prefix[pull_parse] when both push and pull are requested.
5890 Don't define this as a function unless both push and pull are
5892 Remove the yylexp argument and hard-code yylex invocation instead.
5893 * etc/bench.pl.in (bench_grammar): Use %push-pull-parser instead of
5895 * src/getargs.c (pull_parser): New global initialized to true.
5896 * getargs.h (pull_parser): extern it.
5897 * src/output.c (prepare): Insert pull_flag muscle.
5898 * src/parse-gram.y (PERCENT_PUSH_PULL_PARSER): New token.
5899 (prologue_declaration): Set both push_parser and pull_parser = true for
5900 %push-pull-parser. Set push_parser = true and pull_parser = false for
5902 * src/scan-gram.l: Don't accept %push_parser as an alternative to
5903 %push-parser since there's no backward-compatibility concern here.
5904 Scan %push-pull-parser.
5905 * tests/calc.at (Simple LALR(1) Calculator): Use %push-pull-parser
5906 instead of %push-parser.
5907 * tests/headers.at (export YYLTYPE): Make yylex static, and don't
5908 prototype it in the module that calls yyparse.
5909 * tests/input.at (Torturing the Scanner): Likewise.
5910 * tests/local.at (AT_PUSH_IF): Check for %push-pull-parser as well.
5912 2006-12-26 Joel E. Denny <jdenny@ces.clemson.edu>
5914 Update etc/bench.pl. Optimize push mode a little (the yyn change
5915 deserves most of the credit).
5916 * Makefile.am (SUBDIRS): Add etc subdirectory.
5917 * configure.ac (AC_CONFIG_FILES): Add etc/bench.pl and etc/Makefile.
5918 * data/push.c (b4_declare_parser_state_variables): Move yyn, yyresult,
5919 yytoken, yyval, and yyloc declarations to...
5920 (yyparse or yypush_parse): ... here to improve performance. For
5921 yypush_parse invocations after the first, be sure to assign yyn its old
5923 (yypstate_new): Don't bother initializing the yyresult field since the
5924 initial value isn't used.
5925 (yyn, yyresult, yytoken, yyval, yyloc): For each NAME in this list,
5926 remove the #define that, in push mode, set it to yyps->NAME.
5927 * etc/Makefile.am: New.
5928 * etc/bench.pl: Remove and build it instead from...
5929 * etc/bench.pl.in: ... this new file. Use @abs_top_builddir@ to invoke
5930 "tests/bison" from the build directory by default rather than just
5931 invoking "bison" from $PATH.
5932 (calc_grammar): Update push parser code: don't declare yylval globally,
5933 don't define yyparse_wrapper, and don't #define yyparse.
5934 (bench_grammar): Update to check all working combinations of yacc.c,
5935 push.c, impure, pure, pull, and push.
5937 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5939 For push mode, add pull wrappers around yypush_parse.
5940 * data/push.c: (b4_generate_macro_args, b4_parenthesize): New macros.
5941 (yypull_parse): New function wrapping yypush_parse.
5942 (yyparse): New #define wrapping yypull_parse.
5943 * tests/calc.at (_AT_DATA_CALC_Y): Call yyparse even when %push-parser
5945 * tests/headers.at (export YYLTYPE): Make yylex global. For push mode,
5946 prototype yylex in the module that calls yyparse, and don't prototype
5947 yyparse there. Otherwise, the yyparse expansion won't compile.
5948 * tests/input.at (Torturing the Scanner): Likewise.
5950 2006-12-25 Joel E. Denny <jdenny@ces.clemson.edu>
5952 Enable push parsers to operate in impure mode. Thus, %push-parser no
5953 longer implies %pure-parser. The point of this change is to move
5954 towards being able to test the push parser code by running the entire
5955 test suite as if %push-parser had been declared.
5956 * data/push.c (yypush_parse): For impure mode, remove the
5957 yypushed_char, yypushed_val, and yypushed_loc arguments.
5958 Instead, declare these as local variables initialized to the global
5959 yychar, yylval, and yylloc.
5960 For the first yypush_parse invocation only, restore the initial values
5961 of these global variables when it's time to read a token since they
5962 have been overwritten.
5963 * src/parse-gram.y (prologue_declaration): Don't set pure_parser for
5965 * tests/calc.at (Simple LALR(1) Calculator): Always declare
5966 %pure-parser along with %push-parser since this test case was designed
5967 for pure push parsers.
5968 * tests/local.at (AT_PURE_OR_PUSH_IF): Remove unused.
5969 (AT_YACC_OR_PUSH_IF): New.
5970 (AT_YYERROR_SEES_LOC_IF): Fix enough that the test suite passes, but
5971 add a note that it's still wrong for some cases (as it has been for a
5973 (AT_PURE_LEX_IF): Use AT_PURE_IF instead of AT_PURE_OR_PUSH_IF since
5974 %push-parser no longer implies %pure-parser.
5976 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5978 Remove some unnecessary differences between the pull parser code and
5979 the push parser code. This patch enables yynerrs in push mode.
5980 * data/push.c: Reformat M4 a little.
5981 (b4_yyerror_range): Remove and convert all uses to just yyerror_range.
5982 (b4_declare_scanner_communication_variables): Don't omit yynerrs just
5983 because push mode is on. Instead, if pure mode is on, move yynerrs
5985 (b4_declare_parser_state_variables): ... here.
5986 (yynerrs, yyerror_range): For push mode, #define each NAME in this list
5987 to yyps->NAME so it can be used in yypush_parse.
5988 (yypush_parse): Don't omit uses of yynerrs in push mode.
5990 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
5992 Fix bug such that the first pushed token's value and location are
5993 sometimes overwritten (sometimes by %initial-action) before being used.
5994 * data/push.c (yypush_parse): Rename arguments yynchar, yynlval, and
5995 yynlloc to yypushed_char, yypushed_val, and yypushed_loc for clarity.
5996 For the first yypush_parse invocation, initialize yychar to YYEMPTY to
5997 more closely mimic the pull parser logic.
5998 Don't copy the pushed token to yychar, yylval, and yylloc until it's
5999 time to read a token, which is after any initialization of yylval and
6001 (gottoken): Rename label to...
6002 (yyread_pushed_token): ... for clarity and to avoid infringing on the
6005 2006-12-20 Joel E. Denny <jdenny@ces.clemson.edu>
6007 Rearrange initialization of the parser state variables so that the
6008 skeleton doesn't have to have a copy for pull mode and another for push
6009 mode. This patch also fixes at least a bug such that yylloc was not
6010 initialized (with b4_location_initial_line and
6011 b4_location_initial_column) upon calling yypush_parse. However, that
6012 initialization now overwrites the first token's location;
6013 %initial-action assigning @$ already did the same thing, and both bugs
6014 will be fixed in a later patch.
6015 * data/push.c (b4_yyssa): Remove and convert all uses to just yyssa.
6016 (b4_declare_parser_state_variables): Remove initialization of yytoken,
6017 yyss, yyvs, yyls, and yystacksize.
6018 (yypstate_new): Remove initialization of some yypstate fields: yystate,
6019 yyerrstatus, yytoken, yyss, yyvs, yyls, yystacksize, yyssp, yyvsp, and
6021 (yyssa, yyvsa, yylsa): For push mode, #define each NAME in this list to
6022 yyps->NAME so it can be used in yypush_parse.
6023 (yyparse or yypush_parse): For yypush_parse, don't print the
6024 "Starting parse" diagnostic for invocations after the first.
6025 Add initialization of yytoken, yyss, yyvs, yyls, and yystacksize; for
6026 yypush_parse, only do it for the first invocation.
6027 Allow yystate, yyerrstatus, yyssp, yyvsp, yylsp, and yylloc
6028 initialization to occur in yypush_parse but only on the first
6031 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6033 * data/push.c: Add CPP guards around push parser declarations in both
6034 the header and the code file.
6035 In the code file, move the push parser declarations to the same place
6036 they appear in the header file.
6037 Clean up the M4 some, especially the inconsistent underquoting in
6038 some b4_c_function_def and b4_c_function_decl uses.
6040 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6042 Encapsulate the push parser state variables into an M4 macro so the
6043 push skeleton doesn't have to list them again for pull mode's yyparse.
6044 For push mode, remove yypush_parse's local equivalents of these
6045 variables to eliminate unnecessary copying between the two sets at
6046 run-time. This patch also fixes at least a bug related to multiple
6047 %initial-action invocations in push mode.
6048 * data/push.c (b4_declare_parser_variables): Rename to...
6049 (b4_declare_scanner_communication_variables): ... this for clarity and
6051 (b4_declare_yyparse_variables): Remove and move its contents to the one
6052 spot where it was invoked.
6053 (b4_declare_parser_state_variables): New macro containing the parser
6054 state variables required by push mode.
6055 (struct yypstate): Replace all fields but yynew with
6056 b4_declare_parser_state_variables.
6057 (yystate, yyn, yyresult, yyerrstatus, yytoken, yyss, yyssp, yyvs,
6058 yyvsp, yyls, yylsp, yystacksize, yyval, yyloc): For push mode, #define
6059 each NAME in this list to yyps->NAME so it can be used in yypush_parse.
6060 (yyparse or yypush_parse): For yyparse in pull mode, replace local
6061 parser state variable declarations with
6062 b4_declare_parser_state_variables.
6063 Don't initialize parser state variables when calling yypush_parse since
6064 yypstate_new already does that.
6065 Invoke the user's initial action only upon the first yypush_parse
6067 Remove all code that copies between the local parser state variables
6070 2006-12-19 Joel E. Denny <jdenny@ces.clemson.edu>
6072 * data/push.c (union yyalloc): Rename yyss, yyvs, and yyls fields to
6073 prevent a name collision in a future patch where these names will
6074 sometimes be #define'd.
6075 (YYSTACK_RELOCATE): Add an argument to select a union yyalloc field
6076 since it no longer has the same name as the existing argument.
6077 (yyparse or yypush_parse): Update all uses of YYSTACK_RELOCATE.
6079 2006-12-19 Paolo Bonzini <bonzini@gnu.org>
6080 and Joel E. Denny <jdenny@ces.clemson.edu>
6082 * doc/bison.texinfo (Decl Summary): In the %language entry, mention
6083 that the argument is case-insensitive, and there's no `=' here.
6084 For the %skeleton entry, mention that %language is better.
6085 (Bison Options): Likewise for --language and --skeleton. Move the
6086 --skeleton entry so that the `Tuning the parser' section is sorted
6087 alphabetically on long options.
6088 (C++ Bison Interface): Don't use the word skeleton. Don't explain the
6089 %language directive in detail here; cross-reference the %language
6090 documentation instead.
6091 (Calc++ Parser): Use `%require "@value{VERSION}"' rather than
6092 `%require "2.3b"' so that the example is always up-to-date.
6093 (Table of Symbols): Add entries for %language and %skeleton.
6094 * examples/extexi (normalize): Instead of replacing every %require
6095 argument with the current Bison version, just substitute for
6096 `@value{VERSION}'. This guarantees that we're testing what actually
6097 appears in the documentation.
6098 * examples/calc++/Makefile.am ($(calc_extracted)): Use `$(VERSION)'
6099 rather than `@VERSION@'.
6101 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6103 * NEWS: Reword the %language news a bit, and put it earlier.
6105 * src/getargs.c (skeleton_arg): Last arg is now location const *.
6106 Rewrite to simplify the logic.
6107 (language_argmatch): Likewise.
6108 (program_name): We now own this var.
6109 * src/getargs.h (struct bison_language): Use char[] rather than
6112 * doc/bison.texinfo (Decl Summary, Bison Options): Don't claim
6114 * src/complain.c (program_name): Remove decl; no longer needed.
6115 * src/main.c (program_name): Remove; now belongs to getargs.
6117 2006-12-18 Paolo Bonzini <bonzini@gnu.org>
6119 * NEWS: Document %language.
6121 * data/Makefile.am (dist_pkgdata_DATA): Add c-skel.m4, c++-skel.m4.
6123 * data/c-skel.m4, data/c++-skel.m4: New files.
6124 * data/glr.c: Complain on push parsers.
6126 * doc/bison.texinfo (C++ Parser Interface): Prefer %language
6128 (Decl Summary): Document %language and %skeleton.
6129 (Command line): Document -L.
6131 * examples/extexi: Rewrite %require directive.
6132 * examples/calc++/Makefile.am: Pass VERSION to extexi.
6134 * src/files.c (compute_exts_from_gc): Look in language structure
6136 (compute_file_name_parts): Check whether .tab should be added.
6137 * src/getargs.c (valid_languages, skeleton_prio, language_prio):
6138 (language, skeleton_arg, language_argmatch): New.
6139 (long_options): Add --language.
6140 (getargs): Use skeleton_arg, add -L/--language.
6141 * src/getargs.h: Include location.h.
6142 (struct bison_language, language, skeleton_arg, language_argmatch): New.
6143 * src/output.c (prepare): Pick default skeleton from struct language.
6144 Don't dispatch C skeletons here.
6145 * src/parse-gram.y (PERCENT_LANGUAGE): New.
6146 (prologue_declaration): Add "%language" rule, use skeleton_arg.
6147 * src/scan-gram.l ("%language"): New rule.
6149 * tests/calc.at: Test %skeleton and %language.
6150 * tests/local.at (AT_SKEL_CC_IF): Look for %language.
6151 (AT_GLR_IF): Look for %skeleton "glr.cc".
6152 (AT_LALR1_CC_IF, AT_GLR_CC_IF): Rewrite.
6153 (AT_YACC_IF): Reject %language.
6155 2006-12-18 Paul Eggert <eggert@cs.ucla.edu>
6157 * src/symtab.h (struct semantic_type): Remove the tag 'semantic_type',
6158 since it wasn't used; only the typedef name 'semantic_type' is needed.
6159 Also, omit trailing white space.
6161 * bootstrap: Sync from coreutils.
6162 (gnulib_extra_files): Add build-aux/announce.gen.
6163 (slurp): Adjust .gitignore files like .cvsignore files.
6164 * build-aux/announce-gen: Remove from CVS, since bootstrap
6167 2006-12-16 Joel E. Denny <jdenny@ces.clemson.edu>
6169 Make %push-parser imply %pure-parser. This fixes several bugs; see
6170 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00148.html>.
6171 * src/parse-gram.y (prologue_declaration): For %push-parser, also set
6173 * data/push.c: Don't bother testing b4_push_if when deciding whether
6174 to expand b4_declare_parser_variables globally.
6175 (yypush_parse): Likewise in here.
6177 * data/push.c (yypush_parse): Add b4_parse_param to arguments.
6178 (yy_reduce_print): Reformat M4 for readability.
6180 2006-12-15 Bob Rossi <bob@brasko.net>
6181 and Joel Denny <jdenny@ces.clemson.edu>
6183 * data/push.c (yypstate): Add typedef, and update all uses of
6184 struct yypstate to just yypstate.
6185 * tests/calc.at (_AT_DATA_CALC_Y): Update here as well.
6187 2006-12-14 Bob Rossi <bob@brasko.net>
6189 * data/push.c (yypush_parse): Declare prototype regardless of
6192 2006-12-14 Bob Rossi <bob@brasko.net>
6194 * data/push.c (yyparse): Remove the prototype and the #define when in
6197 2006-12-13 Bob Rossi <bob@brasko.net>
6199 * data/push.c (yypstate_init): Rename to...
6200 (yypstate_new): ... this and use b4_c_function_def.
6201 (yypstate_delete): New.
6202 (yypush_parse): Change parameters yynval and yynlloc to be const.
6203 * tests/calc.at (_AT_DATA_CALC_Y): Use new yypstate_new and
6204 yypstate_delete functions.
6206 2006-12-13 Joel E. Denny <jdenny@ces.clemson.edu>
6208 * configure.ac (AC_PREREQ): Require Autoconf 2.61 because of our
6209 strange test case titles. Reported by Bob Rossi.
6211 2006-12-13 Paul Eggert <eggert@cs.ucla.edu>
6213 * TODO: Add pointer to Sylvain Schmitz's work on static detection
6214 of potential ambiguities in GLR grammers.
6216 2006-12-12 Joel E. Denny <jdenny@ces.clemson.edu>
6218 * tests/testsuite.at (AT_CHECK): When checking if $1 starts with
6219 `bison ', use m4_index instead of m4_substr since chopping up a string
6220 containing M4-special characters causes problems here.
6222 Fix a couple of bugs related to special characters in user-specified
6223 file names, and make it easier for skeletons to compute output file
6224 names with the same file name prefix as Bison-computed output file
6226 * data/glr.cc, data/push.c, data/yacc.c: In @output, use
6227 b4_parser_file_name and b4_spec_defines_file instead of
6228 @output_parser_name@ and @output_header_name@, which are now redundant.
6229 * data/glr.c, data/lalr1.cc: Likewise. Also, in header #include's, use
6230 b4_parser_file_name, b4_spec_defines_file, and the new
6231 @basename(FILENAME@) instead of @output_parser_name@ and
6232 @output_header_name@, which inappropriately escaped the file names as
6234 * src/files.c (all_but_ext): Remove static qualifier.
6235 (compute_output_file_names): Move `free (all_but_ext)' to...
6236 (output_file_names_free): ... here since all_but_ext is needed later.
6237 * src/files.h (all_but_ext): Extern.
6238 * src/muscle_tab.h (MUSCLE_INSERT_STRING_RAW): New macro that does
6239 exactly what MUSCLE_INSERT_STRING used to do.
6240 (MUSCLE_INSERT_STRING): Use MUSCLE_OBSTACK_SGROW so that M4-special
6241 characters are escaped properly.
6242 * src/output.c (prepare): Define muscle file_name_all_but_ext as
6244 For pkgdatadir muscle, maintain previous functionality by using
6245 MUSCLE_INSERT_STRING_RAW instead of MUSCLE_INSERT_STRING. The problem
6246 is that b4_pkgdatadir is used inside m4_include in the skeletons, so
6247 digraphs would never be expanded. Hopefully no one has M4-special
6248 characters in his Bison installation path.
6249 * src/scan-skel.l: Don't parse @output_header_name@ and
6250 @output_parser_name@ anymore since they're now redundant.
6251 In @output, use decode_at_digraphs.
6252 Parse a new @basename command that invokes last_component.
6253 (decode_at_digraphs): New.
6254 (BASE_QPUTS): Remove unused.
6255 * tests/output.at (AT_CHECK_OUTPUT_FILE_NAME): New macro.
6256 (Output file name): New tests.
6258 2006-12-09 Joel E. Denny <jdenny@ces.clemson.edu>
6260 Warn about output files that are generated by the skeletons and that
6261 conflict with other output files.
6262 * data/glr.c: Don't generate the header file here when glr.cc does.
6263 * src/files.c (file_names, file_names_count): New static globals.
6264 (compute_output_file_names): Invoke output_file_name_check for files
6265 not generated by the skeletons and remove existing checks.
6266 (output_file_name_check): New function that warns about conflicting
6268 (output_file_names_free): Free file_names.
6269 * src/files.h (output_file_name_check): Declare.
6270 * src/scan-skel.l: Invoke output_file_name_check for files generated by
6272 * tests/output.at (AT_CHECK_CONFLICTING_OUTPUT): New.
6273 (Conflicting output files): New tests.
6275 2006-12-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6277 * doc/bison.texinfo: Fix a couple of typos.
6279 2006-12-08 Bob Rossi <bob@brasko.net>
6281 * data/push.c: (yypvarsinit, yypvars, struct yypvars, yypushparse):
6283 (yypstate_init, yypstate, struct yypstate, yypush_parse): ... these and
6285 (b4_yyssa, b4_yyerror_range, yypstate_init): Rename pv to yyps.
6286 (yypush_parse): Rename yypvars argument to yyps and remove redundant
6288 (yypstate_init, yypush_parse): Declare in Bison-generated header file.
6289 * tests/calc.at (_AT_DATA_CALC_Y): Use newly named functions.
6291 2006-12-07 Bob Rossi <bob@brasko.net>
6292 and Joel Denny <jdenny@ces.clemson.edu>
6294 * data/push.c (yypvarsinit): Change return type from void* to struct
6295 yypvars*. No longer cast to void* on return.
6296 (struct yypvars): Remove yylen since it need not be remembered between
6297 yypushparse invocations.
6298 (yypushparse): Don't copy between yylen and pv->yylen.
6300 2006-12-05 Bob Rossi <bob@brasko.net>
6302 * data/push.c (yychar_set, yylval_set, yylloc_set): Delete.
6303 (yypushparse): Add yynchar, yynlval, yynlloc parameters.
6304 (b4_declare_parser_variables): Do not declare yynerrs for push mode.
6305 (struct yypvars): Remove b4_declare_parser_variables.
6306 (yypvarsinit): Remove init code for removed variables.
6307 (global scope): Do not declare b4_declare_parser_variables if
6309 (yypushparse): Add b4_declare_parser_variables.
6310 Init new local variables, and remove init code for removed
6313 * tests/calc.at (_AT_DATA_CALC_Y): Call yypushparse for push mode
6314 and yyparse for other modes.
6315 (AT_CHECK_CALC_LALR): Added '%skeleton "push.c"' for push tests.
6316 * tests/local.at (AT_PUSH_IF, AT_PURE_OR_PUSH_IF): Added.
6317 (AT_YYERROR_SEES_LOC_IF): push-parser makes this false.
6318 (AT_PURE_LEX_IF): True if pure or push parser.
6320 2006-12-05 Joel E. Denny <jdenny@ces.clemson.edu>
6322 Document Yacc prologue alternatives and default %destructor's and
6323 %printer's as experimental. Don't mention Java yet. Discussed at
6324 <http://lists.gnu.org/archive/html/bison-patches/2006-12/msg00002.html>.
6325 * NEWS (2.3a+): Say they're experimental. Remove any mention of Java.
6326 (2.3a): Annotate this entry to say the old forms of these features were
6328 * doc/bison.texinfo (Prologue Alternatives, Freeing Discarded Symbols,
6329 Table of Symbols): Say they're experimental. Comment out any mention
6330 of Java (we'll want this back eventually).
6332 2006-12-01 Joel E. Denny <jdenny@ces.clemson.edu>
6334 Support a file name argument to %defines. Deprecate `=' in
6335 %file-prefix, %name-prefix, and %output. Discussed at
6336 <http://lists.gnu.org/archive/html/help-bison/2006-09/msg00001.html>.
6337 * NEWS (2.3a+): Mention.
6338 * doc/bison.texinfo (Decl Summary, Table of Symbols): Add entry for new
6339 form of %defines, and remove `=' from entries for %file-prefix,
6340 %name-prefix, and %output.
6341 * src/parse-gram.y (prologue_declaration): Implement.
6342 * tests/calc.at (Simple LALR Calculator, Simple GLR Calculator, Simple
6343 LALR1 C++ Calculator, Simple GLR C++ Calculator): Remove the `=' from
6344 all but one occurrence of %name-prefix.
6345 * tests/headers.at (export YYLTYPE): Remove the `=' from %name-prefix.
6346 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Likewise.
6347 * tests/output.at (AT_CHECK_OUTPUT): Remove the `=' from all but one
6348 occurrence of each of %file-prefix and %output. Add check for %defines
6350 * tests/reduce.at (Useless Terminals, Useless Nonterminals,
6351 Useless Rules, Reduced Automaton, Underivable Rules, Empty Language):
6352 Remove the `=' from %output.
6354 2006-11-21 Joel E. Denny <jdenny@ces.clemson.edu>
6356 Don't escape $ in test case titles since Autoconf 2.61 now does that
6358 * tests/actions.at (Default %printer and %destructor are not for error
6359 or $undefined): Here.
6360 (Default %printer and %destructor are not for $accept): Here.
6361 * tests/input.at (Invalid $n and @n): Here.
6363 2006-11-20 Joel E. Denny <jdenny@ces.clemson.edu>
6365 Rename <!> to <>. Discussed starting at
6366 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00039.html>.
6367 * NEWS (2.3a+): Update.
6368 * doc/bison.texinfo (Freeing Discarded Symbols, Table of Symbols):
6370 * src/parse-gram.y (TYPE_TAG_NONE, generic_symlist_item): Implement.
6371 * src/scan-gram.l (INITIAL): Implement.
6372 * src/symlist.c (symbol_list_default_tagless_new): Update comment.
6373 * src/symlist.h (symbol_list, symbol_list_default_tagless_new): Update
6375 * tests/actions.at (Default tagless %printer and %destructor,
6376 Default tagged and per-type %printer and %destructor,
6377 Default %printer and %destructor are not for error or $undefined,
6378 Default %printer and %destructor are not for $accept,
6379 Default %printer and %destructor for mid-rule values): Update.
6380 * tests/input.at (Default %printer and %destructor redeclared,
6381 Unused values with default %destructor): Update.
6383 2006-11-17 Joel E. Denny <jdenny@ces.clemson.edu>
6385 Don't let %prec take a nonterminal.
6386 * src/reader.c (grammar_current_rule_prec_set): Make the %prec symbol a
6388 * tests/input.at (%prec takes a token): New test checking that %prec
6389 won't take a nonterminal.
6391 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6393 * tests/testsuite.at (AT_CHECK): Don't miss an exit value of 0 because
6394 it was double-quoted.
6395 * src/Makefile.am (YACC): Use --warnings=all,error so that Bison's own
6396 grammar is maintained with Bison's highest standards.
6397 * src/getargs.c: Fix some typos in Doxygen comments.
6399 2006-11-10 Joel E. Denny <jdenny@ces.clemson.edu>
6401 Fix memory leaks in scanners generated by at least Flex 2.5.9 and
6402 later. Reported by Paul Eggert in
6403 <http://lists.gnu.org/archive/html/bison-patches/2006-11/msg00014.html>.
6404 * src/flex-scanner.h (yylex_destroy): Define for Flex before 2.5.9.
6405 * src/scan-code.l (translate_action): Don't bother invoking
6406 yy_delete_buffer (YY_CURRENT_BUFFER) before creating the first buffer.
6407 (code_scanner_free): Instead of invoking
6408 yy_delete_buffer (YY_CURRENT_BUFFER) directly, invoke yylex_destroy,
6410 * src/scan-gram.l (gram_scanner_free): Likewise.
6411 * src/scan-skel.l (scan_skel): Likewise.
6413 2006-11-09 Joel E. Denny <jdenny@ces.clemson.edu>
6415 * src/files.c (tr): Change return type to void.
6416 * src/muscle_tab.c (muscle_insert): Free storage in case muscle_grow
6417 has been called previously for the same key.
6418 (muscle_find): Return storage instead of value so that
6419 --enable-gcc-warnings doesn't produce warnings that the return discards
6420 const. aver that the value and storage are the same since storage
6421 could potentially be NULL when value is not.
6422 * tests/testsuite.at (AT_CHECK): Treat an unspecified exit value the
6425 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6427 * bootstrap.conf (excluded_files): Exclude m4/codeset.m4 (undoing
6428 the earlier change today), m4/intl.m4, m4/intldir.m4. This gives
6429 us a slightly cleaner distribution, and also works.
6430 * m4/.cvsignore: Add inline.m4, wint_t.m4 to accommodate recent
6433 2006-11-08 Joel E. Denny <jdenny@ces.clemson.edu>
6434 and Paul Eggert <eggert@cs.ucla.edu>
6436 Don't let Bison leak memory except when it complains.
6437 * src/files.h (parser_file_name, spec_verbose_file, spec_graph_file):
6438 (spec_defines_file, dir_prefix): Now char *, not const char *,
6439 since they are freed.
6440 * src/files.c: Likewise.
6441 (all_but_ext, all_but_tab_ext, src_extension, header_extension):
6443 (tr): Now operates in-place. All uses changed.
6444 (compute_exts_from_gf, compute_exts_from_src): Don't leak temporary
6446 (compute_file_name_parts, compute_output_file_names): Don't store
6447 read-only data in variables that will be freed.
6448 (compute_output_file_names): Free all_but_ext, all_but_tab_ext,
6449 src_extension, and header_extension.
6450 (output_file_names_free): New public function to free
6451 spec_verbose_file, spec_graph_file, spec_defines_file,
6452 parser_file_name, and dir_prefix.
6453 * src/getargs.c (getargs): Don't store read-only data in variables that
6455 * src/main.c (main): Invoke output_file_names_free, code_scanner_free
6456 (which previously existed but was unused), and quotearg_free.
6457 * src/muscle_tab.h (muscle_insert): value arg is now a `char const *'.
6458 * src/muscle_tab.c: Likewise.
6459 (muscle_entry): Make the value char const *,
6460 and add a new storage member that is char * and can be freed.
6461 (muscle_entry_free): New private function.
6462 (muscle_init): Use it instead of free.
6463 (muscle_insert, muscle_grow): Update and use new storage member.
6464 (muscle_code_grow): Free the string passed to muscle_grow
6465 since it's not needed anymore.
6466 * src/parse-gram.y (%union): Make `chars' member a `char const *', and
6467 add a new `char *code' member.
6468 ("{...}"): Declare semantic type as code.
6469 * src/scan-code.h (translate_rule_action):
6470 (translate_symbol_action, translate_code, translate_action): Return
6471 `char const *' rather than `char *' since external code should not free
6473 * src/scan-code.l: Likewise.
6474 * src/scan-gram.l (<SC_BRACED_CODE>): Use val->code for BRACED_CODE,
6475 which is "{...}" in the parser.
6476 * tests/Makefile.am (maintainer-check-valgrind): Set
6477 VALGRIND_OPTS='--leak-check=full --show-reacheable=yes' before invoking
6479 * tests/calc.at (_AT_DATA_CALC_Y): fclose the FILE* so Valgrind doesn't
6481 * tests/testsuite.at (AT_CHECK): Redefine so that running Bison and
6482 expecting a non-zero exit status sets --leak-check=summary and
6483 --show-reachable=no for Valgrind. Bison unabashedly leaks memory in
6484 this case, and we don't want to hear about it.
6486 2006-11-08 Paul Eggert <eggert@cs.ucla.edu>
6488 * bootstrap (runtime-po/Makevars): Derive from po/Makevars
6489 instead of from the template, to simplify configuration a bit.
6490 * bootstrap.conf (excluded_files): Don't exclude m4/codeset.m4
6491 and m4/wint_t.m4, as they are needed with the latest gnulib.
6493 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6495 Disable unset/unused mid-rule value warnings by default, and recognize
6496 --warnings=midrule-values to enable them. Discussed starting at
6497 <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>.
6498 * NEWS (2.3a+): Mention.
6499 * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum
6500 warnings): Add entry for midrule-values subargument.
6501 * src/reader.c (symbol_should_be_used): Don't return true just because
6502 the value is a set/used mid-rule value unless
6503 --warnings=midrule-values was specified.
6504 * tests/input.at (Unused values, Unused values before symbol
6505 declarations): Run tests with and without --warnings=midrule-values.
6507 * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather
6508 than LIST_FREE directly.
6510 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6512 Finish implementing --warnings=error, which should not be implied by
6513 --warnings=all (or by its synonyms -W and --warnings without
6515 * src/complain.c (set_warning_issued): New function to report that
6516 warnings are being treated as errors and to record an error if so.
6518 (warn_at, warn): ... here.
6519 * src/getargs.c (warnings_args, warnings_types): Reorder so that
6520 "error - warnings are errors" does not appear above "all - all of the
6522 (getargs): For -W and --warnings without subarguments, don't let
6523 FLAGS_ARGMATCH set warnings_error in warnings_flag.
6524 * src/getargs.h (enum warnings): Unset warnings_error in warnings_all.
6526 2006-10-31 Joel E. Denny <jdenny@ces.clemson.edu>
6528 * src/getargs.c (flags_argmatch): Don't cause segmentation fault for
6529 empty subargument list. For example: `bison --warnings= parser.y'.
6531 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6533 * data/push.c, data/yacc.c: Make sure there's a newline at the end of
6534 the parser header file so that gcc doesn't warn.
6536 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6538 Split the default %destructor/%printer into two kinds: <*> and <!>.
6539 Discussed starting at
6540 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00060.html>.
6541 * NEWS (2.3a+): Mention.
6542 * doc/bison.texinfo (Freeing Discarded Symbols): Document this and the
6543 previous change today related to mid-rules.
6544 (Table of Symbols): Remove %symbol-default and add <*> and <!>.
6545 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): Remove.
6546 (TYPE_TAG_ANY): Add as <*>.
6547 (TYPE_TAG_NONE): Add as <!>.
6548 (generic_symlist_item): Remove RHS for %symbol-default and add RHS's
6550 * src/scan-gram.l (PERCENT_SYMBOL_DEFAULT): Remove.
6551 (TYPE_TAG_ANY, TYPE_TAG_NONE): Add.
6552 * src/symlist.c (symbol_list_default_new): Split into tagged and
6554 (symbol_list_destructor_set, symbol_list_printer_set): Split
6555 SYMLIST_DEFAULT case into SYMLIST_DEFAULT_TAGGED and
6556 SYMLIST_DEFAULT_TAGLESS.
6557 * src/symlist.h: Update symbol_list_default*_new prototypes.
6558 (symbol_list.content_type): Split enum value SYMLIST_DEFAULT into
6559 SYMLIST_DEFAULT_TAGGED and SYMLIST_DEFAULT_TAGLESS.
6560 * src/symtab.c (default_destructor, default_destructor_location,
6561 default_printer, default_printer_location): Split each into tagged and
6563 (symbol_destructor_get, symbol_destructor_location_get,
6564 symbol_printer_get, symbol_printer_location_get): Implement tagged
6565 default and tagless default cases.
6566 (default_destructor_set, default_printer_set): Split each into tagged
6567 and tagless versions.
6568 * src/symtab.h: Update prototypes.
6569 * tests/actions.at (Default %printer and %destructor): Rename to...
6570 (Default tagless %printer and %destructor): ... this, and extend.
6571 (Per-type %printer and %destructor): Rename to...
6572 (Default tagged and per-type %printer and %destructor): ... this, and
6574 (Default %printer and %destructor for user-defined end token): Extend.
6575 (Default %printer and %destructor are not for error or $undefined):
6577 (Default %printer and %destructor are not for $accept): Update.
6578 (Default %printer and %destructor for mid-rule values): Extend.
6579 * tests/input.at (Default %printer and %destructor redeclared): Extend.
6580 (Unused values with default %destructor): Extend.
6582 2006-10-21 Joel E. Denny <jdenny@ces.clemson.edu>
6584 Don't apply the default %destructor/%printer to an unreferenced midrule
6586 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00104.html>.
6587 * src/symtab.c (dummy_symbol_get): Name all dummy symbols initially
6588 like $@n instead of just @n so that the default %destructor/%printer
6589 logic doesn't see them as user-defined symbols.
6590 (symbol_is_dummy): Check for both forms of the name.
6591 * src/reader.c (packgram): Remove the `$' from each midrule symbol
6592 name for which the midrule value is referenced in any action.
6593 * tests/actions.at (Default %printer and %destructor for mid-rule
6595 * tests/regression.at (Rule Line Numbers, Web2c Report): Update output
6596 for change to dummy symbol names.
6598 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6600 Warn about unset midrule $$ if the corresponding $n is used.
6601 * src/reader.c (symbol_should_be_used): Check midrule parent rule for
6603 (packgram): Before invoking grammar_rule_check on any rule, make sure
6604 all actions have already been scanned in order to set `used' flags.
6605 Otherwise, checking that a midrule's $$ is set will not always work
6606 properly because the midrule check must forward-reference the midrule's
6608 * tests/input.at (AT_CHECK_UNUSED_VALUES): Extend to check the new
6611 2006-10-20 Joel E. Denny <jdenny@ces.clemson.edu>
6613 More improvements to the documentation of the prologue alternatives:
6614 * NEWS (2.3a+): Mention the new `Prologue Alternatives' section in the
6616 * doc/bison.texinfo (Prologue Alternatives): Correct some errors. Add
6617 some text to clarify the relative importance of the new directives and
6618 to show how these directives may be viewed as code labels.
6620 2006-10-16 Joel E. Denny <jdenny@ces.clemson.edu>
6622 Similar to the recently removed %before-header, add %code-top as the
6623 alternative to the pre-prologue. Mentioned at
6624 <http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00063.html>.
6625 Also, let the prologue alternatives appear in the grammar section.
6626 * src/parse-gram.y (PERCENT_CODE_TOP): New token.
6627 (prologue_declaration): Move the existing prologue alternatives to...
6628 (grammar_declaration): ... here and add %code-top.
6629 * src/scan-gram.l (PERCENT_CODE_TOP): New token.
6631 Clean up and extend documentation for the prologue alternatives.
6632 * NEWS (2.3a+): Describe prologue alternatives.
6633 * doc/bison.texinfo (Prologue): Move discussion of prologue
6635 (Prologue Alternatives): ... this new section, and extend it to discuss
6636 all 4 directives in detail.
6637 (Table of Symbols): Clean up discussion of prologue alternatives and
6640 2006-10-16 Juan Manuel Guerrero <juan.guerrero@gmx.de>
6642 DJGPP specific issues.
6644 * djgpp/config.bat: config.hin has been moved to lib. Adjust
6645 config.bat accordingly.
6646 * djgpp/config.sed: Adjust config.sed for the use of autoconf 2.60.
6647 * djgpp/config.site: Likewise.
6649 2006-10-16 Paolo Bonzini <bonzini@gnu.org>
6651 Replace %*-header with %provides, %requires, %code. See discussion at
6652 http://lists.gnu.org/archive/html/bison-patches/2006-10/msg00002.html
6654 * data/bison.m4 (b4_user_requires, b4_user_provides): New.
6655 (b4_user_start_header): Remove.
6656 * data/glr.c: Use new macros instead of b4_*start_header
6658 * data/glr.cc: Likewise.
6659 * data/lalr1.cc: Likewise.
6660 * data/push.c: Likewise.
6661 * data/yacc.c: Likewise.
6663 * doc/bison.texinfo: Remove %before-header, rename
6664 %{start,end,after}-header to %requires, %provides, %code.
6666 * src/parse-gram.y: Likewise (also rename token names accordingly).
6667 * src/scan-gram.l: Likewise.
6668 * tests/actions.at: Likewise.
6670 2006-10-14 Paul Eggert <eggert@cs.ucla.edu>
6672 * lib/Makefile.am (AM_CFLAGS): Remove $(WERROR_CFLAGS).
6673 Problem reported by Joel E. Denny.
6675 2006-10-14 Jim Meyering <jim@meyering.net>
6677 (Sync from coreutils.)
6678 Work also when the working directory (with e.g. coreutils sources)
6679 is version controlled with git, rather than CVS.
6680 * bootstrap (CVS_only_file): Test for the existence of README-cvs,
6682 In messages and comments, say e.g., "checked-out sources",
6683 rather than "CVS sources".
6684 (version_controlled_file): New function. Work for git as well as
6685 for CVS. Don't use grep's -q option.
6686 (slurp): Call it here, in place of CVS-specific code.
6688 2006-10-14 Joel E. Denny <jdenny@ces.clemson.edu>
6690 Fix testsuite for ./configure --enable-gcc-warnings:
6691 * configure.ac (gcc-warnings): Move -Wall before -Wno-sign-compare.
6692 Otherwise, gcc 4.1.0 (at least) warns about sign comparisons in
6693 __AT_CHECK_PRINTER_AND_DESTRUCTOR in tests/actions.at.
6694 * test/input.at (Torturing the Scanner): #include <stdlib.h> for abort.
6695 * test/regression.at (Diagnostic that expects two alternatives):
6698 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6700 * bootstrap.conf (gnulib_modules): Add config-h.
6701 * djgpp/subpipe.c: Include <config.h> unconditionally; don't
6702 worry about HAVE_CONFIG_H.
6703 * lib/abitset.c: Likewise.
6704 * lib/bitset.c: Likewise.
6705 * lib/bitset_stats.c: Likewise.
6706 * lib/bitsetv-print.c: Likewise.
6707 * lib/bitsetv.c: Likewise.
6708 * lib/ebitset.c: Likewise.
6709 * lib/get-errno.c: Likewise.
6710 * lib/lbitset.c: Likewise.
6711 * lib/subpipe.c: Likewise.
6712 * lib/timevar.c: Likewise.
6713 * lib/vbitset.c: Likewise.
6714 * lib/bitset.c: Include "bitset.h" first, to test interface.
6715 * lib/bitset_stats.c: Include "bitset_stats.h" first.
6716 * lib/bitsetv-print.c: Include "bitsetv-print.h" first.
6717 * lib/bitsetv.c: Include "bitsetv.h" first.
6718 * lib/get-errno.c: Include "get-errno.h" first.
6719 * m4/.cvsignore: Add config-h.m4.
6720 * tests/actions.at (Default %printer and %destructor for ...):
6721 Adjust expected line numbers in output to reflect removal of #if
6722 HAVE_CONFIG_H lines.
6723 * tests/glr-regression.at (Missed %merge type warnings when ...):
6725 * tests/regression.at (Braced code in declaration in rules section):
6727 * tests/atlocal.in (CPPFLAGS): Don't define HAVE_CONFIG_H.
6728 * tests/local.at (AT_DATA_GRAMMAR_PROLOGUE):
6729 Include <config.h> unconditionally.
6731 * bootstrap: Sync from coreutils, as follows:
6733 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6735 * bootstrap (symlink_to_gnulib): Fix bug: the dot_dots shell
6736 variable was sometimes used without being initialized. This
6737 messed up the installation of the INSTALL file in some cases.
6739 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6741 * bootstrap (usage, main program, symlink_to_gnulib): Add option
6742 --copy. Inspired by a suggestion from Bruno Haible.
6744 2006-10-03 Jim Meyering <jim@meyering.net>
6746 * bootstrap: Undo last change to this file, since now gnulib-tool
6747 sticks with the automake default in generating dependencies.
6749 2006-10-12 Paul Eggert <eggert@cs.ucla.edu>
6751 * configure.ac: Use AC_PROG_CC_STDC; this is more modern than
6752 the old AC_PROG_CC / AM_PROG_CC_STDC combination.
6754 * doc/bison.1: Add copyright notice.
6756 * data/glr.c: Don't include <stdarg.h>; not used.
6758 * NEWS: The -g and --graph options now output graphs in Graphviz
6759 DOT format, not VCG format.
6760 * doc/bison.1: Likewise.
6761 * doc/bison.texinfo (Understanding, Bison Options): Likewise.
6762 * THANKS: Add Satya Kiran Popuri, who proposed the initial version
6764 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00158.html>.
6765 * TODO: Remove Graphviz entry.
6766 * src/Makefile.am (bison_SOURCES): Add graphviz.c and graphviz.h;
6767 remove vcg.c, vcg.h, vcg_defaults.h.
6768 * src/vcg.c, src/vcg.h, src/vcg_defaults.h: Remove.
6769 * src/graphviz.c, src/graphviz.h: New files.
6770 * src/files.c (compute_output_file_names): Output .dot, not .vcg.
6771 * src/files.h: Make comment more generic.
6772 * src/main.c (main): Likewise.
6773 * src/print_graph.h: Likewise.
6774 * src/getargs.c (usage): Make usage description more generic.
6775 * src/print_graph.c: Include graphviz.h rather than vcg.h.
6776 (static_graph, fgraph): Remove. All uses changed to pass
6777 arguments instead of sharing a static var.
6778 (print_core, print_actions, print_state, print_graph):
6779 Output graphviz format rather than VCG format.
6780 * tests/.cvsignore: Remove *.vcg; add *.dot.
6781 * tests/output.at: Expect *.dot files, not *.vcg files.
6783 * data/Makefile.am (dist_pkgdata_DATA): Add bison.m4; this
6784 accommodates the 2006-10-08 change.
6786 2006-10-11 Bob Rossi <bob@brasko.net>
6788 * data/push.c (yypushparse, yypvarsinit, yypvars): Wrap in b4_push_if.
6789 (b4_yyssa, b4_yyerror_range): New macros.
6790 (struct yypvars): Remove yyssa_ptr and yyerror_range_ptr fields.
6791 (yypvarsinit): Remove init of removed fields.
6792 (yypushparse): Remove use of removed fields; use new macros instead.
6794 2006-10-11 Paul Eggert <eggert@cs.ucla.edu>
6796 * data/push.c (yypushparse): Fix memory leak if yymsg is malloced
6797 in a push parser. Reindent slightly to match yacc.c better.
6799 2006-10-11 Bob Rossi <bob@brasko.net>
6801 * data/push.c (struct yypvars): Remove yymsgbuf, yymsgbuf_ptr, yymsg,
6803 (yypvarsinit, yypushparse): Remove init of removed fields.
6804 (yypushparse): Use yymsgbuf instead of yymsgbuf_ptr.
6806 2006-10-09 Paul Eggert <eggert@cs.ucla.edu>
6808 * THANKS: Add Paolo Bonzini and Bob Rossi.
6810 2006-10-08 Paolo Bonzini <bonzini@gnu.org>
6812 * data/c.m4 (b4_copyright, b4_epilogue, b4_location_initial_column,
6813 b4_location_initial_line, p4_parse_param, b4_ints_in, b4_flag_if,
6814 b4_define_flag_if and uses, b4_basename, b4_syncline, b4_user_code,
6815 b4_define_user_cde and uses): Remove.
6816 (b4_comment, b4_prefix, b4_sync_start): New.
6817 * data/bison.m4: New file, with most of the content removed from c.m4.
6818 * src/muscle_tab.h: Use "do {...} while(0)" throughout.
6819 * src/output.c (output_skeleton): Pass bison.m4.
6820 (prepare): Pass glr_flag and nondeterministic_flag. Pass prefix
6823 2006-10-05 Paul Eggert <eggert@cs.ucla.edu>
6825 Fix test failure reported by Tom Lane in
6826 <http://lists.gnu.org/archive/html/bug-bison/2006-10/msg00000.html>
6827 and try to make such failures easier to catch in the future.
6828 * data/glr.c (YYTRANSLATE): Don't check for nonpositive arg;
6829 that's now the caller's responsibility.
6830 (yyprocessOneStack, yyrecoverSyntaxError, yyparse):
6831 Set yychar = YYEOF if it's negative.
6832 * tests/actions.at (yylex): Abort if asked to read past EOF.
6833 * tests/conflicts.at (yylex): Likewise.
6834 * tests/cxx-type.at (yylex): Likewise.
6835 * tests/glr-regression.at (yylex): Likewise.
6836 * tests/input.at (yylex): Likewise.
6837 * tests/regression.at (yylex): Likewise.
6838 * tests/torture.at (yylex): Likewise.
6840 2006-10-01 Paul Eggert <eggert@cs.ucla.edu>
6842 Fix problems with translating English-language diagnostics.
6843 * bootstrap: Fix bug introduced in recent bootstrap changes, with
6844 respect to bison-runtime pot generation. The YY_ stuff
6845 wasn't being captured.
6846 * bootstrap.conf (XGETTEXT_OPTIONS_RUNTIME): New var.
6847 * po/POTFILES.in: Add src/location.c, src/scan-code.l.
6848 * runtime-po/POTFILES.in: Add data/push.c.
6850 2006-09-29 Paul Eggert <eggert@cs.ucla.edu>
6852 Merge bootstrap changes from coreutils.
6854 2006-09-28 Jim Meyering <jim@meyering.net>
6856 Automatically generated dependencies are important even
6857 when all of the sources in a directory come from gnulib.
6858 * bootstrap (gnulib_tool): Remove the "no-dependencies" automake
6859 option that gnulib-tool adds to what becomes our lib/gnulib.mk.
6861 2006-09-23 Jim Meyering <jim@meyering.net>
6863 * bootstrap (gnulib_tool_options): Add "--local-dir gl".
6865 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6867 * bootstrap: Add support for --force.
6868 (usage): New function. Describe usage less tersely.
6869 (CVS_only_file): New var.
6871 2006-09-21 Paul Eggert <eggert@cs.ucla.edu>
6873 * data/push.c (YYPUSH_MORE): Make it an enum instead.
6874 (yypushparse): Use YYPUSH_MORE instead of the mystery constant.
6875 Adjust white space and comments to match GNU style better.
6877 2006-09-20 Bob Rossi <bob@brasko.net>
6879 * data/push.c (yyresult_get): Remove function.
6880 (YYPUSH_MORE): Add #define.
6881 (yypushparse): Modify return value.
6883 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6885 * stamp-h.in: Remove; no longer needed.
6886 * .cvsignore: Replace autom4te.cache and config.cache with *.cache.
6887 Remove config.h, config.hin, intl (no longer created).
6888 * lib/.cvsignore: Add config.h, config.hin, configmake.h, inttypes.h,
6891 Sync bootstrap from coreutils, as follows:
6893 2006-09-18 Paul Eggert <eggert@cs.ucla.edu>
6895 * bootstrap (symlink_to_gnulib): New function.
6896 (cp_mark_as_generated): Use it, to prefer symlinks-to-gnulib
6897 to copies-of-gnulib.
6898 (cp_mark_as_generated, slurp, gnulib_files):
6899 Avoid making a copy if it's the same as the old version.
6900 (gnulib_files): Add support for this variable (used by Bison).
6902 2006-09-20 Paul Eggert <eggert@cs.ucla.edu>
6904 * src/getargs.c (usage): Rework to use conventions similar to
6905 coreutils, to make translation a bit easier and the code a bit
6906 smaller. Problem reported by Tim Van Holder.
6908 2006-09-15 Paul Eggert <eggert@cs.ucla.edu>
6910 Use some of gnulib's new modules, taken from coreutils.
6912 * bootstrap: Sync from coreutils, except add support for gnulib_files.
6913 * bootstrap.conf: New file.
6914 (gnulib_modules): Add configmake, inttypes, unistd.
6915 (XGETTEXT_OPTIONS): Add complain, complain_at,
6916 fatal, fatal_at, warn, warn_at, unexpected_end.
6917 * configure.ac (AC_CONFIG_HEADERS): config.h is now in lib, not here.
6918 (gl_USE_SYSTEM_EXTENSIONS): Remove; gl_EARLY now does this.
6920 (AM_STDBOOL_H): Remove; gl_INIT now dows this.
6922 (GNULIB_AUTOCONF_SNIPPET): Remove.
6923 (AM_GNU_GETTEXT): Add; require formatstring macros since that's
6925 * lib/.cvsignore: Add inttypes_.h.
6926 * lib/Makefile.am: Include gnulib.mk first so we can append to it.
6927 (AM_CFLAGS): Add WERROR_CFLAGS, to be more like coreutils.
6928 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES): Remove
6929 no-longer-necessary initializations.
6930 (lib_SOURCES): Remove, replacing by libbison_a_SOURCES.
6931 * lib/subpipe.c: Include <unistd.h> unconditionally, now that we
6932 use the unistd module.
6933 * src/system.h: Likewise.
6934 * m4/.cvsignore: Remove *_gl.m4, gnulib.m4, inttypes_h.m4, uintmax_t.m4,
6935 ulonglong.m4. Add gettext.m4, gnulib-cache.m4, gnulib-comp.m4,
6936 gnulib-tool.m4, inttypes-h.m4, inttypes-pri.m4, inttypes.m4.
6937 * src/Makefile.am (DEFS): Remove, since configmake does this for us.
6938 (AM_CPPFLAGS): Remove -I../lib, since Automake does that for us.
6939 * src/system.h: Include inttypes.h unconditionally, now that we
6940 use the inttypes module. Don't bother to include stdint.h, since
6941 inttypes.h now does that for us.
6942 (LOCALEDIR): Remove, now that we use the configmake module.
6943 * src/getargs.c: Include configmake.h.
6944 * src/main.c: Likewise.
6945 * src/output.c: Likewise.
6946 * tests/atlocal.in (CPPFLAGS): Include from $abs_top_builddir/lib,
6947 not from $abs_top_builddir, since config.h moved.
6950 Port to GCC 2.95. First two problems reported by Michael Deutschmann in
6951 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00018.html>.
6953 * src/parse-gram.y (symbol_declaration): Don't put statements
6954 before declarations; it's not portable to C89.
6955 * src/scan-code.l (handle_action_at): Likewise.
6957 * src/scan-code.l: Always initialize braces_level; the old code
6958 left it uninitialized and therefore had undefined behavior.
6960 Don't attempt to redefine 'assert', since it runs afoul of
6961 systems where standard headers (mistakenly) include <assert.h>.
6962 Instead, define and use our own alternative, called 'aver'.
6963 * src/reader.c: Don't include assert.h, since we no longer
6965 * src/scan-code.l: Likewise.
6966 * src/system.h (assert): Remove, replacing with....
6967 (aver): New function, taking a bool arg. All uses changed.
6968 * src/tables.c (pack_vector): Ensure that aver arg is bool,
6969 not merely an integer.
6971 2006-09-15 Bob Rossi <bob@brasko.net>
6973 * data/Makefile.am (dist_pkgdata_DATA): Add push.c.
6974 * data/c.m4 (YYPUSH): New.
6975 (b4_push_if): New macro. Use it instead of #ifdef YYPUSH.
6976 * src/getargs.c (push_parser): New var.
6977 * src/getargs.h (push_parser): New declaration.
6978 * src/output.c (prepare): Add macro insertion of `push_flag'.
6979 * src/parse-gram.y (PERCENT_PUSH_PARSER): New token.
6980 (prologue_declaration): Parse %push-parser.
6981 * src/scan-gram.l: Scan new PERCENT_PUSH_PARSER token.
6982 * tests/calc.at (_AT_CHECK_CALC_ERROR): Add "Return" and "Now" to
6983 list of removed lines from the traces observed.
6984 (AT_CHECK_CALC_LALR): Added push parser tests.
6986 2006-09-13 Paul Eggert <eggert@cs.ucla.edu>
6988 * NEWS: Version 2.3a.
6989 * configure.ac (AC_INIT): Likewise.
6991 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Remove
6992 "#define YYSTYPE int" that caused "make maintainer-check" to fail
6993 due to header ordering dependencies. I don't know why the #define
6996 Fix glr.cc and lalr1.cc's use of YYDEBUG so that there's zero
6997 runtime cost when YYDEBUG is not defined, and so that some tests
6998 that used to fail now work. Problem and initial suggestion by
7000 * data/c++.m4 (b4_parse_param_cons): Omit leading ','.
7001 * data/glr.cc (b4_parser_class_name):
7002 Initialize yycdebug_ only if YYDEBUG. Also, initialize yydebug_.
7003 (debug_level, set_debug_level): Affect yydebug_, not ::yydebug.
7004 (yydebug_) [YYDEBUG]: New member.
7005 (yycdebug_): Now defined only if YYDEBUG.
7006 * data/lalr1.cc (yydebug_, yycdebug_): Now defined only if YYDEBUG.
7007 (YYCDEBUG) [!YYDEBUG]: Don't use yydebug_ and yycdebug_.
7008 (b4_parser_class_name): Initialize yydebug_ and yycdebug_ only
7010 (debug_stream, set_debug_stream, debug_level, set_debug_level):
7011 Define only if YYDEBUG.
7012 * tests/calc.at (_AT_DATA_CALC_Y) [!YYDEBUG]: Omit call to
7014 * tests/regression.at (_AT_DATA_DANCER_Y) [!YYDEBUG]: Likewise.
7015 * tests/calc.at (AT_CHECK_CALC_GLR_CC): Uncomment calls to
7016 AT_CHECK_CALC_GLR_CC that are working now.
7018 2006-09-12 Paul Eggert <eggert@cs.ucla.edu>
7020 * data/glr.cc (YYERROR_VERBOSE, YYTOKEN_TABLE): Remove.
7021 We don't need them in glr.cc, and glr.c defines them.
7022 Defining YYERROR_VERBOSE to 0 here breaks glr.c, since glr.c
7023 assumes that defining it to anything is the same as defining
7024 it to 1. Problem reported by Paolo Bonzini.
7026 2006-09-12 Paolo Bonzini <bonzini@gnu.org> (tiny change)
7028 * data/c.m4 (b4_null, b4_case): Define.
7029 * src/output.c (prepare_symbols): Use b4_null.
7030 (user_actions_output): Use b4_case.
7032 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
7034 * data/glr.c (b4_shared_declarations): Put start-header first,
7035 before any #includes that we generate, so that feature-test
7036 macros work. Problem reported by Michael Deutschmann in
7037 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00004.html>.
7038 * data/lalr1.cc: Likewise.
7039 * doc/bison.texinfo (Prologue): Document that feature-test macros
7040 should be defined before any Bison declarations.
7041 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Put defns
7042 that depend on location.hh after, not before, Bison decls, since
7043 we now include location.hh after the first user prologue.
7045 * doc/bison.texinfo (Calc++ Parser): Fix memory leak reported by
7046 Sander Brandenburg in
7047 <http://lists.gnu.org/archive/html/bug-bison/2006-09/msg00002.html>.
7048 Also, fix minor white space and comment issues.
7049 (Prologue): Mention that it's better to define feature-test macros
7050 before Bison declarations. Problem reported by Michael Deutschmann.
7052 * README-cvs: Fix typo: "&" should be "&&". Problem reported
7054 * m4/.cvsignore: Add argmatch.m4. Remove obstack.m4, strerror_r.m4.
7055 This adjusts to recent gnulib changes.
7057 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7059 Finish implementation of per-type %destructor/%printer. Discussed
7061 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>
7063 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>.
7064 * NEWS (2.3+): Add a description of this feature to the default
7065 %destructor/%printer description.
7066 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise.
7067 * src/symlist.c (symbol_list_destructor_set, symbol_list_printer_set):
7068 Invoke semantic_type_destructor_set or semantic_type_printer_set when a
7069 list node contains a semantic type.
7070 * src/symtab.c, src/symtab.h: Extend with a table that associates
7071 semantic types with their %destructor's and %printer's.
7072 (semantic_type_from_uniqstr, semantic_type_get,
7073 semantic_type_destructor_set, semantic_type_printer_set): New functions
7074 composing the public interface of that table.
7075 (symbol_destructor_get, symbol_destructor_location_get,
7076 symbol_printer_get, symbol_printer_location_get): If there's no
7077 per-symbol %destructor/%printer, look up the per-type before trying
7079 * tests/actions.at (Per-type %printer and %destructor): New test case.
7080 * tests/input.at (Default %printer and %destructor redeclared):
7081 Extend to check that multiple occurrences of %symbol-default in a
7082 single %destructor/%printer declaration is an error.
7083 (Per-type %printer and %destructor redeclared, Unused values with
7084 per-type %destructor): New test cases.
7086 2006-09-04 Joel E. Denny <jdenny@ces.clemson.edu>
7088 Require default %destructor/%printer to be declared using
7089 %symbol-default instead of an empty symbol list, and start working on
7090 new per-type %destructor/%printer. Discussed at
7091 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00007.html>.
7092 * NEWS (2.3+): Add %symbol-default to example.
7093 * bison.texinfo (Freeing Discarded Symbols): Likewise.
7094 (Table of Symbols): Add entry for %symbol-default.
7095 * src/parse-gram.y (PERCENT_SYMBOL_DEFAULT): New token.
7096 (generic_symlist, generic_symlist_item): New nonterminals for creating
7097 a list in which each item is a symbol, semantic type, or
7099 (grammar_declaration): Use generic_symlist in %destructor and %printer
7100 declarations instead of symbols.1 or an empty list.
7101 (symbol_declaration, precedence_declaration, symbols.1): Update actions
7102 for changes to symbol_list.
7103 * src/reader.c: Update for changes to symbol_list.
7104 * src/scan-code.l: Likewise.
7105 * src/scan-gram.l: Scan new PERCENT_SYMBOL_DEFAULT token.
7106 * src/symlist.c, src/symlist.h: Extend such that a list node may
7107 represent a semantic type or a %symbol-default in addition to just an
7108 ordinary symbol. Add switched functions for setting %destructor's and
7110 * tests/actions.at, tests/input.at: Add %symbol-default to all default
7111 %destructor/%printer declarations.
7113 2006-08-23 Joel E. Denny <jdenny@ces.clemson.edu>
7115 Whether the default %destructor/%printer applies to a particular symbol
7116 isn't a question of whether the user *declares* that symbol (in %token,
7117 for example). It's a question of whether the user by any means
7118 *defines* the symbol at all (by simply using a char token, for
7119 example). $end is defined by Bison whereas any other token with token
7120 number 0 is defined by the user. The error token is always defined by
7121 Bison regardless of whether the user declares it with %token, but we
7122 may one day let the user define error as a nonterminal instead.
7123 * NEWS (2.3+): Say "user-defined" instead of "user-declared".
7124 * doc/bison.texinfo (Freeing Discarded Symbols): Likewise, and document
7125 the meaning of "user-defined".
7126 * tests/actions.at (Default %printer and %destructor for user-declared
7127 end token): Rename to...
7128 (Default %printer and %destructor for user-defined end token): ...
7131 * src/symtab.c (symbol_destructor_get, symbol_printer_get): In the
7132 computation of whether to apply the default, don't maintain a list of
7133 every Bison-defined symbol. Instead, just check for a first character
7134 of '$', which a user symbol cannot have, and check for the error token.
7136 2006-08-21 Joel E. Denny <jdenny@ces.clemson.edu>
7138 Don't apply the default %destructor or %printer to the error token,
7139 $undefined, or $accept. This change fits the general rule that the
7140 default %destructor and %printer are only for user-declared symbols,
7141 and it solves several difficulties that are described in the new test
7143 * src/symtab.c (symbol_destructor_get, symbol_printer_get): Implement.
7144 * tests/actions.at (Default %printer and %destructor are not for error
7145 or $undefined, Default %printer and %destructor are not for $accept):
7148 2006-08-19 Joel E. Denny <jdenny@ces.clemson.edu>
7150 Allow %start after the first rule.
7151 * src/reader.c (grammar_current_rule_begin): Don't set the start symbol
7152 when parsing the first rule.
7153 (check_and_convert_grammar): Search for it here after all grammar
7154 declarations have been parsed. Skip midrules, which have dummy LHS
7156 * src/symtab.c (symbol_is_dummy): New function.
7157 * src/symtab.h (symbol_is_dummy): Declare it.
7158 * tests/input.at (%start after first rule): New test.
7160 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7162 Redo some of the previous commit: add back the ability to use
7163 non-aliased/undeclared string literals since it might be useful to
7164 those declaring %token-table.
7165 * src/reader.c (check_and_convert_grammar): Undo changes in previous
7166 commit: don't worry about complaints from symbols_pack.
7167 * src/symtab.c (symbol_new, symbol_class_set,
7168 symbol_check_alias_consistency): Undo changes in previous commit: count
7169 each string literal as a new symbol and token, assign it a symbol
7170 number, and don't complain about non-aliased string literals.
7171 (symbols_pack): Since symbol_make_alias still does not decrement symbol
7172 and token counts but does still set aliased tokens to the same number,
7173 symbol_pack_processor now leaves empty slots in the symbols array.
7175 * tests/regression.at (Undeclared string literal): Remove test case
7176 added in previous commit since non-aliased string literals are allowed
7178 (Characters Escapes, Web2c Actions): Undo changes in previous commit:
7179 remove unnecessary string literal declarations.
7180 * tests/sets.at (Firsts): Likewise.
7182 2006-08-18 Joel E. Denny <jdenny@ces.clemson.edu>
7184 Don't allow an undeclared string literal, but allow a string literal to
7185 be used before its declaration.
7186 * src/reader.c (check_and_convert_grammar): Don't invoke packgram if
7187 symbols_pack complained.
7188 * src/symtab.c (symbol_new): Don't count a string literal as a new
7190 (symbol_class_set): Don't count a string literal as a new token, and
7191 don't assign it a symbol number since symbol_make_alias does that.
7192 (symbol_make_alias): It's not necessary to decrement the symbol and
7193 token counts anymore. Don't assume that an alias declaration occurs
7194 before any uses of the identifier or string, and thus don't assert that
7195 one of them has the highest symbol number so far.
7196 (symbol_check_alias_consistency): Complain if there's a string literal
7197 that wasn't declared as an alias.
7198 (symbols_pack): Bail if symbol_check_alias_consistency failed since
7199 symbol_pack asserts that every token has been assigned a symbol number
7200 although undeclared string literals have not.
7201 * tests/regression.at (String alias declared after use, Undeclared
7202 string literal): New test cases.
7203 (Characters Escapes, Web2c Actions): Declare string literals as
7205 * tests/sets.at (Firsts): Likewise.
7207 2006-08-14 Joel E. Denny <jdenny@ces.clemson.edu>
7209 In the grammar scanner, STRING_FINISH unclosed constructs and return
7210 them to the parser in order to improve error messages.
7211 * src/scan-gram.l (SC_ESCAPED_STRING, SC_ESCAPED_CHARACTER,
7212 SC_BRACED_CODE, SC_PROLOGUE): Implement.
7213 * tests/input.at (Unclosed constructs): New test case.
7214 * tests/regression.at (Invalid inputs): Update now that unclosed %{ is
7217 * src/scan-gram.h, src/scan-gram.l (gram_last_braced_code_loc): Remove
7220 2006-08-13 Joel E. Denny <jdenny@ces.clemson.edu>
7222 Handle string aliases for character tokens correctly.
7223 * src/symtab.c (symbol_user_token_number_set): If the token has an
7224 alias, check and set its alias's user token number instead of its own,
7225 which is set to indicate the alias. Previously, every occurrence of
7226 the character token in the grammar overwrote that alias indicator with
7228 * tests/input.at (String aliases for character tokens): New test.
7230 2006-08-12 Joel E. Denny <jdenny@ces.clemson.edu>
7232 * src/parse-gram.y: Add `%expect 0' so we don't overlook conflicts.
7234 2006-08-11 Paul Eggert <eggert@cs.ucla.edu>
7236 * bootstrap: Put in need-ngettext argument to AM_GNU_GETTEXT,
7237 to prevent failures when building on older platforms.
7238 Check for autopoint failure.
7239 Set XGETTEXT_OPTIONS to values that check for C format strings,
7240 so that translators are warned about them (this also helps
7241 prevent core dumps).
7243 * lib/subpipe.c (create_subpipe): Use new gnulib pipe_safer
7244 function, since it simplifies our code a bit.
7246 * configure.ac (AC_ARG_ENABLE): Use -Wextra -Wno-sign-compare
7247 rather than -W, so we don't get bogus warnings about sign comparisons.
7248 Add -Wpointer-arith, since that warning is useful (it reports code
7249 that does not conform to C89 and that some compilers reject).
7250 * data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c: Undo latest change,
7251 since it's no longer needed.
7253 2006-08-10 Joel E. Denny <jdenny@ces.clemson.edu>
7255 Clean up scanners a bit.
7256 * src/flex-scanner.h (FLEX_NO_OBSTACK): New macro that blocks obstack
7257 definitions so gcc won't warn when obstack_for_string is unused.
7258 * src/scan-code.l: config.h and system.h are already #include'd by
7259 scan-code-c.c, so get rid of them here.
7260 * src/scan-gram.l: Likewise.
7261 * src/scan-skel.l: Likewise, and use flex-scanner.h without obstack
7262 definitions rather than duplicating the rest of it.
7263 * src/scan-gram-c.c, scan-skel-c.c: #include "system.h".
7265 2006-08-09 Joel E. Denny <jdenny@ces.clemson.edu>
7267 Suppress signed/unsigned comparison warnings for yycheck.
7268 * data/c.m4 (b4_safest_int_type): New macro.
7269 * data/glr.c, data/lalr1.cc: Wherever you compare yycheck[i] against
7270 a signed int type, cast it to b4_safest_int_type first.
7271 * data/yacc.c: Likewise.
7272 (b4_safest_int_type): Overwrite the one from c.m4 since b4_int_type is
7275 2006-08-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> (tiny change)
7277 * doc/bison.texinfo: Fix some typos.
7279 2006-08-02 Paul Eggert <eggert@cs.ucla.edu>
7281 * m4/.cvsignore: Add inttypes_h.m4,lib-ld.m4, lib-prefix.m4,
7282 po.m4, stdint_h.m4, uintmax_t.m4, ulonglong.m4, warning.m4.
7284 * bootstrap (gnulib_tool): Stop using --assume-autoconf;
7285 the latest gnulib does this a different way.
7286 (get_translations): Sharuzzaman Ahmat Raslan reported that the ms
7287 translation was patched, so stop omitting it.
7289 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
7291 Enable declaration of default %printer/%destructor. Make the parser
7292 use these for all user-declared grammar symbols for which the user does
7293 not declare a specific %printer/%destructor. Thus, the parser uses it
7294 for token 0 if the user declares it but not if Bison generates it as
7295 $end. Discussed starting at
7296 <http://lists.gnu.org/archive/html/bison-patches/2006-02/msg00064.html>,
7297 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00091.html>,
7299 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>.
7300 * NEWS (2.3+): Mention.
7301 * doc/bison.texinfo (Actions in Mid-Rule): It's no longer impossible to
7302 declare a %destructor for a mid-rule's semantic value. It's just
7303 impossible to declare one specific to it.
7304 (Freeing Discarded Symbols): Mention that @$ can be used in %destructor
7305 code. Describe default %destructor form.
7306 * src/parse-gram.y (grammar_declaration): Parse default
7307 %printer/%destructor declarations.
7308 * src/output.c (symbol_destructors_output): Use symbol_destructor_get
7309 and symbol_destructor_location_get rather than accessing the destructor
7310 and destructor_location members of struct symbol.
7311 (symbol_printers_output): Likewise but for %printer's.
7312 * src/reader.c (symbol_should_be_used): Likewise but for %destructor's
7314 * src/symtab.c (default_destructor, default_destructor_location,
7315 default_printer, default_printer_location): New static global
7316 variables to record the default %destructor and %printer.
7317 (symbol_destructor_get, symbol_destructor_location_get,
7318 symbol_printer_get, symbol_printer_location_get): New functions to
7319 compute the appropriate %destructor and %printer for a symbol.
7320 (default_destructor_set, default_printer_set): New functions to set the
7321 default %destructor and %printer.
7322 * src/symtab.h: Prototype all those new functions.
7323 * tests/actions.at (Default %printer and %destructor): New test to
7324 check that the right %printer and %destructor are called, that they're
7325 not called for $end, and that $$ and @$ work correctly.
7326 (Default %printer and %destructor for user-declared end token): New
7327 test to check that the default %printer and %destructor are called for
7328 a user-declared end token.
7329 * tests/input.at (Default %printer and %destructor redeclared, Unused
7330 values with default %destructor): New tests to check related grammar
7331 warnings and errors.
7333 2006-07-29 Joel E. Denny <jdenny@ces.clemson.edu>
7335 Clean up handling of %destructor for the end token (token 0).
7336 Discussed starting at
7337 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00019.html>
7339 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00013.html>.
7341 Make the skeletons consistent in how they pop the end token and invoke
7343 * data/glr.c (yyrecoverSyntaxError, yyparse): Don't pop the start
7344 state, which has token number 0, since this would invoke the
7345 %destructor for the end token.
7346 * data/lalr1.cc (yy::parser::parse): Don't check for the final state
7347 until after shifting the end token, or else it won't be popped.
7348 * data/yacc.c (yyparse): Likewise.
7350 * data/glr.c (yyparse): Clear the lookahead after shifting it even when
7351 it's the end token. Upon termination, destroy an unshifted lookahead
7352 even when it's the end token.
7353 * data/lalr1.cc (yy::parser::parse): Likewise.
7354 * data/yacc.c (yyparse): Likewise.
7356 * src/reader.c (packgram): Don't check rule 0. This suppresses unused
7357 value warnings for the end token when the user gives the end token a
7360 * tests/actions.at (Printers and Destructors): Test all the above.
7362 2006-07-24 Paul Eggert <eggert@cs.ucla.edu>
7364 Update to latest gnulib and gettext versions.
7365 * bootstrap (gnulib-modules): Remove hard-locale, stdio-safer.
7367 (gnulib_files): Add m4/warning.m4. Don't worry about files
7368 overwritten by autopoint.
7369 Replace gt_INTL_SUBDIR_CORE with an empty body in m4/gettext_gl.m4.
7370 Suppress "id", "ms", "tr" translations for now, since gettext 0.15
7372 Don't use autoreconf; instead, invoke autopoint etc. by hand,
7373 so that we can remove the intl files at a better time.
7374 (intl_files_to_remove): Remove aclocal.m4, since it gets
7375 rebuilt anyway. Remove m4/inttypes_h.m4, m4/inttypes.m4,
7376 m4/isc-posix.m4, m4/lib-ld.m4, m4/lib-prefix.m4, m4/po.m4,
7377 m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
7378 Add m4/inttypes-h.m4, m4/lock.m4, m4/visibility.m4.
7379 Remove datarootdir hack; no longer needed.
7380 * configure.ac: Use gl_WARNING_CFLAGS rather than BISON_WARNING.
7381 (AM_GNU_GETTEXT_VERSION): Bump from 0.12 to 0.15.
7382 * lib/.cvsignore: Remove hard-locale.c, hard-locale.h, strdup.c,
7384 * m4/.cvsignore: Remove hard-locale.m4, strdup.m4.
7385 * m4/warning.m4: Remove from CVS, since we now use gnulib's version.
7387 2006-07-20 Paul Eggert <eggert@cs.ucla.edu>
7389 * bootstrap: Adjust to today's change to gnulib-tool by invoking
7390 it with --assume-autoconf='latest-stable'.
7392 2006-07-13 Joel E. Denny <jdenny@ces.clemson.edu>
7394 * src/parse-gram.y (grammar_declaration): Don't confuse Doxygen (at
7395 least 1.4.7 and 1.4.4) by putting a #line between `typedef union
7397 * src/muscle_tab.h (muscle_grow): Replace the header comments with
7398 those from muscle_tab.c since the old ones are misleading.
7400 2006-07-13 Akim Demaille <akim@epita.fr>
7402 Support %define "KEY" {VALUE}.
7403 * src/scan-code.h, src/scan-code.l (translate_action)
7404 (translate_rule_action, translate_symbol_action, translate_code):
7405 Return char *, not const char *.
7406 * src/parse-gram.y (declaration): Rename as...
7407 (prologue_declaration): this.
7408 (string_content): Remove this nonterminal, use STRING.
7409 (braceless, content, content.opt): New nonterminal.
7411 (%define): Now accept content.opt, i.e., accept also BRACED_CODE
7413 * src/scan-gram.l (getargs.h): Don't include it.
7415 2006-07-12 Paul Eggert <eggert@cs.ucla.edu>
7417 * data/lalr1.cc (YYCDEBUG): Use 'if (yydebug_) (*yycdebug_)'
7418 rather than a for-loop that declares a local bool variable. This
7419 should work around a compatibility problem with a Cray x1e C++
7420 compiler reported by Hung Nguyen in
7421 <http://lists.gnu.org/archive/html/help-bison/2006-07/msg00022.html>.
7422 The for-loop was introduced in the 2004-11-17 change but I don't
7423 know why it was needed.
7425 2006-07-12 Akim Demaille <akim@epita.fr>
7427 * data/c.m4: Comment changes.
7429 2006-07-10 Akim Demaille <akim@lrde.epita.fr>
7431 * src/complain.c (error_message, ERROR_MESSAGE): New.
7433 (fatal_at, fatal, warn_at, warn, complain_at, complain): these.
7434 * src/complain.h, src/complain.c (warning_issued): Remove, unused.
7436 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7438 * NEWS: Instead of %union, you can define and use your own union type
7439 YYSTYPE if your grammar contains at least one <type> tag.
7440 Your YYSTYPE need not be a macro; it can be a typedef.
7441 * doc/bison.texinfo (Value Type, Multiple Types, Location Type):
7442 (Union Decl, Decl Summary): Document this.
7443 * data/glr.c (YYSTYPE): Implement this.
7444 * data/glr.cc (YYSTYPE): Likewise.
7445 * data/lalr1.cc (YYSTYPE): Likewise.
7446 * data/yacc.c (YYSTYPE): Likewise.
7447 * src/output.c (prepare): Output tag_seen_flag.
7448 * src/parse-gram.y (declaration, grammar_declaration):
7449 Use 'union_seen' rather than 'typed' to determine whether
7450 %union has been seen, since grammars can now be typed without
7452 (symbol_declaration, type.opt, symbol_def):
7453 Keep track of whether a tag has been seen.
7454 * src/reader.c (union_seen, tag_seen): New vars.
7456 * src/reader.h (union_seen, tag_seen, typed): Likewise.
7457 * src/scan-code.l (untyped_var_seen): New variable.
7458 (handle_action_dollar): Adjust to above changes.
7459 (handle_action_dollar, handle_action_at):
7460 Improve overflow checking for outlandish numbers.
7461 * tests/input.at (AT_CHECK_UNUSED_VALUES): Redo test to
7462 avoid new diagnostics generated by above changes.
7463 * tests/regression.at (YYSTYPE typedef): Add test to check
7464 for type tags without %union.
7466 * src/symlist.c (symbol_list_length): Return int, not unsigned
7467 int, since callers expect int. This may need to get revisited
7468 once we have proper integer overflow checking.
7470 * src/scan-gram.h (gram_scanner_cursor): Remove decl, since this
7471 object is now static.
7473 * src/getargs.c (flags_argmatch): Return void, not int,
7474 to pacify ./configure --enable-gcc-warnings.
7476 * src/flex-scanner.h (STRING_FREE): Don't use FLEX_PREFIX (last_string)
7477 since last_string is already defined to FLEX_PREFIX (last_string).
7479 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
7481 Implement --warnings/-W.
7482 * src/getargs.c (report_argmatch, trace_argmatch): Remove,
7484 (flags_argmatch, FLAGS_ARGMATCH): this new function and macro.
7486 * src/getargs.h, src/getargs.c (warnings, warnings_flags)
7487 (warnings_args, warnings_types): New.
7488 (getargs, short_options, long_options): Accept -W/--warnings.
7489 Sort the options by alphabetical order, upper case letter right
7490 before its lower case.
7492 2006-07-09 Joel E. Denny <jdenny@ces.clemson.edu>
7494 Change %merge result type clash warnings to errors. Discussed at
7495 <http://lists.gnu.org/archive/html/bison-patches/2006-07/msg00026.html>.
7496 * src/reader.c (record_merge_function_type): Use complain_at.
7497 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7498 declared later): Update test case results.
7500 2006-07-09 Akim Demaille <akim@lrde.epita.fr>
7502 * src/getargs.h, src/getargs.c: Swap --report and --trace handling
7503 to be in alphabetical order.
7504 (trace_args): Spelling fixes.
7506 2006-07-09 Paul Eggert <eggert@cs.ucla.edu>
7508 * data/yacc.c (YYID, yy_stack_print): Prefix local vars with "yy"
7509 so they don't collide with user-defined macros.
7510 (yy_stack_print): Don't assume that yytype_int16 promotes to int;
7511 this was never guaranteed, and now that we're using gnulib stdint,
7512 which defines int_fast16_t to long int, the problem is exposed.
7514 2006-07-08 Paul Eggert <eggert@cs.ucla.edu>
7516 * data/c.m4 (b4_basename): Simplify a bit, since we don't
7517 need the full POSIX semantics (and weren't implementing them
7520 Adjust to Autoconf 2.60 and today's gnulib.
7521 * bootstrap (gnulib_modules): Add stdint.
7522 Remove special case for m4/onceonly_2_57.m4, since gnulib-tool
7523 no longer copies it.
7524 (intl_files_to_remove): Remove m4/longlong.m4 and m4/wchar_t.m4,
7525 since stdint needs the former and wcwidth (which is now required
7526 by mbswidth) needs the latter.
7527 Append 'datarootdir = @datarootdir@' to po/Makefile.in.in, to
7528 work around a compatibility glitch between gettext 0.14.6 and
7530 * configure.ac (AC_PREREQ): Require Autoconf 2.60.
7531 Do not check for uintptr_t, since new stdint module does the right
7533 * lib/.cvsignore: Remove alloca.c, alloca.h, alloca_.h.
7534 Add stdint.h, stdint_.h, wcwidth.h.
7535 * m4/.cvsignore: Remove alloca.m4, onceonly.m4.
7536 Add absolute-header.m4, double-slash-root.m4, longlong.m4,
7537 stdint.m4, wchar_t.m4, wcwidth.m4.
7538 * src/files.c: Include <dirname.h> and <stdio-safer.h> in the
7539 usual order for ../lib/*.h files.
7540 (file_name_split): Use last_component, not base_name, to adjust
7542 * src/parse-gram.h: Include <strverscmp.h> in the usual order
7543 for ../lib/*.h files.
7544 (YYTYPE_INT16, YYTYPE_INT8, YYTYPE_UINT16, YYTYPE_UINT8):
7545 Define unconditionally, since we now assume the stdint module.
7546 * src/scan-skel.l: Include <dirname.h>.
7547 (BASE_QPUTS): Use last_component, not base_name.
7548 * src/system.h: Include <unlocked-io.h> in the usual order
7549 for ../lib/*.h files. Include <stdint.h> unconditionally,
7550 since we now use the stdint module.
7551 (uintptr_t): Declare if UINTPTR_MAX is not defined, not
7552 HAVE_UINTPTR_T, since we now use the stdint module.
7553 (base_name): Remove decl, since files now include <dirname.h>
7556 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
7558 * data/c.m4 (b4_location_initial_column, b4_location_initial_line):
7560 * data/yacc.c, data/glr.c, data/location.cc: Use them.
7561 * NEWS, doc/bison.texinfo: The initial column and line are 1 by
7563 * tests/calc.at: Adjust.
7565 2006-07-08 Akim Demaille <akim@lrde.epita.fr>
7567 * data/c.m4 (b4_basename): New.
7568 (b4_syncline): Also output the location of its invocation (from
7570 (b4_user_action, b4_define_user_action, b4_user_actions)
7571 (b4_user_initial_action, b4_user_post_prologue, b4_user_start_header)
7572 (b4_user_stype): New.
7573 * data/yacc.c, data/glr.c, data/lalr1.cc, data/glr.cc: Use them.
7575 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7577 In the grammar file, the first column is 1 not 0 on the first line as
7578 on every other line.
7579 * src/parse-gram.y (%initial-action): Initialize @$ correctly.
7580 * tests/input.at (Torturing the Scanner): Update output.
7582 * src/scan-gram.l (scanner_cursor): Declare it static.
7584 2006-07-07 Joel E. Denny <jdenny@ces.clemson.edu>
7586 In warnings, say "previous declaration" rather than "first
7588 * src/symtab.c (redeclaration): Do that here.
7589 * src/reader.c (record_merge_function_type): In the case of a result
7590 type clash, report the previous declaration rather than the very first
7591 one in the grammar file.
7592 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7593 declared later): Add a third declaration to check this behavior.
7594 * tests/input.at (Incompatible Aliases): Update output.
7596 2006-06-27 Akim Demaille <akim@epita.fr>
7598 * doc/Doxyfile.in: New.
7599 * doc/Makefile.am: Use it.
7600 * src/lalr.h, src/symtab.h: Initial doxygenation.
7602 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7604 Don't miss %merge result type warnings just because the LHS types are
7605 declared after the %merge. This continues the effort of the previous
7607 * src/reader.c (get_merge_function): Don't set the merger type yet.
7608 (record_merge_function_type): New function for setting the merger type
7609 and checking for clashes.
7610 (grammar_current_rule_merge_set): Set the location of the %merge for
7612 (packgram): Invoke record_merge_function_type for each rule now that
7613 all symbol type declarations have been parsed.
7614 * src/reader.h (merger_list.type_declaration_location): New member
7615 storing the location of the first %merge from which the type for this
7616 merging function was derived.
7617 * src/symlist.h (symbol_list.merger_declaration_location): New member
7618 storing the location of a rule's %merge, if any.
7619 * tests/glr-regression.at (Missed %merge type warnings when LHS type is
7620 declared later): New test to catch the error fixed by the above patch.
7622 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7624 Get action warnings (grammar_rule_check) right even when symbol
7625 declarations appear after the rules. Discussed at
7626 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00108.html>
7628 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00151.html>.
7629 Don't mistake the type of $$ in a midrule to be that of its parent
7631 * src/reader.c (grammar_current_rule_end): Don't invoke
7632 grammar_rule_check yet since not all symbol declarations may have been
7634 (grammar_midrule_action): Likewise.
7635 Don't record whether the midrule's $$ has been used yet since actions
7636 haven't been translated yet.
7637 Record the midrule's parent rule and its RHS index within the parent
7639 (grammar_current_rule_action_append): Don't translate the action yet
7640 since not all symbol declarations may have been parsed yet and, thus,
7641 warnings about types for $$, $n, @$, and @n can't be reported yet.
7642 (packgram): Translate the action and invoke grammar_rule_check now that
7643 all symbol declarations have been parsed.
7644 * src/scan-code.l (handle_action_dollar): Now that this is invoked
7645 after parsing the entire grammar file, the symbol list here in the case
7646 of a midrule is actually the midrule's empty RHS, so reference its
7647 parent rule's RHS where necessary.
7648 On the other hand, now that you can already know it's a midrule, you
7649 aren't forced to think $$ has the same type as its parent rule's $$.
7650 (handle_action_at): In the case of a midrule, reference the parent rule
7652 * src/symlist.c (symbol_list_new): Initialize new midrule-related
7654 (symbol_list_length): Now that this is invoked after all rules have
7655 been parsed, a NULL symbol (rather than a NULL symbol list node)
7656 terminates a rule. symbol_list_print already does this correctly.
7657 * src/symlist.h (symbol_list.midrule_parent_rule,
7658 symbol_list.midrule_parent_rhs_index): New members so that midrules can
7659 remember their relationships with their parents.
7660 * tests/input.at (Type Clashes): Extend to catch the midrule $$ error
7661 fixed by the above patch.
7662 (_AT_UNUSED_VALUES_DECLARATIONS, AT_CHECK_UNUSED_VALUES): New m4 macros
7664 (Unused values): ... this old test case and...
7665 (Unused values before symbol declarations): ... this new test case.
7666 This one is the same as `Unused values' except that all symbol
7667 declarations appear after the rules in order to catch the rest of the
7668 errors fixed by the above patch.
7670 2006-06-26 Joel E. Denny <jdenny@ces.clemson.edu>
7673 * src/reader.c (current_rule): Declare it static since it's no longer
7674 used outside this file.
7675 (grammar_current_rule_action_append): Remove redundant arguments from
7676 translate_rule_action invocation.
7677 * src/reader.h (current_rule): Remove this unused extern.
7678 * src/scan-code.h (translate_rule_action): Remove redundant arguments.
7679 * src/scan-code.l (translate_rule_action): Likewise.
7681 2006-06-25 Joel E. Denny <jdenny@ces.clemson.edu>
7683 Clean up yesterday's patch.
7684 * parse-gram.y (rhs): Move grammar_midrule_action invocation from here
7686 * src/reader.c (grammar_current_rule_action_append): ... here for
7687 consistency with grammar_current_rule_symbol_append.
7688 * tests/regression.at (Braced code in declaration in rules section):
7689 Make yyerror and yylex static as usual.
7691 2006-06-24 Joel E. Denny <jdenny@ces.clemson.edu>
7693 Fix bug that mistakes braced code in a declaration in the rules section
7694 to be a rule action. Mentioned at
7695 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00105.html>.
7696 * src/scan-gram.l: Move midrule action detection from the start of the
7697 scanning of any braced code to...
7698 * src/parse-gram.y (rhs): ... the parsing of braced code as a rule
7699 action. For readability, use $2 and @2 rather than the equivalent
7701 * tests/regression.at (Braced code in declaration in rules section):
7702 New test to catch the error fixed by the above patch.
7704 Work on code readability some.
7705 * src/scan-code.l (current_rule): Get rid of this misleading and
7706 redundant declaration: it's actually extern'ed in reader.h.
7707 (YY_DECL, code_lex, handle_action_dollar, handle_action_at,
7708 translate_action): Add a rule argument and use it instead of the global
7710 (translate_rule_action): This already receives current_rule through an
7711 argument, so pass it on to translate_action instead of assigning
7712 current_rule to current_rule.
7713 (translate_symbol_action, translate_code): Pass rule = NULL to
7716 2006-06-23 Joel E. Denny <jdenny@ces.clemson.edu>
7718 Rename %before-definitions to %start-header and %after-definitions to
7719 %end-header. Don't use these declarations to separate pre-prologue
7720 blocks from post-prologue blocks. Add new order-independent
7721 declarations %before-header and %after-header as alternatives to the
7722 traditional Yacc pre-prologue and post-prologue blocks. Discussed at
7723 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00110.html>.
7724 * NEWS (2.3+): Update for these changes.
7725 * data/glr.c (b4_before_definitions): Update to...
7726 (b4_start_header): ... this.
7727 (b4_after_definitions): Update to...
7728 (b4_end_header): ... this.
7729 * data/glr.cc: Likewise.
7730 * data/lalr1.cc: Likewise.
7731 * data/yacc.c: Likewise.
7732 * doc/bison.texinfo (The prologue): Update names, and replace remaining
7733 prologue blocks with %*-header declarations.
7734 (Calc++ Parser): Likewise.
7735 (Decl Summary): Update names.
7736 (Table of Symbols): Update description.
7737 * src/parse-gram.y (PERCENT_AFTER_DEFINITIONS): Update to...
7738 (PERCENT_END_HEADER): ... this.
7739 (PERCENT_BEFORE_DEFINITIONS): Update to...
7740 (PERCENT_START_HEADER): ... this.
7741 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7742 (declaration): Update token names and m4 macro names.
7743 When parsing %end-header and %start-header, invoke translate_code
7744 before muscle_code_grow, and no longer set global booleans to remember
7745 whether these declarations have been seen.
7746 Parse new %after-header and %before-header.
7747 * src/reader.c (before_definitions, after_definitions): Remove.
7748 (prologue_augment): Accept a new bool argument to specify whether to
7749 augment the pre-prologue or post-prologue.
7750 * src/reader.h (before_definitions, after_definitions): Remove these
7752 (prologue_augment): Add new bool argument.
7753 * src/scan-gram.l (PERCENT_AFTER_DEFINITIONS): Update to...
7754 (PERCENT_END_HEADER): ... this.
7755 (PERCENT_BEFORE_DEFINITIONS): Update to...
7756 (PERCENT_START_HEADER): ... this.
7757 (PERCENT_AFTER_HEADER, PERCENT_BEFORE_HEADER): New tokens.
7758 * tests/actions.at (Printers and Destructors): Update names.
7760 2006-06-22 Joel E. Denny <jdenny@ces.clemson.edu>
7762 Add comparison operators for C++ location classes. Discussed at
7763 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00092.html>.
7764 * data/c++.m4 (b4_define_location_comparison): New boolean %define
7765 declaration indicating whether filename_type has an operator==. If
7766 filename_type is `std::string', it defaults to `1', `0' otherwise.
7767 * data/location.cc: Iff b4_define_location_comparison is `1', add
7768 operator== and operator!= for class position and for class location.
7771 * src/scan-action.l: Remove unused file.
7772 * src/symtab.c (symbol_printer_set): Use printer_location not
7773 destructor_location.
7774 * src/symtab.h (struct symbol): Replace incorrect source comment for
7776 * tests/input.at (Incompatible Aliases): Update output with correct
7779 2006-06-20 Joel E. Denny <jdenny@ces.clemson.edu>
7781 Don't put the pre-prologue in the header file. For the yacc.c code
7782 file and the glr.c header and code files, move the pre-prologue before
7783 the token definitions. Add new %before-definitions and
7784 %after-definitions to declare code that will go in both the header file
7785 and code file. Discussed at
7786 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00000.html>,
7787 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00016.html>,
7789 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00055.html>.
7790 * NEWS (2.3+): Describe these changes.
7791 * data/glr.c (b4_pre_prologue): Move from within to before...
7792 (b4_shared_declarations): ... this.
7793 Add new b4_before_definitions before b4_token_enums.
7794 Add new b4_after_definitions at the end.
7795 * data/glr.cc (b4_pre_prologue): Replace with...
7796 (b4_before_definitions): ... this in the header file.
7797 (b4_after_definitions): New near the end of the header file.
7798 * data/lalr1.cc (b4_pre_prologue): Move from the header file to the
7799 code file right before including the header file.
7800 (b4_before_definitions): New in the previous position of
7801 b4_pre_prologue in the header file.
7802 (b4_after_definitions): New near the end of the header file.
7803 * data/yacc.c: Clean up some m4 quoting especially in the header file.
7804 (b4_token_enums_defines): In the code file, move to right before
7805 YYSTYPE for consistency with the header file.
7806 (b4_before_definitions): New right before b4_token_enums_defines in
7807 both the header and code file.
7808 (b4_after_definitions): New right after YYLTYPE and yylloc in both the
7809 header and code file.
7810 * doc/bison.texinfo (Prologue): Show use of %before-definitions instead
7811 of prologues for %union dependencies.
7812 (Decl Summary): In %defines description, mention the effect of
7813 %before-definitions and %after-definitions on the header file.
7814 (Calc++ Parser): Forward declare driver in a %before-definitions rather
7815 than in the pre-prologue so that make check succeeds.
7816 (Table of Symbols): Add entries for %before-definitions and
7818 * src/parse-gram.y (PERCENT_BEFORE_DEFINITIONS): New token for
7819 %before-definitions.
7820 (PERCENT_AFTER_DEFINITIONS): New token for %after-definitions.
7821 (declaration): Parse those declarations and append to
7822 b4_before_definitions and b4_after_definitions, respectively.
7823 * src/reader.c (before_definitions, after_definitions): New bools to
7824 track whether those declarations have been seen.
7825 (prologue_augment): Add to the post-prologue if %union,
7826 %before-definitions, or %after-definitions has been seen.
7827 * src/reader.h (before_definitions, after_definitions): New extern's.
7828 * src/scan-gram.l: Scan the new declarations.
7829 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Place the second
7830 prologue block in a %before-definitions or a %after-definitions based
7831 on whether the %union is declared.
7832 * tests/regression.at (Early token definitions with --yacc, Early token
7833 definitions without --yacc): Move tests for token definitions into the
7834 post-prologue since token names are no longer defined in the
7837 2006-06-20 Akim Demaille <akim@epita.fr>
7839 * src/symtab.h, src/symtab.c (symbol_from_uniqstr): New.
7840 (symbol_get): Use it.
7841 * src/parse-gram.y: Use it.
7843 2006-06-19 Joel E. Denny <jdenny@ces.clemson.edu>
7845 * src/scan-gram.l: Remove unused declaration of last_string_1 so the
7846 build succeeds when configured with --enable-gcc-warnings.
7848 2006-06-19 Paul Eggert <eggert@cs.ucla.edu>
7850 * src/parse-gram.y (char_name): New function.
7851 (CHAR, STRING, string_content): For %printer, properly escape.
7852 (ID): Prefer fputs to fprintf.
7853 (id): Reindent to be consistent with other rules.
7854 Properly quote char.
7856 The Translation Project changed its way of publishing translations
7857 to maintainers. I haven't received any responses to my request
7858 for supporting the old way, or for documenting the new way. I
7859 have modified 'bootstrap' to use screen scraping
7860 (in this case, HTML scraping). This is unreliable and inelegant,
7861 but I don't see any better way. Yuck.
7862 * bootstrap (TP_URL, WGET_COMMAND): New vars.
7863 (get_translations): New function, which uses HTML scraping to
7864 deduce locations of latest translations.
7865 Use this function to grab both bison and bison-runtime .po files.
7866 Don't bother priming the pump for the runtime-po domain any more,
7867 as it's now translated better than bison is.
7869 2006-06-19 Akim Demaille <akim@epita.fr>
7871 * src/scan-gram.l: No longer "parse" things after `%union' until
7872 `{'. Rather, return a single "%union" token.
7873 No longer make symbols: return strings, and leave the conversion
7874 to symbols to the parser.
7875 (SC_PRE_CODE, token_type): Remove.
7876 * src/parse-gram.y (%union): New field `character'.
7879 (ID, ID_COLON): Now that the scanner no longer makes them
7880 identifiers, adjust all uses to invoke symbol_get.
7881 (id_colon): New, wraps the conversion from string to symbol.
7882 (%union): Accept a possible union_name.
7883 (symbol): Now can be a char.
7884 * data/c.m4 (b4_union_name): Leave a default value.
7885 * data/glr.c, data/yacc.c: Use it.
7887 2006-06-11 Joel E. Denny <jdenny@ces.clemson.edu>
7889 For associating token numbers with token names for "yacc.c", don't use
7890 #define statements unless `--yacc' is specified; always use enum
7891 yytokentype. Most important discussions start at:
7892 <http://lists.gnu.org/archive/html/bison-patches/2005-09/msg00053.html>,
7893 <http://lists.gnu.org/archive/html/bison-patches/2005-12/msg00052.html>,
7895 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00043.html>.
7896 * NEWS (2.3+): Mention.
7897 * data/c.m4 (b4_yacc_if): New.
7898 (b4_token_enums_defines): Use b4_yacc_if to decide whether to add the
7900 * doc/bison.texinfo (Bison Options): Describe the effect of `--yacc'
7901 on token name definitions.
7902 * src/getargs.c (usage): Capitalize `Yacc' in English.
7903 * src/output.c (prepare): Define b4_yacc_flag.
7904 * tests/regression.at (Early token definitions): Test that tokens names
7905 are defined before the pre-prologue not just before the post-prologue.
7906 Remove this test case and copy to...
7907 (Early token definitions with --yacc): ... this to test #define's.
7908 (Early token definitions without --yacc): ... and this to test enums.
7910 2006-06-11 Paul Eggert <eggert@cs.ucla.edu>
7912 * NEWS: Reword the post-2.3 change to not be so optimistic about
7913 removing the old "look-ahead" spelling.
7914 Update previous look-ahead/lookahead change reports.
7915 * REFERENCES: look-ahead -> lookahead (since that's
7916 what he actually wrote).
7917 * doc/refcard.tex: look ahead -> lookahead,
7918 look-ahead -> lookahead
7920 2006-06-09 Joel E. Denny <jdenny@ces.clemson.edu>
7922 For consistency, use `lookahead' instead of `look-ahead' or
7923 `look_ahead'. Discussed starting at
7924 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00049.html>
7926 <http://lists.gnu.org/archive/html/bison-patches/2006-06/msg00017.html>.
7927 * NEWS: For the next release, note the change to `--report'.
7928 * TODO, doc/bison.1: Update English.
7929 * doc/bison.texinfo: Update English.
7930 (Understanding Your Parser, Bison Options): Document as
7931 `--report=lookahead' rather than `--report=look-ahead'.
7932 * src/conflicts.c: Update English in comments.
7933 (lookahead_set): Rename from look_ahead_set.
7934 (flush_reduce): Rename argument look_ahead_tokens to lookahead_tokens.
7935 (resolve_sr_conflict): Rename local look_ahead_tokens to
7936 lookahead_tokens, and update other uses.
7937 (flush_shift, set_conflicts, conflicts_solve, count_sr_conflicts,
7938 count_rr_conflicts, conflicts_free): Update uses.
7939 * src/getargs.c (report_args): Move "lookahead" before alternate
7941 (report_types): Update uses.
7942 (usage): For `--report' usage description, state `lookahead' spelling
7943 rather than `look-ahead'.
7944 * src/getargs.h (report.report_lookahead_tokens): Rename from
7945 report_look_ahead_tokens.
7946 * src/lalr.c: Update English in comments.
7947 (compute_lookahead_tokens): Rename from compute_look_ahead_tokens.
7948 (state_lookahead_tokens_count): Rename from
7949 state_look_ahead_tokens_count.
7950 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7951 (lookahead_tokens_print): Rename from look_ahead_tokens_print.
7952 Rename local n_look_ahead_tokens to n_lookahead_tokens.
7954 Update English in output.
7955 (add_lookback_edge, initialize_LA, lalr, lalr_free): Update uses.
7956 * src/print.c: Update English in comments.
7957 (lookahead_set): Rename from look_ahead_set.
7958 (print_reduction): Rename argument lookahead_token from
7960 (print_core, state_default_rule, print_reductions, print_results):
7962 * src/print_graph.c: Update English in comments.
7963 (print_core): Update uses.
7964 * src/state.c: Update English in comments.
7965 (reductions_new): Update uses.
7966 (state_rule_lookahead_tokens_print): Rename from
7967 state_rule_look_ahead_tokens_print, and update other uses.
7968 * src/state.h: Update English in comments.
7969 (reductions.lookahead_tokens): Rename from look_ahead_tokens.
7970 (state_rule_lookahead_tokens_print): Rename from
7971 state_rule_look_ahead_tokens_print.
7972 * src/tables.c: Update English in comments.
7973 (conflict_row, action_row): Update uses.
7974 * tests/glr-regression.at
7975 (Incorrect lookahead during deterministic GLR,
7976 Incorrect lookahead during nondeterministic GLR): Rename
7977 print_look_ahead to print_lookahead.
7978 * tests/torture.at: Update English in comments.
7979 (AT_DATA_LOOKAHEAD_TOKENS_GRAMMAR): Rename from
7980 AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR.
7981 (Many lookahead tokens): Update uses.
7982 * data/glr.c: Update English in comments.
7983 * lalr1.cc: Likewise.
7985 * src/conflicts.h: Likewise.
7986 * src/lalr.h: Likewise.
7987 * src/main.c: Likewise.
7988 * src/output.c: Likewise.
7989 * src/parse-gram.c: Likewise.
7990 * src/tables.h: Likewise.
7991 * tests/calc.at: Likewise.
7993 2006-06-08 Joel E. Denny <jdenny@ces.clemson.edu>
7995 * src/flex-scanner.h (yytext): Remove stray `*/' in #define.
7997 2006-06-07 Paul Eggert <eggert@cs.ucla.edu>
7999 * TODO: Add request from Nelson H. F. Beebe to be able to install
8000 Bison without installing the yacc script.
8002 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8004 * src/flex-scanner.h: For the sake of Flex 2.5.4, don't #define yyleng
8005 and yytext if they're already #define'd.
8006 * src/flex-scanner.h, src/location.h: Move #include "system.h" to...
8007 * src/scan-code-c.c: ... here.
8008 * src/scan-code.l, src/scan-gram.l: ... and here. Also #include
8011 2006-06-07 Joel E. Denny <jdenny@ces.clemson.edu>
8013 Get Bison to build again when configured with --enable-gcc-warnings.
8014 * src/location.c, src/location.h, src/main.c, src/scan-code.l: Add some
8016 * src/scan-code.l (handle_action_dollar, handle_action_at): Rename
8017 loc argument as it shadows a global.
8018 * src/scan-gram.l: Remove stray comma that prevents boundary_set
8021 * src/.cvsignore: Add scan-code.c.
8023 2006-06-07 Akim Demaille <akim@epita.fr>
8025 * src/scan-gram.l: Move the "add a trailing ; to actions" code
8027 * src/scan-code.l: here.
8028 * tests/input.at (Torturing the Scanner): Fix another location
8031 2006-06-07 Akim Demaille <akim@epita.fr>
8033 * src/Makefile.am (BUILT_SOURCES): Fix the trailing backslash.
8035 2006-06-06 Akim Demaille <akim@epita.fr>
8037 Extract the parsing of user actions from the grammar scanner.
8038 As a consequence, the relation between the grammar scanner and
8039 parser is much simpler. We can also split "composite tokens" back
8041 * src/gram.h (ITEM_NUMBER_MAX, RULE_NUMBER_MAX): New.
8042 * src/scan-gram.l (add_column_width, adjust_location): Move to and
8044 * src/location.h, src/location.c (add_column_width)
8045 (location_compute): these.
8046 Fix the column count: the initial column is 0.
8047 (location_print): Be robust to ending column being 0.
8048 * src/location.h (boundary_set): New.
8049 * src/main.c: Adjust to scanner_free being renamed as
8051 * src/output.c: Include scan-code.h.
8052 * src/parse-gram.y: Include scan-gram.h and scan-code.h.
8054 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_INITIAL_ACTION)
8055 (PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Remove the {...} part,
8056 which is now, again, a separate token.
8057 Adjust all dependencies.
8058 Whereever actions with $ and @ are used, use translate_code.
8059 (action): Remove this nonterminal which is now useless.
8060 * src/reader.c: Include assert.h, scan-gram.h and scan-code.h.
8061 (grammar_current_rule_action_append): Use translate_code.
8062 (packgram): Bound check ruleno, itemno, and rule_length.
8063 * src/reader.h (gram_in, gram__flex_debug, scanner_cursor)
8064 (last_string, last_braced_code_loc, max_left_semantic_context)
8065 (scanner_initialize, scanner_free, scanner_last_string_free)
8066 (gram_out, gram_lineno, YY_DECL_): Move to...
8067 * src/scan-gram.h: this new file.
8068 (YY_DECL): Rename as...
8070 * src/scan-code.h, src/scan-code.l, src/scan-code-c.c: New.
8071 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
8072 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
8073 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
8074 Move these declarations, and...
8075 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE):
8077 * src/flex-scanner.h: this new file.
8078 * src/scan-gram.l (rule_length, rule_length_overflow)
8079 (increment_rule_length): Remove.
8080 (last_braced_code_loc): Rename as...
8081 (gram_last_braced_code_loc): this.
8082 Adjust to the changes of the parser.
8083 Move all the handling of $ and @ into...
8084 * src/scan-code.l: here.
8085 * src/scan-gram.l (handle_dollar, handle_at): Remove.
8086 (handle_action_dollar, handle_action_at): Move to...
8087 * src/scan-code.l: here.
8088 * src/Makefile.am (bison_SOURCES): Add flex-scanner.h,
8089 scan-code.h, scan-code-c.c, scan-gram.h.
8090 (EXTRA_bison_SOURCES): Add scan-code.l.
8091 (BUILT_SOURCES): Add scan-code.c.
8092 (yacc): Be robust to white spaces.
8094 * tests/conflicts.at, tests/input.at, tests/reduce.at,
8095 * tests/regression.at: Adjust the column numbers.
8096 * tests/regression.at: Adjust the error message.
8098 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8100 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8101 Use Akim's wording from
8102 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00056.html>.
8104 2006-06-06 Joel E. Denny <jdenny@ces.clemson.edu>
8106 Between Bison releases, manually append `+' to the previous Bison
8107 release number, and use that as a signal to automatically print the
8108 ChangeLog's CVS Id keyword from --version. Discussed starting at
8109 <http://lists.gnu.org/archive/html/bison-patches/2006-05/msg00028.html>.
8110 * ChangeLog: Add Id header.
8111 * configure.ac (AC_INIT): Append `+' to `2.3'.
8112 * src/.cvsignore: Add revision.c.
8113 * src/Makefile.am (bison_SOURCES): Add revision.c and revision.h.
8114 (BUILT_SOURCES): Add revision.c.
8115 (revision.c): New target rule. This file defines a new global variable
8116 named revision. It initializes it with either the Id from ChangeLog
8117 or, if VERSION doesn't contain `+', with the empty string.
8118 * src/getargs.c (version): Print the value of revision.
8119 * src/revision.h: Extern revision.
8121 2006-06-05 Paul Eggert <eggert@cs.ucla.edu>
8123 * NEWS: Version 2.3.
8124 * configure.ac (AC_INIT): Likewise.
8126 2006-05-30 Paul Eggert <eggert@cs.ucla.edu>
8128 * data/glr.c (YYRECOVERING): Define to be a function-like macro
8129 with no arguments, not as an object-like macro. This is for
8130 compatibility with data/yacc.c. Problem reported by John P. Hartmann in
8131 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00059.html>.
8132 * doc/bison.texinfo (Action Features, Error Recovery, Table of Symbols):
8135 2006-05-30 Joel E. Denny <jdenny@ces.clemson.edu>
8137 * src/getargs.c (usage): Back out yesterday's modification of the
8138 --help output so that we don't have to wait for translation before
8141 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
8143 * doc/bison.texinfo (Introduction): Don't say "GLR grammar".
8144 Problem reported by Akim Demaille.
8146 2006-05-29 Joel E. Denny <jdenny@ces.clemson.edu>
8148 * src/getargs.c (usage): Mention GLR not just LALR(1) in --help output.
8150 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
8152 * data/yacc.c (yy_reduce_print): Omit trailing white space in
8153 generated source code. Problem reported by Frans Englich in
8154 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00049.html>.
8156 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>
8158 * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
8159 shell, not within 'make', so that 'make' by an ordinary builder
8160 (using GNU make) does not worry about configuring gzip. This also
8161 works around a bug reported independently by Keith Thompson and by
8162 Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
8163 stderr rather than stdout, messing up the build logs.
8165 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8167 * data/yacc.c (yyparse): Wrap the final return from yyparse inside YYID
8168 to make sure that YYID will never be unused. This fixes a 'make
8169 maintainer-check' failure caused by the recent changes to the 'Trivial
8170 grammars' test case, which caused g++ 4.1.0 to complain that YYID was
8172 * data/glr.c (yyparse): Wrap yyparse's return inside YYID just in case.
8174 2006-05-21 Joel E. Denny <jdenny@ces.clemson.edu>
8176 * data/glr.c (yyresolveLocations): Remove bogus YYASSERT that the
8177 state before an empty RHS is always resolved here. Only the location
8178 of that state is guaranteed to be resolved, and that's enough. This
8179 fixes the remaining bug reported by Derek M. Jones in
8180 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8181 * tests/glr-regression.at (Uninitialized location when reporting
8182 ambiguity): Test the above case.
8183 Also, the embedded comments in this test case claim it checks the case
8184 of an empty RHS that has inherited the initial location. However, the
8185 corresponding LHS was already resolved, so yyresolveLocations didn't
8186 actually have reason to modify it. Fix this by forcing
8187 nondeterministic operation at the beginning of the parse.
8189 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
8191 * data/c.m4 (b4_yy_symbol_print_generate):
8192 (b4_yy_symbol_print_generate): Use 'YYSTYPE const' rather than
8193 'const YYSTYPE', and similarly for YYLTYPE. This fixes one
8194 of the bugs reported today by Derek M Jones in
8195 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00027.html>.
8196 * doc/bison.texinfo (Value Type): Document that YYSTYPE must be
8197 defined to be a type name without parens or brackets.
8198 (Location Type): Similarly for YYLTYPE.
8199 * tests/regression.at (Trivial grammars): Put in a test for this
8200 bug that will be caught by 'make maintainer-check' (though not,
8201 alas, by 'make check' unless your compiler is picky).
8203 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
8205 * NEWS: Version 2.2.
8206 * configure.ac (AC_INIT): Likewise.
8208 2006-05-17 Joel E. Denny <jdenny@ces.clemson.edu>
8210 * data/glr.c (yyreportTree): Make room in yystates for the state
8211 preceding the RHS. This fixes the segmentation fault reported by Derek
8213 <http://lists.gnu.org/archive/html/help-bison/2006-05/msg00035.html>.
8214 (yyreportTree, yypdumpstack): Subtract 1 from yyrule before printing
8215 to the user. Reported for yyreportTree by Derek M. Jones later in the
8217 * THANKS: Add Derek M. Jones.
8218 Update my email address.
8219 Fix typo in Steve Murphy's name.
8221 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
8223 * data/glr.c (yyreportSyntaxError): Fix off-by-one error in
8224 checking against YYLAST that caused the parser to miss a potential
8225 alternative in its diagnostic.
8226 Problem reported by Maria Jose Moron Fernandez in
8227 <http://lists.gnu.org/archive/html/bug-bison/2006-05/msg00024.html>.
8228 * data/lalr1.cc (yysyntax_error_): Likewise.
8229 * data/yacc.c (yysyntax_error): Likewise.
8230 * tests/regression.at (_AT_DATA_DANCER_Y): Use static array for
8231 tokens, in case we run into an older C compiler.
8232 (_AT_DATA_EXPECT2_Y, AT_CHECK_EXPECT2): New macros.
8233 Use them to check for the off-by-one error fixed above.
8235 * data/yacc.c (yytnamerr): Fix typo: local var should be of type
8236 YYSIZE_T, not size_t.
8237 * tests/regression.at (Trivial grammars): New test, to catch
8238 the error fixed by the above patch.
8240 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
8242 * doc/bison.texinfo (C++ Bison Interface): Clarify the naming
8244 Reported by Steve Murphy.
8246 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
8248 * data/glr.cc, data/lalr1.cc: Using %defines is mandatory.
8249 * data/glr.cc: b4_location_flag is now b4_locations_flag.
8251 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
8253 Implement --trace=m4.
8254 * src/getargs.c (trace_types, trace_args): Accept trace_m4.
8255 * src/output.c (output_skeleton): When set, pass -dV to m4.
8257 Factor the handling of flags in m4.
8258 * src/output.c (prepare): Rename the muscle names debug, defines,
8259 error_verbose to debug_flag, defines_flag, error_verbose_flag.
8260 * data/c.m4: Adjust.
8261 (_b4_define_flag_if, b4_define_flag_if, b4_defines_if): New.
8262 Use b4_define_flag_if to define other b4_FLAG_if macros.
8263 (b4_location_if): As a consequence, rename as...
8264 (b4_locations_if): this, for consistency.
8265 Adjust all the skeletons.
8267 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
8269 * etc/bench.pm: Shorten bench names.
8271 2006-05-14 Akim Demaille <akim@lrde.epita.fr>
8273 * src/output.h, src/output.c (error_verbose): Move to...
8274 * src/getargs.h, src/getargs.c: here.
8276 Adjust dependencies.
8278 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
8280 * data/c.m4 (b4_copyright): Put the special exception for Bison
8281 skeletons here, so we don't have to put it in each skeleton. All
8282 uses changed. Suggested by Akim Demaille. Also, wrap the
8283 copyright notice, in case it is longer than 80 columns. Replace
8284 comma by newline after title.
8286 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
8288 * doc/bison.texinfo (Calc++ Scanner): The flex behavior is an
8289 incompatibility, not a bug. Mention that it wasn't fixed as of
8292 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
8294 * examples/extexi: Enforce the precedence of concatenation over
8296 Reported by Tommy Nordgren.
8298 2006-05-11 Akim Demaille <akim@lrde.epita.fr>
8300 * data/lalr1.cc (yytranslate_): Rename token as t to avoid clashes
8301 with the member "token".
8302 Reported by Martin Nylin.
8304 2006-05-08 Paul Eggert <eggert@cs.ucla.edu>
8306 * data/glr.c: Switch to Bison 2.2 special-exception language in
8307 the copyright notice. Use more-regular format for titles and
8309 * data/glr.cc: Likewise.
8310 * data/location.cc: Likewise.
8311 * data/yacc.cc: Likewise.
8312 * doc/bison.texinfo (Conditions): Document this.
8313 * NEWS: likewise. Upgrade version to 2.2.
8315 2006-04-27 Akim Demaille <akim@lrde.epita.fr>
8317 * data/glr.cc: Remove dead code.
8319 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
8321 * bootstrap: Comment out the AM_CPPFLAGS line, since we don't use
8322 that variable and the line breaks the bootstrap. Problem reported
8323 by Juan M. Guerrero.
8325 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
8327 * doc/bison.texinfo (Multiple start-symbols): New.
8329 2006-04-24 Akim Demaille <akim@lrde.epita.fr>
8331 * etc/README, etc/bench.pl: New.
8333 2006-04-03 Akim Demaille <akim@lrde.epita.fr>
8335 * src/scan-gram.l: Be robust to BRACED_CODE appearing before any
8337 Reported by Mickael Labau.
8338 * tests/input.at (Torturing the Scanner): Test it.
8340 2006-03-16 Paul Eggert <eggert@cs.ucla.edu>
8342 * doc/bison.texinfo (Decl Summary): Don't mention yylloc twice.
8343 Problem reported by Bob Rossi.
8345 2006-03-13 Paul Eggert <eggert@cs.ucla.edu>
8347 * doc/bison.texinfo: Remove @shorttitlepage stuff; it wasn't used
8348 and didn't really work.
8349 For the index, use @ifnotinfo, not @iftex.
8350 Minor cleanups of spacing and terminology.
8352 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
8354 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Fix the definition
8355 of AT_NAME_PREFIX when %name-prefix is not used.
8357 2006-03-12 Akim Demaille <akim@lrde.epita.fr>
8359 Apply --prefix to C++ skeletons too: they change the namespace.
8360 The test suite already exercize these cases.
8361 * data/c++.m4 (b4_namespace): New.
8362 * data/lalr1.cc, data/glr.cc, data/location.cc: Use it instead of `yy'.
8363 * data/lalr1.cc (yytnameerr_): Move its definition into the namespace.
8364 * data/yacc.c, data/glr.c: Remove a useless `[]'.
8365 * doc/bison.texinfo: Document it.
8366 (Option Cross Key): Use @multitable in all formats. It looks
8367 nicer, even in TeX outputs.
8368 (Rules): Use the same code whatever the output type is.
8369 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS)
8370 (_AT_BISON_OPTION_POPDEFS): Support AT_NAME_PREFIX.
8371 * tests/calc.at: Use it, instead of hard coding `yy'.
8373 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
8375 * TODO: Remove dead items.
8377 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
8379 * doc/FAQ: Remove, merged into...
8380 * doc/bison.texinfo (FAQ): this.
8381 * doc/Makefile.am (EXTRA_DIST): Adjust.
8383 2006-03-10 Akim Demaille <akim@lrde.epita.fr>
8385 * data/c.m4 (b4_token_enum): Always define the enum of tokens,
8387 * data/lalrl1.cc, data/glr.cc (parser::token_type): New.
8388 * doc/bison.texinfo (Calc++ Scanner): Use it.
8390 2006-03-09 Paul Eggert <eggert@cs.ucla.edu>
8392 Fix two nits reported by twlevo, plus one more that I discovered.
8394 * src/assoc.h (assoc_to_string): Give a name to the arg, as
8395 this is the usual Bison style.
8396 * src/location.h (location_print): Likewise.
8398 * src/reader.h (token_name): Likewise.
8400 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
8402 Fix some nits reported by twlevo.
8403 * doc/FAQ: Remove ancient Y2K FAQ, replacing it with "secure"
8404 and "POSIX". Use more-modern syntax for URLs. Mention C++
8405 and ask for Java. Don't hardwire OS version numbers. Add
8407 * m4/.cvsignore: Add unistd_h.m4, for latest gnulib.
8408 * src/conflicts.c (solved_conflicts_obstack): Now static.
8410 2006-03-08 Joel E. Denny <jdenny@ces.clemson.edu>
8412 * doc/bison.texinfo (Introduction): Mention GLR and C++ as on the web
8413 page. Say "you can use it" not "you may use it" as on the web page;
8414 we're describing capabilities not granting permission.
8416 2006-03-06 Paul Eggert <eggert@cs.ucla.edu>
8418 * data/glr.c (yyresolveLocations): Rename local variables to avoid
8419 shadowing warnings. Use usual patter for iterating through RHS.
8420 * tests/glr-regression.at
8421 (Uninitialized location when reporting ambiguity):
8422 Modify yylex so that it uses its argument, rather than trying
8423 to rely on ARGSUSED (which doesn't work for gcc with warnings).
8424 const char -> char const.
8426 * tests/Makefile.am ($(srcdir)/package.m4, maintainer-check-valgrind):
8427 Don't use tabs inside commands; it messes up 'ps'.
8428 Problem reported by twlevo.
8430 2006-03-06 Joel E. Denny <jdenny@ces.clemson.edu>
8432 * tests/glr-regression.at (Uninitialized location when reporting
8433 ambiguity): New test case.
8434 * data/glr.c (yyresolveLocations): New function, which uses
8436 (yyresolveValue): Invoke yyresolveLocations before reporting an
8438 * doc/bison.texinfo (Default Action for Locations): Note
8439 YYLLOC_DEFAULT's usage for ambiguity locations.
8440 (GLR Semantic Actions): Cross-reference those notes.
8442 2006-03-04 Joel E. Denny <jdenny@ces.clemson.edu>
8444 * tests/glr-regression.at (Leaked semantic values when reporting
8445 ambiguity): Remove unnecessary union and type declarations.
8446 (Leaked lookahead after nondeterministic parse syntax error): New test
8448 * data/glr.c (yyparse): Check for zero stacks remaining before
8449 attempting to shift the lookahead so that you don't lose it.
8451 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8453 Avoid memory leaks by not invoking longjmp in yyreportAmbiguity.
8454 * tests/glr-regression.at (Leaked semantic values when reporting
8455 ambiguity): New test case.
8456 * data/glr.c (yyreportAmbiguity): Invoke yyyerror directly and return
8457 yyabort rather than invoking yyFail, which invokes longjmp. Remove the
8458 now unnecessary yystackp parameter.
8459 (yyresolveValue): Return yyreportAmbiguity's result. Now the necessary
8460 destructors can be called.
8462 * tests/glr-regression.at: Don't invoke bison with `-t' unnecessarily
8463 in existing testcases.
8465 2006-03-02 Joel E. Denny <jdenny@ces.clemson.edu>
8467 Don't leak semantic values for parent RHS when a user action cuts the
8468 parser, and clean up related code a bit.
8469 * tests/glr-regression.at (Leaked merged semantic value if user action
8470 cuts parse): Rename to...
8471 (Leaked semantic values if user action cuts parse): ... this. Add check
8472 for leaked parent RHS values.
8473 * data/glr.c (yydestroyGLRState): In debugging output, distinguish
8474 between an unresolved state (non-empty chain of semantic options) and
8475 an incomplete one (signaled by an empty chain).
8476 (yyresolveStates): Document the interface. Move all manipulation of a
8477 successfully or unsuccessfully resolved yyGLRState to...
8478 (yyresolveValue): ... here so that yyresolveValue always leaves a
8479 yyGLRState with consistent data and thus is easier to understand.
8480 Remove the yyvalp and yylocp parameters since they are always just
8481 taken from the yys parameter. When reporting a discarded merged value
8482 in debugging output, note that it is incompletely merged. Document the
8484 (yyresolveAction): If resolving any of the RHS states fails, destroy
8485 them all rather than leaking them. Thus, as long as user actions are
8486 written to clean up the RHS correctly, yyresolveAction always cleans up
8487 the RHS of a semantic option. Document the interface.
8489 2006-02-27 Paul Eggert <eggert@cs.ucla.edu>
8491 * data/glr.c (yyexpandGLRStack): Catch an off-by-one error that
8492 led to a segmentation fault in GNU Pascal. Problem reported
8495 2006-02-21 Joel E. Denny <jdenny@ces.clemson.edu>
8497 * doc/bison.texinfo (Mid-Rule Actions): Explain how to bury a
8498 mid-rule action inside a nonterminal symbol in order to declare a
8499 destructor for its semantic value.
8501 2006-02-16 Paul Eggert <eggert@cs.ucla.edu>
8503 * data/yacc.c [(! defined yyoverflow || YYERROR_VERBOSE) && !
8504 YYSTACK_USE_ALLOCA && ! defined YYSTACK_ALLOC && defined
8505 __cplusplus && ! defined _STDLIB_H && !
8506 ((defined YYMALLOC || defined malloc) && (defined YYFREE ||
8507 defined free))]: Include <stdlib.h> rather than rolling our own
8508 declarations of malloc and free, to avoid problems with
8509 incompatible declarations (using 'throw') C++'s stdlib.h. This
8510 should fix Debian bug 340012
8511 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=340012>,
8512 reported by Guillaume Melquiond.
8514 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8516 * NEWS: Clarify symbols versus types in unused-value warnings.
8518 * configure.ac (AC_INIT): Bump version number.
8520 2006-02-13 Paul Eggert <eggert@cs.ucla.edu>
8522 * NEWS: Version 2.1a.
8523 * tests/headers.at (AT_TEST_CPP_GUARD_H): Declare yyerror and yylex,
8524 since C99 requires this.
8526 2006-02-11 Paul Eggert <eggert@cs.ucla.edu>
8528 * m4/c-working.m4: New file.
8529 * configure.ac (BISON_TEST_FOR_WORKING_C_COMPILER): Use it.
8531 2006-02-10 Paul Eggert <eggert@cs.ucla.edu>
8533 * Makefile.maint: Merge from coreutils.
8535 2006-02-09 Paul Eggert <eggert@cs.ucla.edu>
8537 More portability fixes for problems summarized by Nelson H. F. Beebe.
8539 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Catch a
8540 configuration screwup "./configure CC=/opt/SUNWspro/bin/c89
8541 CFLAGS="-xarch=generic64" CXX=/opt/SUNWspro/bin/CC
8542 LDFLAGS="-xarch=generic64" with Sun C 5.7 on Solaris 10; this
8543 messes up because C++ code is compiled in 32-bit mode but linked
8546 2006-02-08 Paul Eggert <eggert@cs.ucla.edu>
8548 More portability fixes for problems summarized by Nelson H. F. Beebe.
8550 * doc/bison.texinfo (Calc++ Scanner): Work around a bug in flex
8551 2.5.31. This resembles the 2005-10-10 patch to src/scan-skel.l.
8553 * examples/calc++/Makefile.am (check_PROGRAMS): Renamed from
8554 nodist_PROGRAMS, since we don't need to actually compile the
8555 example if we're just doing a plain 'make'. This avoids bothering
8556 the installer unnecessarily about problems due to weird C++
8559 2006-02-06 Paul Eggert <eggert@cs.ucla.edu>
8561 More portability fixes for problems summarized by Nelson H. F. Beebe.
8563 * tests/headers.at (AT_TEST_CPP_GUARD_H): Use #include <...> rather
8564 than #include "...", and compile with -I'.'. The old method was
8565 not portable, according to Posix and the C standard, and it does
8566 not work with Sun C 5.7, where previous #line directives affect
8567 the working directory used in later #include "..." directives.
8569 2006-02-06 Juan Manuel Guerrero <juan.guerrero@gmx.de>
8571 Various DJGGP specific issues in /djgpp
8573 2006-02-02 Paul Eggert <eggert@cs.ucla.edu>
8575 More portability fixes for problems summarized by Nelson H. F. Beebe.
8577 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check that
8578 '#include <map>' works and that you can apply ++ to iterators.
8580 2006-02-01 Paul Eggert <eggert@cs.ucla.edu>
8582 Work around portability problems summarized by Nelson H. F. Beebe in
8583 <http://lists.gnu.org/archive/html/bug-bison/2005-09/msg00021.html>.
8585 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8586 that '#include <string>' works.
8588 * data/lalr1.cc (yytranslate_): No longer inline, to work around a
8589 porting problem to g++ 3.4.3 on Darwin 7.9.0, where g++ complained
8590 "warning: sorry: semantics of inline function static data `const
8591 unsigned char translate_table[262]' are wrong (you'll wind up with
8594 * lib/bbitset.h (struct bitset_vtable): Rename members not, and,
8595 or, xor to not_, and_, or_, and xor_, respectively. This works
8596 around a bug in GCC 3.4.3 on Irix 6.5, which apparently has a
8597 random system header somewhere that includes the equivalent of
8600 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that "$CC
8601 -E" works; it apparently doesn't work with PathScale EKO Compiler
8604 2006-01-30 Joel E. Denny <jdenny@ces.clemson.edu>
8606 During deterministic GLR operation, user actions should be able to
8607 influence the parse by changing yychar. To make this easier to fix and
8608 to make glr.c easier to evolve in general, don't maintain yytoken in
8609 parallel with yychar; just compute yytoken when needed.
8610 * tests/glr-regression.at (Incorrect lookahead during deterministic
8611 GLR): Check that setting yychar in a user action has the intended
8613 * data/glr.c (yyGLRStack): Remove yytokenp member.
8614 (yyclearin): Don't set *yytokenp.
8615 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Examine
8616 yychar rather than *yytokenp to determine the current lookahead.
8617 Compute yytoken locally when needed.
8618 (yyparse): Likewise. Remove the local yytoken that yytokenp used to
8621 * doc/bison.texinfo (Bison Options): Remove stray sentence fragment
8622 after `--report' documentation.
8624 2006-01-30 Paul Eggert <eggert@cs.ucla.edu>
8626 * src/parse-gram.y (grammar_declaration): Location of printer
8627 symbol is @1, not list->location. Bug reported by twlevo.
8628 * tests/input.at (Incompatible Aliases): Adjust to above change.
8630 2006-01-29 Paul Eggert <eggert@cs.ucla.edu>
8632 * tests/input.at (AT_CHECK_UNUSED_VALUES): Remove. Instead, do
8633 all the test at once. This makes the output easier to read in the
8636 Fix a longstanding bug uncovered by bro-0.9a9/src/parse.y, which I
8637 got from <http://bro-ids.org/download.html>. The bug is that
8638 when two actions appeared in succession, the second one was
8639 scanned before the first one was added to the grammar rule
8640 as a midrule action. Bison then output the incorrect warning
8641 "parse.y:905.17-906.36: warning: unused value: $3".
8642 * src/parse-gram.y (BRACED_CODE, action): These are no longer
8643 associated with a value.
8644 (rhs): Don't invoke grammar_current_rule_action_append.
8645 (action): Invoke it here instead.
8646 * src/reader.c (grammar_midrule_action): Now extern.
8647 (grammar_current_rule_action_append): Don't invoke
8648 grammar_midrule_action; that is now the scanner's job.
8649 * src/reader.h (last_string, last_braced_code_loc):
8650 (grammar_midrule_action): New decls.
8651 * src/scan-gram.l (last_string): Now extern, sigh.
8652 (last_braced_code_loc): New extern variable.
8653 (<INITIAL>"{"): Invoke grammar_midrule_action if the current
8654 rule already has an action.
8655 (<SC_BRACED_CODE>"}"): Set last_braced_code_loc before returning.
8656 * tests/input.at (AT_CHECK_UNUSED_VALUES):
8657 Add some tests to check that the above changes fixed the bug.
8659 2006-01-27 Paul Eggert <eggert@cs.ucla.edu>
8661 * src/reader.c (symbol_should_be_used): Renamed from symbol_typed_p.
8662 All used changed. Check whether the symbol has a destructor,
8663 not whether it is typed.
8664 * tests/input.at (AT_CHECK_UNUSED_VALUES): Add a destructor, so
8665 that the values are still reported as unused. All line numbers
8668 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
8670 Work around a bug in bro 0.8, which underparenthesizes its
8671 definition of YYLLOC_DEFAULT.
8672 * data/glr.c: Change all uses of YYLLOC_DEFAULT to parenthesize
8674 * data/lalr1.cc: Likewise.
8675 * data/yacc.cc: Likewise.
8677 2006-01-22 Paul Eggert <eggert@cs.ucla.edu>
8679 Work around a bug in Pike 7.0, and give the Pike folks a
8680 better way to override the usual int widths.
8681 * data/yacc.c (b4_int_type): Use yytype_uint8, etc., so that the
8682 user can override the types.
8683 (short): #undef, to work around a bug in Pike 7.0.
8684 (yytype_uint8, yytype_int8, yytype_uint16, yytype_int16): New types.
8685 (union yyalloc.yyss): Use yytype_int16 rather than short.
8687 (yysigned_char): Remove.
8688 * src/parse-gram.y (YYTYPE_UINT8, YYTYPE_INT8, YYTYPE_UINT16):
8689 (YYTYPE_INT16): New macros, to test the new facility in yacc.c.
8690 * tests/regression.at (Web2c Actions): Adjust to above changes.
8692 * src/reader.c (check_and_convert_grammar): New function.
8693 (reader): Close the input file even if something went wrong during
8694 parsing. Minor file descriptor leak reported by twlevo.
8696 * src/assoc.c (assoc_to_string): Use a default: abort (); case
8697 to pacify gcc -Wswitch-default.
8698 * src/scan-gram.l (adjust_location): Use a default: break; case
8699 to pacify gcc -Wswitch-default.
8700 * src/scan-skel.h (skel_get_lineno, skel_get_in, skel_get_out):
8701 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
8702 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
8703 Move these decls to scan-skel.l, since they don't need to be
8705 * src/scan-skel.l: Accept the above decls.
8706 (skel_lex): New decl, to pacify GCC when unpatched flex 2.5.31
8709 2006-01-21 Paul Eggert <eggert@cs.ucla.edu>
8711 * Makefile.cfg (local-checks-to-skip): Add changelog-check,
8712 since we don't want to insist on a version number at the start
8713 of the changelog every time.
8714 * Makefile.maint: Sync from coreutils a bit better.
8715 (sc_trailing_blank): Renamed from sc_trailing_space.
8717 (sc_no_if_have_config_h, sc_require_config_h):
8718 (sc_prohibit_assert_without_use): New rules.
8719 (sc_obsolete_symbols): Don't catch Makefile.maint itself.
8720 (sc_dd_max_sym_length): Fix leading spaces in rule.
8721 (sc_system_h_headers): Prefix with @.
8722 (sc_useless_cpp_parens, m4-check): Output line numbers.
8723 (changelog-check): Allow version only in head.
8724 * data/c.m4: Use "defined FOO" instead of "defined (FOO)", to
8725 satisfy new Makefile.maint rule.
8726 * data/glr.c: Likewise.
8727 * data/glr.cc: Likewise.
8728 * data/lalr1.cc: Likewise.
8729 * data/yacc.c: Likewise.
8730 * lib/ebitsetv.c: Likewise.
8731 * lib/lbitset.c: Likewise.
8732 * lib/subpipe.c: Likewise.
8733 * lib/timevar.c: Likewise.
8734 * src/system.h: Likewise.
8735 * data/yacc.c (YYSTYPE): Don't generate trailing spaces in output.
8736 * djgpp/Makefile.maint: Add copyright notice.
8737 * djgpp/README.in: Likewise.
8738 * djgpp/config.bat: Likewise.
8739 * djgpp/config.site: Likewise.
8740 * djgpp/config_h.sed: Likewise.
8741 * djgpp/djunpack.bat: Likewise.
8742 * djgpp/config.sed: Fix copyright notice to match standard format.
8743 * djgpp/subpipe.h: Likewise.
8744 * lib/bitsetv-print.c: Likewise.
8745 * lib/bitsetv.c: Likewise.
8746 * lib/subpipe.h: Likewise.
8747 * lib/timevar.c: Likewise.
8748 * lib/timevar.h: Likewise.
8749 * djgpp/subpipe.c: Use standard recipe for config.h.
8750 * lib/abitset.c: Likewise.
8751 * lib/bitset.c: Likewise.
8752 * lib/bitset_stats.c: Likewise.
8753 * lib/bitsetv-print.c: Likewise.
8754 * lib/bitsetv.c: Likewise.
8755 * lib/ebitsetv.c: Likewise.
8756 * lib/get-errno.c: Likewise.
8757 * lib/lbitset.c: Likewise.
8758 * lib/subpipe.c: Likewise.
8759 * lib/timevar.c: Likewise.
8760 * lib/vbitset.c: Likewise.
8761 * tests/local.at: Likewise.
8762 * src/scan-gram.l: Don't include verify.h, since system.h does
8764 * .x-sc_require_config_h: New file.
8765 * .x-sc_unmarked_diagnostics: New file.
8767 2006-01-20 Paul Eggert <eggert@cs.ucla.edu>
8769 Be a bit more systematic about using 'abort'.
8770 * lib/abitset.c (abitset_test): Remove ATTRIBUTE_UNUSED; not needed.
8771 * lib/bitset.c (bitset_bytes, bitset_init, bitset_op4_cmp):
8772 Put 'default: abort ();' before some other case, to satisfy older
8774 * lib/bitset_stats.c (bitset_stats_init): Likewise.
8775 * lib/ebitset.c (ebitset_elt_find, ebitset_op3_cmp): Likewise.
8776 * lib/lbitset.c (lbitset_elt_find, lbitset_op3_cmp): Likewise.
8777 * src/conflicts.c (resolve_sr_conflict): Likewise.
8778 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str):
8779 (get_decision_str, get_orientation_str, get_node_alignment_str):
8780 (get_arrow_mode_str, get_crossing_type_str, get_view_str):
8781 (get_linestyle_str, get_arrowstyle_str): Likewise.
8782 * src/conflicts.c (resolve_sr_conflict):
8783 Use a default case rather than one for the one remaining enum
8784 value, to catch invalid enum values as well.
8785 * src/lalr.c (set_goto_map, map_goto):
8786 Prefer "assert (FOO);" to "if (!FOO) abort ();".
8787 * src/nullable.c (nullable_compute, token_definitions_output):
8789 * src/reader.c (packgram, reader): Likewise.
8790 * src/state.c (transitions_to, state_new, state_reduction_find):
8792 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias):
8793 (symbol_pack): Likewise.
8794 * src/tables.c (conflict_row, pack_vector): Likewise.
8795 * src/scan-skel.l (QPUTS): Remove unnecessary parens.
8796 (BASE_QPUTS, "@output ".*\n): Remove unnecessary asserts.
8797 * src/system.h: Don't include <assert.h>.
8798 (assert): New macro.
8800 * doc/bison.texinfo (Prologue, Rules, Actions, Union Decl, Action Decl):
8801 (Destructor Decl, Parser Function, Pure Calling):
8802 Describe rules for braces inside C code more carefully.
8804 2006-01-19 Paul Eggert <eggert@cs.ucla.edu>
8806 Fix some porting glitches found by Nelson H. F. Beebe.
8807 * lib/abitset.c (abitset_resize): Rewrite to avoid warnings from
8808 compilers that don't understand that abort () does not return.
8809 * src/state.c (transitions_to): Likewise.
8810 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check
8811 that '#include <cstdlib>' works.
8812 * src/system.h (INT8_MIN, INT16_MIN, INT32_MIN, INT8_MAX):
8813 (INT16_MAX, UINT8_MAX, INT32_MAX, UINT16_MAX, UINT32_MAX):
8814 #undef if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901,
8815 for the benefit of some pre-C99 compilers.
8817 * bootstrap: Undo changes to gnulib files that autoreconf made.
8819 Minor fixups to get 'make maintainer-check' to work.
8820 * configure.ac: Don't use -Wnested-externs, as it's incompatible
8821 with the new verify.h implementation.
8822 * data/c.m4 (b4_yy_symbol_print_generate): YYUSE (yyoutput).
8823 * data/glr.c (YYUSE): Depend on __GNUC__ as well.
8824 * data/yacc.c (YYUSE): Likewise.
8825 * data/lalr1.cc (yysyntax_error_): YYUSE (yystate).
8826 * lib/subpipe.c (end_of_output_subpipe): The args are unused.
8827 * src/parse-gram.y (declaration): Don't pass a string constant
8828 to a function that expects char *, since GCC might complain
8829 about the constant value.
8830 * src/reader.c (symbol_typed_p): Add parens to pacify GCC.
8831 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): #undef yylloc and yylval
8832 before #defining them.
8833 * tests/glr-regression.at
8834 (Incorrectly initialized location for empty right-hand side in GLR):
8835 In yyerror, use the msg arg.
8836 (Corrupted semantic options if user action cuts parse):
8837 (Incorrect lookahead during deterministic GLR):
8838 (Incorrect lookahead during nondeterministic GLR):
8839 Don't name a local var 'index'; it shadows string.h's 'index'.
8841 2006-01-19 Akim Demaille <akim@epita.fr>
8843 * tests/calc.at (_AT_DATA_CALC_Y): Initialize the whole initial
8844 location, not just parts of it.
8846 2006-01-18 Paul Eggert <eggert@cs.ucla.edu>
8848 * NEWS: Document the fact that multiple %unions are now allowed.
8849 * doc/bison.texinfo (Union Decl): Likewise.
8850 * TODO: This feature is now implemented, so remove it from
8853 * Makefile.maint: Merge with coreutils Makefile.maint.
8854 (CVS_LIST): Use build-aux version if available.
8855 (VERSION_REGEXP): New macro.
8856 (syntax-check-rules): Add sc_no_if_have_config_h,
8857 sc_prohibit_assert_without_use, sc_require_config_h,
8858 sc_useless_cpp_parens.
8859 (sc_obsolete_symbols): Check for O_NDELAY.
8860 (sc_dd_max_sym_length): Track coreutils.
8861 (sc_unmarked_diagnostics): Look in all files, not just *.c.
8862 (sc_useless_cpp_parens): New rule.
8863 (news-date-check): Look for version or today's date.
8864 (changelog-check): Don't require version number near head.
8865 (copyright-check): Use current year instead of hardwiring 2005.
8866 (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
8867 (announcement): Add --gpg-key-ID.
8869 * djgpp/config.sed: Add copyright notice, and replace "filesystem"
8872 Avoid undefined behavior that addressed just before the start of an
8873 array. Problem reported by twlevo.
8874 * src/reader.c (packgram): Prepend a new sentinel before ritem.
8875 * src/lalr.c (build_relations): Rely on new sentinel.
8876 * src/gram.c (gram_free): Adjust to new sentinel.
8878 2006-01-12 Joel E. Denny <jdenny@ces.clemson.edu>
8880 * data/glr.c (yyGLRStateSet): Rename yylookaheadStatuses to
8881 yylookaheadNeeds. All uses updated.
8882 (yysplitStack): Rename local yynewLookaheadStatuses to
8883 yynewLookaheadNeeds.
8884 * data/glr-regression.at (Incorrect lookahead during nondeterministic
8885 GLR): In comments, change `lookahead status' to `lookahead need'.
8887 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8889 * data/glr.c (yysplitStack): A little stylistic rewrite.
8891 2006-01-11 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
8893 * data/glr.c (yyaddDeferredAction): Flesh out the comment.
8895 2006-01-11 Joel E. Denny <jdenny@ces.clemson.edu>
8897 * doc/bison.texinfo: Fix some typos.
8898 (GLR Semantic Actions): New subsection discussing special
8899 considerations because GLR semantic actions might be deferred.
8900 (Actions): Mention look-ahead usage of yylval.
8901 (Actions and Locations): Mention look-ahead usage of yylloc.
8902 (Special Features for Use in Actions): Add YYEOF entry and mention it
8903 in the yychar entry.
8904 In the yychar entry, remove mention of the local yychar case (pure
8905 parser) since this is irrelevant information when writing semantic
8906 actions and since it's already discussed in `Table of Symbols' where
8907 yychar is otherwise described as an external variable.
8908 In the yychar entry, don't call it the `current' look-ahead since it
8909 isn't when semantic actions are deferred.
8910 In the yychar and yyclearin entries, add note about deferred semantic
8912 Add yylloc and yylval entries discussing look-ahead usage.
8913 (Look-Ahead Tokens): When discussing yychar, don't call it the
8914 `current' look-ahead, and do mention yylval and yylloc.
8915 (Error Recovery): Cross-reference `Action Features' when mentioning
8917 (Table of Symbols): In the yychar entry, don't call it the `current'
8919 In the yylloc and yylval entries, mention look-ahead usage.
8921 2006-01-08 Joel E. Denny <jdenny@ces.clemson.edu>
8923 * tests/glr-regression.at: Update copyright year to 2006.
8925 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8927 * data/glr.c (yyGLRStateSet): Add yybool* yylookaheadStatuses member to
8928 use during nondeterministic operation to track which stacks have
8929 actually needed the current lookahead.
8930 (yyinitStateSet, yyfreeStateSet, yyremoveDeletes, yysplitStack):
8931 Allocate, deallocate, resize, and otherwise shuffle space for
8932 yylookaheadStatuses in parallel with yystates member of yyGLRStateSet.
8933 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
8934 appropriately during nondeterministic operation.
8935 (yySemanticOption): Add int yyrawchar, YYSTYPE yyval, and YYLTYPE yyloc
8936 members to store the current lookahead to be used by the deferred
8938 (yyaddDeferredAction): Add size_t yyk parameter specifying the stack
8939 from which the RHS is taken. Set the lookahead members of the new
8940 yySemanticOption according to the lookahead status for stack yyk.
8941 (yyglrShiftDefer, yyglrReduce): Pass yyk parameter on to
8942 yyaddDeferredAction.
8943 (yyresolveAction): Set yychar, yylval, and yylloc to the lookahead
8944 members of yySemanticOption before invoking yyuserAction, and then set
8945 them back to their current values afterward.
8946 (yyparse): Set yychar = YYEMPTY where yytoken = YYEMPTY.
8947 (yyreportAmbiguity): Add /*ARGSUSED*/ to pacify lint.
8948 * tests/glr-regression.at: Remove `.' from the ends of recent test case
8949 titles for consistency.
8950 (Leaked merged semantic value if user action cuts parse): In order to
8951 suppress lint warnings, use arguments in merge function, and assign
8952 char value < 128 in main.
8953 (Incorrect lookahead during deterministic GLR): New test case.
8954 (Incorrect lookahead during nondeterministic GLR): New test case.
8956 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8958 * data/c.m4 (b4_yy_symbol_print_generate): In yy_symbol_print, accept
8959 !yyvaluep as signal that no semantic value is available to print.
8960 * data/glr.c (yydestroyGLRState): If state is not resolved, don't try
8961 to print a semantic value.
8963 2006-01-06 Joel E. Denny <jdenny@ces.clemson.edu>
8965 * tests/glr-regression.at: For consistency with my newer test cases,
8968 2006-01-05 Joel E. Denny <jdenny@ces.clemson.edu>
8970 * data/glr.c (yyresolveValue): When merging semantic options, if at
8971 least one user action succeeds but a later one cuts the parse, then
8972 destroy the semantic value before returning rather than leaking it.
8973 (yyresolveStates): If a user action cuts the parse and thus
8974 yyresolveValue fails, ignore the (unset) semantic value rather than
8975 corrupting the yyGLRState, and empty the semantic options list since
8976 the user actions should have called all necessary destructors.
8977 Simplify code with YYCHK.
8978 * tests/glr-regression.at (Corrupted semantic options if user action
8979 cuts parse): New test case.
8980 (Undesirable destructors if user action cuts parse): New test case.
8981 Before applying any of this patch, this test case never actually failed
8982 for me... but only because the corrupted semantic options usually
8984 (Leaked merged semantic value if user action cuts parse): New test
8987 2006-01-05 Akim Demaille <akim@epita.fr>
8989 * src/reader.c, src/symlist.h, src/symlist.c: s/mid_rule/midrule/.
8991 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
8993 * data/c.m4 (b4_c_modern): New macro, with a new provision for
8994 _MSC_VER. Problem reported by Cenzato Marco.
8995 (b4_c_function_def): Use it.
8996 * data/yacc.c (YYMODERN_C): Remove. All uses replaced by
8998 (yystrlen, yystpcpy, yyparse): Use b4_c_function... macros rather
8999 than rolling our own.
9001 2006-01-04 Akim Demaille <akim@epita.fr>
9003 Also warn about non-used mid-rule values.
9004 * src/symlist.h, src/symlist.c (symbol_list): Add a mid_rule
9006 (symbol_list_new): Adjust.
9007 * src/reader.c (symbol_typed_p): New.
9008 (grammar_rule_check): Use it.
9009 (grammar_midrule_action): Bind a mid-rule LHS to its rule.
9011 * tests/input.at (AT_CHECK_UNUSED_VALUES): New.
9013 * tests/actions.at (Exotic Dollars): Adjust.
9015 2006-01-04 Akim Demaille <akim@epita.fr>
9017 * src/reader.c (grammar_midrule_action): If $$ is set in a
9018 mid-rule, move the `used' bit to its lhs.
9019 * tests/input.at (Unused values): New.
9020 * tests/actions.at (Exotic Dollars): Adjust: exp is not typed.
9022 2006-01-03 Paul Eggert <eggert@cs.ucla.edu>
9024 * doc/bison.texinfo (Bison Options): Say more accurately what
9026 * src/parse-gram.y (rules_or_grammar_declaration): Don't complain
9027 about declarations in the grammar when in Yacc mode, as POSIX does
9028 not require a diagnostic when the grammar uses extensions.
9030 * src/reduce.c (reduce_grammar): Remove unnecessary cast to bool.
9032 Warn about dubious constructions like "%token T T".
9034 * src/symtab.h (struct symbol.declared): New member.
9035 * src/symtab.c (symbol_new): Initialize it to false.
9036 (symbol_class_set): New arg DECLARING, specifying whether
9037 this is a declaration that we want to warn about, if there
9038 is more than one of them. All uses changed.
9040 * data/glr.c, data/glr.cc, data/lalr1.cc, data/yacc.c:
9041 Allow multiple %union directives, whose contents concatenate.
9042 * src/parse-gram.y (grammar_declaration): Likewise.
9043 Use muscle_code_grow, so that we don't need stype_line any more.
9046 * src/muscle_tab.c (muscle_grow): Fix comment.
9048 * ChangeLog, data/c.m4, data/glr.c, data/glr.cc, data/location.cc:
9049 * data/yacc.c, src/getargs.c, src/output.c, tests/cxx-type.at:
9050 Update copyright year to 2006.
9052 2006-01-03 Akim Demaille <akim@epita.fr>
9054 Have glr.cc pass (some of) the calc.at tests.
9055 * data/glr.cc (b4_parse_param_orig): New.
9056 (b4_parse_param): Improve its definition, and bound it more
9057 clearly in the skeleton.
9058 (b4_epilogue): Append, instead of prepending, in order to keep
9060 Simplify the generation of auxiliary functions: locations and
9061 purity are mandated.
9062 (b4_global_tokens_and_yystype): Honor it.
9063 * data/location.cc (c++.m4): Don't include it.
9064 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Define AT_GLR_CC_IF
9066 * tests/calc.at (AT_CHECK_CALC): Rely on AT_SKEL_CC_IF instead of
9068 Be sure to initialize the first position's filename.
9069 (AT_CHECK_CALC_LALR1_CC): Add %location and %defines, they are
9071 (AT_CHECK_CALC_GLR_CC): New.
9072 Use it to exercise glr.cc as a lalr1.cc drop-in replacement.
9074 2006-01-02 Akim Demaille <akim@epita.fr>
9076 * src/output.c (output_skeleton): Don't hard wire the inclusion of
9078 * data/c++.m4, data/glr.c, data/yacc.c: Include c.m4.
9079 * data/glr.cc: Do not include stack.hh.
9081 2006-01-02 Joel E. Denny <jdenny@ces.clemson.edu>
9083 * data/glr.c: Reformat whitespace with tabs.
9084 (b4_lpure_formals): Remove this unused m4 macro.
9085 * tests/cxx-type.at: Reformat whitespace with tabs.
9086 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo
9087 since it's a member. Rename type to isNterm for clarity.
9089 2005-12-29 Akim <akim@sulaco.local>
9091 Let glr.cc catch up with symbol_value_print.
9092 * data/glr.cc (b4_yysymprint_generate): Replace by...
9093 (b4_yy_symbol_print_generate): this.
9094 (yy_symbol_print, yy_symbol_value_print): Declare them.
9096 2005-12-28 Paul Eggert <eggert@cs.ucla.edu>
9098 * src/location.h (boundary): Note that a line or column equal
9099 to INT_MAX indicates an overflow.
9100 * src/scan-gram.l: Include verify.h. Don't include get-errno.h.
9101 (rule_length_overflow, increment_rule_length, add_column_width):
9103 (<INITIAL>{id}, <SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'"):
9104 (<SC_BRACED_CODE>"}"):
9105 Use increment_rule_length rather than incrementing it by hand.
9106 (adjust_location, handle_syncline): Diagnose overflow.
9107 (handle_action_dollar, handle_action_at):
9108 Fix bug with monstrosities like $-2147483648.
9109 Remove now-unnecessary checks.
9110 (scan_integer): Verify assumptions and remove now-unnecessary checks.
9111 (convert_ucn_to_byte): Verify assumptions.
9112 (handle_syncline): New arg LOC. All callers changed.
9113 Don't store through a value derived from char const * pointer.
9115 * src/reader.c (grammar_rule_check): Rewrite slightly to avoid
9118 2005-12-27 Paul Eggert <eggert@cs.ucla.edu>
9120 * src/reader.c (grammar_midrule_action, grammar_symbol_append):
9121 Remove unnecessary forward static decls.
9123 2005-12-27 Akim Demaille <akim@epita.fr>
9125 * src/reader.c (grammar_current_rule_check): Also check that $$
9127 Take the rule to check as argument, hence rename as...
9128 (grammar_rule_check): this.
9129 * src/reader.h, src/reader.c (grammar_rule_begin, grammar_rule_end):
9131 (grammar_rule_begin, grammar_rule_end): these, for consistency.
9132 (grammar_midrule_action, grammar_symbol_append): Now static.
9133 * tests/torture.at (input): Don't rely on the default action
9134 being always performed.
9135 * tests/calc.at: "Set" $$ even when the action is "cut" with
9137 * tests/actions.at (Exotic Dollars): Instead of using unused
9138 values, check that the warning is issued.
9140 2005-12-22 Paul Eggert <eggert@cs.ucla.edu>
9142 * NEWS: Improve wording for unused-value warnings.
9144 2005-12-22 Akim Demaille <akim@epita.fr>
9146 * data/lalr1.cc, data/yacc.c, data/glr.c, data/c.m4
9147 (b4_yysymprint_generate): Rename as...
9148 (b4_yy_symbol_print_generate): this.
9149 Generate yy_symbol_print instead of yysymprint.
9150 Generate also yy_symbol_value_print, and use it.
9152 2005-12-22 Akim Demaille <akim@epita.fr>
9154 * NEWS: Warn about unused values.
9155 * src/symlist.h, src/symlist.c (symbol_list, symbol_list_new): Add
9157 (symbol_list_n_get, symbol_list_n_used_set): New.
9158 (symbol_list_n_type_name_get): Use symbol_list_n_get.
9159 * src/scan-gram.l (handle_action_dollar): Flag used symbols.
9160 * src/reader.c (grammar_current_rule_check): Check that values are
9162 * src/symtab.c (symbol_print): Accept 0.
9163 * tests/existing.at: Remove the type information.
9165 Remove useless actions (beware of mid-rule actions: perl -000
9166 -pi -e 's/\s*\{\}(?=[\n\s]*[|;])//g').
9167 * tests/actions.at (Exotic Dollars): Use unused values.
9168 * tests/calc.at: Likewise.
9169 * tests/glr-regression.at (No users destructors if stack 0 deleted):
9172 * src/gram.c (rule_useful_p, rule_never_reduced_p): Use
9175 2005-12-21 Paul Eggert <eggert@cs.ucla.edu>
9177 Undo 2005-12-01 tentative license wording change. The wording is
9178 still being reviewed by the lawyers, and we don't want to wait for
9179 them before publishing a test release. For now, revert to the
9181 * NEWS: Undo 2005-12-01 change.
9182 * data/glr.c: Revert to previous license wording.
9183 * data/glr.cc: Likewise.
9184 * data/lalr1.cc: Likewise.
9185 * data/location.cc: Likewise.
9186 * data/yacc.c: Likewise.
9188 * NEWS: Reword %destructor vs YYABORT etc.
9189 * data/glr.c: Use American spacing, for consistency.
9190 * data/glr.cc: Likewise.
9191 * data/lalr1.cc: Likewise.
9192 * data/yacc.c: Likewise.
9193 * data/yacc.c: Reformat comments slightly.
9194 * doc/bison.texinfo: Replace "non-" with "non" when that makes sense,
9195 for consistency. Fix some spelling errors and reword recently-included
9197 * tests/cxx-type.at: Cast results of malloc, for C++.
9199 2005-12-21 Joel E. Denny <address@hidden>
9201 * tests/cxx-type.at: Construct a tree, count the parents of shared
9202 nodes, and free each node once and only once. Previously, the memory
9203 for semantic values was leaked instead.
9205 2005-12-21 Joel E. Denny <address@hidden>
9207 * data/glr.c (struct yyGLRStack): If pure, add yyval and yyloc members.
9208 (yylval, yylloc): If pure, #define to yystackp->yyval and
9209 yystackp->yyloc similar to yychar and yynerrs.
9210 (yyparse): If pure, remove local yylval and yylloc. Add local
9211 yystackp to accommodate pure definitions of yylval and yylloc.
9212 (b4_lex_param, b4_lyyerror_args, b4_lpure_args): If pure, change
9213 yylvalp and yyllocp to &yylval and &yylloc.
9214 (nerrs, char, lval, lloc): If pure, add #define's for b4_prefix[]
9215 namespace. Previously, nerrs and char were missing, but lval and lloc
9217 (yyprocessOneStack, yyreportSyntaxError, yyrecoverSyntaxError): Remove
9218 yylvalp and yyllocp parameters since, if pure, these are now always
9219 accessible through yystackp. If not pure, they are still accessible
9221 * data/glr.c, data/yacc.c (YYLLOC_DEFAULT): Change `if (N)' to
9222 `if (YYID (N))' to pacify lint.
9224 2005-12-21 Akim Demaille <akim@epita.fr>
9226 YYACCEPT, YYERROR, and YYABORT, as user actions, should not
9227 destroy the RHS symbols of a rule.
9228 * data/yacc.c (yylen): Initialize to 0.
9229 Keep its value to the number of items to possibly shift.
9230 In particular, a regular successful parse that ends on YYFINAL by
9231 a (internal) YYACCEPT must not have yylen != 0.
9232 (yyerrorlab, yyreturn): Pop the RHS.
9233 Reorder a bit to emphasize the `shifting' bits of code.
9234 (YYPOPSTACK): Now accept a number of items to pop.
9235 * data/lalr1.cc: Likewise.
9236 * data/glr.c: Formatting changes.
9237 Use goto instead of fall through.
9238 * doc/bison.texinfo (Destructor Decl): Complete.
9240 2005-12-20 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9242 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9243 * djgpp/Makefile.maint: Fix PACKAGE variable computation.
9244 * djgpp/config.bat: Replace every occurence of the file name
9245 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9246 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9247 * djgpp/config.sed: Replace every occurence of the file name
9248 scan-gram-c.c with c-scan-gram.c. The same for scan-skel-c.c with
9249 c-scan-skel.c to conform with the 8.3 file name restriction on MSDOS.
9250 * djgpp/djunpack.bat: DJGPP specific file.
9251 * djgpp/fnchange.lst: DJGPP specific file.
9252 * djgpp/README.in: Add new information about how to unpack the bison
9253 source on MSDOS and other systems which have 8.3 file name restrictions
9254 using djunpack.bat and fnchange.lst.
9256 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
9258 * bootstrap (build_cvs_prefix): Remove; unused.
9259 (CVS_PREFIX): Adjust to yesterday's Savannah reorganization
9260 when getting gnulib.
9262 2005-12-12 "Joel E. Denny" <jdenny@ces.clemson.edu>
9264 * data/glr.c: Reorder typedef declarations for structs to match order
9265 of struct declarations.
9266 Rename yystack everywhere to yystackp except in yyparse where it's not
9268 (yyglrShift): Change parameter YYSTYPE yysval to YYSTYPE* yyvalp for
9270 (yyis_table_ninf): Change 0 to YYID (0) to pacify lint.
9271 (yyreportSyntaxError): Add /*ARGSUSED*/ to pacify lint.
9272 (yyparse): Change while (yytrue) to while ( YYID (yytrue)) to pacify
9275 2005-12-09 Paul Eggert <eggert@cs.ucla.edu>
9277 * tests/sets.at (Accept): Fix typos in regular expression used to
9278 sed out the final state number.
9280 Work around portability problem on Solaris 10: flex-generated
9281 files include <stdio.h> before <config.h>, which messes up
9282 because the latter defines __EXTENSIONS__. Address the problem
9283 by creating two new little files that include <config.h> first,
9284 then include the flex-generated files. Rewrite everyone else
9285 to include <config.h> first, as well.
9286 * lib/timevar.c: Always include "config.h".
9287 * src/Makefile.am (bison_SOURCES): Replace scan-gram.l with
9288 scan-gram-c.c, and scan-skel.l with scan-skel-c.c.
9289 (EXTRA_bison_SOURCES): New macro.
9290 * src/scan-gram-c.c, src/scan-skel-c.c: New files.
9291 * src/system.h: Don't include config.h.
9292 * src/LR0.c: Include <config.h> first.
9293 * src/assoc.c: Likewise.
9294 * src/closure.c: Likewise.
9295 * src/complain.c: Likewise.
9296 * src/conflicts.c: Likewise.
9297 * src/derives.c: Likewise.
9298 * src/files.c: Likewise.
9299 * src/getargs.c: Likewise.
9300 * src/gram.c: Likewise.
9301 * src/lalr.c: Likewise.
9302 * src/location.c: Likewise.
9303 * src/main.c: Likewise.
9304 * src/muscle_tab.c: Likewise.
9305 * src/nullable.c: Likewise.
9306 * src/output.c: Likewise.
9307 * src/parse-gram.y: Likewise.
9308 * src/print.c: Likewise.
9309 * src/print_graph.c: Likewise.
9310 * src/reader.c: Likewise.
9311 * src/reduce.c: Likewise.
9312 * src/relation.c: Likewise.
9313 * src/state.c: Likewise.
9314 * src/symlist.c: Likewise.
9315 * src/symtab.c: Likewise.
9316 * src/tables.c: Likewise.
9317 * src/uniqstr.c: Likewise.
9318 * src/vcg.c: Likewise.
9320 * src/parse-gram.y: Fix minor problems uncovered by lint.
9321 (current_lhs, current_lhs_location): Now static.
9322 (current_assoc): Remove unused variable.
9324 Cleanups so that Bison-generated parsers have less lint.
9325 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate):
9326 Prepend /*ARGSUSED*/, for lint's sake.
9327 * data/glr.c (YYUSE): Properly parenthesize, and use an alternate
9328 definition if 'lint' is defined.
9329 (YYID): New macro (or function, if lint).
9330 All uses of /*CONSTCOND*/0 replaced by YYID(0).
9331 * data/yacc.c: Likewise.
9332 * data/glr.c (yyuserAction, yyuserMerge, yy_reduce_print):
9333 (yyrecoverSyntaxError): Prepend /*ARGSUSED*/.
9334 * data/glr.cc (YYLLOC_DEFAULT): Omit /*CONSTCOND*/ since this code
9336 * data/lalr1.cc (YYUSE): Just use a cast, since this code is C++ only.
9337 * data/yacc.c (YYSTACK_FREE) [defined YYSTACK_ALLOC]:
9338 Use YYID(0) rather than 0, for lint.
9339 (yystrlen): Rewrite to avoid lint warning about ptrdiff_t overflow.
9340 (yysyntax_error): Rewrite to avoid lint warnings about parenthesization.
9342 2005-12-07 Paul Eggert <eggert@cs.ucla.edu>
9344 * tests/glr-regression.at
9345 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
9346 Close memory leak reported by twlevo.
9348 2005-12-06 "Joel E. Denny" <jdenny@ces.clemson.edu>
9350 * data/glr.c (yyprocessOneStack, yyparse): Synchronize the shift for
9352 (yyparse): Iterate another stack in order to call user destructors.
9353 * tests/glr-regression.at (No users destructors if stack 0 deleted):
9355 (Duplicated user destructor for lookahead): This test now is expected
9358 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
9360 * NEWS: Document the following change.
9361 * data/yacc.c: Say "parser skeleton" rather than "file", since
9362 it's no longer just a file.
9363 * data/glr.c: Grant a special exception for C GLR parsers, that
9364 reads like the already-existing exception for C LALR(1) parsers.
9365 * data/glr.cc: Likewise.
9366 * data/lalr1.cc: Likewise.
9367 * data/location.cc: Likewise.
9368 * data/yacc.c: Reword the "written by" statement to clarify that
9369 it was the parser skeleton, not the entire output file.
9370 * data/glr.c: Written by Paul Hilfinger.
9371 * data/glr.cc: Written by Akim Demaille.
9372 * data/lalr1.cc: Likewise.
9374 2005-11-18 Paul Eggert <eggert@cs.ucla.edu>
9376 * data/yacc.c (yy_reduce_print, YY_REDUCE_PRINT):
9377 Fix typos in previous change that broke 'make check'.
9378 YY_REDUCE_PRINT cannot be a pseudo-varargs macro; that isn't
9380 * tests/calc.at (_AT_CHECK_CALC,_AT_CHECK_CALC_ERROR):
9381 Don't check NUM-STDERR-LINES, since the output format is fluctuating.
9382 We can revert this once things settle down.
9384 * src/conflicts.c (conflicts_print): Don't print file name twice
9385 when %expect fails because there were no conflicts.
9386 * doc/bison.texinfo (Expect Decl): Tighten up wording in previous
9388 * tests/conflicts.at (%expect not enough, %expect too much):
9389 (%expect with reduce conflicts): Adjust to new behavior.
9391 2005-11-18 Akim Demaille <akim@epita.fr>
9393 * src/conflicts.c (conflicts_print): Unsatisfied %expectation are
9395 * NEWS: Document this.
9396 * doc/bison.texinfo (Expect Decl): Likewise.
9398 2005-11-16 Akim Demaille <akim@epita.fr>
9400 Generalize the display of semantic values and locations in traces.
9401 * data/glr.c (yy_reduce_print): Fix indices (again).
9402 * data/c++.m4 (b4_rhs_value, b4_rhs_location): Don't expect
9404 * data/lalr1.cc (yyreduce_print): Rename as...
9405 (yy_reduce_print): this.
9406 Display values and locations.
9407 * data/yacc.c (yy_reduce_print): Likewise.
9408 (YY_REDUCE_PRINT): Adjust to pass the required arguments.
9409 (yysymprint): Move higher to be visible from yy_reduce_print).
9411 * tests/calc.at: Adjust the expected length of the traces.
9413 2005-11-14 Akim Demaille <akim@epita.fr>
9415 * data/glr.c (yy_reduce_print): The loop was quite wrong: type are
9416 from 1 to N, while values and location start at 0.
9417 (b4_rhs_location, b4_rhs_value): Add parens around $1 and $2.
9419 2005-11-14 Akim Demaille <akim@epita.fr>
9421 * data/glr.c (yy_reduce_print): Fix the $ number.
9423 2005-11-14 Akim Demaille <akim@epita.fr>
9425 "Use" parse parameters.
9426 * data/c.m4 (b4_parse_param_for, b4_parse_param_use): New.
9427 * data/glr.c, data/glr.cc: Use them.
9428 * data/glr.c (YYUSE): Have a C++ definition that supports
9431 2005-11-14 Akim Demaille <akim@epita.fr>
9433 * data/glr.c (yyexpandGLRStack): Declare only if defined.
9435 2005-11-14 Akim Demaille <akim@epita.fr>
9438 * data/m4sugar/m4sugar.m4 (m4_prepend): New.
9440 2005-11-12 Akim Demaille <akim@epita.fr>
9442 Let position and location be PODs.
9443 * data/location.cc (position::initialize, location::initialize): New.
9444 (position::position, location::location): Define only if
9445 b4_location_constructors is defined.
9446 * data/lalr1.cc (b4_location_constructors): Define it for backward
9448 * doc/bison.texinfo (Initial Action Decl): Use initialize.
9450 2005-11-12 Akim Demaille <akim@epita.fr>
9452 * data/lalr1.cc: Move the body of the ctor and dtor into the
9453 parser file (instead of the header).
9454 Wrap the implementations in a "namespace yy".
9456 2005-11-12 Akim Demaille <akim@epita.fr>
9458 Have glr.c include its header file when created.
9459 * data/glr.c (b4_shared_declarations): New.
9460 Output them verbatim in the parser if !%defines, otherwise
9461 output then in the header file, and include it instead.
9463 2005-11-11 Akim Demaille <akim@epita.fr>
9465 * data/glr.c: Comment changes.
9467 2005-11-11 Akim Demaille <akim@epita.fr>
9469 When yydebug, report semantic and location values for reductions.
9470 * data/glr.c (yy_reduce_print): Report the semantic values and the
9472 (YY_REDUCE_PRINT): Adjust.
9473 (yyglrReduce): Use them.
9474 (b4_rhs_value, b4_rhs_location): Remove m4_eval invocations.
9475 * data/c.m4 (b4_yysymprint_generate): Specify the const arguments.
9476 * tests/calc.at (_AT_CHECK_CALC_ERROR): Remove the reduction
9479 2005-11-10 Akim Demaille <akim@epita.fr>
9481 * data/glr.c (yynewGLRStackItem, YY_RESERVE_GLRSTACK): New.
9482 (yyaddDeferredAction, yyglrShift, yyglrShiftDefer): Use them.
9483 (yyexpandGLRStack, YYRELOC): Define only when YYSTACKEXPANDABLE.
9485 2005-11-09 Albert Chin-A-Young <china@thewrittenword.com>
9487 * m4/cxx.m4, examples/Makefile.am: Don't build
9488 examples/calc++ if no C++ compiler is available. (trivial change)
9490 2005-11-09 Akim Demaille <akim@epita.fr>
9492 * src/scan-skel.l: Use a couple of asserts.
9494 2005-11-03 Akim Demaille <akim@epita.fr>
9496 In some (weird) cases, the final state number is incorrect.
9497 Reported by Alexandre Duret-Lutz.
9498 * src/LR0.c (state_list_append): Remove the computation of
9500 (save_reductions): Do it here.
9501 (get_state): Alpha conversion.
9502 (generate_states): Use a for loop.
9503 * src/gram.h (item_number_is_rule_number)
9504 (item_number_is_symbol_number): New.
9505 * src/state.c: Use assert.
9506 * src/system.h: Include assert.h.
9507 * tests/sets.at (Accept): New.
9509 2005-10-30 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
9511 * data/glr.c (yyfill): Adjust comment.
9512 (yyresolveAction): Initialize default location properly
9513 for empty right-hand sides.
9514 (yydoAction): Ditto.
9515 Add comment explaining apparently dead code.
9516 * tests/glr-regression.at
9517 (Incorrectly initialized location for empty right-hand side in GLR):
9520 2005-10-30 Paul Eggert <eggert@cs.ucla.edu>
9522 * bootstrap (cleanup_gnulib): New function. Use it to clean up
9523 gnulib when interrupted. This fixes some race conditions and
9524 works around some portability problems (one noted by Paul
9527 2005-10-22 Akim <akim@epita.fr>
9529 * Makefile.cfg: Adjust to config -> build-aux.
9532 2005-10-21 Akim Demaille <akim@epita.fr>
9534 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Pass
9536 * data/glr.c (YY_SYMBOL_PRINT, yydestroyGLRState): Adjust.
9537 * data/yacc.c (b4_Pure_if): Rename as...
9538 (b4_yacc_pure_if): this.
9539 (YY_SYMBOL_PRINT, yyparse): Adjust.
9540 * doc/bison.texinfo: Formatting changes.
9542 2005-10-21 Akim Demaille <akim@epita.fr>
9544 Finish the transition config -> build-aux.
9545 * configure.ac, Makefile.am: Use build-aux.
9546 * config/prev-version, config/announce-gen, config/Makefile.am:
9548 * build-aux/prev-version, build-aux/announce-gen,
9549 * build-aux/Makefile.am: here.
9551 2005-10-14 Akim Demaille <akim@epita.fr>
9553 * examples/calc++/test: Use set -x only when VERBOSE.
9555 2005-10-13 Paul Eggert <eggert@cs.ucla.edu>
9557 * NEWS: Bison now warns if it finds a stray `$' or `@' in an action.
9558 * src/scan-gram.l (<SC_BRACED_CODE>[$@]): Implement this.
9560 2005-10-13 Akim Demaille <akim@epita.fr>
9562 * src/scan-skel.l: Output the base name parts of the parser and
9564 * tests/output.at (AT_CHECK_OUTPUT): Support subdirectories, and
9566 Use this to exercise C++ outputs in subdirs.
9567 Reported by Oleg Smolsky.
9569 2005-10-12 Paul Eggert <eggert@cs.ucla.edu>
9571 * data/c.m4 (b4_c_function_def): Look at __C99_FUNC__, not at
9572 __STDC_VERSION__, as IBM cc 7.0 doesn't define the latter either.
9573 Problem reported by John P. Hartmann.
9574 * data/yacc.c (YYMODERN_C): Likewise. Don't define if the user has
9577 2005-10-12 Akim Demaille <akim@epita.fr>
9579 * src/parse-gram.y (version_check): Exit 63 to please missing
9580 (stands for "version mismatch).
9581 * tests/input.at, doc/bison.texinfo: Adjust.
9583 2005-10-10 Paul Eggert <eggert@cs.ucla.edu>
9585 Work around portability problems with Visual Age C compiler
9586 (xlc and xlC_r) reported by John P. Hartmann.
9587 * data/location.cc (initial_column, initial_line): Remove.
9588 All uses replaced by 0 and 1.
9589 * src/scan-gram.l (gram_wrap): Redefine to avoid bug in flex 2.5.31
9590 that xlc complains about.
9591 * src/scan-skel.l (skel_wrap): Likewise.
9592 * data/c.m4 (b4_c_function_def): Look at __STDC_VERSION__ as well
9594 * data/yacc.c (YYMODERN_C): New macro, which also looks at
9595 __STDC_VERSION__. Use it everywhere instead of looking at
9596 __STDC__ and __cplusplus.
9598 2005-10-10 Akim Demaille <akim@epita.fr>
9600 * examples/calc++/test: Be quiet unless VERBOSE.
9602 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
9604 * data/c.m4 (yydestruct, yysymprint):
9605 Use YYUSE instead of casting to void.
9606 * data/glr.c (YYUSE): New macro.
9607 (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9608 Use it instead of rolling our own.
9609 (YYLLOC_DEFAULT, YYCHK, YYDPRINTF, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9611 Use /*CONSTCOND*/ to suppress lint warnings.
9612 * data/lalr1.cc (YYLLOC_DEFAULT, YY_SYMBOL_PRINT, YY_REDUCE_PRINT):
9613 (YY_STACK_PRINT): Use 'false' not '0'.
9615 (yysymprint_, yydestruct_): Use it instead of rolling our own.
9616 * data/yacc.c (YYUSE): New macro.
9617 (YYCOPY, YYSTACK_RELOCATE, YYBACKUP, YYLLOC_DEFAULT):
9618 (YYDPRINTF, YY_SYMBOL_PRINT, YY_STACK_PRINT, YY_REDUCE_PRINT):
9619 (yyerrorlab): Use /*CONSTCOND*/ to suppress lint warnings.
9622 * data/m4sugar/m4sugar.m4 (_m4_map): New macro.
9623 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
9625 2005-10-04 Paul Eggert <eggert@cs.ucla.edu>
9627 Undo the parts of the unlocked-I/O change that substituted
9628 putc or puts for printf. This might hurt performance a bit,
9629 but some people prefer the printf style.
9630 * data/c.m4 (yysymprint): Prefer printf to puts and putc.
9631 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): Remove.
9632 All uses replaced by YYFPRINTF and YYDPRINTF.
9633 * data/yacc.c: Likewise.
9634 * lib/bitset.c (bitset_print): Likewise.
9635 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer printf to
9637 * lib/lbitset.c (debug_lbitset): Likewise.
9638 * src/closure.c (print_firsts, print_fderives): Likewise.
9639 * src/gram.c (grammar_dump): Likewise.
9640 * src/lalr.c (look_ahead_tokens_print): Likewise.
9641 * src/output.c (escaped_output): Likewise.
9642 (user_actions_output): Break apart two printfs.
9643 * src/parse-gram.y (%printer): Prefer printf to putc and puts.
9644 * src/reduce.c (reduce_print): Likewise.
9645 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9646 * src/system.h: Include unlocked-io.h rathe than stdio.h.
9648 * data/glr.c (yyuserMerge, yyreportAmbiguity, yyreportSyntaxError):
9649 Use assignments rather than casts-to-void to suppress
9650 unused-variable warnings. This pacifies 'lint'.
9651 * data/lalr1.cc (yysymprint_, yydestruct_): Use a call to suppress
9652 unused-variable warnings.
9654 2005-10-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9656 * Makefile.am: DJGPP specific files added to EXTRA_DIST.
9658 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>
9660 Use unlocked I/O for a minor performance improvement on hosts like
9661 GNU/Linux and Solaris that support unlocked I/O. The basic idea
9662 is to use the gnlib unlocked-io module, and to prefer putc and
9663 puts to printf when either will work (since the latter doesn't
9664 come in an unlocked flavor).
9665 * bootstrap (gnulib_modules): Add unlocked-io.
9666 * data/c.m4 (yysymprint): Prefer puts and putc to printf.
9667 * data/glr.c (YYFPUTC, YYFPUTS, YYDPUTS): New macros.
9668 Prefer them to YYFPRINTF and YYDPRINTF if either will do,
9669 and similarly for puts and putc and printf.
9670 * data/yacc.c: Likewise.
9671 * lib/bitset.c (bitset_print): Likewise.
9672 * lib/bitset.h [USE_UNLOCKED_IO]: Include unlocked-io.h.
9673 * lib/bitsetv.c (bitsetv_dump, debug-bitsetv): Prefer putc and puts
9675 * lib/lbitset.c (debug_lbitset): Likewise.
9676 * src/closure.c (print_firsts, print_fderives): Likewise.
9677 * src/gram.c (grammar_dump): Likewise.
9678 * src/lalr.c (look_ahead_tokens_print): Likewise.
9679 * src/output.c (escaped_output): Likewise.
9680 (user_actions_output): Coalesce two printfs.
9681 * src/parse-gram.y (%printer): Prefer putc and puts to printf.
9682 * src/reduce.c (reduce_print): Likewise.
9683 * src/state.c (state_rule_look_ahead_tokens_print): Likewise.
9684 * src/system.h: Include unlocked-io.h rather than stdio.h.
9686 * data/lalr1.cc: Don't put an unmatched ' in a dnl comment, as
9687 this confuses xgettext.
9689 2005-10-02 Akim Demaille <akim@epita.fr>
9691 * bootstrap (gnulib_modules): Add strverscmp.
9692 * lib/.cvsignore: Add strverscmp.c, strverscmp.h.
9693 * m4/.cvsignore: Add strverscmp.m4.
9694 * src/parse-gram.y (%require): New token, new rule.
9695 (version_check): New.
9696 * src/scan-gram.l (%require): Adjust.
9697 * tests/input.at (AT_REQUIRE): New.
9699 * doc/bison.texinfo (Require Decl): New.
9700 (Calc++ Parser): Use %require.
9702 2005-10-02 Akim Demaille <akim@epita.fr>
9704 * data/location.cc: New.
9706 2005-10-02 Paul Eggert <eggert@cs.ucla.edu>,
9707 Akim Demaille <akim@epita.fr>
9709 Make sure -odir/foo.cc creates dir/location.hh etc.
9710 * src/files.h (spec_outfile, parser_file_name, spec_name_prefix)
9711 (spec_file_prefix, spec_verbose_file, spec_graph_file)
9712 (spec_defines_file): Now const.
9714 (short_base_name): Remove.
9715 * src/files.c: Adjust.
9716 (dirname.h): Include.
9717 (base_name): Don't prototype it.
9718 (finput): Remove, duplicates gram_in.
9719 (full_base_name, short_base_name): Replace by...
9720 (all_but_ext, all_but_tab_ext): these.
9721 (compute_base_names): Rename as...
9722 (compute_file_name_parts): this.
9723 Update to compute the new variables, including dir_prefix.
9724 Adjust dependencies.
9725 * src/output.c (prepare): Output them.
9726 * src/reader.c: Adjust to use gram_in, not finput.
9727 * src/scan-skel.l (@dir_prefix@): New.
9729 2005-10-02 Juan Manuel Guerrero <juan.guerrero@gmx.de>
9731 * lib/subpipe.c: New function end_of_output_subpipe() added
9732 to allow support for non-posix systems. This is a no-op function
9735 * lib/subpipe.h: New function end_of_output_subpipe() added
9736 to allow support for non-posix systems. This is a no-op function
9739 * src/output.c (output_skeleton): Use end_of_output_subpipe() to
9740 handle the lack of pipe/fork functionality on non-posix systems.
9742 * djgpp/Makefile.maint: DJGPP specific file.
9744 * djgpp/README.in: DJGPP specific file.
9746 * djgpp/config.bat: DJGPP specific configuration file.
9748 * djgpp/config.sed: DJGPP specific configuration file.
9750 * djgpp/config.site: DJGPP specific configuration file.
9752 * djgpp/config_h.sed: DJGPP specific configuration file.
9754 * djgpp/subpipe.c: DJGPP specific replacement file for lib/subpipe.c.
9756 * djgpp/subpipe.h: DJGPP specific replacement file for lib/subpipe.h.
9758 2005-10-02 Akim Demaille <akim@epita.fr>
9760 * data/location.cc: New, extract from...
9761 * data/lalr1.cc: here.
9762 (location.hh): Include it after the user prologue, in case the
9763 filename type is defined by the user.
9764 Forward declation location and position before the pre-prologue.
9765 (yyresult_): Rename as...
9766 (yyresult): this, it's a local variable, not an attribute.
9767 * data/Makefile.am (dist_pkgdata_DATA): Adjust.
9769 2005-10-01 Akim Demaille <akim@epita.fr>
9771 * examples/extexi: Restore the #line generation.
9773 2005-09-30 Akim Demaille <akim@epita.fr>,
9774 Alexandre Duret-Lutz <adl@gnu.org>
9776 Move the token type and YYSTYPE in the parser class.
9777 * data/lalr1.cc (stack.hh, location.hh): Include earlier.
9778 (parser::token): New, from the moved free definition of tokens.
9779 (parser::semantic_value): Now a full definition instead of an
9780 indirection to YYSTYPE.
9781 (b4_post_prologue): No longer included in the header file, but
9782 in the implementation file.
9783 * doc/bison.texi (C+ Language Interface): Update.
9784 * src/parse-gram.y: Support unary %define.
9785 * tests/actions.at: Define global_tokens_and_yystype for backward
9786 compatibility until we update the tests.
9787 * tests/calc.at: Idem.
9788 (first_line, first_column, last_line, last_column): Define for lalr1.cc
9789 to simplify the code.
9791 2005-09-29 Paul Eggert <eggert@cs.ucla.edu>
9793 Port to SunOS 4.1.4, which lacks strtoul and strerror.
9794 Ah, the good old days! Problem reported by Peter Klein.
9795 * bootstrap (gnulib_modules): Add strerror, strtoul.
9796 * lib/.cvsignore: Add strerror.c, strtol.c, strtoul.c
9797 * m4/.cvsignore: Add strerror.m4, strtol.m4, strtoul.m4.
9799 2005-09-29 Akim Demaille <akim@epita.fr>
9801 * data/c.m4 (b4_error_verbose_if): New.
9802 * data/lalr1.cc: Use it.
9803 (YYERROR_VERBOSE_IF): Remove.
9804 (yyn_, yylen_, yystate_, yynerrs_, yyerrstatus_): Remove as
9805 parser members, replaced by...
9806 (yyn, yylen, yystate, yynerss, yyerrstatus): these parser::parse
9808 (yysyntax_error_): Takes the state number as argument.
9809 (yyreduce_print_): Use the argument yyrule, not the former
9812 2005-09-26 Paul Eggert <eggert@cs.ucla.edu>
9814 * bootstrap (gnulib_modules): Add verify.
9815 * lib/.cvsignore: Add verify.h.
9816 * src/getargs.c: Use ARGMATCH_VERIFY rather than verify.
9817 * src/system.h (verify): Remove.
9818 Include verify.h instead.
9819 * src/tables.c (tables_generate): Use new API for 'verify'.
9821 2005-09-21 Paul Eggert <eggert@cs.ucla.edu>
9823 * tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use
9824 local variables whose names begin with 'yy'.
9825 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
9826 Trivial changes from Joel E. Denny.
9828 * bootstrap (gnulib_modules): Remove alloca. Bison doesn't need
9830 * src/main.c (main) [C_ALLOCA]: Don't flush alloca'ed memory; we
9831 don't use alloca any more.
9833 * data/yacc.c [YYSTACK_USE_ALLOCA && !defined __GNUC__ && ! defined
9834 __BUILTIN_VA_ARG_INCR && ! defined _AIX && ! defined _MSC_VER &&
9835 defined _ALLOCA_H]: Don't include <stdlib.h>; not needed in this case.
9836 * tests/torture.at (Exploding the Stack Size with Alloca): Adjust
9837 to match yacc.c, to test more hosts.
9839 2005-09-20 Paul Eggert <eggert@cs.ucla.edu>
9841 * data/yacc.c (YYSIZE_T): Reindent to make it clearer. This
9842 doesn't affect behavior.
9843 (YYSTACK_ALLOC) [YYSTACK_USE_ALLOCA]: Improve support for
9845 (_STDLIB_H): Renamed from YYINCLUDED_STDLIB_H. All uses changed.
9846 This works a bit better with glibc, if user code has already included
9848 * doc/bison.texinfo (Bison Parser): Document that users can't
9849 arbitrarily use malloc and free for other purposes. Document
9850 that <alloca.h> and <malloc.h> might be included.
9851 (Table of Symbols): Under YYSTACK_USE_ALLOCA, Don't claim that the
9852 user must declare alloca.
9854 * HACKING (release): Forwarn the Translation Project about
9857 2005-09-20 Akim Demaille <akim@epita.fr>
9859 * data/glr.c: Use b4_token_enums, not b4_token_enums_defines.
9861 2005-09-19 Paul Eggert <eggert@cs.ucla.edu>
9863 * data/yacc.c (YYSIZE_MAXIMUM): New macro.
9864 (YYSTACK_ALLOC_MAXIMUM): Use it.
9865 (yysyntax_error): New function.
9866 (yyparse) [YYERROR_VERBOSE]: Don't leak memory indefinitely if
9867 multiple syntax errors are reported, and alloca is being used.
9868 Instead, reallocate buffers twice as big each time, so that
9869 we waste at most half the allocated memory. Start with a small
9870 (128-byte) buffer that will suffice in most cases anyway.
9871 Use yysyntax_error to do most of the work.
9873 * doc/bison.texinfo (Error Reporting, Table of Symbols):
9874 yynerrs is the number of errors reported, not the number of
9877 * tests/glr-regression.at (Duplicated user destructor for lookahead):
9878 Mark it as expected to fail.
9879 Cast result of malloc; problem reported by twlevo@xs4all.nl.
9880 * tests/actions.at, tests/calc.at, tests/glr-regression.at:
9881 Don't start user-code symbols with "yy", to avoid name space problems.
9883 2005-09-19 Akim Demaille <akim@epita.fr>
9885 Remove the traits, failed experiment.
9886 It never proved useful, and anyway because of the current
9887 definition, it was not possible to have several specialization of
9888 this traits, making it useless.
9889 * data/lalr1.cc (yy:traits): Remove.
9890 Inline its definitions in the parser class.
9892 2005-09-19 Akim Demaille <akim@epita.fr>
9894 * tests/atlocal.in (LIBS): Pass INTLLIBS to address failures on at
9895 least Mac OSX with a /usr/local install of gettext.
9897 2005-09-19 Akim Demaille <akim@epita.fr>
9899 * data/lalr1.cc (yyparse): Rename yylooka and yyilooka as yychar
9900 and yytoken for similarity with the other skeletons.
9902 2005-09-19 Akim Demaille <akim@epita.fr>
9904 * NEWS, configure.ac: update version number to 2.1a.
9906 2005-09-16 Paul Eggert <eggert@cs.ucla.edu>
9908 * NEWS: Version 2.1.
9910 * NEWS: Remove notice of yytname change, since it was never in an
9912 * data/glr.c (yydestroyGLRState): Rename local var to avoid shadowing
9914 * src/output.c (prepare): Likewise.
9915 * data/lalr1.cc (YYERROR_VERBOSE_IF): New macro.
9916 (yysyntax_error_): Use it to avoid GCC warning when YYERROR_VERBOSE
9917 is not defined. This is an awful hack, but it's enough for now.
9918 All callers changed.
9919 * tests/glr-regression-at (make_value): Args are const pointers now,
9920 to avoid GCC warning.
9921 (Duplicated user destructor for lookahead): New test. Currently
9922 skipped. It fails on my host but I'm not sure it'll always fail.
9924 2005-09-16 Akim Demaille <akim@epita.fr>
9926 * src/symtab.h (struct symbol): Declare the printer and destructor
9927 as const, to avoid accidental calls to free.
9928 (symbol_destructor_set, symbol_printer_set): Adjust.
9929 * src/symtab.c: Adjust.
9931 2005-09-16 Akim Demaille <akim@epita.fr>
9933 * data/c.m4 (b4_token_enums): New.
9934 (b4_token_defines): Rename as...
9935 (b4_token_enums_defines): this.
9936 (b4_token_defines): New, output only the #defines.
9937 * data/yacc.c, data/glr.c: Adjust.
9938 * data/lalr1.cc: Use b4_token_enums instead of b4_token_enums_defines.
9939 * data/c.m4 (b4_yydestruct_generate, b4_yysymprint_generate): Define
9942 2005-09-16 Akim Demaille <akim@epita.fr>
9944 * data/lalr1.cc (yylex_): Remove, inline its code.
9945 (yyreport_syntax_error_): Remove, replaced by...
9946 (yysyntax_error_): this which returns a string and leaves to the
9947 caller the call to the users' error function.
9948 (yylooka_, yyilooka_, yylval, yylloc, yyerror_range_, yyval, yyloc):
9949 Move from members of the parser object...
9950 (yylooka, yyilooka, yylval, yylloc, yyerror_range, yyval, yyloc):
9951 to local variables of the parse function.
9953 2005-09-16 Akim Demaille <akim@epita.fr>
9955 * doc/bison.texinfo (Calc++ Parser): Don't promote defining YYEOF
9956 since it's in Bison's name space.
9958 2005-09-15 Paul Eggert <eggert@cs.ucla.edu>
9960 * data/glr.c (yyresolveValue): Add default case to pacify
9961 gcc -Wswitch-default. Problem reported by twlevo@xs4all.nl.
9963 * NEWS: Document when yyparse started to return 2.
9964 * doc/bison.texinfo (Parser Function): Document when yyparse
9967 * data/lalr1.cc: Revert part of previous change, as it's incompatible.
9968 (b4_filename_type): Renamed back from b4_file_name_type. All uses
9970 (class position): file_name -> filename (reverting). All uses changed.
9972 2005-09-14 Paul Eggert <eggert@cs.ucla.edu>
9974 * examples/calc++/Makefile.am ($(calc_sources_generated)): Don't
9975 do anything if $@ exists. This reverts part of the 2005-07-07
9978 2005-09-11 Paul Eggert <eggert@cs.ucla.edu>
9980 * Makefile.am (EXTRA_DIST): Do not distribute REFERENCES; it
9981 contains obsolete information and isn't worth distributing as a
9982 separate file anyway.
9983 * data/glr.c [defined YYSETJMP]: Don't include <setjmp.h>.
9984 (YYJMP_BUF, YYSETJMP, YYLONGJMP) [!defined YYSETJMP]: New macros.
9985 All uses of jmp_buf, setjmp, longjmp changed to use these instead.
9986 (yyparse): Abort if user code uses longjmp to throw an unexpected
9989 2005-09-09 Paul Eggert <eggert@cs.ucla.edu>
9991 * data/c.m4 (b4_identification): Define YYBISON_VERSION.
9992 Suggested by twlevo@xs4all.nl.
9994 * data/glr.c (YYCHK1): Do not assume YYE is in range.
9995 This avoids a diagnostic from gcc -Wswitch-enum.
9996 Problem reported by twlevo@xs4all.nl.
9998 * doc/bison.texinfo: Don't use "filename", as per GNU coding
9999 standards. Use "file name" or "file" or "name", depending on
10001 (Invocation): The output of "bison hack/foo.y" goes to foo.tab.c,
10002 not to hack/foo.tab.c.
10003 (Calc++ Top Level): 2nd arg of main is not const.
10004 * data/glr.c: b4_filename -> b4_file_name.
10005 * data/lalr1.cc: Likewise. Also, b4_filename_type -> b4_file_name_type.
10007 (class position): filename -> file_name. All uses changed.
10008 * data/yacc.c: b4_filename -> b4_file_name.
10009 * lib/bitset.h: filename -> file_name in local vars.
10010 * lib/bitset_stats.c: Likewise.
10011 * src/files.c: Likewise.
10012 * src/scan-skel.l ("@output ".*\n): Likewise.
10013 * src/files.c (file_name_split): Renamed from filename_split.
10014 * src/muscle_tab.c (muscle_init): Output b4_file_name, not b4_filename.
10016 2005-09-08 Paul Eggert <eggert@cs.ucla.edu>
10018 * lib/.cvsignore: Add pipe-safer.c, stdio--.h, unistd--.h,
10019 to accommodate latest gnulib.
10021 * tests/glr-regression.at (Duplicate representation of merged trees):
10022 Add casts to pacify g++. Problem reported by twlevo@xs4all.nl.
10024 * bootstrap: Add comment as to why the AM_LANGINFO_CODESET hack is
10027 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
10029 * data/glr.c (yydestroyGLRState): Renamed from yydestroyStackItem.
10030 All uses changed. Invoke user destructor after an error during a
10031 split parse (trivial change from Joel E. Denny).
10033 * tests/glr-regression.at
10034 (User destructor after an error during a split parse): New test case.
10035 Problem reported by Joel E. Denny in:
10036 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00029.html
10038 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
10040 * README-cvs: Give URLs for recommended tools.
10041 Mention Gzip version problem, and bootstrapping issues.
10042 Remove troubleshooting section, as it's somewhat obsolete.
10044 * bootstrap (no_cache): New var, to accommodate different wget
10045 variants. Use it instead of '-C off'. Problem reported by
10048 * data/glr.c (yydestroyStackItem): New function.
10049 (yyrecoverSyntaxError, yyreturn): Use it to improve quality of
10050 debugging information. Problem reported by Joel E. Denny.
10052 2005-08-25 Akim Demaille <akim@epita.fr>
10054 * tests/local.at (AT_COMPILE_CXX): Pass $LINKS too.
10056 2005-08-24 Paul Eggert <eggert@cs.ucla.edu>
10058 * data/glr.c (yyrecoverSyntaxError, yyreturn):
10059 Don't invoke destructor on unresolved entries.
10060 * tests/glr-regression.at
10061 (User destructor for unresolved GLR semantic value): New test case.
10062 Problem reported by Joel E. Denny in:
10063 http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00016.html
10065 2005-08-21 Paul Eggert <eggert@cs.ucla.edu>
10067 * lib/.cvsignore: Remove realloc.c, strncasecmp.c, xstrdup.c.
10069 * m4/.cvsignore: Remove codeset.m4, gettext.m4, lib-ld.m4,
10070 lib-prefix.m4, po.m4.
10072 * data/glr.c (yyreturn): Use "Cleanup:" rather than "Error:"
10073 in yydestruct diagnostic, since it might not be an error.
10074 Problem reported by Joel Denny near end of
10075 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
10076 * data/lalr1.cc (yyerturn): Likewise.
10077 * data/yacc.c (yyreturn): Likewise.
10078 * tests/calc.at (_AT_CHECK_CALC_ERROR): Adjust to the above change.
10080 * src/files.c: Remove obsolete FIXME comment.
10082 * data/glr.c (YY_SYMBOL_PRINT): Append a newline, for consistency
10083 with the other templates, and to fix bogus run-on messages such
10084 as the one reported at the end of
10085 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00040.html>.
10086 All callers changed to avoid the newline.
10087 (yyprocessOneStack): Output two lines rather than one, to accommodate
10088 the above change. This changes the debug output format slightly.
10090 * data/glr.c (yyresolveValue): Fix redundant parse tree problem
10091 reported by Joel E. Denny in
10092 <http://lists.gnu.org/archive/html/bison-patches/2005-08/msg00004.html>
10094 * tests/glr-regression.at (Duplicate representation of merged trees):
10095 New test, from Joel E. Denny in:
10096 <http://lists.gnu.org/archive/html/help-bison/2005-07/msg00013.html>.
10097 * THANKS: Add Joel E. Denny.
10099 * configure.ac (AC_INIT): Bump to 2.0c.
10101 2005-07-24 Paul Eggert <eggert@cs.ucla.edu>
10103 * NEWS: Version 2.0b.
10105 * Makefile.am (SUBDIRS): Put examples before tests, so that
10106 "make check" doesn't finish with "All 1 tests passed".
10108 * tests/regression.at (Token definitions): Don't rely on
10109 AT_PARSER_CHECK for data that contains backslashes. It currently
10110 uses 'echo', and 'echo' isn't portable if its argument contains
10111 backslashes. Problem found on OpenBSD 3.4. Also, do not assume
10112 that the byte '\0xff' is not printable in the C locale; it is,
10113 under OpenBSD 3.4 (!). Luckily, '\0x80' through '\0x9e' are
10114 not printable, so use '\0x81' to test.
10116 * data/glr.c (YYOPTIONAL_LOC): Define even if it's not a recent
10117 version of GCC, since the macro is used with non-GCC compilers.
10119 Fix core dump reported by Pablo De Napoli in
10120 <http://lists.gnu.org/archive/html/bug-bison/2005-07/msg00053.html>.
10121 * tests/regression.at (Invalid inputs with {}): New test.
10122 * src/parse-gram.y (token_name): Translate type before using
10125 * data/glr.c (ATTRIBUTE_UNUSED): Remove, since it infringes on
10126 the user's name space. All uses changed to __attribute__
10128 (yyFail, yyMemoryExhausted, yyreportAmbiguity):
10129 Add __attribute__ ((__noreturn__)).
10131 * etc/clcommit: Remove. We weren't using it, and it failed
10132 "make maintainer-distcheck".
10133 * Makefile.maint: Merge from coreutils.
10134 (CVS_LIST, CVS_LIST_EXCEPT): New macros.
10135 (syntax-check-rules): Change list of rules as described below.
10136 (sc_cast_of_alloca_return_value, sc_dd_max_sym_length):
10137 (sc_file_system, sc_obsolete_symbols, sc_prohibit_atoi_atof):
10138 (sc_prohibit_jm_in_m4, sc_root_tests, sc_tight_scope):
10139 (sc_trailing_space): New rules.
10140 (sc_xalloc_h_in_src): Remove.
10141 (sc_cast_of_argument_to_free, sc_cast_of_x_alloc_return_value):
10142 (sc_space_tab, sc_error_exit_success, sc_changelog):
10143 (sc_system_h_headers, sc_sun_os_names, sc_unmarked_diagnostics):
10144 (makefile-check, po-check, author_mark_check):
10145 (makefile_path_separator_check, copyright-check):
10146 Use grep -n, to make it easier to find violations.
10147 Use CVS_LIST and CVS_LIST_EXCEPT.
10148 (header_regexp, h_re): Remove.
10150 (sc_dd_max_sym_length, .re-list, news-date-check): New rules.
10151 (my-distcheck): Use more-modern GCC flags.
10152 (signatures, %.asc): Remove.
10153 (rel-files, announcement): Remove signatures.
10154 Restore old updating code, even though we don't use it, so
10155 that we're the same as coreutils.
10156 (alpha, beta, major): Depend on news-date-check.
10157 Make the upload commands.
10159 * data/c.m4, data/lalr1.cc, data/yacc.c: Normalize white space.
10160 * lib/abitset.h, lib/bbitset.h, lib/bitset.h: Likewise.
10161 * lib/bitset_stats.c, lib/ebitset.h, lib/lbitset.c: Likewise.
10162 * lib/libitset.h, lib/timevar.c, lib/vbitset.h: Likewise.
10163 * src/Makefile.am, src/gram.c, src/muscle_tab.h: Likewise.
10164 * src/parse-gram.y, src/system.h, src/tables.c, src/vcg.c: Likewise.
10165 * src/vcg_defaults.h, tests/cxx-type.at, tests/existing.at: Likewise.
10166 * tests/sets.at: Likewise.
10168 * data/m4sugar/m4sugar.m4: Sync from Autoconf, except that
10169 we comment out the Autoconf version number.
10170 * doc/bison.texinfo (Calc++ Scanner): Don't use atoi, as
10171 it's error-prone and "make maintainer-distcheck" rejects it.
10173 * lib/subpipe.c: Include <fcntl.h> without checking for HAVE_FCNTL_H.
10174 Indent calls to "error" to pacify "make maintainer-distcheck",
10175 when the calls are not intended to be translated.
10176 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't check for fcntl.h.
10178 * src/Makefile.am (DEFS): Use +=, to pacify
10179 "make maintainer-distcheck".
10180 (bison_SOURCES): Add scan-skel.h.
10181 (sc_tight_scope): New rule, from coreutils.
10183 * src/files.c (src_extension, header_extension):
10184 Now static, not extern.
10185 * src/getargs.c (short_options): Likewise.
10186 * src/muscle_tab.c (muscle_table): Likewise.
10187 * src/parse-gram.y (current_class, current_type, current_prec):
10189 * src/reader.c (grammar_end, previous_rule_end): Likewise.
10190 * src/getargs.h: Redo comments to pacify "make maintainer-distcheck".
10191 * src/main.c (main): Cast bindtextdomain and textdomain calls to
10192 void, to avoid warning when NLS is disabled.
10193 * src/output.c: Include scan-skel.h.
10194 (scan_skel): Remove decl, since scan-skel.h does this.
10196 Indent calls to "error" to pacify "make maintainer-distcheck".
10197 * src/print_graph.c: Don't include <obstack.h>, as system.h does this.
10198 * src/reader.h (gram_end, gram_lineno): New decls to pacify
10199 "make maintainer-distcheck".
10200 * src/scan-skel.l (skel_lex, skel_get_lineno, skel_get_in):
10201 (skel_get_out, skel_get_leng, skel_get_text, skel_set_lineno):
10202 (skel_set_in, skel_set_out, skel_get_debug, skel_set_debug):
10203 (skel_lex_destroy, scan_skel): Move these decls to...
10204 * src/scan-skel.h: New file.
10205 * src/uniqstr.c (uniqstr_assert):
10206 Indent calls to "error" to pacify "make maintainer-distcheck".
10208 * tests/Makefile.am ($(srcdir)/package.m4): Use $(VAR),
10211 * tests/torture.at: Revamp to avoid misuse of atoi that
10212 "make maintainer-distcheck" complained about.
10214 * examples/extexi (message): Don't print a message more than once,
10215 and omit line-number decoration that makes Emacs compile think
10216 that informative messages are worth worrying about.
10218 2005-07-22 Paul Eggert <eggert@cs.ucla.edu>
10220 * configure.ac: Update version number.
10222 * Makefile.am (SUBDIRS): Add examples; somehow this got removed
10224 * examples/calc++/calc++-parser.yy: Remove from CVS, as it's
10225 autogenerated by the maintainer.
10226 * examples/calc++/.cvsignore: Add *.yy.
10228 * lib/bitset.c (bitset_alloc): Don't cast xcalloc result.
10229 * lib/bitset_stats.c (bitset_stats_init): Likewise.
10230 * lib/bitsetv.c (bitsetv_alloc): Likewise.
10232 * po/POTFILES.in: Add lib/xalloc-die.c; remove lib/xmalloc.c.
10234 * src/relation.c (relation_transpose): Rewrite to avoid bogus complaint
10235 from maintainer-distcheck about casting the argument of 'free'.
10237 * NEWS: Mention recent yytname changes.
10238 * THANKS: Add Anthony Heading, twlevo@xs4all.nl.
10240 * bootstrap: For translations that have not yet been upgraded to
10241 the new runtime-po domain, prime the pump by extracting the
10242 relevant strings from the obsolete translations. This code can be
10243 removed once the bison-runtime domain has been translated by each
10246 * src/scan-gram.l (<SC_PRE_CODE>.): Don't double-quote token names,
10247 now that token names are already quoted.
10249 Fix problem reported by Anthony Heading.
10250 * data/glr.c (YYTOKEN_TABLE): New macro.
10251 (yytname): Define if YYTOKEN_TABLE.
10252 * data/yacc.c (YYTOKEN_TABLE, yytname): Likewise.
10253 * data/lalr1.cc (YYTOKEN_TABLE, yytname_): Likewise.
10254 (YYERROR_VERBOSE): Define the same way the other skeletons do.
10255 * src/output.c (prepare_symbols): Output token_table_flag.
10257 2005-07-21 Paul Eggert <eggert@cs.ucla.edu>
10259 * data/glr.c (yyinitGLRStack, yyreturn): Don't call malloc
10260 again if the first call fails.
10262 * data/glr.c (yytnamerr): New function.
10263 (yyreportSyntaxError): Use it to dequote most string literals.
10264 * data/lalr1.c (yytname_): Renamed from yyname_, for compatibility
10265 with other skeletons. All uses changed.
10266 (yytnameerr_): New function.
10267 (yyreport_syntax_error): Use it to dequote most string literals.
10268 * data/yacc.c (yytnamerr): New function.
10269 (yyerrlab): Use it to decode most string literals.
10270 * doc/bison.texinfo (Decl Summary, Calling Convention):
10271 Clarify quoting convention of yytname.
10272 * src/output.c (prepare_symbols): Quote all names. This undoes
10273 the 2005-04-17 change, which is now accomplished (mostly) via
10274 changes in the parsers as described above.
10275 * tests/regression.at (Token definitions, Web2c Actions):
10276 Undo most 2005-04-17 change here, too.
10278 2005-07-20 Paul Eggert <eggert@cs.ucla.edu>
10280 Fix more problems reported by twlevo@xs4all.nl.
10281 * tests/cxx-type.at: Don't pipe output of ./types through sed to
10282 remove trailing spaces. This loses the exit status of ./types,
10283 and isn't needed since ./types shouldn't be emitting trailing
10285 * data/glr.c (yyreturn): Don't pop stack if yyinitStateSet failed,
10286 as the stack isn't valid in that case.
10288 * src/scan-gram.l (gram_get_lineno, gram_get_in, gram_get_out):
10289 (gram_get_leng, gram_get_text, gram_set_lineno, gram_set_in):
10290 (gram_set_out, gram_get_debug, gram_set_debug, gram_lex_destroy):
10291 Add declarations to pacify "gcc -Wmissing-prototypes" when flex 2.5.31
10293 * src/scan-skel.l (skel_get_lineno, skel_get_in, skel_get_out):
10294 (skel_get_leng, skel_get_text, skel_set_lineno, skel_set_in):
10295 (skel_set_out, skel_get_debug, skel_set_debug, skel_lex_destroy):
10298 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Work even with
10299 overly-picky compilers that reject 'char *foo = "bar";'.
10301 * src/symtab.c (SYMBOL_ATTR_PRINT, symbol_print): Direct output
10302 to FILE * parameter, not to stderr. This fixes a typo introduced
10303 in the 2005-07-12 change.
10305 * lib/subpipe.c (create_subpipe): Rewrite slightly to avoid
10306 warnings from GCC 4.
10308 * data/glr.c (yyexpandGLRStack, yyaddDeferredAction, yyexpandGLRStack):
10309 (yyglrShiftDefer, yysplitStack):
10310 Remove unused parameters b4_pure_formals. All uses changed.
10311 (yyglrShift): Remove unused parameters b4_user_formals.
10313 (yyglrReduce): Removed unused parameter yylocp. All uses changed.
10315 2005-07-18 Paul Eggert <eggert@cs.ucla.edu>
10317 Destructor cleanups and regularization among the three skeletons.
10318 * NEWS: Document the behavior changes.
10319 * data/glr.c (yyrecoverSyntaxError): Don't bother to pop the
10320 stack before failing, as the cleanup code will do it for us now.
10321 * data/lalr1.cc (yyerrlab): Likewise.
10322 * data/glr.c (yyparse): Pop everything off the stack before
10323 freeing it, so that destructors get called properly.
10324 * data/lalr1.cc (yyreturn): Likewise.
10325 * data/yacc.c (yyreturn): Pop and destroy the start symbol, too.
10326 This is more consistent.
10327 * doc/bison.texinfo (Destructor Decl): Mention more reasons
10328 why destructors might be called. 1.875 -> 2.1.
10329 (Destructor Decl, Decl Summary, Table of Symbols):
10330 Some English-language cleanups for %destructor.
10331 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
10332 Add output line for destructor of start symbol.
10333 * tests/calc.at (AT_CHECK_CALC): Add one to line counts,
10334 because of that same extra output line.
10336 * NEWS: Document minor wording changes in diagnostics of
10337 Bison-generated parsers.
10338 * data/glr.c (yyMemoryExhausted): Renamed from yyStackOverflow.
10339 Remove unused formals. All uses changed.
10340 (yyreportAmbiguity): "ambiguity detected" -> "syntax is ambiguous".
10341 (yyparse): Rename yyoverflowlab to yyexhaustedlab.
10342 * data/yacc.c (yyparse): "parser stack overflow" -> "memory exhausted".
10343 Rename yyoverflowab to yyexhaustedlab.
10344 When memory exhaustion occurs during syntax-error reporting,
10345 report it separately rather than in a single diagnostic; this
10347 * doc/bison.texinfo (Memory Management): Renamed from Stack Overflow.
10348 (Memory Exhausted): Renamed from Parser Stack Overflow.
10349 Revamp wording slightly to prefer "memory exhaustion".
10350 * tests/actions.at: "parser stack overflow" -> "memory exhausted".
10352 * data/c.m4 (b4_yysymprint_generate): Use YYFPRINTF, not fprintf.
10354 Add i18n support to the GLR skeleton. Partially fix the C++
10355 skeleton; a C++ expert needs to finish this. Remove debugging
10356 msgids; there's little point to having them translated, since they
10357 can be understood only by someone who can read the
10358 (English-language) source code.
10360 Generate runtime-po/bison-runtime.pot automatically, so that we
10361 don't have to worry about garbage getting in that file. We'll
10362 make sure after the next official release that old msgids don't
10364 <http://lists.gnu.org/archive/html/bison-patches/2005-07/msg00119.html>.
10366 * runtime-po/Makefile.in.in, runtime-po/bison-runtime.pot: Remove.
10367 Now auto-generated.
10368 * PACKAGING: Don't claim that Gawk, GCC, Perl use this method yet.
10369 Fix typos in explanations of the runtime file.
10370 * bootstrap: Change gettext keyword from YYI18N to YY_.
10371 Use standard Makefile.in.in in runtime-po, since we'll arrange
10372 for backward-compatible bison-runtime.po files in a different way.
10373 * data/glr.c (YY_): New macro, from yacc.c.
10374 (yyuserAction, yyreportAmbiguity, yyreportSyntaxError, yyparse):
10375 Translate messages intended for users.
10376 (yyreportSyntaxError): Change "virtual memory" to "memory" to match
10377 the wording in the other skeletons. We don't know that the memory
10379 * data/lalr1.cc (YY_): Renamed from _. All uses changed.
10380 Use same method that yacc.c uses.
10381 Don't translate debugging messages.
10382 (yy::yyreport_syntax_error): Put in a FIXME for the i18n stuff;
10383 it doesn't work (yet), and requires C++ expertise to fix.
10384 * data/yacc.c (YY_): Renamed from YY18N. All uses changed.
10385 Move defn to a more logical place, to be consistent with other
10387 Don't translate debugging messages.
10388 Don't assume line numbers fit in unsigned int; use unsigned long fmts.
10389 * doc/bison.texinfo: Mention <libintl.h>. Change glibc cross reference
10390 to gettext cross reference. Add indexing terms. Mention YYENABLE_NLS.
10391 * runtime-po/POTFILES.in: Add data/glr.c, data/lalr1.cc.
10393 Fix yyerror / yylex test glitches noted by twlevo@xs4all.nl.
10394 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Have yyerror return
10396 * tests/glr-regression.at (Badly Collapsed GLR States):
10398 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10399 yylex should return 0 at EOF rather than aborting.
10401 Improve tests for stack overflow in GLR parser.
10402 Problem reported by twlevo@xs4all.nl.
10403 * data/glr.c (struct yyGLRStack): Remove yyerrflag member.
10405 (yyStackOverflow): Just longjmp, but with value 2 so that caller
10406 can handle the problem.
10407 (YYCHK1): Use goto (a la yacc.c) rather than setting a flag.
10408 (yyparse): New local variable yyresult to record the result.
10409 Use result of setjmp to set it, rather than storing itinto
10411 (yyDone): Remove label.
10412 (yyacceptlab, yyabortlab, yyoverflowlab, yyreturn): New labels,
10413 to mimic yacc.c. Do not discard lookahead if it's EOF (possible
10414 if YYABORT is used).
10415 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Exit with
10416 yyparse status; put status > 1 into diagnostic.
10417 Check that status==2 works.
10418 * tests/calc.at, tests/cxx-type.at, tests/glr-regression.at:
10419 Use exit status 3 for failure to open (which shouldn't happen).
10421 2005-07-17 Paul Eggert <eggert@cs.ucla.edu>
10423 * tests/conflicts.at (%nonassoc and eof): Don't exit with status
10424 1 on syntax error; just let yyparse do its thing.
10425 * tests/glr-regression.at (Badly Collapsed GLR States): Likewise.
10426 * tests/torture.at (AT_DATA_STACK_TORTURE): Likewise.
10427 (Exploding the Stack Size with Alloca):
10428 (Exploding the Stack Size with Malloc):
10429 Expect exit status 2, not 1, since the parser is supposed to blow
10430 its stack. Problem reported by twlevo@xs4all.nl.
10432 * data/glr.c (yyparse): Don't assume that the initial calls
10433 to YYMALLOC succeed; in that case, yyparse incorrectly returned 0.
10434 Print a stack-overflow message and fail instead.
10435 Initialize the line-number information before creating the stack,
10436 so that the stack-overflow message can report line zero safely.
10438 2005-07-14 Paul Eggert <eggert@cs.ucla.edu>
10440 Fix problems reported by twlevo@xs4all.nl.
10441 * data/glr.c (YYSTACKEXPANDABLE): Don't define if already defined.
10442 (yyuserMerge): Provide a default case if b4_mergers is empty.
10443 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Define YYSTACKEXPANDABLE.
10444 * tests/glr-regression.at
10445 (Improper handling of embedded actions and dollar(-N) in GLR parsers):
10446 Add casts to pacify C++ compilers.
10447 * tests/glr-regression.at (Improper merging of GLR delayed action
10448 sets): Declare yylex before using it.
10449 * tests/Makefile.am (maintainer-check-g++): Fix a stray
10450 $(GXX) that escaped the renaming of GXX to CXX. Remove bogus
10451 test for valgrind; valgrind is independent of g++.
10452 (maintainer-check-posix): Add _POSIX2_VERSION=200112, to check
10453 for compatibility with POSIX 1003.1-2001 (if running coreutils).
10454 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Port to stricter C++.
10455 Use a destructor, so that we can expand the stack. Change
10456 YYSTYPE to char * so that we can free it. Cast result of malloc.
10458 2005-07-13 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10460 * data/glr.c (yyuserAction): Fix uninitialized variable that caused
10461 a valgrind failure. Problem reported by twlevo@xs4all.nl.
10463 2005-07-13 Paul Eggert <eggert@cs.ucla.edu>
10465 * PACKAGING: New file, suggested by Bruno Haible and taken from
10466 similar wording in gettext's PACKAGING file.
10467 * NEWS: Mention PACKAGING.
10468 * Makefile.am (EXTRA_DIST): Add PACKAGING.
10470 2005-07-12 Paul Eggert <eggert@cs.ucla.edu>
10472 * NEWS: Document recent i18n improvements.
10473 * bootstrap: Get runtime translations into runtime-po.
10474 Create runtime-po files automatically, if possible.
10475 * configure.ac: Invoke BISON_I18N, so that we eat our own dog food.
10476 * data/yacc.c: Rewrite inclusion of <libintl.h> so that ENABLE_NLS
10477 does not infringe on the user's name space.
10478 (YYENABLE_NLS): Renamed from ENABLE_BISON_NLS.
10479 * doc/bison.texinfo (Internationalization): Revamp the English
10480 and Texinfo syntax a bit, to try to make it clearer.
10481 (Bison Options, Option Cross Key): Mention --print-localedir.
10482 * m4/bison-i18n.m4 (BISON_I18N): Rename ENABLE_BISON_NLS to
10483 YYENABLE_NLS. Quote a bit more.
10484 * runtime-po/.cvsignore: New file.
10485 * runtime-po/Makefile.in.in (mostlyclean): Remove *.old.pot.
10486 * runtime-po/Rules-quot: Remove; now created by bootstrap.
10487 * runtime-po/quot.sed: Likewise.
10488 * runtime-po/boldquot.sed: Likewise.
10489 * runtime-po/en@quot.header: Likewise.
10490 * runtime-po/en@boldquot.header: Likewise.
10491 * runtime-po/insert-header.sin: Likewise.
10492 * runtime-po/remove-potcdate.sin: Likewise.
10493 * runtime-po/Makevars: Likewise.
10494 * runtime-po/LINGUAS: Likewise.
10495 * runtime-po/de.po: Likewise; we will rely on the translation project
10496 to maintain this, so "bootstrap" should get it.
10497 * src/getarg.c (PRINT_LOCALEDIR_OPTION): Let the C compiler determine
10499 * src/main.c (main): Bind the bison-runtime domain, too.
10501 2005-07-12 Bruno Haible <bruno@clisp.org>
10503 * data/yacc.c: Include <libintl.h> when NLS is enabled.
10504 (YYI18N): Renamed from _. Use dgettext when NLS is enabled.
10505 * po/POTFILES.in: Remove autogenerated file src/parse-gram.c.
10506 * runtime-po: New directory.
10507 * runtime-po/Makefile.in.in: New file, copied from po/, with modified
10508 $(DOMAIN).pot-update rule, so that old messages are never dropped.
10509 * runtime-po/Rules-quot: New file, copied from po/.
10510 * runtime-po/quot.sed: Likewise.
10511 * runtime-po/boldquot.sed: Likewise.
10512 * runtime-po/en@quot.header: Likewise.
10513 * runtime-po/en@boldquot.header: Likewise.
10514 * runtime-po/insert-header.sin: Likewise.
10515 * runtime-po/remove-potcdate.sin: Likewise.
10516 * runtime-po/Makevars: New file.
10517 * runtime-po/POTFILES.in: New file.
10518 * runtime-po/LINGUAS: New file.
10519 * runtime-po/bison-runtime.pot: New file.
10520 * runtime-po/de.po: New file.
10521 * m4/bison.m4: New file.
10522 * Makefile.am (SUBDIRS): Add runtime-po.
10523 (aclocaldir, aclocal_DATA): New variables.
10524 * configure.ac: Add AC_CONFIG_FILES of runtime-po/Makefile.in.
10526 * src/getargs.c (usage): Document --print-localedir option.
10527 (PRINT_LOCALEDIR_OPTION): New enum item.
10528 (long_options): Add --print-localedir option.
10529 (getargs): Handle --print-localedir option.
10530 * doc/bison.texinfo (Bison Parser): Remove paragraph about _().
10531 (Internationalization): New section.
10533 2005-07-12 Akim Demaille <akim@epita.fr>
10535 * src/symtab.h, src/symtab.c (symbol_print): Swap the arguments,
10536 for consistency with the rest of the code.
10537 * src/symlist.h, src/symlist.c (symbol_list_print): Ditto.
10540 2005-07-12 Akim Demaille <akim@epita.fr>
10542 * src/parse-gram.y: Use %printer instead of YYPRINT.
10544 2005-07-12 Akim Demaille <akim@epita.fr>
10546 * src/symtab.h, src/symtab.c (symbol_print): New.
10547 * src/symlist.h, src/symlist.c (symbol_list_print): New.
10548 * src/symlist.c (symbol_list_n_type_name_get): Report the culprit.
10550 2005-07-12 Akim Demaille <akim@epita.fr>
10552 * data/glr.c (b4_syncline): Fix (swap) the definitions of
10553 b4_at_dollar and b4_dollar_dollar.
10555 2005-07-11 Paul Eggert <eggert@cs.ucla.edu>
10557 * doc/bison.texinfo (Mystery Conflicts): Add reference to DeRemer
10558 and Pennello's paper.
10560 2005-07-09 Paul Eggert <eggert@cs.ucla.edu>
10562 * data/yacc.c (yyparse): Undo previous patch. Instead,
10563 set yylsp[0] and yyvsp[0] only if the initial action
10564 sets yylloc and yylval, respectively.
10566 * data/yacc.c (yyparse): In the initial action, set
10567 yylsp[0] and yyvsp[0] rather than yylloc and yylval.
10568 This avoids the use of undefined variables if the initial
10569 action does not set yylloc and/or yylval.
10571 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
10573 * examples/calc++/calc++-driver.cc, examples/calc++/calc++-driver.hh:
10574 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc:
10575 Remove from CVS. These files are automatically generated.
10576 * examples/extexi: Clarify that this file is now part of Bison,
10577 not GNU M4, and that it works with any POSIX-compatible Awk.
10578 * examples/calc++/Makefile.am (run_extexi): Remove; not used.
10579 ($(calc_extracted)): Renamed from $(calc_sources_extracted),
10580 so that we also get calc++-parser.yy. Geneate it.
10581 Use $(AWK), not gawk, since any conforming Awk will do.
10582 Put comment before action, since older 'make' can't handle comment
10584 $(BUILT_SOURCES): List all built sources, not just some of them.
10585 $(MAINTAINERCLEANFILES): Remove *.stamp, and all built sources.
10586 $($(srcdir)/calc++-parser.stamp): Work even if POSIXLY_CORRECT.
10587 $($(calc_sources_generated)): Remove unnecessary test for existence
10588 of target. (This had a shell syntax error anyway; a stray "x".)
10589 (calc_extracted): List $(srcdir)/calc++-parser.yy, not
10591 * examples/.cvsignore, examples/calc++/.cvsignore: New files.
10593 * bootstrap (gnulib_modules): Add gettext, now that it's no longer
10594 implied by the other modules.
10596 2005-07-06 Akim Demaille <akim@epita.fr>
10598 Bind examples/calc++ to the package.
10599 * examples/calc++/Makefile: Remove, replaced by...
10600 * examples/calc++/Makefile.am: ... this new file.
10601 * examples/calc++/test: Remove input.
10602 * examples/calc++/compile: Remove.
10603 * examples/Makefile.am: New.
10604 * configure.ac, Makefile.am: Adjust.
10605 * doc/Makefile.am (clean-local): New, for more recent texi2dvis.
10607 2005-07-05 Paul Eggert <eggert@cs.ucla.edu>
10609 * data/glr.c (yyFail): Drastically simplify; since the format argument
10610 never had any % directives, we can simply pass it to yyerror.
10611 (yyparse): Use "t a; a=b;" rather than "t a = b;" when a will
10612 be modified later, as that is the usual style in glr.c.
10613 Problems reported by Paul Hilfinger.
10615 Rewrite GLR parser to catch more buffer overrun, storage exhaustion,
10616 and size overflow errors.
10617 * data/glr.c: Include <stdio.h> etc. after user prolog, not before,
10618 in case the user prolog sets feature-test macros like _GNU_SOURCE.
10619 (YYSIZEMAX): New macro.
10620 (yystpcpy): New function, taken from yacc.c.
10621 (struct yyGLRStack.yyspaceLeft): Now size_t, not int.
10622 (yyinitGLRStack, yyfreeGLRstack): Remove unnecessary forward decls,
10623 so that we don't have to maintain their signatures.
10624 (yyFail): Check for buffer overflow, by using vsnprintf rather
10625 than vsprintf. Allocate a bigger buffer if possible.
10626 Report an error if buffer allocation fails.
10627 (yyStackOverflow): New function.
10628 (yyinitStateSet, yyinitGLRStack): Return a boolean indicating whether
10629 the initialization was successful. It might fail if storage was
10631 (yyexpandGLRStack): Add more checks for storage allocation failure.
10632 Use yyStackOverflow to report failures.
10633 (yymarkStackDeleted, yyglrShift, yyglrShiftDefer, yydoAction):
10634 (yysplitStack, yyprocessOneStack, yyparse, yypstack):
10635 Don't assume stack number fits in int.
10636 (yysplitStack): Check for storage allocation failure.
10637 (yysplitStack, yyprocessOneStack): Add pure_formals, so that we
10638 can print diagnostics on storage allocation failure. All callers
10640 (yyresolveValue): Use yybool for boolean.
10641 (yyreportSyntaxError): Check for size-calculation overflow.
10642 This code is taken from yacc.c.
10643 (yyparse): Check for storage allocation errors when allocating
10646 2005-07-05 Akim Demaille <akim@epita.fr>
10648 Extract calc++ from the documentation.
10649 * doc/bison.texinfo (Calc++): Add the extraction marks.
10650 * examples/extexi: New, from the aborted GNU Programming 2E.
10651 Separate the different paragraph of a file with empty lines.
10652 * examples/Makefile: Use it to extract the whole calc++ example.
10654 2005-06-24 Akim Demaille <akim@epita.fr>
10656 * doc/bison.texinfo (C++ Parser Interface): Use defcv to define
10659 2005-06-22 Akim Demaille <akim@epita.fr>
10661 * doc/bison.texinfo (C++ Language Interface): First stab.
10662 (C++ Parsers): Remove.
10664 2005-06-22 Akim Demaille <akim@epita.fr>
10666 * data/lalr1.cc (yylex_): Honor %lex-param.
10668 2005-06-22 Akim Demaille <akim@epita.fr>
10670 Start a set of simple examples.
10671 * examples/calc++/Makefile, examples/calc++/calc++-driver.cc,
10672 * examples/calc++/calc++-driver.hh,
10673 * examples/calc++/calc++-parser.yy,
10674 * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc,
10675 * examples/calc++/compile, examples/calc++/test: New.
10677 2005-06-09 Paul Eggert <eggert@cs.ucla.edu>
10679 * data/yacc.c (malloc, free) [defined __cplusplus]: Wrap inside
10680 extern "C" {}. This fixes a problem reported by Paul Hilfinger,
10681 which stems from the 2005-05-27 patch.
10683 2005-06-06 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
10685 * data/glr.c: Modify treatment of unused parameters to permit use
10686 of g++ (which doesn't allow __attribute__ ((unused)) for parameters).
10688 2005-05-30 Paul Eggert <eggert@cs.ucla.edu>
10690 Fix infringement on user name space reported by Janos Zoltan Szabo.
10691 * data/yacc.c (yyparse): strlen -> yystrlen.
10693 2005-05-30 Akim Demaille <akim@epita.fr>
10695 * data/lalr1.cc (_): New.
10696 Translate the various messages.
10698 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
10700 Fix infringement on user name space reported by Bruno Haible.
10701 * data/yacc.c (YYSIZE_T): Define first, so that later decls can use it.
10702 Prefer GCC's __SIZE_TYPE__ if available, so that we don't infringe on
10703 the user's name space.
10704 (alloca): Include <stdlib.h> to get it, if it's not built in.
10705 (YYMALLOC, YYFREE): Define only if needed.
10706 (malloc, free): Declare, but only if needed, as this infringes on
10707 the user name space.
10709 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
10711 Fix BeOS, FreeBSD, MacOS porting problems reported by Bruno Haible.
10712 * lib/bitset.c (bitset_print): Don't assume size_t can be printed
10714 * lib/ebitset.c (min, max): Undef before defining.
10715 * lib/vbitset.c (min, max): Likewise.
10716 * lib/subpipe.c (create_subpipe): Save local variables in case
10717 vfork clobbers them.
10719 2005-05-24 Bruno Haible <bruno@clisp.org>
10721 * tests/synclines.at (AT_SYNCLINES_COMPILE): Add support for the
10722 error message syntax used by gcc-4.0.
10724 2005-05-23 Paul Eggert <eggert@cs.ucla.edu>
10726 * README: Mention m4 1.4.3. Remove obsolete advice about
10727 Sun Forte Developer 6 update 2, VMS, and MS-DOS.
10729 * bootstrap: Remove workaround for problem I encountered with
10730 gettext 0.14.1; it seems to be fixed now.
10732 2005-05-22 Paul Eggert <eggert@cs.ucla.edu>
10734 * NEWS: Version 2.0a.
10736 * src/files.c: Include "stdio-safer.h"; this fixes a typo in
10737 the previous change.
10739 Various maintainer cleanups.
10740 * .cvsignore: Add a.exe, a.out, b.out,, conf[0-9]*, confdefs*,
10741 conftest*, for benefit of CVS commands run at the same time as
10742 "configure". Add build-aux, since "bootstrap" now creates it and
10744 * Makefile.cfg (move_if_change): Remove.
10745 * Makefile.maint: Remove the update stuff; we now use "bootstrap".
10746 (ftp-gnu, www-gnu, move_if_change, local_updates, update):
10747 (po_repo, do-po-update, po-update, wget_files, get-targets):
10748 (config.guess-url_prefix, config.sub-url_prefix):
10749 (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
10750 (standards.texi-url_prefix, make-stds.texi-url_prefix, taget, url):
10751 ($(get-targets), cvs-files, automake_repo, wget-update, cvs-update):
10753 * configure.ac (AC_CONFIG_AUX_DIR): Change from config to build-aux;
10754 this is now the recommended name.
10755 * config/.cvsignore: Remove config.guess, config.rpath, config.sub,
10756 depcomp, install-sh, mdate-sh, missing, mkinstalldirs, texinfo.tex,
10757 ylwrap. These files now go into build-aux.
10758 * config/move-if-change: Remove.
10759 * config/prev-version.txt: Bump from 1.75 to 2.0.
10761 * bootstrap: Add stdio-safer, unistd-safer modules.
10762 Remove m4/glibc2.m4 (introduced by latest gnulib, but
10764 * lib/.cvsignore: Add dup-safer.c, fd-safer.c,
10765 fopen-safer.c, stdio-safer.h, unistd-safer.h.
10766 * lib/subpipe.c: Include "unistd-safer.h".
10767 (create_subpipe): Make sure all the newly-created
10768 file descriptors are > 2, so that diagnostics don't
10769 get sent down them (which might cause Bison to hang, in theory).
10770 * m4/.cvsignore: Add stdio-safer.m4, unistd-safer.m4.
10771 * src/files.c (xfopen): Use fopen_safer, not fopen.
10773 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Port
10774 yesterday's yacc.c fix.
10776 2005-05-21 Paul Eggert <eggert@cs.ucla.edu>
10778 * data/glr.c, data/lalr1.cc: Update copyright date.
10780 Fix a destructor bug reported by Wolfgang Spraul in
10781 <http://lists.gnu.org/archive/html/bug-bison/2005-05/msg00042.html>.
10782 * data/yacc.c (yyabortlab): Don't call destructor, and
10783 don't set yychar to EMPTY.
10784 (yyoverflowlab): Don't call destructor.
10785 (yyreturn): Call destructor, if yychar is neither YYEOF nor YYEMPTY.
10786 * tests/calc.at (AT_CHECK_CALC): Expect one fewer output lines,
10787 since we no longer output the message "discarding lookahead token
10790 2005-05-20 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
10792 * data/glr.c (YY_SYMBOL_PRINT): Don't print newline at end to
10793 fix a small glitch in debugging output.
10794 (yyprocessOneStack, yyrecoverSyntaxError, yyparse): Print newline
10795 after YY_SYMBOL_PRINT where needed.
10797 (struct yyGLRState): Add some comments.
10798 (struct yySemanticOption): Add some comments.
10799 (union yyGLRStackItem): Add comment.
10801 (yymergeOptionSets): Correct this to properly perform the union,
10802 avoiding infinite reported by Michael Rosien.
10805 * tests/glr-regression.at: Add test for GLR merging error reported
10808 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
10810 * COPYING, ChangeLog, GNUmakefile, HACKING, Makefile.am,
10811 Makefile.cfg, Makefile.maint, NEWS, README, README-alpha,
10812 README-cvs, TODO, bootstrap, configure.ac, data/Makefile.am,
10813 data/README, data/c.m4, data/glr.c, data/lalr1.cc, data/yacc.c,
10814 data/m4sugar/m4sugar.m4, doc/Makefile.am, doc/bison.texinfo,
10815 doc/fdl.texi, doc/gpl.texi, doc/refcard.tex, lib/Makefile.am,
10816 lib/abitset.c, lib/abitset.h, lib/bbitset.h, lib/bitset.c,
10817 lib/bitset.h, lib/bitset_stats.c, lib/bitset_stats.h,
10818 lib/bitsetv-print.c, lib/bitsetv-print.h, lib/bitsetv.c,
10819 lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/get-errno.c,
10820 lib/get-errno.h, lib/lbitset.c, lib/lbitset.h, lib/libiberty.h,
10821 lib/main.c, lib/subpipe.c, lib/subpipe.h, lib/timevar.c,
10822 lib/timevar.def, lib/timevar.h, lib/vbitset.c, lib/vbitset.h,
10823 lib/yyerror.c, m4/cxx.m4, m4/m4.m4, m4/subpipe.m4, m4/timevar.m4,
10824 m4/warning.m4, src/LR0.c, src/LR0.h, src/Makefile.am, src/assoc.c,
10825 src/assoc.h, src/closure.c, src/closure.h, src/complain.c,
10826 src/complain.h, src/conflicts.c, src/conflicts.h, src/derives.c,
10827 src/derives.h, src/files.c, src/files.h, src/getargs.c,
10828 src/getargs.h, src/gram.c, src/gram.h, src/lalr.c, src/lalr.h,
10829 src/location.c, src/location.h, src/main.c, src/muscle_tab.c,
10830 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
10831 src/output.h, src/parse-gram.c, src/parse-gram.h,
10832 src/parse-gram.y, src/print.c, src/print.h, src/print_graph.c,
10833 src/print_graph.h, src/reader.c, src/reader.h, src/reduce.c,
10834 src/reduce.h, src/relation.c, src/relation.h, src/scan-gram.l,
10835 src/scan-skel.l, src/state.c, src/state.h, src/symlist.c,
10836 src/symlist.h, src/symtab.c, src/symtab.h, src/system.h,
10837 src/tables.c, src/tables.h, src/uniqstr.c, src/uniqstr.h,
10838 src/vcg.c, src/vcg.h, src/vcg_defaults.h, tests/Makefile.am,
10839 tests/actions.at, tests/c++.at, tests/calc.at, tests/conflicts.at,
10840 tests/cxx-type.at, tests/existing.at, tests/glr-regression.at,
10841 tests/headers.at, tests/input.at, tests/local.at, tests/output.at,
10842 tests/reduce.at, tests/regression.at, tests/sets.at,
10843 tests/synclines.at, tests/testsuite.at, tests/torture.at:
10844 Update FSF postal mail address.
10846 2005-05-11 Paul Eggert <eggert@cs.ucla.edu>
10848 * tests/local.at (AT_COMPILE_CXX): Treat LDFLAGS like AT_COMPILE does.
10849 Problem reported by Ralf Menzel.
10851 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
10853 * tests/actions.at: Test that stack overflow invokes destructors.
10854 From Marcus Holland-Moritz.
10855 * data/yacc.c (yyerrlab): Move the code that destroys the stack
10857 (yyreturn): to here. That way, destructors are called properly
10858 even if the stack overflows, or the user calls YYACCEPT or
10859 YYABORT. Stack-overflow problem reported by Marcus Holland-Moritz.
10860 (yyoverflowlab): Destroy the lookahead.
10862 2005-04-24 Paul Eggert <eggert@cs.ucla.edu>
10864 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): Add more-descriptive comment.
10866 2005-04-17 Paul Eggert <eggert@cs.ucla.edu>
10868 * NEWS: Bison-generated C parsers no longer quote literal strings
10869 associated with tokens.
10870 * src/output.c (prepare_symbols): Don't escape strings,
10871 since users don't want to see C escapes.
10872 * tests/calc.at (AT_CHECK_CALC): Adjust to lack of quotes
10874 * tests/input.at (Torturing the Scanner): Likewise.
10875 * tests/regression.at (Token definitions, Web2c Actions): Likewise.
10877 2005-04-16 Paul Eggert <eggert@cs.ucla.edu>
10879 * tests/torture.at (AT_INCREASE_DATA_SIZE): Skip the test if
10880 the data size is known to be too small and we can't increase it.
10881 This works around an HP-UX 11.00 glitch reported by Andrew Benham.
10883 2005-04-15 Paul Eggert <eggert@cs.ucla.edu>
10885 * src/parse-gram.y: Include quotearg.h.
10886 (string_as_id): Quote $1 before using it as a key, since the
10887 lexer no longer quotes it for us.
10888 (string_content): Don't strip quotes, since lexer no longer
10890 * src/scan-gram.l: Include quotearg.h.
10891 ("\""): Omit quote.
10892 ("'"<SC_ESCAPED_CHARACTER>): Quote symbol before using it as
10893 a key, since the rest of the lexer doesn't quote it.
10894 * src/symtab.c (symbol_get): Don't quote symbol; caller does it now.
10895 * tests/regression.at (Token definitions): Check for backslashes
10898 * data/yacc.c (YYSTACK_ALLOC_MAXIMUM): New macro.
10899 (YYSIZE_T): Define to unsigned long int when using an older compiler.
10900 (yyparse): Revamp code to generate long syntax error message, to
10901 make it easier to translate, and to avoid problems with arithmetic
10902 overflow. Change "virtual memory" to "memory" in diagnostic, since
10903 we don't know whether the memory is virtual.
10905 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
10907 * NEWS: Bison-generated C parsers now use the _ macro to
10909 * data/yacc.c (_) [!defined _]: New macro.
10910 All English strings wrapped inside this macro.
10911 * doc/bison.texinfo (Bison Parser): Document _.
10912 * po/POTFILES.in: Include src/parse-gram.c, since it now
10913 includes translateable strings that parse-gram.y doesn't.
10915 2005-04-12 Paul Eggert <eggert@cs.ucla.edu>
10917 * src/symtab.c (symbol_make_alias): Call symbol_type_set,
10918 reverting the 2004-10-11 change to this function.
10919 (symbol_check_alias_consistency): Don't call symbol_type_set
10920 if the type name is already correct.
10921 * tests/input.at (Typed symbol aliases): New test, from Tim Van Holder.
10923 2005-03-25 Paul Eggert <eggert@cs.ucla.edu>
10925 * tests/regression.at (Token definitions): Don't use a token named
10926 c, as that generates a "#define c ..." that runs afoul of buggy
10927 stdlib.h that uses the identifier c as a member of struct
10928 drand48_data. Problem reported by Horst Wente.
10930 2005-03-21 Paul Eggert <eggert@cs.ucla.edu>
10932 * bootstrap: Change translation URL from
10933 http://www2.iro.umontreal.ca/~gnutra/po/maint/bison/ to
10934 http://www.iro.umontreal.ca/translation/maint/bison/ to avoid
10935 redirection glitches. Problem reported by twlevo@xs4all.nl.
10937 2005-03-20 Paul Eggert <eggert@cs.ucla.edu>
10939 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Don't put options
10940 after operands; POSIX says this isn't portable for the c99 command.
10942 2005-03-18 Paul Eggert <eggert@cs.ucla.edu>
10944 * tests/glr-regression.at (glr-regr2a.y): Try to dump core
10945 immediately if a data overrun has occurred; this may help us track
10946 down what may be a spurious failure on MacOS.
10948 2005-03-17 Paul Eggert <eggert@cs.ucla.edu>
10950 Respond to problems reported by twlevo@xs4all.nl.
10952 * bootstrap: Use "trap - 0" rather than the unportable "trap 0".
10954 * src/vcg.h: Comment fix.
10955 * src/vcg_defaults.h: Parenthesize macro bodies to make them safe.
10956 (G_CMAX): Change to -1 instead of INT_MAX.
10958 * data/yacc.c (yyparse): Omit spaces before #line.
10960 2005-03-15 Paul Eggert <eggert@cs.ucla.edu>
10962 * src/tables.c (state_number_to_vector_number): Put it inside an
10963 "#if 0", since it's not currently used. Problem reported by
10966 2005-03-06 Paul Eggert <eggert@cs.ucla.edu>
10968 * src/output.c (escaped_output): Renamed from
10969 escaped_file_name_output, since we now use it for symbol tags as
10970 well. All uses changed.
10971 (symbol_destructors_output, symbol_printers_output):
10972 Escape symbol tags too.
10973 Problem reported by Matyas Forstner in
10974 <http://lists.gnu.org/archive/html/bug-bison/2005-03/msg00009.html>.
10976 * src/muscle_tab.c (muscle_code_grow): Don't quote numbers; it's
10978 * src/output.c (user_actions_output, token_definitions_output,
10979 symbol_destructors_output, symbol_printers_output): Likewise.
10980 * src/reader.c (prologue_augment): Likewise.
10981 * src/scan-gram.l (handle_action_dollar, handle_action_at): Likewise.
10983 * src/vcg.c (output_edge): Don't quote linestyle arg.
10984 Problem reported by twlevo@xs4all.nl.
10986 2005-02-28 Paul Eggert <eggert@cs.ucla.edu>
10988 * doc/bison.texinfo (Semantic Tokens): Fix scoping problem in
10989 example, reported by Derek M Jones. Also, make the example even
10990 more outrageous, to better illustrate how bad the problem is.
10992 2005-02-24 Paul Eggert <eggert@cs.ucla.edu>
10994 * doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
10995 putsym. Typo reported by Sebastian Piping.
10997 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
10999 * doc/bison.texinfo (Language and Grammar): some -> same
11000 (Epilogue): int he -> in the
11001 Typos reported by Sebastian Piping via Justin Pence.
11003 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
11005 * tests/glr-regression.at (Improper handling of embedded actions
11006 and dollar(-N) in GLR parsers): Renamed from "Improper handling of
11007 embedded actions and $-N in GLR parsers", work around an Autoconf bug
11008 with dollar signs in test names.
11009 * tests/input.at (Invalid dollar-n): Renamed from "Invalid \$n",
11010 for a similar reason.
11012 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
11014 * src/vcg.c (output_graph): G_VIEW -> normal_view in case someone
11015 wants to redefine G_VIEW.
11017 2005-01-27 Paul Eggert <eggert@cs.ucla.edu>
11019 * src/vcg.c (get_view_str): Remove case for normal_view.
11020 Problem reported by twlevo@xs4all.nl.
11022 2005-01-24 Paul Eggert <eggert@cs.ucla.edu>
11024 * configure.ac (O0CFLAGS, O0CXXFLAGS): Fix quoting bug.
11025 Problem reported by twlevo@xs4all.nl.
11027 * doc/bison.texinfo: Change @dircategory from "GNU programming
11028 tools" to "Software development". Requested by Richard Stallman
11031 2005-01-23 Paul Eggert <eggert@cs.ucla.edu>
11033 * tests/c++.at (AT_CHECK_DOXYGEN): Don't use options after operands.
11034 Problem reported by twlevo@xs4all.nl.
11036 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
11038 * data/yacc.c (YYCOPY, yystpcpy, yyparse): Remove "register"
11039 keyword; it's not needed with modern compilers, and it doesn't
11040 affect correctness with older compilers. Suggested by
11043 2005-01-17 Paul Eggert <eggert@cs.ucla.edu>
11045 * data/glr.c (yyuserAction): Add "default: break;" case to pacify
11046 gcc -Wswitch-default.
11047 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
11048 * data/yacc.c (yyparse): Likewise.
11050 2005-01-12 Paul Eggert <eggert@cs.ucla.edu>
11052 * src/system.h (OUTPUT_EXT, TAB_EXT): Define only if not defined
11053 already. Let config.h define any nonstandard values.
11055 2005-01-10 Paul Eggert <eggert@cs.ucla.edu>
11057 * tests/calc.at (_AT_DATA_CALC_Y): Use alarm (100), not alarm (10),
11058 for the benefit of slower hosts. Problem reported by
11059 Nelson H. F. Beebe.
11061 2005-01-07 Paul Eggert <eggert@cs.ucla.edu>
11063 * data/yacc.c (yyparse): Pacify non-GCC compilers about yyerrorlab
11064 being defined and not used.
11065 * data/lalr1.cc (yyparse): Likewise.
11066 Use "if (false)" rather than "if (0)".
11068 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
11070 * TODO: Mention that we should allow NUL bytes in tokens.
11072 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
11074 * src/scan-skel.l (<<EOF>>): Don't close standard output.
11075 Problem reported by Hans Aberg.
11077 2005-01-01 Paul Eggert <eggert@cs.ucla.edu>
11079 * src/getargs.c (version): Happy new year; update overall
11080 program copyright date from 2004 to 2005.
11082 * src/scan-skel.l ("@output ".*\n): Don't close standard output.
11083 Problem reported by Hans Aberg.
11084 * tests/output.at (AT_CHECK_OUTPUT): New arg SHELLIO.
11085 (Output file names.): Add a test for the case when standard output
11088 2004-12-26 Paul Eggert <eggert@cs.ucla.edu>
11090 * doc/bison.texinfo (@copying): Update FDL version number to 1.2,
11091 to fix an oversight in the Bison 2.0 manual.
11093 2004-12-25 Paul Eggert <eggert@cs.ucla.edu>
11095 * NEWS: Version 2.0. Reformat the existing news items since
11096 1.875, so that related items are grouped together.
11097 * configure.ac (AC_INIT): Bump version to 2.0.
11098 * src/parse-gram.c, src/parse-gram.h: Regenerate with 2.0.
11100 * tests/torture.at (Exploding the Stack Size with Alloca): Set
11101 YYSTACK_USE_ALLOCA to 1 if __GNUC__ or alloca are defined;
11102 otherwise, we're not testing alloca. Unfortunately there's no
11103 simple way to consult HAVE_ALLOCA here.
11105 * data/lalr1.cc (yydestruct_): Pacify unused variable warning
11108 * src/LR0.c (new_itemsets): Use memset rather than zeroing by
11109 hand. This avoids a warning about comparing int to size_t when
11110 GCC warnings are enabled.
11112 2004-12-22 Paul Eggert <eggert@cs.ucla.edu>
11114 * NEWS: Bison-generated parsers no longer default to using the
11115 alloca function (when available) to extend the parser stack, due
11116 to widespread problems in unchecked stack-overflow detection.
11117 * data/glr.c (YYMAXDEPTH): Remove undef when zero. It's the user's
11118 responsibility to set it to a positive value. This lets the user
11119 specify a value that is not a preprocessor constant.
11120 * data/yacc.c (YYMAXDEPTH): Likewise.
11121 (YYSTACK_ALLOC): Define only if YYSTACK_USE_ALLOCA is nonzero.
11122 * doc/bison.texinfo (Stack Overflow): YYMAXDEPTH no longer needs
11123 to be a compile-time constant. However, explain the constraints on it.
11124 Also, explain the constraints on YYINITDEPTH.
11125 (Table of Symbols): Explain that alloca is no longer the default.
11126 Explain the user's responsibility if they define YYSTACK_USE_ALLOCA
11129 * doc/bison.texinfo (Location Default Action): Mention that n must
11130 be zero when k is zero. Suggested by Frank Heckenbach.
11132 2004-12-22 Akim Demaille <akim@epita.fr>
11134 * data/lalr1.cc (parser::token_number_type, parser::rhs_number_type)
11135 (parser::state_type, parser::semantic_type, parser::location_type):
11136 Private, not public.
11137 (parser::parse): Return ints, not bool.
11138 Returning a bool introduces a problem: 0 corresponds to false, and
11139 it seems weird to return false on success. Returning true changes
11140 the conventions for yyparse.
11141 Alternatively we could return void and send an exception.
11142 There is no clear consensus (yet?).
11143 (state_stack, semantic_stack, location_stack): Rename as...
11144 (state_stack_type, semantic_stack_type, location_stack_type): these.
11145 Private, not public.
11146 * tests/c++.at: New.
11147 * tests/testsuite.at, tests/Makefile.am: Adjust.
11149 2004-12-21 Akim Demaille <akim@epita.fr>
11151 * data/lalr1.cc (parser::parse): Return a bool instead of an int.
11153 2004-12-21 Akim Demaille <akim@epita.fr>
11155 Don't impose std::string for filenames.
11157 * data/lalr1.cc (b4_filename_type): New.
11158 (position::filename): Use it.
11159 (parser.hh): Move the inclusion of stack.hh and location.hh below
11160 the user code, so that needed headers for the filename type can be
11162 Forward declare them before the user code.
11163 * tests/Makefile.am (check-local, installcheck-local): Pass
11164 TESTSUITEFLAGS to the TESTSUITE.
11166 2004-12-20 Akim Demaille <akim@epita.fr>
11168 Use more STL like names: my_class instead of MyClass.
11170 * data/lalr1.cc (LocationStack, LocationType, RhsNumberType)
11171 (SemanticStack, SemanticType, StateStack, StateType)
11172 (TokenNumberType, Stack, Slice, Traits, Parser::location)
11173 (Parser::value): Rename as...
11174 (location_stack, location_type, rhs_number_type, semantic_stack)
11175 (semantic_type, state_stack, state_type, token_number_type, stack)
11176 (slice, traits, parser::yylloc, parser::yylval): these.
11178 * tests/calc.at, tests/regression.at, tests/actions.at: Adjust.
11180 2004-12-19 Paul Eggert <eggert@cs.ucla.edu>
11182 * data/glr.c (YYLLOC_DEFAULT): Use GNU spacing conventions.
11183 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
11185 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
11187 Remove uses of 'short int' and 'unsigned short int'. This raises
11188 some arbitrary limits. It uses more memory but nowadays that's
11189 not much of an issue.
11191 This change does not affect the generated parsers; that's a different
11192 task, as some users will want to conserve memory there.
11194 Ideally we should use size_t to represent all object counts, and
11195 something like ptrdiff_t to represent signed differences of object
11196 counts; but that will require more code-cleanup than I have the
11197 time to do right now.
11199 * src/LR0.c (allocate_itemsets, new_itemsets, save_reductions):
11200 Use size_t, not int or short int, to count objects.
11201 * src/closure.c (nritemset, closure): Likewise.
11202 * src/closure.h (nritemset, closure): Likewise.
11203 * src/nullable.c (nullable_compute): Likewise.
11204 * src/print.c (print_core): Likewise.
11205 * src/print_graph.c (print_core): Likewise.
11206 * src/state.c (state_compare, state_hash): Likewise.
11207 * src/state.h (struct state): Likewise.
11208 * src/tables.c (default_goto, goto_actions): Likewise.
11210 * src/gram.h (rule_number, rule): Use int, not short int.
11211 * src/output.c (prepare_rules): Likewise.
11212 * src/state.h (state_number, STATE_NUMBER_MAXIMUM, transitions,
11213 errs, reductions): Likewise.
11214 * src/symtab.h (symbol_number, SYMBOL_NUMBER_MAXIMUM, struct symbol):
11216 * src/tables.c (vector_number, tally, action_number,
11217 ACTION_NUMBER_MINIMUM): Likewise.
11218 * src/output.c (muscle_insert_short_int_table): Remove.
11220 2004-12-17 Akim Demaille <akim@epita.fr>
11222 * data/lalr1.cc: Extensive Doxygenation.
11223 (error_): Rename as...
11224 (error): this, since it is visible to the user.
11226 (Parser::message): Now an automatic variable from...
11227 (Parser::yyreport_syntax_error_): here.
11228 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust to
11230 * tests/input.at: Escape $.
11232 2004-12-16 Paul Eggert <eggert@cs.ucla.edu>
11234 * data/glr.c (b4_lhs_value, b4_rhs_value, b4_rhs-location):
11235 Parenthesize rhs to avoid obscure problems with mistakes like
11236 "foo$$bar = foo$1bar;". Problem reported by twlevo at xs4all.
11237 * data/lalr1.cc (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11238 b4_rhs_location): Likewise.
11239 * data/yacc.c (b4_lhs_value, b4_rhs_value, b4_lhs_location,
11240 b4_rhs_location): Likewise.
11242 2004-12-16 Akim Demaille <akim@epita.fr>
11244 * data/lalr1.cc (yyreport_syntax_error_): Catch up with glr.c and
11245 yacc.c: be sure to stay within yycheck_.
11246 * tests/actions.at: Re-enable C++ tests.
11248 2004-12-16 Akim Demaille <akim@epita.fr>
11250 * src/print_graph.c (print_graph): Remove layoutalgorithm uses for
11253 2004-12-16 Akim Demaille <akim@epita.fr>
11255 Use #define to handle the %name-prefix.
11257 * data/glr.c, data/yacc.c: Comment changes.
11258 * data/lalr1.cc (yylex): Use #define to select the name of yylex,
11259 so that one can refer to yylex in the parser file, and have it
11260 renamed, as is the case with other skeletons.
11262 2004-12-16 Akim Demaille <akim@epita.fr>
11264 Move lalr1.cc internals into yy*.
11266 * data/lalr1.cc (semantic_stack_, location_stack_, state_stack_)
11267 (semantic_stack_, location_stack_, pact_, pact_ninf_, defact_)
11268 (pgoto_, defgoto_, table_, table_ninf_, check_, stos_, r1_, r2_)
11269 (name_, rhs_, prhs_, rline_, token_number_, eof_, last_, nnts_)
11270 (empty_, final_, terror_, errcode_, ntokens_)
11271 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
11272 (looka_, ilooka_, error_range_, nerrs_):
11274 (yysemantic_stack_, yylocation_stack_, yystate_stack_)
11275 (yysemantic_stack_, yylocation_stack_, yypact_, yypact_ninf_)
11276 (yydefact_, yypgoto_, yydefgoto_, yytable_, yytable_ninf_)
11277 (yycheck_, yystos_, yyr1_, yyr2_, yyname_, yyrhs_, yyprhs_)
11278 (yyrline_, yytoken_number_, yyeof_, yylast_, yynnts_, yyempty_)
11279 (yyfinal_, yyterror_, yyerrcode_, yyntokens_)
11280 (yyuser_token_number_max_, yyundef_token_, yyn_, yylen_, yystate_)
11281 (yynerrs_, yylooka_, yyilooka_, yyerror_range_, yynerrs_):
11284 2004-12-15 Paul Eggert <eggert@cs.ucla.edu>
11286 Fix some problems reported by twlevo at xs4all.
11287 * src/symtab.c (symbol_new): Report an error if the input grammar
11288 contains too many symbols. This is better than calling abort() later.
11289 * src/vcg.h (enum layoutalgorithm): Remove. All uses removed.
11290 (struct node, struct graph):
11291 Rename member expand to stretch. All uses changed.
11292 (struct graph): Remove member layoutalgorithm. All uses removed.
11293 * src/vcg.c (get_layoutalgorithm_str): Remove. All uses removed.
11294 * src/vcg_defaults.h (G_STRETCH): Renamed from G_EXPAND.
11296 (N_STRETCH): Rename from N_EXPAND. All uses changed.
11298 2004-12-15 Akim Demaille <akim@epita.fr>
11300 * data/lalr1.cc: Normalize /** \brief ... */ to ///.
11301 Add more Doxygen comments.
11302 (symprint_, stack_print_, reduce_print_, destruct_, pop)
11303 (report_syntax_error_, translate_): Rename as...
11304 (yysymprint_, yystack_print_, yyreduce_print_, yydestruct_)
11305 (yypop_, yyreport_syntax_error_, yytranslate_): this.
11307 2004-12-15 Akim Demaille <akim@epita.fr>
11309 * data/lalr1.cc (lex_): Rename as...
11311 Move the trace here.
11312 Take the %name-prefix into account.
11313 Reported by Alexandre Duret-Lutz.
11315 2004-12-15 Akim Demaille <akim@epita.fr>
11317 Simplify the C++ parser constructor.
11319 * data/lalr1.cc (debug_): Rename as...
11320 (yydebug_): so that the parser's internals are always in the yy*
11323 (b4_parse_param_decl): Remove the leading comma as it is now only
11324 called as unique argument list.
11325 (Parser::Parser): Remove the constructor accepting a location and
11326 an initial debugging level.
11327 Remove from the other ctor the argument for the debugging level.
11328 (debug_level_type, debug_level, set_debug_level): New.
11330 * tests/actions.at, tests/calc.at, tests/regression.at: Adjust
11333 2004-12-15 Akim Demaille <akim@epita.fr>
11335 Remove b4_root related material: failure experiment
11336 (which goal was to allow to derive from a class).
11338 * data/lalr1.cc (b4_root, b4_param, b4_constructor): Remove
11339 definitions and uses.
11341 2004-12-14 Paul Eggert <eggert@cs.ucla.edu>
11343 * data/glr.c (struct yyGLRStack): yyerror_range now has 3 items,
11344 not 2, since it's not portable to subtract 1 from the start of an
11345 array. The new item 0 is never set or used. All uses changed.
11347 (yyrecoverSyntaxError): Use YYLLOC_DEFAULT instead of assuming
11348 the default definition of YYLLOC_DEFAULT. Problem reported
11349 by Frank Heckenbach.
11351 2004-12-12 Paul Eggert <eggert@cs.ucla.edu>
11353 * data/glr.c (YYRHSLOC): Don't have two definitions, one for
11354 the normal case and one for the error case. Just use the
11355 first one uniformly. Problem reported by Frank Heckenbach.
11356 (YYLLOC_DEFAULT): Use the conventions of yacc.c, so we can
11357 use exactly the same macro in both places.
11358 (yyerror_range): Now of type yyGLRStackItem, not YYLTYPE,
11359 so that the normal-case YYRHSLOC works for the error case too.
11361 * data/yacc.c (YYRHSLOC): New macro, taken from glr.c.
11362 (YYLLOC_DEFAULT): Use the same macro as glr.c.
11363 * doc/bison.texinfo (Location Default Action): Don't claim that
11364 we have an array of locations. Use the same macro for both glr
11365 and lalr parsers. Mention YYRHSLOC. Mention what happens when
11368 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
11370 * HACKING: Update email addresses to send announcements to.
11372 * configure.ac (AC_INIT): Bump version to 1.875f.
11374 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
11376 * NEWS: Version 1.875e.
11377 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875e.
11379 * src/scan-skel.l: Include "complain.h", for "fatal".
11381 * src/relation.h (relation_print, relation_digraph):
11382 Relation sizes are of type relation_node, not size_t (this is
11383 merely a doc fix, since the two types are equivalent).
11384 (relation_transpose): Relation sizes are of type relation_node,
11386 * src/relation.c: Likewise.
11387 (top, infinity): Now of type relation_node, not int.
11388 (traverse, relation_transpose): Use relation_node, not int.
11390 * data/glr.c (yyuserAction, yyrecoverSyntaxError): Mark args
11391 with ATTRIBUTE_UNUSED if they're not used, to avoid GCC warning.
11392 (yyparse): Remove unused local introduced in 2004-10-25 patch.
11394 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): New arg
11395 specifying whether the test should be skipped. Use it tp
11396 specify that the [%defines %skeleton "lalr1.cc"] tests currently
11397 fail on some hosts, and should be skipped.
11399 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
11401 * src/system.h (CALLOC, MALLOC, REALLOC): Remove. All callers
11402 changed to use xcalloc, xnmalloc, xnrealloc, respectively,
11403 unless otherwise specified below.
11405 * src/LR0.c (allocate_itemsets): Use xnmalloc, not xcalloc,
11406 to allocate kernel_base, kernel_items, kernel_size, since
11407 they needn't be initialized to 0.
11408 (allocate_storgae): Likewise, for shiftset, redset, shift_symbol.
11409 * src/closure.c (new_closure): Likewise, for itemset.
11410 * src/derives.c (derives_compute): Likewise, for delts, derives, q.
11411 * src/lalr.c (set_goto_map): Likewise, for temp_map.
11412 (initialize_F): Likewise, for reads, edge, reads[i], includes[i].
11413 (build_relations): Likewise for edge, states1, includes.
11414 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
11415 * src/reader.c (packgram): Likewise, for ritem, rules.
11416 * src/reduce.c (nonterminals_reduce): Likewise for nontermmap.
11417 * src/relation.c (relation_digraph): Likewise for VERTICES.
11418 (relation_transpose): Likewise for new_R, end_R.
11419 * src/symtab.c (symbols_token_translations_init): Likewise for
11420 token_translations.
11421 * src/tables.c (save_row): Likewise for froms, tos, conflict_tos.
11422 (token_actions): Likewise for yydefact, actrow, conflrow,
11424 (save_column): Likewise for froms[symno], tos[symno].
11425 (goto_actions): Likewise for state_count.
11426 (pack_table): Likewise for base, pos, check.
11427 (tables_generate): Likewise for width.
11429 * src/LR0.c (set_states): Don't reuse kernel_size and kernel_base
11430 for initial core. Just have a separate core, so we needn't worry
11431 about whether kernel_size and kernel_base are initialized.
11433 * src/LR0.c (shift_symbol, redset, shiftset, kernel_base,
11434 kernel_size, kernel_items): Remove unnecessary initialization.
11435 * src/conflicts.c (conflicts): Likewise.
11436 * src/derives.c (derives): Likewise.
11437 * src/muscle_tablc (muscle_insert): Likewise.
11438 * src/relation.c (relation_digraph): Likewise.
11439 * src/tables.c (froms, tos, conflict_tos, tally, width, actrow, order,
11440 conflrow, conflict_table, conflict_list, table, check):
11443 * src/closure.c (new_closure): Arg is of type unsigned int, not int.
11444 This is because all callers pass unsigned int.
11445 * src/closure.h (new_closure): Likewise.
11447 * src/lalr.c (initialize_F): Initialize reads[i] in all cases.
11448 (build_relations): Initialize includes[i] in all cases.
11449 * src/reader.c (packgram): Always initialize rules[ruleno].prec
11450 and rules[ruleno].precsym. Initialize members in order.
11451 * src/relation.c (relation_transpose): Always initialize new_R[i]
11453 * src/table.c (conflict_row): Initialize 0 at end of conflict_list.
11455 * src/output.c (prepare_actions): Pass 0 instead of conflict_list[0];
11456 conflict_list[0] was always 0, but now it isn't initialized.
11458 * src/table.c (table_grow): When conflict_table grew, the grown
11459 area wasn't cleared. Fix this.
11461 * lib/.cvsignore: Add strdup.c, strdup.h.
11462 * m4/.cvsignore: Add strdup.m4.
11464 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
11466 * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro.
11467 * src/lalr.c (set_goto_map): Don't allow ngotos to equal
11468 GOTO_NUMBER_MAXIMUM, since we occasionally compute
11469 ngotos + 1 without checking for overflow.
11470 (build_relations): Use END_NODE, not -1, to denote end of edges.
11471 * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge,
11472 build_relations): Use goto_number, not int, for goto numbers.
11473 * src/tables.c (save_column, default_goto): Likewise.
11475 2004-11-23 Akim Demaille <akim@epita.fr>
11477 * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead
11478 of #defining from yystype.
11479 Don't typedef yystype, C++ does not need it.
11480 This lets it possible to forward declare it as union.
11482 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
11484 * bootstrap (gnulib_modules): Add extensions.
11485 Problem reported by Jim Meyering.
11487 2004-11-22 Paul Eggert <eggert@cs.ucla.edu>
11489 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c,
11490 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
11491 src/system.h, src/tables.c: XFREE -> free, to accommodate
11492 recent change to gnulib xalloc.h.
11493 Problem reported by Jim Meyering.
11495 2004-11-17 Akim Demaille <akim@epita.fr>
11497 * data/lalr1.cc (symprint_): Use cdebug_ to avoid warnings.
11499 2004-11-17 Akim Demaille <akim@epita.fr>,
11500 Alexandre Duret-Lutz <adl@gnu.org>
11502 * data/lalr1.cc (Parser::yycdebug_): New, a pointer, to allow
11504 (YYCDEBUG): Adjust.
11505 Use it instead of cdebug_.
11506 (Parser::debug_stream, Parser::set_debug_stream): New.
11507 (Parser::symprint_): Define cdebug_ for temporary backward
11509 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use
11512 2004-11-17 Akim Demaille <akim@epita.fr>
11514 * data/lalr1.cc (Parser:print_): Remove, use %printer instead.
11515 * tests/regression.at (_AT_DATA_DANCER_Y): Adjust.
11516 * tests/calc.at (_AT_DATA_CALC_Y): Ditto.
11517 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
11519 2004-10-27 Paul Eggert <eggert@cs.ucla.edu>
11521 * data/glr.c (yyloc_default): Remove; not used.
11522 Problem reported by Frank Heckenbach.
11524 2004-10-25 Akim Demaille <akim@epita.fr>
11526 * data/glr.c (YYRHSLOC): Move its definition next to its uses.
11527 Introduce another definition to address simple location arrays.
11528 (yyGLRStack): New member: yyerror_range.
11529 (yyrecoverSyntaxError, yyparse): Update it.
11530 (yyrecoverSyntaxError): Use it when shifting the error token to
11531 have an accurate range, equivalent to the one computed by both
11532 yacc.c and lalr1.cc.
11533 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Change its yylex so
11534 that column numbers start at column 0, as per GNU Coding
11535 Standards, the others tests, and the doc.
11536 (_AT_RESOLVED_GLR_OUTPUT_WITH_LOC, _AT_AMBIG_GLR_OUTPUT_WITH_LOC):
11537 Adjust to the above change (first column is 0).
11538 And adjust the location of the "<error>", now covering the whole
11541 2004-10-22 Akim Demaille <akim@epita.fr>
11542 and Paul Eggert <eggert@cs.ucla.edu>
11544 Remove some arbitrary limits on goto numbers and relations.
11545 * src/lalr.c (goto_map, ngotos, from_state, to_state): Omit
11546 initial values, since they're never used.
11547 (set_goto_map): ngotos is now unsigned, so test for overflow
11548 by seeing whether it wraps around to zero.
11549 * src/lalr.h (goto_number): Now size_t, not short int.
11550 (GOTO_NUMBER_MAXIMUM): Remove.
11551 * src/relation.c (relation_print, traverse, relation_transpose):
11552 Check for END_NODE rather than looking at sign.
11553 * src/relation.h (END_NODE): New macro.
11554 (relation_node): Now size_t, not short int.
11556 2004-10-22 Paul Eggert <eggert@cs.ucla.edu>
11558 * doc/bison.texinfo (Language and Grammar): In example, "int" is a
11559 keyword, not an identifier. Problem reported by Baron Schwartz in
11560 <http://lists.gnu.org/archive/html/bug-bison/2004-10/msg00017.html>.
11562 2004-10-11 Akim Demaille <akim@epita.fr>
11564 * src/symtab.c (symbol_check_alias_consistency): Also check
11565 type names, destructors, and printers.
11566 Reported by Alexandre Duret-Lutz.
11567 Recode the handling of associativity and precedence in terms
11568 of symbol_precedence_set.
11569 Accept no redeclaration at all, not even equal to the previous
11571 (redeclaration): New.
11572 Use it to factor redeclaration complaints.
11573 (symbol_make_alias): Don't set the type of the alias, let
11574 symbol_check_alias_consistency do it as for other features.
11575 * src/symtab.h (symbol): Add new member prec_location, and
11577 * src/symtab.c (symbol_precedence_set, symbol_type_set): Set them.
11578 * tests/input.at (Incompatible Aliases): New.
11580 2004-10-09 Paul Eggert <eggert@cs.ucla.edu>
11582 .cvsignore fixes to accommodate gnulib changes,
11583 and the practice of naming build directories "_build".
11584 * .cvsignore: Add "_*". Sort.
11585 * lib/.cvsignore: Add getopt_.h, xalloc-die.c.
11586 * m4/.cvsignore: Add "*_gl.m4".
11588 2004-10-06 Akim Demaille <akim@epita.fr>
11590 * src/parse-gram.y (add_param): Fix the truncation of trailing
11593 2004-10-05 Akim Demaille <akim@epita.fr>
11595 In Bison 1.875's yacc.c, YYLLOC_DEFAULT was called regardless
11596 whether the reducion was empty or not. This leaves room to
11597 improve the use of YYLLOC_DEFAULT in such a case.
11598 lalr1.cc is still experimental, so changing this is acceptable.
11599 And finally, there are probably not many users who changed the
11600 handling of locations in GLR, so changing is admissible too.
11602 * data/glr.c, data/lalr1.cc, data/yacc.c (YYLLOC_DEFAULT): On an
11603 empty reduction, set @$ to an empty location ending the previously
11605 Adjust uses to make sure the code is triggered on empty
11607 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust the
11608 expected output: empty reductions have empty locations.
11610 2004-09-29 Akim Demaille <akim@epita.fr>
11612 * data/lalr1.cc: Move towards a more standard C++ coding style
11613 for templates: Class < T > -> Class<T>.
11615 2004-09-29 Akim Demaille <akim@epita.fr>
11617 * data/lalr1.cc: Reinstall the former ctor, for sake of
11618 compatibility, but warn it will be removed.
11619 Move towards a more standard C++ coding style (i.e., type *var ->
11622 2004-09-27 Paul Eggert <eggert@cs.ucla.edu>
11624 * src/parse-gram.y (add_param): Rewrite to avoid strchr,
11625 since it's less likely to work if NULs are involved in the future.
11627 2004-09-27 Akim Demaille <akim@epita.fr>
11629 * data/yacc.c (YY_LOCATION_PRINT): Fix its default declaration.
11631 2004-09-27 Akim Demaille <akim@epita.fr>
11633 * data/lalr1.cc (b4_parse_param_decl_1): New.
11634 (b4_parse_param_decl): Use it to have different names between attribute
11635 and argument names.
11636 (b4_cc_constructor_call): Likewise.
11638 2004-09-24 Akim Demaille <akim@epita.fr>
11640 * src/parse-gram.y (add_param): Strip the leading and trailing
11641 blanks from a formal argument declaration.
11642 (YY_LOCATION_PRINT): New.
11644 2004-09-24 Akim Demaille <akim@epita.fr>
11646 * data/c.m4 (b4_yysymprint_generate): Move the YYINPUT invocation
11647 after the location.
11649 2004-09-24 Akim Demaille <akim@epita.fr>
11651 * doc/bison.texinfo (Table of Symbols): Sort.
11653 2004-09-21 Akim Demaille <akim@epita.fr>
11655 * data/yacc.c, data/glr.c (b4_at_dollar, b4_dollar_dollar): Remove
11656 the useless parentheses.
11657 Suggested by Paul Eggert.
11659 2004-09-20 Akim Demaille <akim@epita.fr>
11661 Let the initial-action act on the look-ahead, and use it for the
11662 "initial push" (corresponding to an hypothetical beginning-of-file).
11663 And let lalr1.cc honor %initial-action.
11665 * doc/bison.texinfo (Initial Action Decl): Clarify, and add an
11667 * data/lalr1.cc (Parser::initlocation_): Remove, bad experiment.
11668 (Parser::Parser): Remove the ctor that used to initialize it.
11669 (Parser::parse): Like in the other skeletons, issue the "starting
11670 parse" message before any action.
11671 Honor %initial-action.
11672 Initialize the stacks with the lookahead.
11673 * data/yacc.c: Let $$ and @$ in %initial-action designate the
11675 Push them in the stacks.
11676 * tests/actions.at, tests/calc.at: Adjust the C++ ctor invocations.
11678 2004-09-20 Akim Demaille <akim@epita.fr>
11680 * doc/bison.texinfo (Initial Action Decl): New.
11682 2004-09-20 Akim Demaille <akim@epita.fr>
11684 * data/yacc.c (YY_LOCATION_PRINT): Use YYLTYPE_IS_TRIVIAL as a
11685 clearer criterion to define it.
11686 (parse): Initialize the initial location when YYLTYPE_IS_TRIVIAL.
11687 When reducing on an empty RHS, use the latest stacked location as
11689 yylloc is not always available.
11690 * data/glr.c: Likewise.
11691 Also, honor initial-actions.
11693 2004-09-20 Akim Demaille <akim@epita.fr>
11695 * data/yacc.c (YY_LOCATION_PRINT): New.
11696 Define when we know YYLTYPE's structure, i.e., when the default
11697 YYLLOC_DEFAULT is used.
11698 * data/c.m4 (b4_yysymprint_generate): Use it.
11699 * data/lalr1.cc (YYLLOC_DEFAULT): Stop relying on the initial
11700 value of the result.
11701 (error_start_): Replace with...
11702 (error_range_): this location array.
11703 This allows to replace code relying on the implementation of
11704 locations by portable code.
11705 * data/yacc.c (yylerrsp): Replace with...
11706 (yyerror_range): this.
11707 Every time a token is popped, update yyerror_range[0], to have an
11708 accurate location for the error token.
11709 * data/glr.c (YY_LOCATION_PRINT): New.
11710 (yyprocessOneStack): Fix an invocation of YY_SYMBOL_PRINT:
11711 deference a pointer.
11712 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): No longer
11713 report the location in %printers.
11715 * src/scan-skel.l: Instead of abort, report error messages to ease
11716 understanding skeleton scanning failures.
11718 2004-09-16 Akim Demaille <akim@epita.fr>
11720 * data/lalr1.cc (Stack::Iterator, Stack::ConstIterator): Rename as...
11721 (iterator, const_iterator): these, to be more in the C++ spirit.
11722 Also, return reverse iterators so that when displaying the stack
11723 we display its bottom first.
11724 (Parser::stack_print_, Parser::reduce_print_): Match the messages
11726 We should probably use vector here though.
11728 2004-09-16 Akim Demaille <akim@epita.fr>
11730 Have more complete shift traces.
11732 * data/yacc.c, data/lalr1.c, data/glr.c: Use YY_SYMBOL_PRINT
11733 to report Shifts instead of ad hoc YYDPRINTF invocations,
11734 including for the error token.
11735 * data/lalr1.cc (symprint_): Output the location.
11736 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): In C++, don't
11737 output the location within the %printer.
11738 Activate GLR tests, at least to make sure they compile properly.
11739 They still don't pass though.
11740 * tests/calc.at: Adjust expect verbose output, since now "Entering
11741 state..." is on a different line than the "Shifting" message.
11743 2004-09-08 Akim Demaille <akim@epita.fr>
11745 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Move the
11746 Bison directive from the Bison file to the invocation of this
11747 macro, so that these directives are passed to
11748 AT_BISON_OPTION_PUSHDEFS to get correct help macros.
11749 Use these helping macros (e.g., AT_LOC, AT_VAL and so forth).
11750 Move the AT_SETUP/AT_CLEANUP outside, to report as test title
11751 the extra Bison directives instead of the whole series.
11752 Change the grammar so that there are recoverable errors, and
11753 unrecoverable errors. Now we can have the parser give up before
11754 consuming the whole input. As a result we now can observe that
11755 the lookahead is freed when needed.
11756 Change the parser source to parse argv[1] instead of a hard coded
11758 Simplify yylex, and give a value and location to EOF.
11759 Simplify some invocations of AT_CHECK_PRINTER_AND_DESTRUCTOR that
11760 passed directives already coded in the file.
11761 Add some tests to check the location of "error".
11762 For some tests, the C++ parser is correct, and not yacc.c.
11763 For other tests, they provide different, but unsatisfying, values,
11764 so keep the C++ value so that at least one parser is "correct"
11765 according to the test suite.
11766 (Actions after errors): Remove, this is subsumed by the
11767 AT_CHECK_PRINTER_AND_DESTRUCTOR series.
11769 2004-09-06 Akim Demaille <akim@epita.fr>
11771 * data/lalr1.cc: Adjust the indentation of the labels.
11772 (Parser::pop): New.
11775 2004-09-06 Akim Demaille <akim@epita.fr>
11777 * data/yacc.cc, data/glr.cc (yydestruct): Accept an additional
11778 argument, an informative message.
11779 Call YY_SYMBOL_PRINT.
11780 Adjust all callers: integrate the associated YY_SYMBOL_PRINT.
11781 * data/lalr1.cc (destruct_): Likewise.
11782 In addition, no longer depend on b4_yysymprint_generate and
11783 b4_yydestruct_generate to generate these functions, do it "by
11786 2004-09-03 Akim Demaille <akim@epita.fr>
11788 * data/glr.c, data/lalr1.cc, data/yacc.c: When YYABORT was
11789 invoked, yydestruct the lookahead.
11790 * tests/calc.at (Calculator $1): Update the expected lengths of
11791 traces: there is an added line for the discarded lookahead.
11792 * doc/bison.texinfo (Destructor Decl): Some rewording.
11793 Define "discarded" symbols.
11795 2004-09-02 Akim Demaille <akim@epita.fr>
11797 * data/lalr1.cc (translate_, destruct_): No reason to be static.
11799 2004-09-02 Akim Demaille <akim@epita.fr>
11801 * data/glr.c, yacc.c (YYDSYMPRINT): Remove, not used.
11802 (YYDSYMPRINTF): Rename as...
11803 (YY_SYMBOL_PRINT): this.
11804 * data/lalr1.cc (YY_SYMBOL_PRINT): New, modeled after the previous
11806 Use it instead of direct symprint_ calls.
11807 (yybackup): Tweak the "Now at end of input" case to match yacc.c's
11810 2004-09-02 Akim Demaille <akim@epita.fr>
11812 * data/lalr1.cc (b4_yysymprint_generate): New.
11813 (symprint_): New member function, defined when YYDEBUG.
11814 Use it consistently instead of token/nterm debugging output by
11816 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust
11817 %printer calls to use cdebug_ when using lalr1.cc.
11819 2004-08-30 Florian Krohm <florian@edamail.fishkill.ibm.com>
11821 * data/glr.c: Guard the declarations of yypstack and yypdumpstack
11822 with #ifdef YYDEBUG.
11824 2004-08-26 Akim Demaille <akim@epita.fr>
11826 * doc/bison.texinfo (Implementing Loops): Rename as...
11827 (Implementing Gotos/Loops): this.
11829 2004-08-13 Paul Eggert <eggert@cs.ucla.edu>
11831 Adjust to latest gnulib.
11832 * bootstrap (gnulib_modules): Add xalloc-die.
11833 Set LC_ALL=C so that file names sort consistently.
11834 Prefer the gnulib copies of gettext.m4, glibc21.m4,
11835 inttypes_h.m4, lib-ld.m4, lib-prefix.m4, po.m4, stdint_h.m4,
11836 uintmax_t.m4, ulonglong.m4.
11837 (intl_files_to_remove): Add gettext.m4, lib-ld.m4, lib-prefix.m4,
11838 po.m4 since we are now using _gl.m4 instead.
11840 2004-08-10 Florian Krohm <florian@edamail.fishkill.ibm.com>
11842 * src/scan-action.l: Remove. Scanning of semantic actions is
11843 handled in scan-gram.l.
11845 2004-08-07 Florian Krohm <florian@edamail.fishkill.ibm.com>
11847 * src/scan-gram.l (handle_syncline): Use uniqstr_new not xstrdup.
11849 * src/location.h (struct): The file member is a uniqstr.
11850 (equal_boundaries): Use UNIQSTR_EQ for comparison.
11852 2004-07-22 Paul Eggert <eggert@cs.ucla.edu>
11854 Fix bug with non-%union parsers that have printers or destructors,
11855 which led to a Bison core dump. Reported by Peter Fales in
11856 <http://lists.gnu.org/archive/html/bug-bison/2004-07/msg00014.html>.
11858 * data/c.m4 (b4_symbol_actions): Don't assume %union was used.
11859 * data/lalr1.cc (yystype) [defined YYSTYPE]: Define to YYSTYPE,
11860 not to our own type.
11861 * src/output.c (symbol_destructors_output, symbol_printers_output):
11862 Don't assume %union.
11863 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR,
11864 AT_CHECK_PRINTER_AND_DESTRUCTOR): New argument
11865 UNION-FLAG. All callers changed.
11866 (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't assume %union.
11867 Use type char, not unsigned int, when declaring an array of char;
11868 this lets us remove a cast.
11869 (Printers and Destructors): Add non-%union test cases.
11871 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11873 * doc/bison.texinfo: Minor editorial changes, mostly to the new
11874 GLR writeups. E.g., avoid frenchspacing and the future tense,
11875 change "lookahead" to "look-ahead", and change "wrt" to "with
11878 2004-06-21 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
11880 * doc/bison.texinfo (Merging GLR Parses, Compiler Requirements):
11881 New sections, split off from the GLR Parsers section. Put the new
11882 Simple GLR Parser near the start of the GLR section, for clarity.
11883 Rewrite connective text.
11885 2004-06-21 Frank Heckenbach <frank@g-n-u.de>
11887 * doc/bison.texinfo (Simple GLR Parsers): New section.
11889 2004-06-21 Paul Eggert <eggert@cs.ucla.edu>
11891 * NEWS, TODO, doc/bison.texinfo:
11892 Use "look-ahead" instead of "lookahead", to be consistent.
11893 * REFERENCES: Fix incorrect reference to DeRemer and Pennello,
11894 while we're fixing "look-ahead".
11895 * src/conflicts.c (shift_set): Renamed from shiftset.
11896 (look_ahead_set): Renamed from lookaheadset.
11897 * src/print.c: Likewise.
11898 * src/getargs.c (report_args): Add "look-ahead" as the new canonical
11899 name for "lookahead".
11900 (report_types, usage): Likewise.
11901 * src/getargs.h (report_look_ahead_tokens): Renamed from
11903 * src/lalr.c (compute_look_ahead_tokens): Renamed from
11904 compute_lookaheads.
11905 (state_look_ahead_tokens_count): Renamed from state_lookaheads_count.
11906 (look_ahead_tokens_print): Renamed from lookaheads_print.
11907 * src/state.c (state_rule_look_ahead_tokens_print): Renamed from
11908 state_rule_lookaheads_print.
11909 * src/state.h: Likewise.
11910 (reductions.look_ahead_tokens): Renamed from lookaheads.
11911 * tests/torture.at (AT_DATA_LOOK_AHEAD_TOKENS_GRAMMAR): Renamed from
11912 AT_DATA_LOOKAHEADS_GRAMMAR.
11914 2004-06-03 Paul Eggert <eggert@cs.ucla.edu>
11916 * README: Update location of patched M4 distribution.
11918 2004-05-30 Albert Chin-A-Young <china@thewrittenword.com>
11920 Don't assume the C++ compiler takes the same arguments as the C compiler
11922 * configure.ac (O0CXXFLAGS): New var.
11923 * tests/atlocal.in (CXXFLAGS): Use it.
11925 2004-05-29 Paul Eggert <eggert@cs.ucla.edu>
11927 Fix some "make check" problems with C++ reported by
11928 Albert Chin-A-Young for Tru64 C++ in this thread:
11929 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00049.html
11931 * m4/cxx.m4 (BISON_TEST_FOR_WORKING_CXX_COMPILER): Check for std::cerr.
11932 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
11933 Output to a .cc file for C++, not to a .c file.
11934 * tests/calc.at (AT_CHECK_CALC): Likewise.
11935 * tests/regression.at (AT_CHECK_DANCER): Likewise.
11936 * tests/local.at (AT_COMPILE_CXX): Default to OUTPUT.cc, not OUTPUT.c.
11938 2004-05-28 Albert Chin-A-Young <china@thewrittenword.com>
11940 * tests/calc.at, tests/actions.at: Workaround for SGI
11941 C++ compiler. (trivial change)
11943 2004-05-27 Paul Eggert <eggert@cs.ucla.edu>
11945 Spent a few hours checking out which prerequisite versions the
11946 current sources actually require. I went all the way back to
11947 Gettext 0.10.40, Automake 1.4, and Autoconf 2.57 and investigated
11948 a seemingly endless set of combinations of versions more recent
11949 than that. The bottom line is that the current sources require
11950 fairly recent versions of the build tools, and it'll be some work
11952 * configure.ac (AC_PREREQ): Increase from 2.58 to 2.59.
11953 (AM_INIT_AUTOMAKE): Increase from 1.7 to 1.8.
11954 (AM_GNU_GETTEXT_VERSION): Increase from 0.11.5 to 0.12.
11955 Add comments explaining why those particular versions are
11958 * src/parse-gram.y (lloc_default): Rewrite to avoid compiler bug
11959 in SGI MIPSpro 7.4.1m. Problem reported by Albert Chin-A-Young in
11960 <http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00037.html>.
11962 * configure.ac (AC_PREREQ): Bump to 2.58, since 2.57 doesn't work
11963 (it fails with a Autoconf-without-aclocal-m4 diagnostic).
11965 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
11967 * configure.ac (AM_GNU_GETTEXT_VERSION): Lower it from 0.14.1 to
11968 0.11.5. Suggested by Bruno Haible.
11969 * bootstrap: Remove gettext version checking.
11971 * doc/bison.texinfo (Decl Summary): Also mention that %union
11972 can depend on prerequisite types. Problem reported by Tim
11975 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
11977 * README: Mention GNU m4 1.4 bugs and Akim's patched version.
11978 * README-alpha: Don't tell people not to package this.
11980 * bootstrap: Don't assume $(...) works; use `...` instead.
11981 Problem reported by Paul Hilfinger. Also, diagnose non-GNU
11984 * doc/bison.texinfo (Decl Summary, Bison Options): Clarify what's
11985 put into the -d output file, and mention what to do if YYSTYPE is
11986 defined as a macro.
11988 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
11990 Undo change made earlier today: it caused autopoint to not bring
11991 in ABOUT-NLS. Ouch. Instead, substitute our own diagnostic for
11994 * bootstrap: Check that gettext version matches what's in
11995 configure.ac. Warn users to ignore robots.txt ERROR 404.
11996 * bootstrap: Undo today's earlier change (logged below).
11997 * configure.ac (AM_GNU_GETTEXT_VERSION): Likewise.
11999 The gettext version checking is causing more trouble than it's
12000 curing; remove it. Problem reported by Paul Hilfinger.
12002 * bootstrap: Issue a warning that one can expect a message
12003 'AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION'.
12004 * configure.ac (AM_GNU_GETTEXT_VERSION): Remove.
12006 2004-05-23 Paul Eggert <eggert@cs.ucla.edu>
12008 Ensure that the C++ compiler used for testing actually works on a
12009 simple test program; if not, skip the C++-related tests. Problem
12010 reported by Vin Shelton in:
12011 http://lists.gnu.org/archive/html/bug-bison/2004-05/msg00026.html
12013 * m4/cxx.m4: New file.
12014 * configure.ac (BISON_TEST_FOR_WORKING_CXX_COMPILER): Add.
12015 * tests/atlocal.in (BISON_CXX_WORKS): Add.
12016 * tests/local.at (AT_COMPILE_CXX): Use it.
12018 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12020 * data/glr.c (yylloc): Output this macro even if locations are not
12021 being generated, as the GLR parser needs it even in that case.
12022 Problem reported by Troy A. Johnson
12023 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=195946>.
12025 * configure.ac (AC_INIT): Update to 1.875e.
12027 2004-05-21 Paul Eggert <eggert@cs.ucla.edu>
12029 * NEWS: Version 1.875d.
12030 * configure.ac (AC_INIT): Likewise.
12031 * src/parse-gram.c, src/parse-gram.h: Regenerate with 1.875d.
12033 * configure.ac (--enable-gcc-warnings): Do not enable -Wshadow,
12034 -Wmissing-prototypes, or -Wstrict-prototypes for C++. The current
12035 lalr1.cc runs afoul of the first, and the last two are no longer
12036 supported by GCC 3.4.0.
12037 * README: Mention GNU m4 1.4 or later; mention m4 patches.
12038 * HACKING: Use ./bootstrap, not "make update" to import foreign files.
12040 2004-05-06 Paul Eggert <eggert@cs.ucla.edu>
12042 * src/muscle_tab.c (hash_muscle): Accept and return size_t, not
12043 unsigned int, for compatibility with latest gnulib hash module.
12044 * src/state.c (state_hash, state_hasher): Likewise.
12045 * src/symtab.c (hash_symbol, hash_symbol_hasher): Likewise.
12046 * src/uniqstr.c (hash_uniqstr): Likewise.
12048 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
12050 * NEWS: Unescaped newlines are no longer allowed in char & strings.
12052 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER,
12053 SC_CHARACTER,SC_STRING>): Reject unescaped newlines in
12054 character and string literals.
12055 (unexpected_end): New function.
12056 (unexpected_eof): Use it.
12057 (unexpected_newline): New function.
12058 (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>): Coalesce duplicate
12061 * NEWS: Document %expect-rr.
12063 * bootstrap (--gnulib-srcdir=*, --cvs-user=*):
12064 Fix typo by replacing $1 with $option.
12065 Remove more 'intl'-related files.
12066 Don't DEFUN AM_INTL_SUBDIR twice.
12068 * lib/.cvsignore: Add strndup.h. Remove memchr.c, memcmp.c,
12069 memrchr.c, strcasecmp.c, strchr.c, strrchr.c, strspn.c, strtol.c,
12071 * m4/.cvsignore: Add exitfail.m4, extensions.m4, gnulib.m4,
12072 hard-locale.m4, mbstate_t.m4, strerror_r.m4, strndup.m4,
12073 xstrndup.m4. Remove glibc21.m4, intdiv0.m4, inttypes-pri.m4,
12074 inttypes.m4, inttypes_h.m4, isc-posix.m4, lcmessage.m4,
12075 stdint_h.m4, uintmax_t.m4, ulonglong.m4.
12076 * src/.cvsignore: Add *.output.
12078 * src/parse-gram.y: Put copyright notice inside %{ %} so it
12079 gets copied to the output file.
12081 2004-04-28 Paul Eggert <eggert@twinsun.com>
12083 Get files from the gnulib and po repositories, instead of relying
12084 on them being in our CVS. Upgrade to latest versions of gnulib
12087 * Makefile.am (SUBDIRS): Remove m4; Automake now does m4.
12088 * bootstrap: Bootstrap from gnulib and po repositories.
12089 Much of this code was stolen from GNU diff and GNU tar's bootstrap.
12090 * README-cvs: Document these changes. Remove version numbers from
12091 mentions of build tools, since they change so often. Mention Flex.
12093 * configure.ac (AC_CONFIG_MACRO_DIR): Add, with m4 as arg.
12094 (gl_USE_SYSTEM_EXTENSIONS): Add.
12095 (AC_GNU_SOURCE, AC_AIX, AC_MINIX):
12096 Remove; no longer needed, as gl_USE_SYSTEM_EXTENSIONS
12098 (AC_ISC_POSIX): Remove; we no longer support this
12099 ancient OS, as it gets in the way of latest Autoconf & gnulib.
12100 (AC_HEADER_STDC): Remove: we now assume C89 or better.
12101 (AC_CHECK_HEADERS_ONCE): Use instead of AC_CHECK_HEADERS.
12102 Do not check for C89 headers, except for locale.h which is used
12103 by the Yacc library and must port to K&R hosts.
12104 (AC_CHECK_FUNCS_ONCE): Use instead of AC_CHECK_FUNCS.
12105 Do not check for C89 functions, except for setlocale which is
12106 used by the Yacc library.
12107 (AC_CHECK_DECLS, AC_REPLACE_FUNCS): Remove; no longer needed.
12108 (gl_DIRNAME, gl_ERROR, gl_FUNC_ALLOCA, gl_FUNC_MEMCHR,
12109 gl_FUNC_MEMRCHR, gl_FUNC_STPCPY, gl_FUNC_STRNLEN, gl_FUNC_STRTOL,
12110 gl_GETOPT, gl_HASH, gl_MBSWIDTH, gl_OBSTACK, gl_QUOTE,
12111 gl_QUOTEARG, gl_XALLOC, jm_FUNC_GLIBC_UNLOCKED_IO, jm_FUNC_MALLOC,
12112 AM_GNU_GETTEXT): Remove; now done by:
12113 (GNULIB_AUTOCONF_SNIPPET): Add. "bootstrap" builds this for us.
12114 (AC_CONFIG_FILES): Remove m4/Makefile, as Automake now does this
12117 * lib/Makefile.am: Include gnulib.mk, built for us by "bootstrap".
12118 (BUILT_SOURCES, EXTRA_DIST, MOSTLYCLEANFILES):
12119 Define to empty, as gnulib.mk will do the rest for us.
12120 ($(libbison_a_OBJECTS), stdbool.h): Remove, as gnulib.mk does this
12122 (libbison_a_SOURCES): Define to $(lib_SOURCES) now.
12123 (lib_SOURCES): New symbol, containing only the non-gnulib libs.
12125 * src/files.c: Include gnulib's xstrndup.h.
12127 * src/system.h (MALLOC): Use xnmalloc, for better overflow checking.
12128 (REALLOC): Use xnrealloc, for likewise.
12129 (xstrndup, stpcpy): Remove decls, as gnulib does this for us now.
12130 (strnlen, memrchr): Remove decls; functions no longer used.
12131 Include <stpcpy.h>.
12133 * config/depcomp, config/install-sh, lib/alloca.c, lib/argmatch.c,
12134 lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
12135 lib/error.c, lib/error.h, lib/getopt.c, lib/getopt.h,
12136 lib/getopt1.c, lib/gettext.h, lib/hash.c, lib/hash.h,
12137 lib/malloc.c, lib/mbswidth.c, lib/mbswidth.h, lib/memchr.c,
12138 lib/memcmp.c, lib/memrchr.c, lib/obstack.c, lib/obstack.h,
12139 lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h,
12140 lib/realloc.c, lib/stdbool_.h, lib/stpcpy.c, lib/strcasecmp.c,
12141 lib/strchr.c, lib/strncasecmp.c, lib/strnlen.c, lib/strrchr.c,
12142 lib/strspn.c, lib/strtol.c, lib/strtoul.c, lib/unlocked-io.h,
12143 lib/xalloc.h, lib/xmalloc.c, lib/xstrdup.c, lib/xstrndup.c,
12144 m4/Makefile.am, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
12145 m4/error.m4, m4/getopt.m4, m4/hash.m4, m4/malloc.m4,
12146 m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4, m4/memcmp.m4,
12147 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/prereq.m4,
12148 m4/quote.m4, m4/quotearg.m4, m4/realloc.m4, m4/stdbool.m4,
12149 m4/stpcpy.m4, m4/strnlen.m4, m4/strtol.m4, m4/strtoul.m4,
12150 m4/unlocked-io.m4, m4/xalloc.m4, po/LINGUAS, po/Makefile.in.in,
12151 po/Makevars, po/da.po, po/de.po, po/es.po, po/et.po, po/fr.po,
12152 po/hr.po, po/id.po, po/it.po, po/ja.po, po/ms.po, po/nl.po,
12153 po/pt_BR.po, po/ro.po, po/ru.po, po/sv.po, po/tr.po:
12154 Remove, as these files are now generated automatically
12155 by bootstrap or automake.
12157 * po/ChangeLog: Remove: all but one entry was a duplicate
12158 of this file, and I moved that 2000-11-02 entry here.
12160 * config/.cvsignore: Add Makefile, depcomp, install-sh.
12161 * lib/.cvsignore: Add alloca.c, alloca.h, alloca_.h, argmatch.c,
12162 argmatch.h, basename.c, dirname.c, dirname.h, error.c, error.h,
12163 exit.h, exitfail.c, exitfail.h, getopt.c, getopt.h, getopt1.c,
12164 getopt_int.h, gettext.h, gnulib.mk, hard-locale.c, hard-locale.h,
12165 hash.c, hash.h, malloc.c, mbswidth.c, mbswidth.h, memchr.c,
12166 memcmp.c, memrchr.c, obstack.c, obstack.h, quote.c, quote.h,
12167 quotearg.c, quotearg.h, realloc.c, stdbool_.h, stpcpy.c, stpcpy.h,
12168 strcasecmp.c, strchr.c, stripslash.c, strncasecmp.c, strndup.c,
12169 strnlen.c, strrchr.c, strspn.c, strtol.c, strtoul.c,
12170 unlocked-io.h, xalloc.h, xmalloc.c, xstrdup.c, xstrndup.c,
12172 * m4/.cvsignore: Remove Makefile, Makefile.in. Add alloca.m4,
12173 dirname.m4, dos.m4, error.m4, getopt.m4, hash.m4, mbrtowc.m4,
12174 mbswidth.m4, obstack.m4, onceonly.m4, quote.m4, quotearg.m4,
12175 stdbool.m4, stpcpy.m4, strnlen.m4, unlocked-io.m4, xalloc.m4.
12176 * po/.cvsignore: Add *.po, LINGUAS, Makefile.in.in, Makevars.
12177 * src/.cvsignore: Remove *_.c.
12180 * Makefile.maint (GZIP_ENV): Don't use --rsyncable if gzip doesn't
12181 support it. (The latest stable gzip doesn't.)
12183 2004-04-27 Paul Eggert <eggert@twinsun.com>
12185 * data/lalr1.cc (Parser::stos_) [! YYDEBUG]: Define even in this
12186 case, as stos_ is now used by destructors due to the 2004-02-09
12189 Remove more K&R C support.
12190 * lib/libiberty.y (PARAMS): Remove. All uses removed.
12191 * lib/subpipe.c (errno): Remove decl.
12192 Include <stdlib.h> unconditionally.
12193 (EXIT_FAILURE): Remove macro.
12194 * src/complain.c (vfprintf, strerror): Remove.
12195 * src/system.h: Include limits.h, stdlib.h, string.h, locale.h
12197 (EXIT_FAILURE, EXIT_SUCCESS, setlocale): Remove defns.
12198 Use latest Autoconf recommendations for including inttypes.h, stdint.h.
12199 (strchr, strspn, memchr): Remove decls.
12200 * tests/calc.at (_AT_DATA_CALC_Y): Include stdlib.h, string.h
12201 unconditionally. Do not declare perror.
12202 * tests/conflicts.at (%nonassoc and eof): Include stdlib.h
12205 * src/complain.c (_): Remove useless defn, as system.h defines this.
12207 * lib/bitset.h (__INT_TO_PTR): Remove; workaround no longer needed
12208 with latest obstack.h.
12209 * lib/ebitset.c (ebitset_elt_alloc): Don't bother to cast args
12210 to procedure types, as obstack.h now does that for us.
12211 * lib/lbitset.c (lbitset_elt_alloc): Likewise.
12213 * lib/subpipe.h [HAVE_SYS_TYPES_H]: Include <sys/types.h>,
12214 so that this include file can stand alone.
12215 * lib/subpipe.c: Do not include <sys/types.h>, as subpipe.h
12216 does this now. Include subpipe.h first after config.h, to
12217 test whether it can stand alone.
12219 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Don't
12220 declare yyerror when using lalr.cc, as GCC 3.4.0 warns about the
12221 unused declaration.
12223 * tests/synclines.at (%union synch line): Put a dummy member in
12224 the union, because empty unions aren't allowed in C. Caught
12227 2004-04-13 Jim Meyering <jim@meyering.net>
12229 * src/conflicts.c (conflicts_print): Correct format string typo:
12230 use `%%' to produce literal `%'. (trivial change)
12232 2004-03-30 Paul Eggert <eggert@twinsun.com>
12234 * src/getargs.c (version): Update copyright year to 2004.
12236 * data/c.m4 (b4_int_type): Use 'short int' rather than
12237 'short', and similarly for 'long', 'unsigned', etc.
12238 * data/glr.c (YYTRANSLATE, yyconfl, yySymbol, yyItemNum,
12239 yygetLRActions, yyprocessOneStack, yyrecoverSyntaxError,
12240 yy_yypstack, yydumpstack): Likewise.
12241 * data/lalr1.cc (user_token_number_max_, user_token_number_max_,
12242 translate_, seq_, [], pop, Slice, range_, operator+, operator+=):
12244 * data/yacc.c (b4_int_type, yyss, YYSTACK_BYTES, yysigned_char,
12245 yy_stack_print, yyparse): Likewise.
12246 * doc/bison.texinfo (Prologue, Multiple Types): Likewise.
12247 * lib/bbitset.h (bitset_word, BITSET_WORD_BITS): Likewise.
12248 * lib/bitset.c (bitset_print): Likewise.
12249 * lib/bitset_stats.c (bitste_log_histogram_print): Likewise.
12250 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
12251 * lib/bitsetv.c (bitsetv_dump): Likewise.
12252 * lib/ebitset.c (EBITSET_ELT_BITS, ebitset_elt_alloc): Likewise.
12253 * lib/lbitset.c (LBITSET_ELT_BITS, lbitset_elt_alloc, debug_lbitset):
12255 * src/LR0.c (allocate_itemsets): Likewise.
12256 * src/gram.h (rule_number, rule): Likewise.
12257 * src/lalr.h (goto_number): Likewise.
12258 * src/nullable.c (nullable_compute): Likewise.
12259 * src/output.c (prepare_rules): Likewise.
12260 * src/relation.c (relation_print, relation_digraph): Likewise.
12261 * src/relation.h (relation_node): Likewise.
12262 * src/state.h (state_number, transitions, errs, reductions,
12263 struct state): Likewise.
12264 * src/symtab.h (symbol_number, struct symbol): Likewise.
12265 * src/tables.c (vector_number, tally, action_number,
12266 default_goto, goto_actions): Likewise.
12267 * tests/existing.at (GNU Cim Grammar): Likewise.
12268 * tests/regression.at (Web2c Actions): Likewise.
12270 * src/output.c (muscle_insert_short_int_table): Renamed from
12271 muscle_insert_short_table. All uses changed.
12273 2004-03-25 Paul Hilfinger <hilfingr@tully.CS.Berkeley.EDU>
12275 * src/parse-gram.y: Define PERCENT_EXPECT_RR.
12276 (declaration): Replace expected_conflicts with expected_sr_conflicts.
12277 Add %expect-rr rule.
12279 * src/scan-gram.l: Recognize %expect-rr.
12281 * src/conflicts.h (expected_sr_conflicts): Rename from
12282 expected_conflicts.
12283 (expected_rr_conflicts): Declare.
12285 * src/conflicts.c (expected_sr_conflicts): Rename from
12286 expected_conflicts.
12287 (expected_rr_conflicts): Define.
12288 (conflicts_print): Check r/r conflicts against expected_rr_conflicts
12290 Use expected_sr_conflicts in place of expected_conflicts.
12291 Warn if expected_rr_conflicts used in non-GLR parser.
12293 * doc/bison.texinfo: Add documentation for %expect-rr.
12295 2004-03-08 Paul Eggert <eggert@gnu.org>
12297 Add support for hex token numbers. Suggested by Odd Arild Olsen in
12298 <http://lists.gnu.org/archive/html/bison-patches/2004-03/msg00000.html>.
12300 * NEWS: Document hexadecimal tokens, no NUL bytes, %destructor
12302 * doc/bison.texinfo (Token Decl): Add hexadecimal token numbers.
12303 * src/scan-gram.l (scan_integer): New function.
12305 (0[xX][0-9abcdefABCDEF]+): New pattern, to support hex numbers.
12306 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>, \\x[0-9abcdefABCDEF]+,
12307 handle_action_dollar, handle_action_at, convert_ucn_to_byte):
12308 Say "long int", not "long", for uniformity with GNU style.
12310 2004-02-25 Paul Eggert <eggert@twinsun.com>
12312 * tests/local.at (AT_COMPILE, AT_COMPILE_CXX): Ignore stdout from
12313 compilers. This fixes a problem with Intel's C++ compiler being
12314 chatty, reported by Guido Trentalancia in
12315 <http://lists.gnu.org/archive/html/bug-bison/2004-02/msg00030.html>.
12317 2004-02-09 Alexandre Duret-Lutz <adl@gnu.org>
12319 Support %destructor and merge error locations in lalr1.cc.
12321 * data/lalr1.cc (b4_cxx_destruct_def): New macro.
12322 (Parser::stos_): Define unconditionally.
12323 (Parser::destruct_): New method. Generate its body with
12324 b4_yydestruct_generate.
12325 (Parser::error_start_): New attribute.
12326 (Parser::parse) <yyerrlab, yyerrlab1>: Call destruct_ on erroneous
12327 token which are discarded.
12328 (Parser::parse) <yyerrlab, yyerrorlab, yyerrlab1>: Update
12329 error_start_ when erroneous token are discarded.
12330 (Parser::parse) <yyerrlab1>: Compute the location of the error
12331 token so that it covers all the discarded tokens.
12332 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Adjust so
12333 it can be called with `%skeleton "lalr1.cc"', and do that.
12335 2004-02-02 Paul Eggert <eggert@twinsun.com>
12337 * src/Makefile.am (AM_CPPFLAGS): New macro. It mentions
12338 $(top_srcdir)/lib and ../lib. This fixes a bug reported
12339 by Paul Hilfinger; the old INCLUDES value didn't mention ../lib.
12340 There's no need to mention top_builddir since Automake does that
12342 (INCLUDES): Remove, as Automake says it's obsolescent.
12343 Contents migrated into AM_CPPFLAGS as described above.
12344 * lib/Makefile.am (INCLUDES): Remove; obsolescent.
12346 2004-01-14 Paul Hilfinger <hilfingr@CS.Berkeley.EDU>
12348 * data/glr.c (yytokenName): Bullet-proof against YYEMPTY token.
12349 (yyreportSyntaxError): Handle case where lookahead token is
12352 2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12354 * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
12355 resulting parsers are compilable with C++.
12357 2003-12-23 Paul Eggert <eggert@twinsun.com>
12359 * config/depcomp, config/install-sh: Sync with Automake 1.8.
12360 * src/output.c (output_skeleton): Rename local var.
12361 * tests/input.at (Torturing the Scanner): Don't use \x0 or \0 in
12362 Bison tokens, as this runs afoul of the 2003-10-07 change that
12363 disallowed NUL bytes in character constants or string literals.
12365 * tests/local.at: Require Autoconf 2.59's Autotest.
12366 * tests/testsuite.at: Don't include local.at, since we now assume
12367 Autoconf 2.59 or later. Autoconf 2.59 had some problems with
12369 * tests/Makefile.am ($(TESTSUITE)): Remove warning about ignoring
12370 multiple inclusion warnings.
12372 2003-12-02 Akim Demaille <akim@epita.fr>
12374 * doc/bison.texinfo (How Can I Reset the Parser): More about start
12378 2003-11-18 Alexandre Duret-Lutz <adl@gnu.org>
12380 * doc/bison.texinfo (Bison Options): Escape `@' in `$@'.
12382 2003-10-07 Paul Eggert <eggert@twinsun.com>
12384 * tests/Makefile.am (clean-local): Don't run 'testsuite --clean'
12385 if testsuite doesn't exist.
12387 * doc/bison.texinfo (Symbols): NUL bytes are not allowed in string
12388 literals, unfortunately.
12389 * src/scan-gram.l (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>):
12390 Complain about NUL bytes in character constants or string literals.
12392 2003-10-05 Paul Eggert <eggert@twinsun.com>
12394 * NEWS: Don't document %no-default-prec, as it's still
12396 * doc/bison.texinfo: Document %no-default-prec only if
12397 the defaultprec flag is set. Normally it's not.
12399 2003-10-04 Paul Eggert <eggert@twinsun.com>
12401 * data/glr.c (b4_rhs_value, b4_rhs_location): Yield a
12402 non-modifiable lvalue, instead of a modifiable one.
12403 * doc/bison.texinfo (Actions): Document that $$ can
12404 be assigned to. Do not claim that $$ and $N are
12405 array element references: user code should not rely on this.
12407 2003-10-01 Paul Eggert <eggert@twinsun.com>
12409 * src/parse-gram.h (PERCENT_NO_DEFAULT_PREC): New token.
12410 (grammar_declaration): Use it.
12411 * src/scan-gram.l: New token %no-default-prec.
12412 * tests/conflicts.at: Revamp tests to use %no-default-prec.
12413 * NEWS, doc/bison.texinfo: Document the above.
12415 2003-10-01 Akim Demaille <akim@epita.fr>
12417 VCG no longer supports long_straight_phase.
12419 * src/vcg.c, src/vcg.h: Remove the handling of long_straight_phase.
12420 * src/print_graph.c (print_graph): Adjust.
12422 2003-09-30 Frank Heckenbach <frank@g-n-u.de>
12423 and Paul Eggert <eggert@twinsun.com>
12425 * doc/bison.texinfo (Decl Summary, Contextual Precedence,
12426 Table of Symbols): Document %default-prec.
12427 * src/parse-gram.y (PERCENT_DEFAULT_PREC): New token.
12428 (grammar_declaration): Set default_prec on %default-prec.
12429 * src/scan-gram.l (%default-prec): New token.
12430 * src/reader.h (default_prec): New flag.
12431 * src/reader.c: Likewise.
12432 (packgram): Handle it.
12433 * tests/conflicts.at (%default-prec without %prec,
12434 %default-prec with %prec, %default-prec 1): New tests.
12436 2003-09-30 Paul Eggert <eggert@twinsun.com>
12438 * tests/testsuite.at: Include local.at, not input.at, fixing
12439 a typo in the 2003-08-25 patch.
12441 2003-08-27 Akim Demaille <akim@epita.fr>
12443 * data/lalr1.cc (yyparse) [__GNUC__]: "Use" yyerrorlab to pacify
12446 2003-08-26 Akim Demaille <akim@epita.fr>
12448 * config/announce-gen (print_changelog_deltas): Neutralize "<#" as
12449 "<\#" to avoid magic from Gnus when posting parts of this script.
12451 2003-08-26 Akim Demaille <akim@epita.fr>
12453 * data/lalr1.cc (Parser::report_syntax_error_): New, extracted from
12454 (Parser::parse): here.
12455 Adjust: nerrs and errstatus is now replaced by...
12456 (Parser::nerrs_, Parser::errstatus_): New.
12458 2003-08-25 Akim Demaille <akim@epita.fr>
12460 * config/announce-gen, Makefile.cfg: New.
12461 * Makefile.am: Adjust.
12462 * GNUmakefile, Makefile.maint: Update from CVS Autoconf, but
12463 keeping local WGET and WGETFLAGS modifications from Paul Eggert.
12465 2003-08-25 Akim Demaille <akim@epita.fr>
12467 When reducing initial empty rules, Bison parser read an initial
12468 location that is not defined. This results in garbage, and that
12469 affects Bison's own parser. Therefore we need (i) to extend Bison
12470 to support a means to initialize this location, and (ii) to use
12471 this CVS Bison to fix CVS Bison's parser.
12473 * src/reader.h, reader.c (epilogue_augment): Remove, replace
12475 * src/muscle_tab.h, src/muscle_tab.c (muscle_code_grow): this.
12476 * src/parse-gram.y: Adjust.
12477 (%initial-action): New.
12478 (%error-verbose): Since we require CVS Bison, there is no reason
12480 * src/scan-gram.l: Adjust.
12481 * src/Makefile.am (YACC): New, to make sure we use our own parser.
12482 * data/yacc.c (yyparse): Use b4_initial_action.
12484 2003-08-25 Akim Demaille <akim@epita.fr>
12486 * doc/bison.texinfo: Don't promote stdout for error messages.
12488 2003-08-25 Akim Demaille <akim@epita.fr>
12490 * data/lalr1.cc (Parser::reduce_print_): Remove unused yyi.
12491 From Alexandre Duret-Lutz.
12493 2003-08-25 Akim Demaille <akim@epita.fr>
12497 2003-08-25 Akim Demaille <akim@epita.fr>
12499 * data/lalr1.cc (Parser::stack_print_, YY_STACK_PRINT): New.
12502 2003-08-25 Akim Demaille <akim@epita.fr>
12504 * data/lalr1.cc (Parser::reduce_print_): New.
12507 2003-08-25 Akim Demaille <akim@epita.fr>
12509 Have lalr1.cc catch with Paul Eggert's patch to fix the infinite
12510 error recovery loops. This patch is based on
12511 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00000.html>.
12512 Also, augment the similarity between lalr1.cc and yacc.c.
12513 Note: the locations of error recovery rules are not correct yet.
12515 * data/lalr1.cc: Comment changes to augment the similarity between
12516 lalr1.cc and yacc.c.
12517 (YYERROR): Goto to yyerrorlab, not yyerrlab1.
12518 (yyerrlab1): Remove, but where it used to be (now the bottom part of
12519 yyerrlab), when hitting EOF, pop the whole stack here instead of
12520 merely falling thru the default error handling mechanism.
12521 (yyerrorlab): New label, with the old contents of YYERROR,
12522 plus the following change: pop the stack of rhs corresponding
12523 to the production that invoked YYERROR. That is how Yacc
12524 behaves (required by POSIX).
12525 * tests/calc.at (AT_CHECK_CALC_LALR1_CC): No longer expected to
12528 2003-08-25 Akim Demaille <akim@epita.fr>
12530 Tune local.at so that people can "autom4te -l autotest calc.at -o
12531 calc" for instance, to extract a sub test suite.
12533 * tests/testsuite.at: Move the initialization, Autotest version
12534 requirement, and AT_TESTED invocation into...
12535 * tests/local.at: here.
12536 * tests/testsuite.at: Include it for compatibility with Autoconf
12538 * tests/Makefile.am ($(TESTSUITE)): Report that the warning should
12541 2003-08-04 Paul Eggert <eggert@twinsun.com>
12543 Rework code slightly to avoid gcc -Wtraditional warnings.
12544 * data/glr.c (yyuserMerge): Return void, not YYSTYPE.
12545 The returned value is now stored in *YY0. All callers changed.
12546 * src/output.c (merge_output): Adjust to the above change.
12548 2003-07-26 Paul Eggert <eggert@twinsun.com>
12550 * data/glr.c (YYASSERT): New macro.
12551 (yyfillin, yydoAction, yyglrReduce, yysplitStack,
12552 yyresolveStates, yyprocessOneStack):
12553 Use `YYASSERT (FOO);' rather than `if (! (FOO)) abort ();'.
12554 Derived from a suggestion by Frank Heckenbach.
12556 2003-07-25 Paul Eggert <eggert@twinsun.com>
12558 * data/glr.c (yyglrReduce): Don't use C89 string concatenation,
12559 for portability to K&R C (after ansi2knr, presumably). See
12560 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>
12561 by Frank Heckenbach, though I have omitted the structure-initialization
12562 part of his glr-knr.diff patch since I recall that the Portable
12563 C Compiler didn't require that change.
12565 Let the user specify how to allocate and free memory.
12566 Derived from a suggestion by Frank Heckenbach in
12567 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00041.html>.
12568 * data/glr.c (YYFREE, YYMALLOC, YYREALLOC): New macros.
12569 All uses of free, malloc, realloc changed to use these macros,
12570 and unnecessary casts removed.
12571 * data/yacc.c (YYFREE, YYMALLOC): Likewise.
12573 2003-07-06 Matthias Mann <MatthiasMann@gmx.de>
12575 * data/lalr1.cc (operator<<(std::ostream&, const Position&)):
12576 use s.empty() rather than s == "" to test for empty string; see
12577 <http://lists.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
12580 2003-06-25 Akim Demaille <akim@epita.fr>
12582 * config/depcomp, config/install-sh: Update from masters.
12584 2003-06-20 Paul Eggert <eggert@twinsun.com>
12586 * data/glr.c (YYLLOC_DEFAULT): Parenthesize arguments as needed,
12587 and return properly parenthesized result.
12588 * data/lalar1.cc (YYLLOC_DEFAULT): Likewise.
12589 * data/yacc.c (YYLLOC_DEFAULT): Likewise.
12590 Remove unnecessary parentheses from uses.
12591 * doc/bison.texinfo (Location Default Action): Describe the
12592 conventions for parentheses.
12594 2003-06-19 Paul Eggert <eggert@twinsun.com>
12596 * data/glr.c (yyremoveDeletes, yy_reduce_print, yyglrReduce,
12597 yyreportTree): Do not assume that size_t is the same width as int,
12598 when printing sizes. Print sizes using an unsigned format.
12599 Problem reported by Frank Heckenbach in
12600 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00035.html>.
12602 Port to Forte Developer 7 C compiler.
12603 * data/glr.c (struct YYLTYPE): If locations are not being used,
12604 declare a single dummy member, as empty structs do not conform
12606 (YYERROR, YYBACKUP): Do not use "do { ...; return foo; } while (0)";
12607 the Forte Developer 7 C compiler complains that end-of-loop
12608 code is not reached.
12610 2003-06-17 Paul Eggert <eggert@twinsun.com>
12612 * lib/libiberty.h (PARAMS): Spell argument as Args, not as X, to
12613 avoid warnings from picky compilers about redefinition of PARAMS.
12615 2003-06-17 Paul Eggert <eggert@twinsun.com>
12619 * NEWS: Document 1.875b.
12621 * lib/bbitset.h: Do not include config.h; that's the includer's job.
12622 Do not include <sys/types.h>; shouldn't be needed on a C89 host.
12623 * lib/bitset.h (bitset_compatible_p): Indent as per GNU standard.
12624 Don't use 'index' in comments, as it's a builtin fn on some hosts.
12625 * lib/bitset_stats.c: Include gettext.h unconditionally, as
12626 per recent gettext manual's suggestion.
12627 * lib/ebitset.c (ebitset_resize, ebitset_unused_clear):
12628 Use prototypes, not old-style definitions.
12629 * lib/lbitset.c (lbitset_unused_clear): Likewise.
12630 * lib/vbitset.c (vbitset_resize, vbitset_ones, vbitset_zero,
12631 vbitset_empty_p, vbitset_copy1, vbitset_not, vbitset_equal_p,
12632 vbitset_subset_p, vbitset_disjoint_p, vbitset_and, vbitset_and_cmp,
12633 vbitset_andn, vbitset_andn_cmp, vbitset_or, vbitset_or_cmp,
12634 vbitset_xor, vbitset_xor_cmp, vbitset_and_or, vbitset_and_or_cmp,
12635 vbitset_andn_or, vbitset_andn_or_cmp, vbitset_or_and,
12636 vbitset_or_and_cmp, vbitset_copy): Likewise.
12638 * lib/libiberty.h: Do not include config.h; that's the includer's job.
12639 Do not include <stdlib.h>.
12640 (PARAMS): Define unconditionally for C89.
12641 (ATTRIBUTE_NORETURN): Remove.
12642 (ATTRIBUTE_UNUSED): Define unconditionally.
12644 Upgrade to 2003-06-08 libbitset, submitted by Michael Hayes in:
12645 <http://lists.gnu.org/archive/html/bison-patches/2003-06/msg00005.html>
12646 * lib/Makefile.am (bitsets_sources): Add vbitset.c, vbitset.h.
12647 * lib/vbitset.c, lib/vbitset.h: New files.
12648 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
12649 lib/bitset_stats.c, lib/ebitset.c, lib/lbitset.c: Import
12652 * doc/bison.texinfo (How Can I Reset the Parser): Renamed from
12653 `How Can I Reset @code{yyparse}', since texinfo does not allow
12654 arbitrary @ in node names.
12656 * m4/Makefile.am (EXTRA_DIST): Add the following files, which
12657 shouldn't be needed according to the gettext 0.12.1 documentation
12658 but which seem to be needed anyway: codeset.m4 glibc21.m4
12659 intdiv0.m4 inttypes-pri.m4 inttypes.m4 inttypes_h.m4 isc-posix.m4
12660 lcmessage.m4 nls.m4 po.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4.
12661 * po/Makefile.in.in: Upgrade to gettext 0.12.1 version.
12663 * lib/.cvsignore: Add stdbool.h.
12664 * m4/.cvsignore: Add nls.m4, po.m4.
12666 Upgrade to CVS gnulib.
12667 * stdbool_.h: File renamed from stdbool.h.in.
12668 * configure.ac (AM_STDBOOL_H): Invoke this instead of
12670 (AM_GNU_GETTEXT): Put brackets around args, as latest manual suggests.
12671 (AM_GNU_GETTEXT_VERSION): Update to 0.12.1.
12672 * lib/Makefile.am (EXTRA_DIST): Add stdbool_.h.
12673 (MOSTLYCLEANFILES): New var.
12674 ($(libbison_a_OBJECTS)): Depend on $(STDBOOL_H).
12675 (stdbool.h): New rule.
12676 * lib/dirname.c, lib/dirname.h, lib/hash.c, lib/hash.h,
12677 lib/malloc.c, lib/obstack.h, lib/quote.c, lib/realloc.c,
12678 lib/strcasecmp.c, lib/xalloc.h, m4/alloca.m4, m4/onceonly.m4,
12679 m4/quote.m4: Upgrade to today's gnulib.
12681 * tests/calc.at (AT_CHECK_CALC): New option EXPECTED-TO-FAIL.
12682 (AT_CHECK_CALC_LALR1_CC): Use it, since the C++ LALR parser fails
12683 the tests right now.
12684 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Ensure yylex and
12685 yyerror are declared before use; C99 requires this.
12687 2003-06-09 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
12689 * data/glr.c (YYERROR): Update definition to reset yyerrState to 0
12691 (yyrecoverSyntaxError): Correct the logic for setting and testing
12693 Correct comment on handling EOF.
12694 Allow states with only a default reduction, rather than failing
12695 (I can't quite reconstruct why these were not allowed before).
12697 Fixes to avoid problem that $-N rules in GLR parsers can cause
12698 buffer overruns, corrupting state.
12700 * src/output.c (prepare_rules): Output max_left_semantic_context
12702 * src/reader.h (max_left_semantic_context): New variable declaration.
12703 * src/scan-gram.l (max_left_semantic_context): Define.
12704 (handle_action_dollar): Update max_left_semantic_context.
12705 * data/glr.c (YYMAXLEFT): New definition.
12706 (yydoAction): Increase size of yyrhsVals by YYMAXLEFT.
12707 (yyresolveAction): Ditto.
12709 Fixes to problems with location handling in GLR parsers reported by
12710 Frank Heckenbach (2003/06/05).
12712 * data/glr.c (YYLTYPE): Make trivial if locations not used.
12713 (YYRHSLOC): Add parentheses, and define only if locations used.
12714 (YYLLOC_DEFAULT): Add parentheses, and give trivial definition if
12715 locations not used.
12716 (yyuserAction): Use YYLLOC_DEFAULT to set *yylocp.
12717 (yydoAction): Remove redundant initialization of *yyvalp and *yylocp.
12719 * tests/cxx-type.at: Exercise location information; update tests
12720 to differentiate output with and without locations.
12721 Remove forward declarations of yylex and yyerror---caused errors
12722 because default YYLTYPE not yet defined.
12723 Change semantic actions to compute strings, rather than printing
12724 them directly (to test proper passing of semantics values). Change
12725 output to prefix notation and update test data and expected results.
12726 (yylex): Track locations.
12727 (stmtMerge): Return value rather than printing, and include arguments
12730 2003-06-03 Paul Eggert <eggert@twinsun.com>
12732 Avoid warnings generated by GCC 2.95.4 when Bison is
12733 configured with --enable-gcc-warnings.
12734 * data/lalr1.cc (yy::]b4_parser_class_name[::parse,
12735 yy::]b4_parser_class_name[::translate_,
12736 yy::Stack::operator[] (unsigned),
12737 yy::Stack::operator[] (unsigned) const,
12738 yy::Slice::operator[] (unsigned),
12739 yy::Slice::operator[] (unsigned) const):
12740 Rename local vars to avoid warnings.
12741 * tests/glr-regression.at (Improper handling of embedded actions
12742 and $-N in GLR parsers): Remove unused local variable from yylex.
12743 * tests/regression.at (_AT_DATA_DANCER_Y): Declare yylex to take
12744 (void) as arg when not pure, since we now assume C89 when building
12745 Bison. Pacify GCC by using parameter.
12747 2003-06-02 Paul Eggert <eggert@twinsun.com>
12749 * data/lalr1.cc (yy::Position::lines, yy::Position::columns,
12750 yy::Location::lines, yy::Location::columns): Rename arguments
12751 to avoid shadowing; this removes a warning generated by GCC 3.3.
12753 2003-06-01 Paul Eggert <eggert@twinsun.com>
12755 Don't pass C-only warning optins (e.g., -Wmissing-declarations)
12756 to g++, as GCC 3.3 complains if you do it.
12757 * configure.ac (WARNING_CXXFLAGS): New subst. Set it to
12758 everything that WARNING_CFLAGS has, except omit warnings
12759 not suitable for C++.
12760 (AC_PROG_CXX): Use this instead of AC_CHECK_PROGS([CXX], [g++]).
12761 * tests/atlocal.in (CXXFLAGS): New var.
12762 * tests/local.at (AT_COMPILE_CXX): Use it instead of CFLAGS.
12764 Fix a GLR parser bug I reported in February; see
12765 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00008.html>.
12766 The problem was that GLR parsers did not conform to the C standard,
12767 because actions like { $1 = $2 + $3; } expanded to expressions
12768 that invoked YYFILL in separate subexpressions, and YYFILL assigned
12769 to a local variable. The C standard says that expressions
12770 like (var = f ()) + (var = f ()) have undefined behavior.
12771 Another problem was that GCC sometimes issues warnings that
12772 yyfill and its parameters are unused.
12774 * data/glr.c (yyfillin): Renamed from the old yyfill. Mark
12775 as possibly unused.
12776 (yyfill): New function.
12778 (yyuserAction): Change type of yynormal to bool, so that it matches
12779 the new yyfill signature. Mark it as possibly unused.
12782 Follow up on a bug I reported in February, where a Bison-generated
12783 parser can loop. Provide a test case and a fix for yacc.c. I
12784 don't have a fix for lalr1.cc or for glr.c, unfortunately.
12785 The original bug report is in:
12786 <http://lists.gnu.org/archive/html/bison-patches/2003-02/msg00044.html>
12788 * data/yacc.c (YYERROR): Now just 'goto yyerrorlab', since the
12789 macro's size was becoming unwieldy.
12790 (yyerrlab): Do not discard an empty lookahead symbol, as this
12791 might destroy garbage.
12792 (yyerrorlab): New label, with the old contents of YYERROR,
12793 plus the following change: pop the stack of rhs corresponding
12794 to the production that invoked YYERROR. That is how Yacc
12795 behaves, and POSIX requires this behavior.
12796 (yyerrlab1): Use YYPOPSTACK instead of its definiens.
12797 * tests/calc.at (_AT_DATA_CALC_Y): Include unistd.h if available.
12798 Define 'alarm' to do nothing if unistd.h is not available.
12799 Add a new rule "exp: '-' error;" to test the above change to
12800 data/yacc.c. Use 'alarm' to abort any test taking longer than
12801 10 seconds, as it's probably looping.
12802 (AT_CHECK_CALC): Test recovery from error in new grammar rule.
12803 Also, the new yacc.c generates two fewer diagnostics for an
12806 2003-05-24 Paul Eggert <eggert@twinsun.com>
12808 * data/glr.c (YYSTACKEXPANDABLE): Do not evaluate
12809 YYSTYPE_IS_TRIVIAL or YYSTYPE_IS_TRIVIAL unless they are defined.
12810 This fixes a problem reported by John Bowman when the Compaq/HP
12811 Alpha cxx compiler happy (e.g. using cxx -D__USE_STD_IOSTREAM
12812 -ansi -Wall -gall).
12813 * data/yacc.c (union yyalloc): Likewise.
12814 (YYCOPY): Do not evaluate __GNUC__ unless it is defined.
12816 Switch from 'int' to 'bool' where that makes sense.
12818 * lib/abitset.c (abitset_test, abitset_empty_p, abitset_equal_p,
12819 abitset_subset_p, abitset_disjoint_p, abitset_and_cmp,
12820 abitset_andn_cmp, abitset_or_cmp, abitset_xor_cmp, abitset_and_or,
12821 abitset_and_or_cmp, abitset_andn_or_cmp, abitset_or_and_cmp):
12822 Return or accept bool, not int. All callers changed.
12823 * lib/bbitset.h: (bitset_toggle_, bitset_copy_, bitset_and_or_cmp_,
12824 bitset_andn_or_cmp_, bitset_or_and_cmp_): Likewise.
12825 * lib/bitset.c (bitset_only_set_p, bitset_print, bitset_toggle_,
12826 bitset_copy_, bitset_op4_cmp, bitset_and_or_cmp_, bitset_andn_or_cmp_,
12827 bitset_or_and_cmp_): Likewise.
12828 * lib/bitset.h (bitset_test, bitset_only_set_p): Likewise.
12829 * lib/bitset_stats.c (bitset_stats_print, bitset_stats_toggle,
12830 bitset_stats_test, bitset_stats_empty_p, bitset_stats_disjoint_p,
12831 bitset_stats_equal_p, bitset_stats_subset_p, bitset_stats_and_cmp,
12832 bitset_stats_andn_cmp, bitset_stats_or_cmp, bitset_stats_xor_cmp,
12833 bitset_stats_and_or_cmp, bitset_stats_andn_or_cmp,
12834 bitset_stats_or_and_cmp): Likewise.
12835 * lib/ebitset.c (ebitset_elt_zero_p, ebitset_equal_p, ebitset_copy_cmp,
12836 ebitset_test, ebitset_empty_p, ebitset_subset_p, ebitset_disjoint_p,
12837 ebitset_op3_cmp, ebitset_and_cmp, ebitset_andn_cmp, ebitset_or_cmp,
12838 ebitset_xor_cmp): Likewise.
12839 * lib/lbitset.c (lbitset_elt_zero_p, lbitset_equal_p, lbitset_copy_cmp,
12840 lbitset_test, lbitset_empty_p, lbitset_subset_p, lbitset_disjoint_p,
12841 lbitset_op3_cmp, lbitset_and_cmp, lbitset_andn_cmp, lbitset_or_cmp,
12842 lbitset_xor_cmp): Likewise.
12843 * lib/bbitset.h: Include <stdbool.h>.
12844 (struct bitset_vtable): The following members now return bool, not
12845 int: toggle, test, empty_p, disjoint_p, equal_p, subset_p,
12846 and_cmp, andn_cmp, or_cmp, xor_cmp, and_or_cmp, andn_or_cmp,
12848 * src/conflicts.c (count_rr_conflicts): Likewise.
12849 * lib/bitset_stats.h (bitset_stats_enabled): Now bool, not int.
12851 * lib/ebitset.c (ebitset_obstack_init): Likewise.
12852 * lib/lbitset.c (lbitset_obstack_init): Likewise.
12853 * src/getargs.c (debug_flag, defines_flag, locations_flag,
12854 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12855 graph_flag): Likewise.
12856 * src/getargs.h (debug_flag, defines_flag, locations_flag,
12857 no_lines_flag, no_parser_flag, token_table_flag, yacc_flag,
12858 graph_flag): Likewise.
12859 * src/output.c (error_verbose): Likewise.
12860 * src/output.h (error_verbose): Likewise.
12861 * src/reader.c (start_flag, typed): Likewise.
12862 * src/reader.h (typed): Likewise.
12863 * src/getargs.c (LOCATIONS_OPTION): New constant.
12864 (long_options, getargs): Use it.
12865 * src/lalr.c (build_relations): Use bool, not int.
12866 * src/nullable.c (nullable_compute): Likewise.
12867 * src/print.c (print_reductions): Likewise.
12868 * src/tables.c (action_row, pack_vector): Likewise.
12869 * src/muscle_tab.h (MUSCLE_INSERT_BOOL): New macro.
12870 * src/output.c (prepare): Use it.
12871 * src/output.c (token_definitions_output,
12872 symbol_destructors_output, symbol_destructors_output): Use string,
12873 not boolean integer, to keep track of whether to output separator.
12874 * src/print_graph.c (print_core): Likewise.
12875 * src/state.c (state_rule_lookaheads_print): Likewise.
12877 * config/install-sh: Sync from automake 1.7.5.
12879 2003-05-14 Paul Eggert <eggert@twinsun.com>
12881 * src/parse-gram.y (rules_or_grammar_declaration): Require a
12882 semicolon after a grammar declaration, in the interest of possible
12883 future changes to the Bison input language.
12884 Do not allow a stray semicolon at the start of the grammar.
12885 (rhses.1): Allow one or more semicolons after any rule, including
12886 just before "|" as required by POSIX.
12887 * tests/input.at (Torturing the Scanner): Add tests for ";|" in a
12890 2003-05-14 Alexandre Duret-Lutz <adl@gnu.org>
12892 %parse-param support for lalr1.cc.
12894 * data/lalr1.cc (b4_parse_param_decl, b4_parse_param_cons,
12895 b4_cc_constructor_calls, b4_cc_constructor_call,
12896 b4_parse_param_vars, b4_cc_var_decls, b4_cc_var_decl): New m4
12898 (yy::b4_parser_class_name::b4_parser_class_name): Take extra
12899 parse-param arguments.
12900 (yy::b4_parser_class_name): Declare instance variables to
12901 hold parse-param arguments.
12902 * tests/calc.at: s/value/semantic_value/ because value clashes
12903 with a member of yy::b4_parser_class_name. Adjust C++ code
12904 to handle %parse-param. Enable %parse-param test in C++.
12906 2003-05-12 Paul Eggert <eggert@twinsun.com>
12908 * doc/bison.texinfo (How Can I Reset @code{yyparse}): Reword the
12909 English a bit. Fix fclose typo. Change "const char" to "char
12910 const", and use ANSI C rather than K&R for "main". Suggest
12911 YY_FLUSH_BUFFER over yyrestart (as that is what Flex recommends)
12912 and suggest yy_switch_to_buffer.
12914 2003-05-05 Paul Eggert <eggert@twinsun.com>
12916 * lib/bitset.h (__INT_TO_PTR): Define to a value that presumes
12917 C89. This avoids a diagnostic on compilers that define __STDC__
12918 to 0, fixing a problem with Tru64 cc reported by Martin Mokrejs in
12919 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
12921 2003-05-03 Paul Eggert <eggert@twinsun.com>
12923 * lib/bitset.h (BITSET_FOR_EACH, BITSET_FOR_EACH_REVERSE):
12924 Do not overrun array bounds.
12925 This should fix a bug reported today by Olatunji Oluwabukunmi in
12926 <http://lists.gnu.org/archive/html/bug-bison/2003-05/msg00004.html>.
12928 2003-04-29 Akim Demaille <akim@epita.fr>
12930 * src/gram.h, src/gram.c (pure_parser, glr_parser): Move to...
12931 * src/getargs.c, src/getargs.h: here, as bool, not int.
12932 (nondeterministic_parser): New.
12933 * src/parse-gram.y, src/scan-gram.l: Support
12934 %nondeterministic-parser.
12935 * src/output.c (prepare): Use nondeterministic_parser instead
12936 of glr_parser where appropriate.
12937 * src/tables.c (conflict_row, action_row, save_row)
12938 (token_actions, token_actions, pack_vector): Ditto.
12940 2003-04-29 Akim Demaille <akim@epita.fr>
12942 * doc/bison.texinfo (C++ Parsers, Implementing Loops): New.
12944 2003-04-29 Akim Demaille <akim@epita.fr>
12946 * tests/calc.at: Also test yacc.c and glr.c (but not lalr1.cc yet)
12947 with %pure-parser and %locations to exercise the patch from Yakov
12950 2003-04-28 Tim Van Holder <tim.van.holder@pandora.be>
12952 * data/yacc.c: (b4_lex_param): Corrected for the case where
12953 %lex-param is provided and %pure-parser isn't.
12955 2003-04-27 Paul Eggert <eggert@twinsun.com>
12957 Avoid gcc -Wundef warnings reported by Gerald Pfeifer in
12958 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00044.html>.
12959 * data/yacc.c (YYSTACK_ALLOC): Don't evaluate YYSTACK_USE_ALLOCA
12960 if it is not defined.
12961 (YYMAXDEPTH): Don't evaluate YYMAXDEPTH if it is not defined.
12963 2003-04-26 Paul Eggert <eggert@twinsun.com>
12965 * data/lalr1.cc (yy::Parser::pact_ninf_, yy::Parser::table_ninf_):
12966 Declare to be of type suitable for the ninf value itself, not of
12967 type suitable for the corresponding table, since the latter might
12968 be unsigned but the ninf value might be negative. This fixes a
12969 bug reported by Alexandre Duret-Lutz in
12970 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00017.html>.
12972 * configure.ac (AC_FUNC_ERROR_AT_LINE): Remove, since gl_ERROR
12973 invokes it. We shouldn't invoke it twice because it will attempt
12974 to put error.o in the archive twice. This fixes a glitch reported
12975 by Martin Mokrejs in
12976 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00041.html>.
12978 2003-04-21 Paul Eggert <eggert@twinsun.com>
12980 * m4/error.m4: Update from Bruno Haible's 2003-04-14 patch
12983 2003-04-21 Yakov Markovitch <Markovitch@iso.ru>
12985 * data/glr.c (yyexpandGLRStack) [!YYSTACKEXPANDABLE]:
12986 Fix obvious typo that results in uncompilable GLR parsers
12987 when both %pure-parser and %locations are used. (trivial change)
12989 2003-04-17 Paul Eggert <eggert@twinsun.com>
12991 * src/scan-gram.l: Add %option nounput, since we no longer use unput.
12992 (unexpected_eof): Renamed from unexpected_end_of_file, for brevity.
12993 Do not insert the expected token via unput, as this runs afoul
12994 of a POSIX-compatibility bug in flex 2.5.31.
12995 All uses changed to BEGIN the parent state,
12996 since we no longer insert the expected token via unput.
12997 * tests/regression.at (Invalid inputs): Remove cascaded diagnostic
12998 that is no longer emitted after the above change.
13000 * src/conflicts.c (set_conflicts): Resolve all conflicts, not just
13001 the first one. This change is from Paul Hilfinger, and it fixes
13002 regression reported by Werner Lemberg in
13003 <http://lists.gnu.org/archive/html/bug-bison/2003-04/msg00026.html>.
13005 (resolve_sr_conflict): Don't invoke state_errs_set
13006 unless one or more tokens have been explicitly made errors.
13007 Otherwise, the above change causes Bison to abort.
13009 * tests/existing.at (GNU pic Grammar): New test case, taken from
13012 2003-03-31 Akim Demaille <akim@epita.fr>
13014 * doc/Makefile.am (AM_MAKEINFOFLAGS): Don't split the info file.
13016 2003-03-31 Akim Demaille <akim@epita.fr>
13018 * src/output.c (prepare_symbols): Avoid trailing spaces in the
13021 2003-03-31 Akim Demaille <akim@epita.fr>
13023 * doc/bison.texinfo (Strings are Destroyed): s/losses/loses/.
13024 From Paul Hilfinger.
13026 2003-03-29 Akim Demaille <akim@epita.fr>
13028 * m4/error.m4: Do not put under dynamic conditions some code which
13029 expansion is under static control.
13031 2003-03-29 Akim Demaille <akim@epita.fr>
13033 * doc/bison.texinfo (How Can I Reset @code{yyparse}): New.
13035 2003-03-29 Akim Demaille <akim@epita.fr>
13037 * doc/bison.texinfo (Strings are Destroyed): New.
13039 2003-03-13 Paul Eggert <eggert@twinsun.com>
13041 * .cvsignore: Add configure.lineno.
13042 * src/.cvsignore: Add yacc.
13043 * tests/.cvsignore: Add testsuite.log.
13044 * doc/fdl.texi: Sync with latest FSF version.
13046 2003-03-12 Paul Eggert <eggert@twinsun.com>
13048 * scan-gram.l (YY_USER_INIT): Initialize code_start, too.
13049 (<INITIAL><<EOF>>, <SC_PRE_CODE><<EOF>>): Set *loc to the scanner
13050 cursor, instead of leaving it undefined. This fixes a bug
13051 reported by Tim Van Holder in
13052 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00023.html>.
13053 * tests/input.at (Torturing the Scanner): Test the scanner on
13054 an empty input file, which was Tim Van Holder's test case.
13056 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): When checking whether
13057 <sys/resource.h> can be included, include sys/time.h and
13058 sys/times.h first, if available. This works around the SunOS
13059 4.1.4 porting bug reported by Bruce Becker in
13060 <http://lists.gnu.org/archive/html/bug-bison/2003-03/msg00018.html>.
13062 * m4/subpipe.m4 (BISON_PREREQ_SUBPIPE): Don't
13063 AC_CHECK_HEADERS([sys/wait.h]), as this interferes with
13064 AC_HEADER_SYS_WAIT.
13066 Merge changes from gnulib. This was prompted because the CVS
13067 snapshot didn't build on Solaris 7 due to strnlen problems.
13069 These changes need to be merged back into gnulib:
13070 * lib/hash.c: Include <stdbool.h> unconditionally.
13071 * m4/onceonly.m4 (m4_quote): New macro.
13072 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
13073 Quote AC_FOREACH variable-expansions properly.
13074 The 2003-01-03 obstack.h change also needs merging.
13075 {end of changes requiring merging}
13077 * lib/stdbool.h.in, m4/alloca.m4, m4/dirname.m4, m4/dos.m4,
13078 m4/getopt.m4, m4/hash.m4, m4/malloc.m4, m4/memchr.m4,
13079 m4/memrchr.m4, m4/obstack.m4, m4/onceonly.m4, m4/quote.m4,
13080 m4/quotearg.m4, m4/realloc.m4, m4/stpcpy.m4, m4/strnlen.m4,
13081 m4/strtol.m4, m4/strtoul.m4, m4/unlocked-io.m4, m4/xalloc.m4:
13082 New files, imported from gnulib.
13083 * m4/Makefile.am (EXTRA_DIST): Add the new m4/*.m4 files mentioned
13086 * lib/mbswidth.c, m4/error.m4, m4/mbrtowc.m4, m4/mbswidth.m4,
13087 m4/memcmp.m4, m4/prereq.m4, m4/stdbool.m4: Update to current
13090 * configure.ac (gl_DIRNAME, gl_GETOPT, gl_HASH, gl_QUOTE, gl_XALLOC):
13092 (gl_ERROR): New, replacing jm_PREREQ_ERROR.
13093 (gl_FUNC_ALLOCA): New, replacing AC_FUNC_ALLOCA.
13094 (gl_FUNC_STPCPY): New, replacing AC_REPLACE_FUNCS(stpcpy).
13095 (gl_FUNC_STRNLEN): New, replacing AC_FUNC_STRNLEN.
13096 (gl_MBSWIDTH): New, replacing jm_PREREQ_MBSWIDTH.
13097 (gl_OBSTACK): New, replacing AC_FUNC_OBSTACK.
13098 (gl_QUOTEARG): New, replacing jm_PREREQ_QUOTEARG.
13099 (jm_FUNC_GLIBC_UNLOCKED_IO, gl_FUNC_STPCPY, gl_FUNC_STRTOL): New.
13100 (jm_FUNC_MALLOC): New, replacing AC_FUNC_MALLOC.
13101 (jm_FUNC_REALLOC): New, replacing AC_FUNC_REALLOC.
13102 (jm_PREREQ_ARGMATCH): Remove.
13103 (AC_REPLACE_FUNCS): Remove memchr, memrchr, stpcpy, strtol, strtoul.
13104 * lib/Makefile.am (libbison_a_SOURCES): Add argmatch.c, argmatch.h.
13106 * src/system.h: Include <stdbool.h> unconditionally.
13108 * lib/bbitset.h: Include <limits.h> unconditionally. We have been
13109 assuming at least C89 in the bitset code for some time now.
13111 2003-03-03 Akim Demaille <akim@epita.fr>
13115 2003-03-02 Akim Demaille <akim@epita.fr>
13117 * doc/bison.texinfo (Table of Symbols): Reactivate the
13118 documentation for %lex-param, and %parse-param.
13120 2003-03-02 Akim Demaille <akim@epita.fr>
13122 * data/yacc.c, data/glr.c, data/lal1.cc: Use similar code to
13123 generate verbose error messages.
13124 Use the number of tokens as an upper bound in yytname, as it
13125 cannot be a non terminal.
13127 2003-03-02 Akim Demaille <akim@epita.fr>
13129 * tests/regression.at (_AT_DATA_DANCER_Y): Fix the expected error
13132 2003-03-02 Akim Demaille <akim@epita.fr>
13134 * tests/regression.at (_AT_DATA_DANCER_Y, AT_CHECK_DANCER): New.
13135 Use them to exercise yycheck overrun.
13136 Based on Andrew Suffield's grammar.
13138 2003-03-02 Akim Demaille <akim@epita.fr>
13140 Create tests/local.at for Bison generic testing macros.
13142 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Move to...
13143 * tests/local.at (AT_BISON_OPTION_PUSHDEFS, AT_BISON_OPTION_POPDEFS):
13145 * tests/calc.at (AT_CHECK_CALC): Adjust.
13146 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR)
13147 (AT_COMPILE, AT_COMPILE_CXX, AT_PARSER_CHECK): Move to...
13148 * tests/local.at: here.
13149 (AT_COMPILE_CXX): Tags the tests using it as c++.
13150 Ignore the test if CXX is not functional.
13152 2003-03-01 Paul Eggert <eggert@twinsun.com>
13154 * src/scan-gram.l (code_start): Initialize it to scanner_cursor,
13155 not loc->end, since loc->end might contain garbage and this leads
13156 to undefined behavior on some platforms.
13157 (id_loc, token_start): Use (IF_LINTed) initial values that do not
13158 depend on *loc, so that the reader doesn't give the the false
13159 impression that *loc is initialized.
13160 (<INITIAL>"%%"): Do not bother setting code_start, since its value
13161 does not survive the return.
13163 2003-03-01 Akim Demaille <akim@epita.fr>
13165 * src/scan-gram.l (code_start): Always initialize it when entering
13166 into yylex, as SC_EPILOGUE is activated *before* the corresponding
13167 yylex invocation. An alternative would be making it static, but
13168 then it starts with the second %%'s beginning, instead of its end.
13170 2003-02-28 Paul Eggert <eggert@twinsun.com>
13172 * lib/mbswidth.c: Include <wchar.h> before "mbswidth.h", to work
13173 around a UnixWare 7.1.1 porting bug reported by John Hughes in
13174 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00030.html>.
13176 2003-02-26 Paul Eggert <eggert@twinsun.com>
13178 * README: Mention compiler bug in Sun Forte Developer 6 update 2.
13179 Remove Sequent/Pyramid discussion (nobody uses them any more).
13180 Merge VMS and MS-DOS discussion; these ports may well be dead
13181 but let's keep mentioning them for now. Put <> around email
13182 addresses. Add copyright notice.
13184 2003-02-24 Paul Eggert <eggert@twinsun.com>
13186 * data/glr.c (yy_reduce_print): yylineno -> yylno,
13187 to avoid collision with flex use of yylineno.
13188 Problem reported by Bruce Lilly in
13189 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00016.html>.
13190 * data/lalr1.cc (yy::]b4_parser_class_name[::parse): Likewise.
13191 * data/yacc.c (yy_reduce_print): Likewise.
13193 * config/depcomp: Sync with Automake 1.7.3.
13195 2003-02-21 Akim Demaille <akim@epita.fr>
13197 * data/lalr1.cc: Use temporary variables instead of casts to
13198 change integer types.
13199 Suggested by Paul Eggert.
13201 2003-02-21 Akim Demaille <akim@epita.fr>
13203 * doc/bison.texinfo: Use "location" consistently to refer to @n,
13204 to avoid confusions with lalr1.cc's notion of Position.
13205 Suggested by Paul Eggert.
13207 2003-02-20 Akim Demaille <akim@epita.fr>
13209 * data/lalr1.cc (position.hh): Make sure "columns" never pushes
13210 before initial_columns.
13211 (location.hh): Use consistent variable names when defining the
13213 Use "last" so that we subtract from Positions, not from unsigned.
13215 2003-02-20 Akim Demaille <akim@epita.fr>
13217 * data/lalr1.cc (position.hh): New subfile, including the extended
13218 and Doxygen'ed documentation of class Position.
13219 (location.hh): Use it.
13220 Document a` la Doxygen.
13221 With the help of Benoit Perrot.
13223 2003-02-20 Akim Demaille <akim@epita.fr>
13225 * tests/calc.at (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): Define
13227 Redefine AT_YYERROR_SEES_LOC_IF using it.
13228 (_AT_DATA_CALC_Y): Don't declare yyerror when lalr1.cc, as it is
13230 Don't use the location in yy::Parser::error_ and
13231 yy::Parser::print_ when not %locations.
13232 Activate more lalr1.cc tests.
13234 2003-02-19 Akim Demaille <akim@epita.fr>
13236 * data/lalr1.cc: When displaying a line number, be sure to make it
13239 2003-02-19 Akim Demaille <akim@epita.fr>
13241 * data/lalr1.cc (b4_stack_depth_init, yy::Parser::initdepth_):
13243 (YYABORT, YYACCEPT, YYERROR): New.
13244 * tests/calc.at: Renable the lalr1.cc test.
13246 2003-02-19 Akim Demaille <akim@epita.fr>
13248 * tests/calc.at (AT_CHECK_CALC): Check different scenarios of
13249 error recovery, mixing with/without pops and discarding of the
13252 Disable the lalr1.cc tests as currently it doesn't support YYERROR.
13254 2003-02-17 Paul Eggert <eggert@twinsun.com>
13256 * tests/atlocal.in (LDFLAGS, LIBS): New vars.
13257 * tests/testsuite.at (AT_COMPILE): Use them.
13258 This fixes the testsuite problem reported by Robert Lentz in
13259 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00011.html>.
13261 2003-02-12 Paul Eggert <eggert@twinsun.com>
13263 * data/yacc.c (yyerrlab) [YYERROR_VERBOSE]:
13264 Avoid subscript error in yycheck. Bug reported by Andrew Suffield in
13265 <http://lists.gnu.org/archive/html/bug-bison/2003-02/msg00003.html>.
13266 * data/glr.c (yyreportSyntaxError) [YYERROR_VERBOSE]: Likewise.
13267 Check for malloc failure, for consistency with yacc.c.
13268 (yytname_size): Remove, for consistency with yacc.c.
13270 The bug still remains in data/lalr1.cc, as I didn't have time
13273 2003-02-06 Akim Demaille <akim@epita.fr>
13275 * configure.ac (GXX): Rename as...
13276 (CXX): this, to keep the original Autoconf semantics.
13278 * data/lalr1.cc: Fix b4_copyright invocations.
13279 If YYDEBUG is not defined, don't depend upon name_ being defined.
13280 (location.hh): Include string and iostream.
13281 (Position::filename): New member.
13282 (Position::Position ()): New.
13283 (operator<< (Position)): New.
13284 (operator- (Position, int)): New.
13285 (Location::first, Location::last): Rename as...
13286 (Location::begin, Location::end): these, to mock the conventional
13288 (operator<< (Location)): New.
13289 * tests/atlocal.in (CXX): New.
13290 * tests/testsuite.at (AT_COMPILE_CXX): New.
13291 * tests/calc.at (_AT_DATA_CALC_Y): Adjust yyerror to report the
13292 locations in a more synthetic way.
13293 (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF is positive if
13295 Adjust the C locations to match those from Emacs: first column is
13297 Change all the expected results.
13298 Conform to the GCS: simplify the locations when applicable.
13299 (LOC, VAL, YYLLOC_FORMAL, YYLLOC_ARG, USE_YYLLOC, LEX_FORMALS)
13300 (LEX_ARGS, USE_LEX_ARGS, LEX_PRE_FORMALS, LEX_PRE_ARGS): Replace
13301 these CPP macros with the m4 macros new defined by...
13302 (AT_CHECK_PUSHDEFS): this, i.e.:
13303 (AT_LALR1_CC_IF, AT_PURE_LEX_IF, AT_LOC, AT_VAL, AT_LEX_FORMALS)
13304 (AT_LEX_ARGS, AT_USE_LEX_ARGS, AT_LEX_PRE_FORMALS, AT_LEX_PRE_ARGS)
13306 (AT_CHECK_POPDEFS): Undefine them.
13307 (AT_CHECK_CALC_LALR1_CC): New.
13308 Use it for the first lalr1.cc test.
13310 2003-02-04 Akim Demaille <akim@epita.fr>
13312 * data/lalr1.cc (YYLLOC_DEFAULT): Fix its definition: be based on
13313 Location as is defined.
13315 2003-02-04 Akim Demaille <akim@epita.fr>
13317 * data/lalr1.cc: If YYDEBUG is not defined, don't depend upon
13318 name_ being defined.
13320 2003-02-03 Paul Eggert <eggert@twinsun.com>
13322 * src/gram.h (start_symbol): Remove unused decl.
13324 Use more-consistent naming conventions for local vars.
13326 * src/derives.c (derives_compute): Change type of local var from
13327 int to rule_number.
13328 * src/gram.c (grammar_rules_partial_print): Likewise.
13329 * src/print.c (print_core): Likewise.
13330 * src/reduce.c (reduce_grammar_tables): Likewise.
13332 * src/gram.c (grammar_dump): Change name of item_number *
13333 local var from r to rp.
13334 * src/nullable.c (nullable_compute): Likewise.
13336 * src/gram.h (ISTOKEN, ISVAR): Use i, not s, for int var.
13338 * src/gram.h (symbol_number_as_item_number): Use sym, not s,
13339 for symbol or symbol_number var.
13340 * src/reader.c (grammar_start_symbol_set): Likewise.
13341 * src/reader.h (grammar_start_symbol_set, grammar_symbol_append):
13343 * src/state.c (transitions_to): Likewise.
13344 * src/state.h: Likewise.
13345 * src/tables.c (symbol_number_to_vector_number): Likewise.
13347 * src/muscle_tab.h (MUSCLE_OBSTACK_SGROW): Use p, not s, for
13350 * src/parse-gram.y (lloc_default): Use loc, not r, for YYLTYPE
13353 * src/scan-gram.l (no_cr_read): Use bytes_read, not s, for size
13356 * src/system.h (xstrndup, strchr, strspn, strnlen, memchr, memrchr):
13357 Use str, not s, for char * var. Use ch, not c, for character var.
13358 Use size for size var.
13360 * src/uniqstr.c (uniqstr_new, uniqstr_assert): Use str, not s, for
13362 (uniqstr_print, uniqst_print_processor): Use ustr, not s, for
13364 * src/uniqstr.h: Likewise.
13366 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
13367 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
13368 get_node_alignment_str, get_arrow_mode_str, get_crossing_type_str,
13369 get_view_str, get_linestyle_str, get_arrowstyle_str): Rename
13370 param to have same name as that of enum, so that we don't use
13371 "s" to stand for a non-state.
13373 2003-02-02 Akim Demaille <akim@epita.fr>
13375 * src/scan-skel.l: Scan more than one inert character per yylex
13378 2003-02-01 Paul Eggert <eggert@twinsun.com>
13382 * po/LINGUAS: Add ms.
13384 2003-01-30 Akim Demaille <akim@epita.fr>
13386 * doc/Makefile.am (CLEANFILES): Add bison.fns for distcheck.
13388 2003-01-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
13390 * tests/cxx-type.at: Correct apparent typo in Bison input: $$ instead
13393 Changes in response to error report by S. Eken: GLR mode does not
13394 handle negative $ indices or $ indices in embedded rules correctly.
13395 See <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00076.html>.
13397 * data/glr.c (b4_rhs_value): Change to use YYFILL macro.
13398 (b4_rhs_location): Ditto.
13399 (yyfill): New function to copy from stack tree into array
13401 (yyuserAction): Modify to allow incremental move of semantic values
13402 to rhs array when in GLR mode.
13403 Define YYFILL to use in user-defined actions to fill semantic array
13405 Remove dummy use of yystack, as there is now a guaranteed use.
13406 (yydoAction): Modify to allow incremental move of semantic values
13407 to rhs array when in GLR mode.
13408 (yyresolveAction): Ditto.
13409 (yyglrShiftDefer): Update comment.
13410 (yyresolveStates): Use X == NULL for pointers, not !X.
13411 (yyglrReduce): Ditto.
13412 (yydoAction): Ditto
13414 * tests/glr-regr1.at: Rename to ...
13415 * tests/glr-regression.at: Add new regression test for the problems
13416 described above (adapted from S. Eken).
13417 Update copyright notice.
13418 * tests/testsuite.at: Rename glr-regr1.at to glr-regression.at.
13419 * tests/Makefile.am: Ditto.
13421 2003-01-28 Paul Eggert <eggert@twinsun.com>
13423 * data/lalr1.cc: Do not use @output_header_name@ unless
13424 b4_defines_flag is set. This fixes two bugs reported by
13426 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00071.html>
13427 and <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00073.html>.
13429 2003-01-21 Paul Eggert <eggert@twinsun.com>
13431 * data/yacc.c (YYERROR): Move code from yyerrlab1 to here, so that
13432 we don't need to worry about yyerrlab1 being reported as an
13433 "unused label" by non-GCC C compilers. The downside is that if
13434 locations are used then a couple of statements are duplicated each
13435 time YYERROR is invoked, but the upside is that the warnings
13437 (yyerrlab1): Move code to YERROR.
13438 (yyerrlab2): Remove. Change uses back to yyerrlab1.
13439 This reverts some of the 2002-12-27 change.
13441 2003-01-17 Paul Eggert <eggert@twinsun.com>
13443 * src/output.c (symbol_printers_output): Fix typo that led
13444 to core dump. Problem reported by Antonio Rus in
13445 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00058.html>.
13447 2003-01-13 Akim Demaille <akim@epita.fr>,
13448 Quoc Peyrot <chojin@lrde.epita.fr>,
13449 Robert Anisko <anisko_r@lrde.epita.fr>
13451 * data/lalr1.cc (parse::yyerrlab1): When popping the stack, stop
13452 when the stacks contain one element, as the loop would otherwise
13453 free the last state, and then use the top state (the one we just
13454 popped). This means that the initial elements will not be freed
13455 explicitly, as is the case in yacc.c; it is not a problem, as
13456 these elements have fake values.
13458 2003-01-11 Paul Eggert <eggert@twinsun.com>
13460 * NEWS: %expect-violations are now just warnings, reverting
13461 to Bison 1.30 and 1.75 behavior. This fixes the GCC 3.2
13462 bootstrapping problem reported by Matthias Klose; see
13463 <http://lists.gnu.org/archive/html/bug-bison/2003-01/msg00053.html>.
13464 * src/conflicts.c (conflicts_print): Likewise.
13465 * tests/conflicts.at (%expect not enough, %expect too much,
13466 %expect with reduce conflicts): Likewise.
13467 * doc/bison.texinfo (Expect Decl): Document this. Also mention
13468 that the warning is enabled if the number of conflicts changes
13469 (not necessarily increases).
13471 * src/getargs.c (version): Update copyright year.
13473 2003-01-09 Akim Demaille <akim@epita.fr>
13475 * src/Makefile.am, lib/Makefile.am: Use $(VAR) instead of @VAR@.
13477 2003-01-08 Paul Eggert <eggert@twinsun.com>
13479 * Makefile.maint (WGETFLAGS):
13480 New macro, containing "-C off" to disable proxy caches.
13481 All uses of $(WGET) changed to $(WGET) $(WGETFLAGS).
13482 (rel-check): Use $(WGET) instead of wget.
13484 2003-01-06 Paul Eggert <eggert@twinsun.com>
13486 * doc/bison.texinfo (Generalized LR Parsing): Add a reference to
13487 the GLR paper of Scott, Johnstone and Hussain.
13489 2003-01-04 Paul Eggert <eggert@twinsun.com>
13491 * configure.ac (AC_ARG_ENABLE): Add --disable-yacc.
13492 (YACC_SCRIPT, YACC_LIBRARY): New vars to AC_SUBST.
13493 * lib/Makefile.am (lib_LIBRARIES): liby.a -> @YACC_LIBRARY@.
13494 (EXTRA_LIBRARIES): New var, for liby.a.
13495 * src/Makefile.am (bin_SCRIPTS): yacc -> @YACC_SCRIPT@.
13496 (EXTRA_SCRIPTS): New var, for yacc.
13498 * data/yacc.c (yyerrlab1): Omit attribute if __cplusplus is defined,
13499 since GNU C++ (as of 3.2.1) does not allow attributes on labels.
13500 Problem reported by Nelson H. F. Beebe.
13502 2003-01-03 Paul Eggert <eggert@twinsun.com>
13504 * lib/obstack.h (__INT_TO_PTR) [__STDC__]: Cast result to
13505 (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
13506 when compiling Bison 1.875's `bitset bset = obstack_alloc
13507 (bobstack, bytes);'. Problem reported by Nelson H. F. Beebe.
13509 * src/scan-skel.l (QPUTS): Omit redundant `;' from macro definition.
13510 ([^@\n]): Renamed from [^@\n]+ so that the token buffer does not
13511 grow to a huge size with typical invocation.
13513 * lib/hash.c (_Bool, bool, false, true, __bool_true_false_are_defined):
13514 Use the pattern recommended by Autoconf 2.57, except also protect
13515 against double-definition.
13516 * src/system.h: Likewise.
13517 Portability issues reported by Nelson H. F. Beebe.
13519 * data/glr.c (yybool): Renamed from bool, to avoid collisions in C.
13520 All uses changed. Provide a definition in both C and C++.
13521 (yytrue, yyfalse): Define even if defined (__cplusplus).
13523 * lib/bitset_stats.c (bitset_stats_list): Remove unused var.
13524 Reported by Nelson H. F. Beebe.
13526 * src/scan-skel.l ("@oline@"): Output lineno+1, not lineno.
13528 2003-01-02 Paul Eggert <eggert@twinsun.com>
13530 * data/yacc.c (yyerrlab1): Append `;' after attribute, to
13531 pacify the buggy "smart preprocessor" in MacOS 10.2.3.
13532 Bug reported by Nelson H. F. Beebe.
13534 2003-01-01 Paul Eggert <eggert@twinsun.com>
13538 2002-12-30 Paul Eggert <eggert@twinsun.com>
13540 * src/scan-gram.l (<INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>","):
13542 (<INITIAL>","): Here. This causes stray "," to be treated
13545 * src/scan-gram.l (<SC_BRACED_CODE>"}"): Output ";" before the
13546 last brace in braced code when not in Yacc mode, for compatibility
13547 with Bison 1.35. This resurrects the 2001-12-15 patch to
13550 * src/reader.h (YYDECL): Use YYSTYPE, not its deprecated alias
13551 yystype. This follows up the 2002-12-24 YYSTYPE bug fix.
13553 2002-12-28 Paul Eggert <eggert@twinsun.com>
13555 * src/symtab.c (symbol_make_alias): Set type of SYMVAL to be
13556 that of SYM's type. This fixes Debian bug 168069, reported by
13559 2002-12-28 Paul Eggert <eggert@twinsun.com>
13563 Switch back to the Yacc style of conflict reports, undoing some
13564 of the 2002-07-30 change.
13565 * doc/bison.texinfo (Understanding): Use Yacc style for
13566 conflict reports. Also, use new way of locating rules.
13567 * src/conflicts.c (conflict_report):
13568 Renamed from conflict_report_yacc, removing the old
13569 'conflict_report'. Translate the entire conflict report at once,
13570 so that we don't assume that "," has the same interpretation in
13572 (conflicts_output): Use Yacc-style conflict report for each state,
13573 instead of our more-complicated style.
13574 (conflicts_print): Use Yacc-style conflict report, except print
13575 the input file name when not emulating Yacc.
13576 * tests/conflicts.at (Unresolved SR Conflicts, Defaulted
13577 Conflicted Reduction, %expect not enough, %expect too much,
13578 %expect with reduce conflicts): Switch to Yacc-style conflict reports.
13579 * tests/existing.at (GNU Cim Grammar): Likewise.
13580 * tests/glr-regr1.at (Badly Collapsed GLR States): Likewise.
13582 * src/complain.c (warn_at, warn, complain_at, complain, fatal_at,
13583 fatal): Don't invoke fflush; it's not needed and it might even be
13584 harmful for stdout, as stdout might not be open.
13585 * src/reduce.c (reduce_print): Likewise.
13587 2002-12-27 Paul Eggert <eggert@twinsun.com>
13589 Fix a bug where error locations were not being recorded correctly.
13590 This problem was originally reported by Paul Hilfinger in
13591 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00086.html>.
13593 * data/yacc.c (yyparse): New local var yylerrsp, to record the
13594 top of the location stack's error locations.
13595 (yyerrlab): Set it. When discarding a token, push its location
13596 onto yylerrsp so that we don't lose track of the error's end.
13597 (yyerrlab1): Now is only the target of YYERROR, so that we can
13598 properly record the location of the action that failed. For GCC
13599 2.93 and later, insert an __attribute__ ((__unused__)) to avoid
13600 GCC warning about yyerrlab1 being unused if YYERROR is unused.
13601 (yyerrlab2): New label, which yyerrlab now falls through to.
13602 Compute the error's location by applying YYLLOC_DEFAULT to
13603 the locations of all the symbols that went into the error.
13604 * doc/bison.texinfo (Location Default Action): Mention that
13605 YYLLOC_DEFAULT is also invoked for syntax errors.
13606 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR):
13607 Error locations include the locations of all the tokens that were
13608 discarded, not just the last token.
13610 2002-12-26 Paul Eggert <eggert@twinsun.com>
13612 * src/files.c: Include quote.h.
13613 (compute_output_file_names): Warn if we detect conflicting
13614 outputs to the same file. This should catch the misunderstanding
13615 exemplified by Debian Bug 165349, reported by Bruce Stephens..
13617 * src/conflicts.c (conflicts_print): If the user specifies
13618 "%expect N", report an error if there are any reduce/reduce
13619 conflicts. This is what the manual says should happen.
13620 This fixes Debian bug 130890, reported by Anthony DeRobertis.
13621 * tests/conflicts.at (%expect with reduce conflicts): New test.
13623 Don't use m4_include on relative file names, as it doesn't work as
13624 desired if there happens to be a file with that name under ".".
13626 * m4sugar/version.m4: Remove; it was included but it wasn't used.
13627 * data/Makefile.am (dist_m4sugar_DATA): Remove m4sugar/version.m4.
13628 * data/m4sugar/m4sugar.m4: Don't include m4sugar/version.m4.
13629 * data/glr.c, data/lalr1.cc, data/yacc.c: Don't include c.m4.
13630 * src/output.c (output_skeleton): Use full path names when
13631 specifying a file to include; don't rely on include path, as
13632 it's unreliable when the working file contains a file with
13635 2002-12-25 Paul Eggert <eggert@twinsun.com>
13637 Remove obsolete references to bison.simple and bison.hairy.
13638 Problem mentioned by Aubin Mahe in
13639 <http://lists.gnu.org/archive/html/help-bison/2002-12/msg00010.html>.
13640 * data/glr.c: Comment fix.
13641 * doc/bison.1: Remove references. Also, mention "yacc".
13643 * src/getargs.c (getargs) [MSDOS]: Don't assume optarg != NULL
13646 * src/parse-gram.y (declaration): Use enum "report_states" rather
13647 than its numeric value 1.
13649 * src/scan-skel.l ("@output ".*\n): Close any old yyout before
13650 opening a new one. This fixes Debian bug 165349, reported by
13653 2002-12-24 Paul Eggert <eggert@twinsun.com>
13657 * Makefile.maint (cvs-update): Don't assume that the shell
13658 supports $(...), as Solaris sh doesn't.
13660 * src/parse-gram.y (lloc_default): Remove test for empty
13661 nonterminals at the end, since it didn't change the result.
13663 2002-12-24 Paul Eggert <eggert@twinsun.com>
13665 If the user does not define YYSTYPE as a macro, Bison now declares it
13666 using typedef instead of defining it as a macro. POSIX requires this.
13667 For consistency, YYLTYPE is also declared instead of defined.
13669 %union directives can now have a tag before the `{', e.g., the
13670 directive `%union foo {...}' now generates the C code
13671 `typedef union foo { ... } YYSTYPE;'; this is for Yacc compatibility.
13672 The default union tag is `YYSTYPE', for compatibility with Solaris 9
13673 Yacc. For consistency, YYLTYPE's struct tag is now `YYLTYPE'
13674 instead of `yyltype'.
13676 `yystype' and `yyltype' are now obsolescent macros instead of being
13677 typedefs or tags; they are no longer documented and will be
13678 withdrawn in a future release.
13680 * data/glr.c (b4_location_type): Remove.
13681 (YYSTYPE): Renamed from yystype.
13682 (YYSTYPE_IS_DECLARED): New macro, used to prevent double-typedef.
13683 (struct YYLTYPE): Renamed from struct yyltype.
13684 (YYLTYPE): Renamed from yyltype.
13685 (yyltype, yystype): New (and obsolescent) macros,
13686 for backward compatibility.
13687 * data/yacc.c: Likewise.
13689 * data/yacc.c (YYSTYPE): Declare as union YYSTYPE if the user
13690 does not specify a union tag. This is for compatibility with
13693 * src/parse-gram.y (add_param): 2nd arg is now char * not char
13694 const *, since it is now modified by stripping surrounding { }.
13695 (current_braced_code): Remove.
13696 (PERCENT_DESTRUCTOR, PERCENT_PRINTER, PERCENT_UNION,
13697 PERCENT_LEX_PARAM, PERCENT_PARSE_PARAM): Change names to include
13698 trailing " {...}". Now of type <chars>.
13699 (grammar_declaration): Adjust to bundled tokens.
13700 (code_content): Remove; stripping is now done by add_param.
13701 (print_token_value): Print contents of bundled tokens.
13702 (token_name): New function.
13704 * src/reader.h (braced_code, current_braced_code): Remove.
13705 (token_name): New decl.
13707 * src/scan-gram.l (handle_dollar, handle_at): Now takes int
13708 token_type, not braced_code code_kind. All uses changed.
13709 (SC_PRE_CODE): New state, for scanning after a keyword that
13710 has (or usually has) an immediately-following braced code.
13711 (token_type): New local var, to keep track of which token type
13712 to return when scanning braced code.
13713 (<INITIAL>"%destructor", <INITIAL>"%lex-param",
13714 <INITIAL>"%parse-param", <INITIAL>"%printer",
13715 <INITIAL>"%union"): Set token type and BEGIN SC_PRE_CODE
13716 instead of returning a token type immediately.
13717 (<INITIAL>"{"): Set token type.
13718 (<SC_BRACED_CODE>"}"): Use it.
13719 (handle_action_dollar, handle_action_at): Now returns bool
13720 indicating success. Fail if ! current_rule; this prevents a core dump.
13721 (handle_symbol_code_dollar, handle_symbol_code_at):
13722 Remove; merge body into caller.
13723 (handle_dollar, handle_at): Complain in invalid contexts.
13725 * NEWS, doc/bison.texinfo: Document the above.
13726 * NEWS: Fix years and program names in copyright notice.
13728 2002-12-17 Paul Eggert <eggert@twinsun.com>
13730 * NEWS, doc/bison.texinfo (Parser Function, Pure Calling, Error
13731 Reporting, Table of Symbols): Omit mentions of %lex-param and
13732 %parse-param from the documentation for now.
13734 2002-12-15 Paul Eggert <eggert@twinsun.com>
13736 Undo most of the 2002-11-12 yychar -> yytoken patch, as it broke
13737 GCC 3.2.1 (which depends on yychar == YYEMPTY when there is no
13738 lookahead symbol, and which sets yychar in parser actions) and it
13739 disagreed with the Bison documentation. Bug
13740 reported by Andrew Walrond.
13742 * data/yacc.c (YYTRANSLATE): Don't check for negative argument,
13743 as the caller now does that.
13744 (yyclearin, YYBACKUP, yyparse): Use yychar, not yytoken.
13745 (YYEMPTY): Parenthesize right hand side, since others use it.
13746 (yyparse): Don't assume that our generated code is the only code
13749 2002-12-13 Paul Eggert <eggert@twinsun.com>
13753 POSIX requires a "yacc" command.
13754 * src/Makefile.am (bin_SCRIPTS): New macro, for yacc.
13755 (MOSTLYCLEANFILES): Add yacc.
13757 * doc/bison.texinfo (Invocation, Bison Options): Mention yacc
13758 as an alias for bison y.
13760 * po/LINGUAS: Add da.
13762 * src/getargs.c (__GNU_LIBRARY__) [lint]: Define to work around
13763 problem with latest <getopt.h>.
13764 (HACK_FOR___GNU_LIBRARY___PROTOTYPE): New macro.
13766 * doc/fdl.texi: Upgrade to 1.2.
13767 * lib/alloca.c, lib/error.c, lib/getopt.c, lib/getopt.h
13768 lib/getopt1.c, lib/gettext.h, lib/memrchr.c, lib/obstack.c,
13769 lib/obstack.h, lib/strnlen.c, lib/unlocked-io.h: Sync with
13771 * config/install-sh: Sync with autotools.
13773 Fix a bad interaction with flex 2.5.23 reported by Bruce Lilly in
13774 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
13775 * data/yacc.c (YYLTYPE, struct yyltype): Do not define unless
13776 locations are requested.
13777 (union yyalloc): Do not depend on YYLTYPE_IS_TRIVIAL unless
13778 locations are requested.
13780 2002-12-12 Paul Eggert <eggert@twinsun.com>
13782 Remove unportable casts and storage allocation tricks.
13783 While we're at it, remove almost all casts, since they
13784 usually aren't needed and are a sign of trouble.
13786 * configure.ac (AC_CHECK_TYPES): Check for uintptr_t.
13788 * src/derives.c (derives_compute): Do not subtract NTOKENS from
13789 the pointer DSET returned by malloc; this isn't portable.
13790 Instead, always use DSET[i - NTOKENS] rather than DSET[i].
13791 Similarly for DERIVES.
13792 * src/lalr.c (set_goto_map): Likewise, for GOTO_MAP and TEMP_MAP.
13793 * src/nullable.c (nullable_compute): Likewise, for RSETS and NULLABLE.
13794 * src/reduce.c (reduce_grammar_tables): Likewise, for nontermmap
13796 * src/derives.c (derives_compute): Do not bother invoking
13797 int_of_rule_number, since rule numbers are integers.
13799 * src/files.c (concat2, tr, compute_base_name): Use xmalloc (N)
13800 rather than XMALLOC (char, N).
13802 * src/files.c (filename_split): Rewrite to avoid cast.
13804 * src/gram.h (symbol_number_as_item_number,
13805 item_number_as_symbol_number, rule_number_as_item_number,
13806 item_number_as_rule_number):
13807 Now inline functions rather than macros, to avoid casts.
13808 * src/state.h (state_number_as_int): Likewise.
13809 * src/tables.c (state_number_to_vector_number,
13810 symbol_number_to_vector_number): Likewise.
13812 * src/gram.h (int_of_rule_number): Remove; no longer used.
13814 * src/lalr.c (add_lookback_edge): Use malloc rather than calloc,
13815 since the resulting storage is always stored into.
13817 * src/main.c (alloca) [C_ALLOCA]: Add decl here, the only place
13820 * src/muscle_tab.c (muscle_m4_output):
13821 Now inline. Return bool, not int.
13822 * src/state.c (state_compare): Likewise.
13823 * src/symtab.c (symbol_check_defined,
13824 symbol_check_alias_consistency, symbol_pack, symbol_translation,
13825 hash_compare_symbol, hash_symbol):
13827 * src/uniqstr.c (uniqstr_print): Likewise.
13828 * src/muscle_tab.c (muscle_m4_output_processor):
13829 New function, to avoid casts.
13830 * src/state.c (state_comparator, stage_hasher): Likewise.
13831 * src/symtab.c (symbol_check_defined_processor,
13832 symbol_check_alias_consistency_processor, symbol_pack_processor,
13833 symbol_translation_processor, hash_symbol_comparator,
13834 hash_symbol_hasher): Likewise.
13835 * src/uniqstr.c (uniqstr_print_processor): Likewise.
13836 * src/muscle_tab.c (muscles_m4_output):
13837 Use new functions instead of casting old functions unportably.
13838 * src/state.c (state_hash_new): Likewise.
13839 * src/symtab.c (symbols_new, symbols_do, symbols_check_defined,
13840 symbols_token_translations_init):
13842 * src/uniqstr.c (uniqstrs_new, hash_initialize, uniqstrs_do): Likewise.
13844 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): Use long local
13845 var instead of casting to long, to avoid casts.
13846 (prepare_states): Use MALLOC rather than alloca, so that we don't
13847 have to worry about alloca.
13848 * src/state.c (state_hash_lookup): Likewise.
13850 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>"'"): Use unsigned char
13851 local var instead of casting to unsigned char, to avoid casts.
13853 * src/state.c (TRANSITIONS_ALLOC, ERRS_ALLOC, REDUCTIONS_ALLOC,
13854 STATE_ALLOC): Remove.
13855 (transitions_new, errs_new, reductions_new, state_new): Use malloc
13856 rather than calloc, and use offsetof to avoid allocating slightly
13858 (state_new): Initialize all members.
13860 * src/state.c (state_hash): Use unsigned accumulator, not signed.
13862 * src/symtab.c (symbol_free): Remove; unused.
13863 (symbol_get): Remove cast in lhs of assignment.
13864 (symbols_do): Now static. Accept generic arguments, not
13865 hashing-related ones.
13867 * src/symtab.h: (NUMBER_UNDEFINED): Remove unnecessary cast.
13868 (symbol_processor): Remove.
13869 (symbols_do): Remove decl; now static.
13871 * src/system.h (alloca): Remove; decl no longer needed.
13872 (<stddef.h>): Include, for offsetof.
13873 (<inttypes.>, <stdint.h>): Include if available.
13874 (uintptr_t): New type, if system lacks it.
13875 (CALLOC, MALLOC, REALLOC): New macros.
13876 All uses of XCALLOC, XMALLOC, and XREALLOC changed to use these
13879 * src/tables.c (table_size): Now int, to pacify GCC.
13880 (table_grow, table_ninf_remap): Use signed table size.
13881 (save_row): Don't bother initializing locals when not needed.
13882 (default_goto, goto_actions, pack_vector): Remove unnecessary casts.
13883 * src/uniqstr.c (hash_compare_uniqstr): Likewise.
13885 * src/vcg.h: Correct misspellings.
13887 * src/vcg_defaults.h (G_CMAX): Now INT_MAX.
13890 * src/getargs.c (getargs): Don't assume EOF == -1.
13892 2002-12-09 Paul Eggert <eggert@twinsun.com>
13894 Change identifier spellings to avoid collisions with names
13895 that are reserved by POSIX.
13897 Don't use names ending in _t, since POSIX reserves them.
13898 For consistency, remove _e and _s endings -- they're weren't
13899 needed to remove ambiguity. All uses changed.
13900 * src/uniqstr.h (uniqstr): Renamed from uniqstr_t, which in
13901 turn was just renamed from struniq_t.
13902 * src/uniqstr.c (uniqstr_processor): Renamed from struniq_processor,
13903 which in turn was just renamed from struniq_processor_t.
13904 (hash_compare_uniqstr): Renamed from hash_compare_struniq, which
13905 in turn was renamed from hash_compare_struniq_t.
13906 * src/LR0.c (struct state_list): Renamed from struct state_list_s.
13907 (state_list): Renamed from state_list_t.
13908 * src/assoc.h (assoc): Renamed from assoc_t.
13909 * src/conflicts.c (enum conflict_resolution): Renamed from
13910 enum conflict_resolution_e.
13911 * src/derives.c (struct rule_list): Renamed from struct rule_list_s.
13912 (rule_list): Renamed from rule_list_t.
13913 * src/getargs.h (enum trace): Renamed from enum trace_e.
13914 (enum report): Renamed from enum report_e.
13915 * src/gram.h (item_number): Renamed from item_number_t.
13916 (rule_number): Renamed from rule_number_t.
13917 (struct rule_s): Remove the "rule_s" part; not used.
13918 (rule): Renamed from rule_t.
13919 (rule_filter): Renamed from rule_filter_t.
13920 * src/lalr.c (struct goto_list): Renamed from struct goto_list_s.
13921 (goto_list): Renamed from goto_list_t.
13922 * src/lalr.h (goto_number): Renamed from goto_number_t.
13923 * src/location.h (location): Renamed from location_t.
13924 * src/muscle_tab.c (muscle_entry): Renamed from muscle_entry_t,
13925 and moved here from:
13926 * src/muscle_tab.h (muscle_entry_t): here.
13927 * src/nullable.c (struct rule_list): Renamed from struct rule_list_s.
13928 (rule_list): Renamed from rule_list_t.
13929 * src/print_graph.c (static_graph): Renamed from graph.
13930 * src/reader.h (braced_code): Renamed from braced_code_t.
13931 Remove brace_code_e tag.
13932 * src/relation.h (relation_node): Renamed from relation_node_t.
13933 (relation_nodes): Renamed from relation_nodes_t.
13934 (relation): Renamed from relation_t.
13935 * src/state.h (state_number): Renamed from state_number_t.
13936 (struct state): Renamed from struct state_s.
13937 (state): Renamed from state_t.
13938 (transitions): Renamed from transitions_t. Unused (and
13939 misspelled) transtion_s tag removed.
13940 (errs): Renamed from errs_t. Unused errs_s tag removed.
13941 (reductions): Renamed from reductions_t. Unused tag
13942 reductions_s removed.
13943 * src/symlist.h (symbol_list): Renamed from symbol_list_t.
13944 (struct symbol_list): Renamed from struct symbol_list_s.
13945 * src/symtab.h (symbol_number): Renamed from symbol_number_t.
13946 (struct symbol): Renamed from struct symbol_s.
13947 (symbol): Renamed from symbol_t.
13948 * src/tables.c (vector_number): Renamed from vector_number_t.
13949 (action_number): Renamed from action_t.
13950 * src/tables.h (base_number): Renamed from base_t.
13951 * src/vcg.h (enum color): Renamed from enum color_e.
13952 (enum textmode): Renamed from enum textmode_e.
13953 (enum shape): Renamed from enum shape_e.
13954 (struct colorentry): Renamed from struct colorentry_s.
13955 (struct classname): Renamed from struct classname_s.
13956 (struct infoname): Renamed from struct infoname_s.
13957 (enum layoutalgorithm): Renamed from enum layoutalgorithm_e.
13958 (enum decision): Renamed from enum decision_e.
13959 (enum orientation): Renamed from enum orientation_e.
13960 (enum alignment): Renamed from enum alignment_e.
13961 (enum arrow_mode): Renamed from enum arrow_mode_e.
13962 (enum crossing_type): Renamed from enum crossing_type_e.
13963 (enum view): Renamed from enum view_e.
13964 (struct node): Renamed from struct node_s.
13965 (node): Renamed from node_t.
13966 (enum linestyle): Renamed from enum linestyle_e.
13967 (enum arrowstyle): Renamed from enum arrowstyle_e.
13968 (struct edge): Renamed from struct edge.
13969 (edge): Renamed from edge_t.
13970 (struct graph): Renamed from struct graph_s.
13971 (graph): Renamed from graph_t.
13972 * tests/calc.at (_AT_DATA_CALC_Y, Simple LALR Calculator):
13973 Rename value_t -> value.
13974 * tests/input.at (Torturing the Scanner): Rename value_t -> value,
13975 value_t_as_yystype -> value_as_yystype.
13977 Don't include <errno.h> in the mainstream code, since it
13978 reserves E[A-Z0-9]* and we want to use symbols like 'EQUALS'.
13979 * lib/get-errno.c, lib/get-errno.h: New files.
13980 * lib/Makefile.am (libbison_a_SOURCES): Add get-errno.h,
13982 * src/files.c (xfopen, xfclose): Use get_errno instead of errno.
13983 * src/output.c (output_skeleton): Likewise.
13984 * src/scan-gram.l (<INITIAL>{int}): Use set_errno and get_errno
13986 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>\\x[0-9abcdefABCDEF]+):
13988 (handle_action_dollar, handle_action_at): Likewise.
13989 * src/system.h: Do not include <errno.h>.
13990 (TAB_EXT): Renamed from EXT_TAB.
13991 (OUTPUT_EXT): Renamed from EXT_OUTPUT.
13993 Avoid str[a-z]*, since <string.h> reserves that name space.
13994 Change all instances of "struniq" in names to "uniqstr", and
13995 likewise for "STRUNIQ" and "UNIQSTR".
13996 * src/uniqstr.c: Renamed from src/struniq.c.
13997 * src/uniqstr.h: Renamed from src/struniq.h.
13998 * src/Makefile.am (bison_SOURCES): Adjust to these renamings.
13999 * src/files.c (strsuffix): Remove; unused.
14000 (concat2): Renamed from stringappend. Now static.
14001 * src/files.h (strsuffix, stringappend): Remove; unused.
14002 * src/parse-gram.y (<chars>): Renamed from <string>.
14003 (<uniqstr>): Renamed from <struniq>.
14004 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
14005 * src/vcg.h (struct node_s.expand): Renamed from struct node_s.stretch.
14006 (struct graph_s.expand): Renamed from struct graph_s.stretch.
14007 * src/vcg_defaults.h (G_EXPAND): Renamed from G_STRETCH.
14008 (G_LONG_STRAIGHT_PHASE): Renamed from G_STRAIGHT_PHASE.
14009 (N_EXPAND): Renamed from N_STRETCH.
14011 Avoid *_MAX and *_MIN, since <limits.h> reserves that name space.
14012 * data/yacc.c (YYSTACK_GAP_MAXIMUM): Renamed from YYSTACK_GAP_MAX.
14013 * src/gram.h (ITEM_NUMBER_MAX, ITEM_NUMBER_MIN, RULE_NUMBER_MAX):
14015 * src/lalr.h (GOTO_NUMBER_MAXIMUM): Renamed from GOTO_NUMBER_MAX.
14016 * src/state.h (STATE_NUMBER_MAXIMUM): Renamed from STATE_NUMBER_MAX.
14017 * src/symtab.h (SYMBOL_NUMBER_MAXIMUM): Renamed from SYMBOL_NUMBER_MAX.
14018 * src/tables.c (VECTOR_NUMBER_MAX, VECTOR_NUMBER_MIN): Remove; unused.
14019 (BASE_MAXIMUM): Renamed from BASE_MAX.
14020 (BASE_MINIMUM): Renamed from BASE_MIN.
14021 (ACTION_MAX): Remove; unused.
14022 (ACTION_NUMBER_MINIMUM): Renamed from ACTION_MIN.
14023 Unnecessary casts removed from above defines.
14026 Fix misspelling in names.
14027 * src/vcg.h (enum_alignment_e): Renamed from enum_alignement_e.
14028 * src/vcg_defaults.h (G_NODE_ALIGNMENT): Renamed from
14032 * lib/timevar.c (timevar_report): Renamed from time_report,
14033 for consistency with other names.
14034 * lib/timevar.h (timevar_report): New decl.
14035 * src/system.h (time_report): Remove; decl is now in lib/timevar.h.
14038 Sort include-file uses.
14040 Reorder all include files under src to be in the order "system.h".
14041 then the ../lib include files in angle brackets (alphabetized),
14042 then the . include files in double-quotes (alphabetized). Fix
14043 dependency breakages encountered in this process, as follows:
14044 * src/closure.h, src/derives.h, src/state.h: Include "gram.h".
14045 * src/complain.c: Don't include stdlib.h, string.h _LIBC stuff.
14046 * src/state.h: Include "symtab.h".
14048 2002-12-08 Paul Eggert <eggert@twinsun.com>
14050 * data/glr.c, data/lalr1.cc, data/yacc.c: Do not use __file__,
14051 since this causes problems when __file__ contains character
14052 sequences like "@" that are treated specially by src/scan-skel.l.
14053 Instead, just use the file's basename. This fixes the bug
14054 reported by Martin Mokrejs in
14055 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00007.html>.
14057 2002-12-06 Paul Eggert <eggert@twinsun.com>
14059 Add support for rules that do not have trailing semicolons, as
14060 POSIX requires. Improve the quality of locations in Bison
14063 * src/location.c: Include <quotearg.h>.
14064 (empty_location): Now const.
14065 (location_print): New function. Follow the recommendation of the
14066 GNU Coding Standards for locations that span file boundaries.
14067 * src/location.h: Do not include <quotearg.h>; no longer needed.
14068 (boundary): New type.
14069 (location_t): Use it. This allows locations to span file boundaries.
14070 All member uses changed: file -> start.file or end.file (as needed),
14071 first_line -> start.line, first_column -> start.column,
14072 last_line -> end.line, last_column -> end.column.
14073 (equal_boundaries): New function.
14074 (LOCATION_RESET, LOCATION_STEP): Remove.
14075 (LOCATION_PRINT): Remove. All callers changed to use location_print.
14076 (empty_location): Now const.
14077 (location_print): New decl.
14078 * src/parse-gram.y (lloc_default): New function, which handles
14079 empty locations more accurately.
14080 (YYLLOC_DEFAULT): Use it.
14081 (%token COLON): Remove.
14082 (%token ID_COLON): New token.
14084 (declarations, rules): Remove trailing semicolon.
14085 (declaration, rules_or_grammar_declaration):
14086 Allow empty (";") declaration.
14087 (symbol_def): Remove empty actions; no longer needed.
14088 (rules_or_grammar_declaration): Remove trailing semicolon.
14089 (semi_colon.opt): Remove.
14090 * src/reader.h: Include location.h.
14091 (scanner_cursor): New decl.
14092 * src/reduce.c (nonterminals_reduce): Use warn_at rather than
14094 * src/scan-gram.l (YY_USER_INIT): Initialize scanner_cursor instead
14096 (STEP): Remove. No longer needed, now that adjust_location does
14097 the work. All uses removed.
14098 (scanner_cursor): New var.
14099 (adjust_location): Renamed from extend_location. It now sets
14100 *loc and adjusts the scanner cursor. All uses changed.
14101 Don't bother testing for CR.
14102 (handle_syncline): Remove location arg; now updates scanner cursor.
14103 All callers changed.
14104 (unexpected_end_of_file): Now accepts start boundary of token or
14105 comment, not location. All callers changed. Update scanner cursor,
14107 (SC_AFTER_IDENTIFIER): New state.
14108 (context_state): Renamed from c_context. All uses changed.
14109 (id_loc, code_start, token_start): New local vars.
14110 (<INITIAL,SC_AFTER_IDENTIFIER>): New initial context. Move all
14111 processing of Yacc white space and equivalents here.
14112 (<INITIAL>{id}): Save id_loc. Begin state SC_AFTER_IDENTIFIER
14113 instead of returning ID immediately, since we need to search for
14114 a subsequent colon.
14115 (<INITIAL>"'", "\""): Save token_start.
14116 (<INITIAL>"%{", "{", "%%"): Save code_start.
14117 (<SC_AFTER_IDENTIFIER>): New state, looking for a colon.
14118 (<SC_YACC_COMMENT>, <SC_COMMENT>, <SC_LINE_COMMENT>):
14119 BEGIN context_state at end, not INITIAL.
14120 (<SC_ESCAPED_STRING>"\"", <SC_ESCAPED_CHARACTER>"'",
14121 <SC_BRACED_CODE>"}", <SC_PROLOGUE>"%}", <SC_EPILOGUE><<EOF>>):
14122 Return correct token start.
14123 (<SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>): Save start boundary when
14124 the start of a character, string or multiline comment is found.
14125 * tests/conflicts.at (S/R in initial, Defaulted Conflicted
14126 Reduction): Adjust reported locations to match the more-precise
14127 results now expected.
14128 * tests/input.at (Invalid $n, Invalid @n, Type Clashes): Likewise.
14129 * tests/reduce.at (Useless Rules, Reduced Automaton,
14130 Underivable Rules): Likewise.
14131 * tests/regression.at (Invalid inputs): No longer `expecting ";"
14132 or "|"' now that so many other tokens are allowed by the new grammar.
14134 * src/complain.h (current_file): Remove duplicate decl;
14135 current_file is now owned by files.h.
14136 * src/complain.c, src/scan-gram.l: Include files.h.
14138 2002-12-06 Paul Eggert <eggert@twinsun.com>
14140 * data/glr.c (yy_reduce_print): Don't assume that yyrline[yyrule]
14141 promotes to int; it might be unsigned int.
14142 * data/yacc.c (yy_reduce_print): Likewise.
14144 * doc/bison.texinfo (Table of Symbols): YYERROR_VERBOSE should
14145 be #defined in the prologue, not in the Bison declarations.
14146 This fixes Debian Bug 102878, reported by Shaul Karl.
14148 2002-12-02 Paul Eggert <eggert@twinsun.com>
14150 * configure.ac (AC_REPLACE_FUNCS): Add strtoul.
14151 * lib/strtoul.c: New file, from gnulib.
14152 This fixes a porting bug reported by Peter Klein in
14153 <http://lists.gnu.org/archive/html/bug-bison/2002-12/msg00000.html>.
14155 2002-11-30 Paul Eggert <eggert@twinsun.com>
14157 * src/scan-gram.l (no_cr_read, extend_location): Move to epilogue,
14158 and put only a forward declaration in the prologue. This is for
14159 consistency with the other scanner helper functions.
14161 Type clashes now generate warnings, not errors, since it
14162 appears that POSIX may allow some grammars with type clashes.
14163 * src/reader.c (grammar_current_rule_check): Warn about
14164 type clashes instead of complaining.
14165 * tests/input.at (Type Clashes): Expect warnings, not complaints.
14167 Add Yacc library, since POSIX requires it.
14168 * doc/bison.texinfo (Yacc Library): New node. Regenerate top menu.
14169 * lib/Makefile.am (lib_LIBRARIES, liby_a_SOURCES): New macros.
14170 * lib/main.c, lib/yyerror.c: New files.
14172 gram_error can be static; it need not be extern.
14173 * src/reader.h (gram_error): Remove decl.
14174 * src/parse-gram.y (gram_error): Now static. Add static decl.
14175 (print_token_value): Omit parameter names from forward decl,
14178 2002-11-29 Paul Eggert <eggert@twinsun.com>
14180 * doc/bison.texinfo: Emphasize that yylex and yyerror must
14181 be declared before being used. E.g., one should typically
14182 declare them in the prologue. Use GNU coding style in examples.
14183 Put "const" consistently after the type it modifies. Mention
14184 that C99 supports "inline". Mention that yyerror traditionally
14187 %parse-param and %lex-param now take just one argument, the
14188 declaration; the argument name is deduced from the declaration.
14190 * doc/bison.texinfo (Parser Function, Pure Calling, Error
14191 Reporting, Table of Symbols): Document this.
14192 * src/parse-gram.y (add_param): New function.
14194 (declaration): Implement new rule for %parse-param and %lex-param.
14195 * src/scan-gram.l: "," now elicits a warning, rather than being
14196 a token; this is more compatible with byacc.
14197 * tests/calc.at (Simple LALR Calculator): Adopt new convention.
14199 2002-11-27 Paul Eggert <eggert@twinsun.com>
14201 Rename identifiers to avoid real and potential collisions.
14203 * data/c.m4 (b4_yysymprint_generate): yyout -> yyoutput,
14204 to avoid collision with lex macro described by Bruce Lilly in
14205 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00114.html>.
14206 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise.
14207 * doc/bison.texinfo (Prologue, Tracing): yyprint -> print_token_value.
14208 * src/parse-gram.y (print_token_value): Renamed from yyprint.
14210 (YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove. All uses changed.
14211 The name "yycontrol" violates the name space rules, and this stuff
14212 wasn't being used anyway.
14213 (input): Remove action; this stuff wasn't being used.
14214 (gram_error): Rename local variable yylloc -> loc.
14215 * src/reader.h (struct gram_control_s, gram_control_t): Remove.
14216 (YY_DECL): Don't use "yy" at start of local variables.
14217 All uses changed, e.g., yylloc -> loc.
14218 * src/scan-gram.l (STEP): Renamed from YY_STEP. All uses changed.
14219 (STRING_GROW): Renamed from YY_OBS_GROW. All uses changed.
14220 (STRING_FINISH): Renamed from YY_OBS_FINISH. All uses changed.
14221 (STRING_FREE): Renamed from YY_OBS_FREE. All uses changed.
14223 * src/parse-gram.y (gram_error): loc is now const *.
14224 * src/reader.h (gram_error): Likewise.
14226 2002-11-24 Paul Eggert <eggert@twinsun.com>
14230 * tests/actions.at (Actions after errors): Use an output format
14231 more similar to that of the Printers and Destructors test.
14232 Test the position of the ';' token too.
14233 (Printers and Destructors): Likewise.
14234 (Printers and Destructors: %glr-parser): Remove for now, to avoid
14235 unnecessarily alarming people when the test fails.
14237 * data/yacc.c (yyerrlab1): Move this label down, so that the
14238 parser does not discard the lookahead token if the user code
14239 invokes YYERROR. This change is required for POSIX conformance.
14241 * lib/error.c: Sync with gnulib.
14243 2002-11-22 Paul Eggert <eggert@twinsun.com>
14245 * lib/quotearg.c, lib/quotearg.h: Sync with gnulib.
14246 * lib/mbswidth.c, lib/mbswidth.h: Likewise.
14247 * lib/xmalloc.c: Likewise.
14249 2002-11-20 Paul Eggert <eggert@twinsun.com>
14251 * lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
14253 2002-11-20 Paul Eggert <eggert@twinsun.com>
14255 Avoid use of <assert.h>, as the GNU Coding Standards hint that one
14256 should use `if (! x) abort ();' rather than `assert (x);', and
14257 anyway it's one less thing to worry about configuring.
14259 * data/glr.c, lib/hash.c, src/system.h: Do not include <assert.h>.
14260 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Likewise,
14261 and replace all instances of assert with abort.
14262 * tests/calc.at (_AT_DATA_CALC_Y): Likewise.
14263 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): Likewise.
14265 * data/glr.c (yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
14266 yyresolveAction, yyprocessOneStack): Use abort rather than assert.
14267 * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
14268 hash_find_entry, hash_rehash, hash_insert): Likewise.
14269 * src/conflicts.c (resolve_sr_conflict): Likewise.
14270 * src/lalr.c (set_goto_map, map_goto): Likewise.
14271 * src/nullable.c (nullable_compute): Likewise.
14272 * src/output.c (prepare_rules, token_definitions_output): Likewise.
14273 * src/reader.c (packgram, reader): Likewise.
14274 * src/state.c (state_new, state_free, state_transitions_set,
14275 state_reduction_find): Likewise.
14276 * src/symtab.c (symbol_user_token_number_set, symbol_make_alias,
14277 symbol_pack): Likewise.
14278 * src/tables.c (conflict_row, pack_vector): Likewise.
14279 * src/vcg.c (get_color_str, get_textmode_str, get_shape_str,
14280 get_layoutalgorithm_str, get_decision_str, get_orientation_str,
14281 get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
14282 get_view_str, get_linestyle_str, get_arrowstyle_str): Likewise.
14284 * lib/argmatch.h (ARRAY_CARDINALITY): Do not bother to #undef.
14285 (ARGMATCH_CONSTRAINT): New macro.
14286 (ARGMATCH_ASSERT): Use it.
14288 * src/system.h (verify): New macro.
14289 * src/getargs.c (trace_argmatch, report_argmatch): Use verify
14290 rather than assert.
14291 * src/tables.c (tables_generate): Likewise.
14293 * src/struniq.c (struniq_assert): Now returns void, and aborts
14294 if the assertion is false.
14295 (struniq_assert_p): Remove.
14296 * src/struniq.h: Likewise.
14298 2002-11-18 Paul Eggert <eggert@twinsun.com>
14300 * data/glr.c (yygetLRActions): Replace `yyindex' with
14301 `yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
14302 This fixes the regression with Sun ONE Studio 7 cc that I reported in
14303 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00077.html>.
14305 2002-11-18 Akim Demaille <akim@epita.fr>
14307 * doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
14309 From Tim Van Holder.
14311 2002-11-17 Paul Eggert <eggert@twinsun.com>
14313 Pacify Sun ONE Studio 7 lint. Also, rename "ParseError"
14314 to "SyntaxError" for consistency with my 2002-11-15 change.
14316 * data/glr.c (YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do
14317 not define to {}, since this breaks the common use of `YYDPRINTF
14318 ((...));' if a single statement is desired (e.g. before `else').
14319 Work around GCC warnings by surrounding corresponding calls with
14321 (yyhasResolvedValue): Remove unused function.
14322 (yymergeOptionSets, yyresolvStack): Use `continue;' for empty
14324 (yyreportSyntaxError): Renamed from yyreportParseError.
14325 (yyrecoverSyntaxError): Renamed from yyrecoverParseError.
14327 * tests/calc.at (_AT_DATA_CALC_Y): Make vars static instead of
14328 extern when possible. Remove unused initializations.
14330 2002-11-16 Akim Demaille <akim@epita.fr>
14332 Augment the similarity between GLR and LALR traces.
14334 * data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
14335 (YY_REDUCE_PRINT): New.
14336 (yyparse): Use them.
14337 * data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
14339 (yyglrReduce, yyrecoverParseError, yyparse): Don't report the
14340 state reached after the reduction/recovery, since...
14341 (yyparse, yyprocessOneStack): Report the state we are entering in.
14343 2002-11-16 Akim Demaille <akim@epita.fr>
14345 * src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
14346 Add support for --trace=skeleton.
14347 * src/scan-skel.l: %option debug.
14348 Scan strings of non-@ or \n instead of character by character.
14349 (scan_skel): Handle trace_skeleton.
14351 (@output_parser_name@, @output_header_name@): ``Restore'' their
14352 support (used to be M4 macros).
14353 * data/yacc.c: Quote larger chunks, a la glr.c.
14354 * data/lalr1.cc: Likewise.
14355 The header guards are no longer available, so use some other
14356 string than `YYLSP_NEEDED'.
14358 2002-11-16 Akim Demaille <akim@epita.fr>
14360 Make the ``Printers and Destructors'' test more verbose, taking
14361 `yacc.c''s behavior as (possibly wrong) reference.
14363 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
14364 instead of fprint on stdout.
14365 Set and report the last_line of the symbols.
14366 Consistently display values and locations.
14368 2002-11-16 Paul Eggert <eggert@twinsun.com>
14370 * data/yacc.c: Avoid over-quoting of __line__ and __file__.
14372 2002-11-15 Paul Eggert <eggert@twinsun.com>
14374 * tests/actions.at (Actions after errors): New test case.
14376 * data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
14377 src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
14378 tests/action.at, tests/calc.at, tests/conflicts.at,
14379 tests/cxx-type.at, tests/regression.at:
14380 "parse error" -> "syntax error" for POSIX compatibility.
14381 "parsing stack overflow..." -> "parser stack overflow" so
14382 that code matches Bison documentation.
14384 2002-11-15 Akim Demaille <akim@epita.fr>
14386 * src/parse-gram.y (declaration): Have %parse-param and %lex-param
14387 take two BRACED_CODE, not two string_content.
14388 Free the scanner's obstack when we are done.
14389 (code_content): New.
14390 * tests/calc.at: Adjust.
14391 * doc/bison.texinfo: Adjust.
14392 Also, make sure to include the `,' for these declarations.
14394 2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
14396 * m4/prereq.m4: Removed the commented jm_PREREQ_HASH
14397 definition; avoids potential autoreconf problems.
14399 2002-11-15 Akim Demaille <akim@epita.fr>
14401 Always check the value returned by yyparse.
14403 * tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
14404 returned by yyparse.
14405 (_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
14407 * tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
14408 returned by yyparse.
14410 2002-11-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14412 * data/glr.c (yyFail): Always set yyerrflag. Corrects regression
14415 2002-11-14 Paul Eggert <eggert@twinsun.com>
14417 * src/output.c (output_skeleton): Call xfopen instead of
14418 duplicating xfopen's body.
14420 Fix bugs reported by Nelson H. F. Beebe in
14421 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00078.html>.
14423 * tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
14424 "$CC -E foo.h" is allowed, as this doesn't work with the Portland
14425 Group compiler. Instead, use "$CC -E bar.c". Include the .h
14426 file twice in the grammar, as an extra check.
14428 * tests/input.at (Torturing the Scanner): Surround the
14429 backslash-newline tests with "#if 0", to make it less likely that
14430 we'll run into compiler bugs. Bring back solitary \ inside
14431 comment, but add a closing comment to work around HP C bug. Don't
14432 test backslash-newline in C character constant.
14434 2002-11-14 Akim Demaille <akim@epita.fr>
14436 * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
14437 status of the compiler.
14438 Calling `exit 1' is no longer needed.
14439 Reported by Nelson H. F. Beebe.
14441 2002-11-14 Akim Demaille <akim@epita.fr>
14443 * tests/atlocal.in (CPPFLAGS): We have config.h.
14444 * tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
14446 * tests/actions.at, tests/calc.at, tests/conflicts.at,
14447 * tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
14448 * tests/regression.at, tests/torture.at: Use them for all the
14449 grammars that are to be compiled.
14450 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
14451 * tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
14452 * doc/bison.texinfo (GLR Parsers): Document `inline'.
14454 2002-11-14 Akim Demaille <akim@epita.fr>
14456 * doc/bison.texinfo: Various formatting changes (alignments in
14457 samples, additional @group/@end group, GCS in samples.
14458 Use @deffn instead of simple @table to define the directives,
14459 macros, variables etc.
14461 2002-11-13 Paul Eggert <eggert@twinsun.com>
14463 Fix some bugs reported by Albert Chin-A-Young in
14464 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00066.html>.
14466 * tests/input.at (Torturing the Scanner): Don't invoke "cc a.c b.c
14467 -o c"; the HP C compiler chatters during compilation.
14468 Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".
14469 * tests/headers.at (export YYLTYPE): Likewise.
14471 * tests/input.at (Torturing the Scanner): Remove lines containing
14472 solitary backslashes, as they tickle a bug in the HP C compiler.
14474 * tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
14475 comments, since they're not portable. Use GNU coding style.
14477 2002-11-13 Akim Demaille <akim@epita.fr>
14479 * data/yacc.c: Leave bigger chunks of quoted text.
14480 (YYDSYMPRINTF): New.
14481 Use it to report symbol activities.
14482 * data/glr.c (YYDSYMPRINTF): New.
14485 2002-11-12 Paul Eggert <eggert@twinsun.com>
14489 * data/glr.c (yydoAction): Return YYRESULTTAG, not int.
14490 (yyglrReduce): Return yyok, not 0.
14491 This should avoid the enumerated-type warnings reported
14492 by Nelson H. F. Beebe in
14493 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00057.html>.
14495 * lib/bbitset.h (BITSET_INLINE): Remove.
14496 * lib/bitset.h [! BITSET_INLINE]: Remove.
14497 (bitset_set, bitset_reset, bitset_test): Rename local vars
14498 to avoid shadowing warnings by GCC.
14500 * data/glr.c (inline): Remove #define. It's the user's
14501 responsibility to #define it away, just like 'const'.
14502 This fixes one of the bugs reported by Nelson H. F. Beebe in
14503 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00058.html>.
14505 * Makefile.maint (po-check): Scan .l and .y files instead of the
14506 .c and the .h files that they generate. This fixes the bug
14507 reported by Tim Van Holder in:
14508 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00062.html>
14509 Look for N_ as well as for _. Try to avoid matching #define for
14511 * po/POTFILES.in: Remove src/parse-gram.c, src/scan-gram.c,
14512 src/system.h. Add src/parse-gram.y, src/scan-gram.l.
14513 * src/scan-gram.l: Revamp regular expressions so that " and '
14514 do not confuse xgettext.
14516 * src/struniq.h (struniq_new): Do not declare the return type
14517 to be 'const'; this violates the C standard.
14518 * src/struniq.c (struniq_new): Likewise.
14520 2002-11-12 Albert Chin-A-Young <china@thewrittenword.com>
14522 * src/Makefile.am (LDADD): Link $(LIBINTL) last to avoid the
14523 duplicate definition of optind on Tru64 UNIX 4.0D with the Compaq
14526 2002-11-12 Akim Demaille <akim@epita.fr>
14528 * Makefile.maint: Sync with Autoconf:
14529 (local_updates): New.
14531 2002-11-12 Akim Demaille <akim@epita.fr>
14533 * po/POTFILES.in (src/lalr.c, src/state.c): Remove
14535 2002-11-12 Akim Demaille <akim@epita.fr>
14537 * tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Display the
14540 2002-11-12 Akim Demaille <akim@epita.fr>
14542 * data/c.m4 (b4_yysymprint_generate): Pass *yyvaluep to YYPRINT,
14545 2002-11-12 Akim Demaille <akim@epita.fr>
14547 * tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
14548 Use it to test the GLR parser.
14550 2002-11-12 Akim Demaille <akim@epita.fr>
14552 * tests/regression.at (input.y): s/YYEOF/MYEOF/, as the skeleton
14554 * data/glr.c (yystos): New.
14555 (b4_yysymprint_generate, b4_yydestruct_generate): Invoke.
14556 (YYDSYMPRINT): New.
14557 (yyval): Don't define it, it is handled via M4.
14558 (yyrecoverParseError): Free verbosely the discarded symbols.
14559 * data/yacc.c (yysymprint): Remove, rather...
14560 (b4_yysymprint_generate): invoke.
14561 * data/c.m4 (b4_yysymprint_generate): New.
14562 Accept pointers as arguments, as opposed to the version from
14564 (b4_yydestruct_generate): Likewise.
14565 * tests/cations.at (Printers and Destructors): Use Bison directives
14566 instead of CPP macros.
14567 Don't rely on internal details.
14569 2002-11-12 Akim Demaille <akim@epita.fr>
14571 * data/c.m4 (b4_yydestruct_generate, b4_symbol_actions): New.
14572 * data/yacc.c: Rename yychar1 as yytoken, as in glr.c.
14573 Don't work on yychar (i.e., do set it to YYEMPTY, don't match
14574 it against YYEMPTY and so forth), work on yytoken (i.e., set
14575 it to YYEMPTY etc.).
14576 (yydestruct): Replace with a b4_yydestruct_generate invocation.
14577 (b4_symbol_actions): Remove.
14578 * data/glr.c (YYTRANSLATE): As for yacc.c, if negative, it stands
14579 for 0, end-of-input.
14581 2002-11-12 Akim Demaille <akim@epita.fr>
14583 * doc/bison.texinfo (Destructor Decl): New.
14585 2002-11-12 Akim Demaille <akim@epita.fr>
14587 * src/tables.c (tables_generate): Use free for pointers that
14588 cannot be NULL, not XFREE.
14589 (pack_vector): Use assert, not fatal, for bound violations.
14590 * src/state.c (state_new): Likewise.
14591 * src/reader.c (reader): Likewise.
14592 * src/lalr.c (set_goto_map): Likewise.
14593 * src/location.h (LOCATION_PRINT): If first_line is 0, just issue
14596 2002-11-12 Akim Demaille <akim@epita.fr>
14598 * src/scan-gram.l, src/reader.h (scanner_last_string_free):
14600 * src/scan-gram.l (last_string): Is global to the file, not to
14602 * src/parse-gram.y (input): Don't append the epilogue here,
14603 (epilogue.opt): do it here, and free the scanner's obstack.
14604 * src/reader.c (epilogue_set): Rename as...
14605 (epilogue_augment): this.
14606 * data/c.m4 (b4_epilogue): Defaults to empty.
14608 2002-11-12 Akim Demaille <akim@epita.fr>
14610 * src/getargs.c (long_options): Remove duplicates.
14611 * src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
14613 * doc/bison.rnh: Remove.
14614 * doc/bison.texinfo (VMS Invocation): Remove.
14616 2002-11-12 Akim Demaille <akim@epita.fr>
14618 * src/struniq.h, src/struniq.c (struniq_t): Is const.
14619 (STRUNIQ_EQ, struniq_assert, struniq_assert_p): New.
14621 Use struniq for symbols.
14623 * src/symtab.h (symbol_t): The tag member is a struniq.
14624 (symbol_type_set): Adjust.
14625 * src/symtab.c (symbol_new): Takes a struniq.
14626 (symbol_free): Don't free the tag member.
14627 (hash_compare_symbol_t, hash_symbol_t): Rename as...
14628 (hash_compare_symbol, hash_symbol): these.
14629 Use the fact that tags as struniqs.
14630 (symbol_get): Use struniq_new.
14631 * src/symlist.h, src/symlist.c (symbol_list_n_type_name_get):
14633 * src/reader.h (merger_list, grammar_currentmerge_set): The name
14634 and type members are struniqs.
14635 * src/reader.c (get_merge_function)
14636 (grammar_current_rule_merge_set): Adjust.
14637 (TYPE, current_type): Are struniq.
14639 Use struniq for file names.
14641 * src/files.h, src/files.c (infile): Split into...
14642 (grammar_file, current_file): these.
14643 * src/scan-gram.c (YY_USER_INIT, handle_syncline): Adjust.
14644 * src/reduce.c (reduce_print): Likewise.
14645 * src/getargs.c (getargs): Likewise.
14646 * src/complain.h, src/complain.c: Likewise.
14647 * src/main.c (main): Call struniqs_new early enough to use it for
14649 Don't free the input file name.
14651 2002-11-12 Akim Demaille <akim@epita.fr>
14653 * src/symtab.c (symbol_free): Remove dead deactivated code:
14654 type_name are properly removed.
14655 Don't use XFREE to free items that cannot be NULL.
14656 * src/struniq.h, src/struniq.c: New.
14657 * src/main.c (main): Initialize/free struniqs.
14658 * src/parse-gram.y (%union): Add astruniq member.
14660 * src/scan-gram.l (<{tag}>): Return a struniq.
14661 Free the obstack bit that used to store it.
14662 * src/symtab.h (symbol_t): The 'type_name' member is a struniq.
14664 2002-11-11 Paul Eggert <eggert@twinsun.com>
14666 Revamp to fix many (but not all) of the C- and M4-related quoting
14667 problems. Among other things, this fixes the Bison bug reported
14668 by Jan Hubicka when processing the Bash grammar; see:
14669 <http://lists.gnu.org/archive/html/bison-patches/2002-11/msg00039.html>
14671 Use new @ escapes consistently. Represent brackets with @{ and @}
14672 rather than @<:@ and @:>@, since this works a bit better with dumb
14673 editors like vi. Represent @ with @@, since @ is now consistently
14674 an escape. Use @oline@ and @ofile@ rather than __oline__ and
14675 __ofile__, to avoid unexpected expansions. Similarly, use @output
14676 rather than #output.
14678 * data/c.m4 (b4_copyright): Omit file name from comment, since
14679 the file name could contain "*/".
14680 (b4_synclines_flag): Don't quote the 2nd argument; it should already
14681 be quoted. All uses changed.
14683 * data/glr.c: Use new @ escapes consistently.
14684 (b4_input_suffix, b4_output_parser_suffix, b4_output_parser_name,
14685 b4_output_header_suffix, b4_output_header_name, b4_header_guard):
14686 Remove, since they couldn't handle arbitrary characters in file
14688 * data/lalr1.cc: Likewise.
14689 * data/yacc.c: Likewise.
14691 * src/files.c (output_infix): Remove; all uses removed.
14692 * src/files.h: Likewise.
14694 * data/glr.c: Remove use of "#ifdef b4_header_guard", since it
14695 mishandled funny characters in file names, and anyway it isn't
14697 * data/yacc.c: Likewise.
14698 * data/lalr1.cc: Use YYSLP_NEEDED instead of b4_header_guard.
14700 * data/glr.c (YYSTYPE_IS_TRIVIAL): Define when the .h file would.
14701 * data/yacc.c: Likewise.
14703 * src/muscle_tab.c: Include quotearg.h, since we need to quote C
14705 (muscle_init): Quote filename as a C string.
14706 * src/muscle_tab.h (MUSCLE_GROW_STRING_PAIR): Remove; unused.
14707 (MUSCLE_OBSTACK_SGROW, MUSCLE_INSERT_C_STRING): New macros.
14708 * src/output.c (escaped_file_name_output): New function.
14709 (prepare_symbols): Quote tokens for M4.
14710 (prepare): Don't insert output_infix, output_prefix,
14711 output_parser_name, output_header_name; this is now down by scan-skel.
14712 Insert skeleton as a C string.
14714 * src/output.c (user_actions_output, symbol_destructors_output,
14715 symbol_printers_output): Quote filenames for C and M4.
14716 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14718 * src/scan-gram.l (<SC_CHARACTER>): Don't worry about any backslash
14719 escapes other than \\ and \'; this simplifies the code.
14720 (<SC_STRING>): Likewise, for \\ and \".
14721 (<SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,
14722 SC_PROLOGUE,SC_EPILOGUE>): Escape $ and @, too.
14723 Use new escapes @{ and @} for [ and ].
14725 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
14726 them with auto vars.
14727 Switch to new escape scheme, where @ is the escape character uniformly.
14728 Abort if a stray escape character is found. Avoid unbounded input
14729 buffer when parsing non-escaped text.
14731 * tests/input.at (Torturing the Scanner): Add tests that @oline@,
14732 __oline__, #output, $@, and @{ do not have unintended meanings.
14734 2002-11-09 Paul Eggert <eggert@twinsun.com>
14736 Fix the test failure due to GCC warnings described in
14737 <http://lists.gnu.org/archive/html/bug-bison/2002-11/msg00000.html>.
14738 * data/glr.c (yyis_pact_ninf, yyis_table_ninf): New macros, which
14739 evaluate to 0 if it's impossible for NINF to be in the respective
14741 (yygetLRActions, yyrecoverParseError): Use them.
14743 * src/scan-gram.l (unexpected_end_of_file): Fix bug: columns were
14744 counted in the token inserted at end of file. Now takes
14745 location_t *, not location_t, so that the location can be
14746 adjusted. All uses changed.
14748 * tests/regression.at (Invalid inputs): Adjust wording in
14749 diagnostic to match the new behavior.
14751 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR,
14752 AT_DATA_HORIZONTAL_GRAMMAR, AT_DATA_LOOKAHEADS_GRAMMAR,
14753 AT_DATA_STACK_TORTURE): Replace `assert (x);' with `if (! (x))
14754 abort ();'. This reduces the runtime of the "Many lookaheads"
14755 test from 27.6 to 2.7 minutes on a 440 MHz Ultrasparc III running
14758 2002-11-07 Paul Eggert <eggert@twinsun.com>
14760 * src/parse-gram.y (CHARACTER): Remove unused token.
14763 * src/scan-gram.l: Remove stack option. We no longer use the
14764 stack, since the stack was never deeper than 1; instead, use the
14765 new auto var c_context to record the stacked value.
14767 Remove nounput option. At an unexpected end of file, we now unput
14768 the minimal input necessary to end cleanly; this simplifies the
14771 Avoid unbounded token sizes where this is easy.
14773 (unexpected_end_of_file): New function.
14774 Use it to systematize the error message on unexpected EOF.
14775 (last-string): Now auto, not static.
14776 (YY_OBS_FREE): Remove unnecessary do while (0) wrapper.
14777 (scanner_last_string_free): Remove; not used.
14778 (percent_percent_count): Move decl to just before use.
14779 (SC_ESCAPED_CHARACTER): Return ID at unexpected end of file,
14780 not the (never otherwised-used) CHARACTER.
14782 2002-11-07 Akim Demaille <akim@epita.fr>
14784 Let yyerror always receive the msg as last argument, so that
14785 yyerror can be variadic.
14787 * data/yacc.c (b4_yyerror_args): New.
14788 Use it when calling yyerror.
14789 * data/glr.c (b4_yyerror_args, b4_lyyerror_args): New.
14790 Use it when calling yyerror.
14791 * doc/bison.texinfo (Error Reporting): Adjust.
14792 * tests/calc.at (_AT_DATA_CALC_Y): Adjust.
14793 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Adjust.
14795 2002-11-06 Akim Demaille <akim@epita.fr>
14797 #line should have quoted strings.
14798 Ideally, this should be done by m4_quotearg.
14800 * src/scan-skel.l: Include quotearg.h.
14802 * src/output.c (symbol_printers_output)
14803 (symbol_destructors_output): Quote the file name.
14805 2002-11-06 Akim Demaille <akim@epita.fr>
14807 * tests/regression.at (Invalid inputs): Adjust to the recent
14810 2002-11-06 Akim Demaille <akim@epita.fr>
14812 Restore --no-lines.
14813 Reported by Jim Kent.
14815 * data/c.m4 (b4_syncline): New.
14816 * data/glr.c, data/yacc.c, data/lalr1.cc: Use it.
14817 * src/reader.c (prologue_augment, epilogue_set): Use b4_syncline.
14818 * src/output.c (user_actions_output): Likewise.
14819 (prepare): Define 'b4_synclines_flag'.
14820 * src/muscle_tab.c (muscle_init): Don't define b4_linef.
14822 2002-11-06 Akim Demaille <akim@epita.fr>
14824 * src/main.c (main): Free `infile'.
14825 * src/scan-gram.l (handle_syncline): New.
14827 * src/output.c (user_actions_output, symbol_destructors_output)
14828 (symbol_printers_output): Use the location's file name, not
14830 * src/reader.c (prologue_augment, epilogue_set): Likewise.
14832 2002-11-05 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
14834 * src/tables.c (matching_state): Don't allow states to match if
14835 either has GLR conflict entries.
14837 2002-11-05 Paul Eggert <eggert@twinsun.com>
14839 * src/scan-gram.l: Use more accurate diagnostics, e.g.
14840 "integer out of range" rather than "invalid value".
14841 * tests/input.at (Invalid $n, Invalid @n): Change expected wording
14844 Scan <% and %> digraphs in C code as POSIX 1003.1-2001 requires.
14845 Also, remove one static variable in the scanner.
14847 * src/scan-gram.l (braces_level): Now auto, not static.
14848 Initialize to zero if the compiler is being picky.
14849 (INITIAL): Clear braces_level instead of incrementing it.
14850 (SC_BRACED_CODE): Treat <% and %> as { and } when inside C code,
14851 as POSIX 1003.1-2001 requires.
14852 * src/system.h (IF_LINT): New macro, taken from coreutils.
14853 * configure.ac: Define "lint" if --enable-gcc-warnings.
14855 2002-11-05 Akim Demaille <akim@epita.fr>
14857 * src/scan-gram.l: When it starts with `%', complain about the
14858 whole directive, not just that `invalid character: %'.
14860 2002-11-04 Akim Demaille <akim@epita.fr>
14862 * Makefile.maint: Update from Autoconf.
14863 (update, cvs-update, po-update, do-po-update): New.
14865 2002-11-04 Akim Demaille <akim@epita.fr>
14867 * tests/glr-regr1.at (Badly Collapsed GLR States): Prototype yylex
14869 Have yyerror `use' its arguments.
14870 * tests/calc.at (AT_CHECK_PUSHDEFS): AT_YYERROR_SEES_LOC_IF
14871 returns true when location & yacc & pure & parse-param.
14872 (_AT_DATA_CALC_Y): Let yyerror ``use'' its arguments.
14874 2002-11-04 Akim Demaille <akim@epita.fr>
14876 * src/location.h (LOCATION_PRINT): Use quotearg slot 3 to avoid
14878 * src/scan-gram.l: Use [\'] instead of ['] to pacify
14881 Use quote, not quote_n since LOCATION_PRINT no longer uses the
14884 2002-11-03 Paul Eggert <eggert@twinsun.com>
14886 * src/reader.c (get_merge_function, grammar_current_rule_check):
14887 Use consistent diagnostics for reporting type name clashes.
14888 Quote the types with <>, for consistency with Yacc.
14889 * tests/input.at (Type Clashes): Adjust to diagnostic changes.
14891 2002-11-03 Akim Demaille <akim@epita.fr>
14893 * data/c.m4 (b4_identification, b4_user_args, b4_parse_param):
14895 * data/yacc.m4 (b4_pure_args, b4_Pure_args): New.
14896 (b4_parse_param): Remove.
14897 Use b4_identification.
14898 Propagate b4_pure_args where needed to pass them to yyerror.
14899 * data/glr.m4 (b4_parse_param): Remove.
14900 (b4_user_formals, b4_pure_args, b4_pure_formals, b4_lpure_args)
14901 (b4_lpure_formals): New.
14902 Use b4_identification.
14903 (YY_USER_FORMALS, YY_USER_ARGS): Remove, replaced by
14904 b4_user_formals and b4_user_args.
14905 (yyexpandGLRStack, yyFail, yyaddDeferredAction, yyglrShiftDefer)
14906 (yyreportAmbiguity): When using a pure parser, also need
14907 the location, and the parse-params.
14909 (yyuserAction, yyglrShift, yyreportParseError, yyrecoverParseError):
14910 When using a pure parser, also need the parse-params.
14912 * tests/calc.at: Test pure (%pure-parser) and absolutely pure
14913 (%pure-parser + %parse-param) LALR and GLR parsers.
14914 (AT_CHECK_PUSHDEFS, AT_CHECK_POPDEFS): New, define AT_PARAM_IF,
14915 AT_LOCATION_IF, AT_PURE_IF, AT_GLR_IF, AAT_PURE_AND_LOC_IF,
14916 AT_GLR_OR_PARAM_IF, AT_YYERROR_ARG_LOC_IF, AT_YYERROR_SEES_LOC_IF.
14917 (_AT_DATA_CALC_Y): Equip for purity of yyerror.
14918 (_AT_CHECK_CALC_ERROR): Use AT_YYERROR_SEES_LOC_IF.
14919 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Equip for yyerror purity.
14920 * doc/bison.texinfo: Untabify the whole file.
14921 (Parser Function): Document %parse-param, deprecate YYPARSE_PARAM.
14922 (Pure Calling): Document %lex-param, deprecate YYLEX_PARAM.
14923 (Error Reporting): Adjust to these new directives.
14924 Document %error-verbose, deprecate YYERROR_VERBOSE.
14926 2002-11-03 Akim Demaille <akim@epita.fr>
14928 * tests/calc.at: Change all the AT_CHECK_CALC_LALR and
14929 AT_CHECK_CALC_GLR invocations to use % directives, instead of
14930 command line options.
14931 * tests/cxx-type.at: Formatting changes.
14933 2002-11-03 Paul Eggert <eggert@twinsun.com>
14935 * src/scan-gram.l: Revamp to fix POSIX incompatibilities,
14936 to count columns correctly, and to check for invalid inputs.
14938 Use mbsnwidth to count columns correctly. Account for tabs, too.
14939 Include mbswidth.h.
14940 (YY_USER_ACTION): Invoke extend_location rather than LOCATION_COLUMNS.
14941 (extend_location): New function.
14942 (YY_LINES): Remove.
14944 Handle CRLF in C code rather than in Lex code.
14945 (YY_INPUT): New macro.
14946 (no_cr_read): New function.
14948 Scan UCNs, even though we don't fully handle them yet.
14949 (convert_ucn_to_byte): New function.
14951 Handle backslash-newline correctly in C code.
14952 (SC_LINE_COMMENT, SC_YACC_COMMENT): New states.
14953 (eols, blanks): Remove. YY_USER_ACTION now counts newlines etc.;
14955 (tag, splice): New EREs. Do not allow NUL or newline in tags.
14956 Use {splice} wherever C allows backslash-newline.
14957 YY_STEP after space, newline, vertical-tab.
14958 ("/*"): BEGIN SC_YACC_COMMENT, not yy_push_state (SC_COMMENT).
14960 (letter, id): Don't assume ASCII; e.g., spell out a-z.
14962 ({int}, handle_action_dollar, handle_action_at): Check for integer
14965 (YY_STEP): Omit trailing semicolon, so that it's more like C.
14967 (<SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>): Allow \0 and \00
14968 as well as \000. Check for UCHAR_MAX, not 255.
14969 Allow \x with an arbitrary positive number of digits, as in C.
14970 Check for overflow here.
14971 Allow \? and UCNs, for compatibility with C.
14973 (handle_symbol_code_dollar): Use quote_n slot 1 to avoid collision
14974 with quote slot used by complain_at.
14976 * tests/input.at: Add tests for backslash-newline, m4 quotes
14977 in symbols, long literals, and funny escapes in strings.
14979 * configure.ac (jm_PREREQ_MBSWIDTH): Add.
14980 * lib/Makefile.am (libbison_a_SOURCES): Add mbswidth.h, mbswidth.c.
14981 * lib/mbswidth.h, lib/mbswidth.c: New files, from GNU gettext.
14982 * m4/Makefile.am (EXTRA_DIST): Add mbswidth.m4.
14983 * m4/mbswidth.m4: New file, from GNU coreutils.
14985 * doc/bison.texinfo (Grammar Outline): Document // comments.
14986 (Symbols): Document that trigraphs have no special meaning in Bison,
14987 nor is backslash-newline allowed.
14988 (Actions): Document that trigraphs have no special meaning.
14990 * src/location.h (LOCATION_COLUMNS, LOCATION_LINES): Remove;
14993 2002-11-02 Paul Eggert <eggert@twinsun.com>
14995 * src/reader.c: Don't include quote.h; not needed.
14996 (get_merge_function): Reword warning to be consistent with
14997 type clash diagnostic in grammar_current_rule_check.
14999 * lib/quotearg.c (quotearg_buffer_restyled): Fix off-by-two
15000 bug in trigraph handling.
15002 * src/output.c (prepare_symbols): When printing token names,
15003 escape "[" as "@<:@" and likewise for "]".
15005 * src/system.h (errno): Remove declaration, as we are now
15006 assuming C89 or better, and C89 guarantees errno.
15008 2002-10-30 Paul Eggert <eggert@twinsun.com>
15010 * lib/bitset_stats.c (bitset_stats_read, bitset_stats_write):
15011 Check for close failures.
15012 * src/files.h (xfclose): Return void, not int, since it always
15014 * src/files.c (xfclose): Likewise. Report I/O error if ferror
15016 * src/output.c (output_skeleton): Use xfclose rather than fclose
15017 and ferror. xfclose now checks ferror.
15019 * data/glr.c (YYLEFTMOST_STATE): Remove.
15020 (yyreportTree): Use a stack-based leftmost state. This avoids
15021 our continuing battles with bogus warnings about initializers.
15023 2002-10-30 Akim Demaille <akim@epita.fr>
15025 * src/system.h: Don't use #ifdef/#ifndef on HAVE_ values, only
15028 2002-10-29 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
15030 * tests/glr-regr1.at: New test for reported regressions.
15031 * tests/testsuite.at: Add glr-regr1.at test.
15032 * tests/Makefile.am: Add glr-regr1.at test.
15034 2002-10-24 Paul Eggert <eggert@twinsun.com>
15038 * tests/calc.at (_AT_DATA_CALC_Y): Remove unused strcat declaration.
15039 * tests/cxx-type.at (_AT_TEST_GLR_CALC): Include stdlib.h, since
15040 we use malloc. Don't assume 'A' through 'Z' are contiguous.
15041 Don't assume strdup exists; POSIX says its an XSI extension.
15042 Check for buffer overflow on input.
15044 2002-10-24 Akim Demaille <akim@epita.fr>
15046 * src/output.c (output_skeleton): Don't disable M4sugar comments
15047 too soon: it results in comments being expanded.
15048 * data/yacc.c, data/glr.c, data/lalr1.cc: Do it right before the
15051 2002-10-24 Akim Demaille <akim@epita.fr>
15053 * data/yacc.c (m4_int_type): New.
15054 * data/c.m4 (m4_int_type): Don't use yysigned_char, but `signed
15055 char' as only yacc.c wants K&R portability.
15056 * data/glr.c (yysigned_char): Remove.
15057 * data/lalr1.cc: Rename the trailing b4_name as b4_parser_class_name.
15058 Reported by Quoc Peyrot.
15060 2002-10-23 Paul Eggert <eggert@twinsun.com>
15062 * src/main.c (main): With --trace=time, report times even if a
15063 non-fatal error occurs. Formerly, the times were reported in some
15064 such cases but not in others.
15065 * src/reader.c (reader): Just return if a complaint has been issued,
15066 instead of exiting, so that 'main' can report times.
15068 2002-10-22 Akim Demaille <akim@epita.fr>
15070 * src/system.h: Include sys/types.
15071 Reported by Bert Deknuydt.
15073 2002-10-23 Paul Eggert <eggert@twinsun.com>
15075 * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX.
15076 Suggested by Art Haas.
15078 2002-10-22 Paul Eggert <eggert@twinsun.com>
15080 * src/complain.c (exit) [! (STDC_HEADERS || _LIBC)]: Remove exit
15081 decl; not needed any more.
15082 * src/main.c (main): Use return to exit, undoing yesterday's change.
15083 The last OS that we could find where this wouldn't work is
15084 SunOS 3.5, and that's too old to worry about now.
15086 * data/glr.c (struct yyltype): Define members even when not
15087 doing locations. This is more consistent with yacc.c, and it
15088 works around the following bug reports:
15089 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00106.html
15090 http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00111.html
15092 * doc/bison.texinfo: Minor spelling and typographical fixes. Use
15093 @acronym consistently. Standardize on "Yacc" instead of "YACC",
15094 "Algol" instead of "ALGOL". Give a bit more history about BNF.
15096 2002-10-22 Akim Demaille <akim@epita.fr>
15098 * data/README: New.
15100 2002-10-21 Paul Eggert <eggert@twinsun.com>
15102 Be consistent about 'bool'; the old code used an enum in one
15103 module and an int in another, and this violates the C standard.
15104 * m4/stdbool.m4: New file, from coreutils 4.5.3.
15105 * configure.ac (AC_HEADER_STDBOOL): Add.
15106 * m4/Makefile.am (EXTRA_DIST): Add stdbool.m4.
15107 * src/muscle_tab.c (hash_compare_muscles): (a ? FALSE : TRUE) -> (! a)
15108 * src/symtab.c (hash_compare_symbol_t): Likewise.
15109 * src/system.h (bool, false, true): Use a definition consistent
15110 with ../lib/hash.c. All uses changed.
15112 * src/complain.c (warning_issued): Renamed from warn_message_count,
15113 so that we needn't worry about integer overflow (!).
15114 Now of type bool. All uses changed.
15115 (complaint_issued): Renamed from complain_message_count; likewise.
15117 * src/main.c (main): Use exit to exit with failure.
15119 * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS
15120 rather than 1 and 0.
15121 * src/main.c (main): Likewise.
15122 * src/getargs.c (getargs): Likewise.
15123 * src/reader.c (reader): Likewise.
15125 * src/getarg.c (getargs): Remove duplicate code for
15126 "Try `bison --help'".
15128 * src/files.c (xfopen, xfclose): Use EXIT_FAILURE rather than 2.
15129 What was that "2" for?
15131 * src/complain.h (fatal, fatal_at): Add __attribute__((__noreturn__)).
15132 * src/getargs.c (usage): Likewise.
15134 * src/getargs.c (getargs): When there are too few operands, report
15135 the last one. When there are too many, report the first extra
15136 one. This is how diffutils does it.
15138 2002-10-20 Paul Eggert <eggert@twinsun.com>
15140 Remove K&R vestiges.
15141 * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
15142 * src/complain.c (VA_START): Remove. Assume prototypes.
15143 (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
15144 (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
15145 fatal): Assume prototypes.
15146 * src/complain.h: Assume prototypes.
15147 * src/system.h (PARAMS): Remove.
15148 Include <limits.h> unconditionally, since it's guaranteeed even
15149 for a freestanding C89 compiler.
15150 (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
15151 * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
15153 2002-10-20 Akim Demaille <akim@epita.fr>
15155 * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
15156 * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
15157 (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
15158 (yyresolveStates, yyresolveAction, yyresolveStack)
15159 (yyprocessOneStack): Use them.
15160 (yy_reduce_print): New.
15161 * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
15163 2002-10-20 Akim Demaille <akim@epita.fr>
15165 * data/c.m4 (b4_c_ansi_args): Recognize functions with no
15166 arguments and output `void'.
15167 (b4_c_function): Rename as...
15168 (b4_c_function_def): this.
15169 (b4_c_function_decl, b4_c_ansi_function_def)
15170 (b4_c_ansi_function_decl): New.
15171 Change the interpretation of the arguments: before `int, foo', now
15173 * data/yacc.c (yyparse): Prototype and define thanks to these.
15174 Adjust b4_c_function_def uses.
15175 * data/glr.c (yyparse): Likewise, but ANSI only.
15177 2002-10-20 Akim Demaille <akim@epita.fr>
15179 * src/output.c (prepare): Move the definition of `tokens_number',
15180 `nterms_number', `undef_token_number', `user_token_number_max'
15182 (prepare_tokens): Here.
15183 (prepare_tokens): Rename as...
15184 (prepare_symbols): this.
15185 (prepare): Move the definition of `rules_number' to...
15186 (prepare_rules): here.
15187 (prepare): Move the definition of `last', `final_state_number',
15188 `states_number' to...
15189 (prepare_states): here.
15190 * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
15192 2002-10-20 Akim Demaille <akim@epita.fr>
15194 * src/tables.h, src/tables.c, src/output.c: Comment changes.
15196 2002-10-20 Akim Demaille <akim@epita.fr>
15198 * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
15201 2002-10-20 Akim Demaille <akim@epita.fr>
15203 * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
15204 * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
15206 (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
15208 * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
15209 (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
15212 2002-10-19 Paul Eggert <eggert@twinsun.com>
15214 Do not create a temporary file, as that involves security and
15215 cleanup headaches. Instead, use a pair of pipes.
15216 Derived from a suggestion by Florian Krohm.
15217 * lib/subpipe.c, lib/subpipe.h, m4/subpipe.m4: New files.
15218 * lib/mkstemp.c, lib/readpipe.c, lib/tempname.c, m4/mkstemp.m4: Remove.
15219 * configure.ac (UTILS_FUNC_MKSTEMP, jm_PREREQ_TEMPNAME): Remove.
15220 (BISON_PREREQ_SUBPIPE): Add.
15221 * lib/Makefile.am (libbison_a_SOURCES): Remove readpipe.c.
15222 Add subpipe.h, subpipe.c.
15223 * m4/Makefile.am (EXTRA_DIST): Remove mkstemp.m4. Add subpipe.m4.
15224 * po/POTFILES.in: Add lib/subpipe.c.
15225 * src/output.c: Include "subpipe.h".
15226 (m4_invoke): Remove decl.
15227 (scan_skel): New decl.
15228 (output_skeleton): Use pipe rather than temporary file for m4 input.
15229 Check that m4sugar.m4 is readable, to avoid deadlock.
15230 Check for pipe I/O error.
15231 * src/scan-skel.l (readpipe): Remove decl.
15232 (scan_skel): New function, to be used in place of m4_invoke.
15233 Read from stream rather than file.
15235 * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
15236 float, as this generates a warning on Solaris 8 + GCC 3.2 with
15237 --enable-gcc-warnings. Instead, divide into 1.0 rather than 1;
15238 this generates a more-accurate value anyway.
15240 * lib/timevar.c (timervar_accumulate): Rename locals to
15241 avoid confusion with similarly-named more-global.
15242 * src/muscle_tab.c (muscle_pair_list_grow): Likewise.
15244 * src/output.c (prepare): Use xstrdup to convert char const *
15245 to char *, to avoid GCC warning.
15247 2002-10-19 Akim Demaille <akim@epita.fr>
15249 * tests/calc.at (_AT_DATA_CALC_Y): Define VAL, LOC, LEX_FORMALS,
15250 LEX_PRE_FORMALS, LEX_ARGS, LEX_PRE_ARGS, USE_LEX_ARGS.
15251 Use them to have `calc.y' ready for %pure-parser.
15252 * data/yacc.c (YYLEX): Pass a yylex return type to
15253 b4_c_function_call.
15255 2002-10-19 Akim Demaille <akim@epita.fr>
15257 Prototype support of %lex-param and %parse-param.
15259 * src/parse-gram.y: Add the definition of the %lex-param and
15260 %parse-param tokens, plus their rules.
15261 Drop the `_' version of %glr-parser.
15263 * src/scan-gram.l (INITIAL): Scan them.
15264 * src/muscle_tab.c: Comment changes.
15265 (muscle_insert, muscle_find): Rename `pair' as `probe'.
15266 * src/muscle_tab.h (MUSCLE_INSERT_PREFIX): Remove unused.
15267 (muscle_entry_s): The `value' member is no longer const.
15268 Adjust all dependencies.
15269 * src/muscle_tab.c (muscle_init): Adjust: use
15270 MUSCLE_INSERT_STRING.
15271 Initialize the obstack earlier.
15272 * src/muscle_tab.h, src/muscle_tab.c (muscle_grow)
15273 (muscle_pair_list_grow): New.
15274 * data/c.m4 (b4_c_function_call, b4_c_args): New.
15275 * data/yacc.c (YYLEX): Use b4_c_function_call to honor %lex-param.
15276 * tests/calc.at: Use %locations, not --locations.
15277 (AT_CHECK_CALC_GLR): Use %glr-parser, not %glr_parser.
15279 2002-10-19 Akim Demaille <akim@epita.fr>
15281 * src/getargs.c (usage): Take status as argument and exit
15283 Report the traditional `Try ... --help' message when status != 0.
15284 (usage, version): Don't take a FILE * as arg, it is pointless.
15285 (getargs): When there is an incorrect number of arguments, make it
15286 an error, and report it GNUlically thanks to `usage ()'.
15288 2002-10-18 Paul Eggert <eggert@twinsun.com>
15290 * data/glr.c (yyreportParseError): Don't assume that sprintf
15291 yields the length of the printed string, as this is not true
15292 on SunOS 4.1.4. Reported by Peter Klein.
15294 * tests/calc.at (_AT_DATA_CALC_Y): #undef memcmp and realloc.
15295 * tests/conflicts.at (%nonassoc and eof): Likewise.
15296 Fixes SunOS 4.1.4 test failure reported by Peter Klein.
15298 2002-10-17 Akim Demaille <akim@epita.fr>
15300 * src/getargs.h (trace_e): Add trace_scan, and trace_parse.
15301 * src/getargs.c (trace_types, trace_args): Adjust.
15302 * src/reader.c (grammar_current_rule_prec_set)
15303 (grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
15304 Standardize error messages.
15305 And s/@prec/%prec/!
15306 (reader): Use trace_flag to enable scanner/parser debugging,
15307 instead of an adhoc scheme.
15308 * src/scan-gram.l: Remove trailing debugging code.
15310 2002-10-16 Paul Eggert <eggert@twinsun.com>
15312 * src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
15315 * NEWS: Officially drop support for building Bison with K&R C,
15316 since it didn't work anyway and it's not worth worrying about.
15317 * Makefile.maint (wget_files): Remove ansi2knr.c.
15318 (ansi2knr.c-url_prefix): Remove.
15319 * lib/.cvsignore: Remove ansi2knr, ansi2knr.*.
15320 * lib/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15321 * src/Makefile.am (AUTOMAKE_OPTIONS): Remove.
15323 2002-10-15 Paul Eggert <eggert@twinsun.com>
15325 Stop using the "enum_" trick for K&R-style function definitions;
15326 it confused me, and I was the author! Instead, assume that people
15327 who want to use K&R C compilers (when using these modules in GCC,
15328 perhaps?) will run ansi2knr.
15330 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): Remove.
15331 All uses of "enum_" changed to "enum ".
15332 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15333 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
15335 * lib/abitset.c (abitset_and, abitset_and_cmp, abitset_and_or,
15336 abitset_and_or_cmp, abitset_andn, abitset_andn_cmp,
15337 abitset_andn_or, abitset_andn_or_cmp, abitset_bytes, abitset_copy,
15338 abitset_copy1, abitset_disjoint_p, abitset_empty_p,
15339 abitset_equal_p, abitset_init, abitset_list, abitset_list_reverse,
15340 abitset_not, abitset_ones, abitset_or, abitset_or_and,
15341 abitset_or_and_cmp, abitset_or_cmp, abitset_reset, abitset_set,
15342 abitset_size, abitset_small_list, abitset_subset_p, abitset_test,
15343 abitset_unused_clear, abitset_xor, abitset_xor_cmp, abitset_zero):
15344 Use function prototypes; this removes the need for declaring
15345 static functions simply to provide their prototypes.
15346 * lib/bitset.c (bitset_alloc, bitset_and_or_, bitset_and_or_cmp_,
15347 bitset_andn_or_, bitset_andn_or_cmp_, bitset_bytes, bitset_copy_,
15348 bitset_count_, bitset_create, bitset_dump, bitset_first,
15349 bitset_free, bitset_init, bitset_last, bitset_next,
15350 bitset_obstack_alloc, bitset_obstack_free, bitset_only_set_p,
15351 bitset_op4_cmp, bitset_or_and_, bitset_or_and_cmp_, bitset_prev,
15352 bitset_print, bitset_release_memory, bitset_toggle_,
15353 bitset_type_choose, bitset_type_get, bitset_type_name_get,
15354 debug_bitset): Likewise.
15355 * lib/bitset.h (bitset_set, bitset_reset, bitset_test): Likewise.
15356 * lib/bitset_stats.c (bitset_log_histogram_print,
15357 bitset_percent_histogram_print, bitset_stats_and,
15358 bitset_stats_and_cmp, bitset_stats_and_or,
15359 bitset_stats_and_or_cmp, bitset_stats_andn, bitset_stats_andn_cmp,
15360 bitset_stats_andn_or, bitset_stats_andn_or_cmp, bitset_stats_copy,
15361 bitset_stats_count, bitset_stats_disable, bitset_stats_disjoint_p,
15362 bitset_stats_dump, bitset_stats_empty_p, bitset_stats_enable,
15363 bitset_stats_equal_p, bitset_stats_free, bitset_stats_init,
15364 bitset_stats_list, bitset_stats_list_reverse, bitset_stats_not,
15365 bitset_stats_ones, bitset_stats_or, bitset_stats_or_and,
15366 bitset_stats_or_and_cmp, bitset_stats_or_cmp, bitset_stats_print,
15367 bitset_stats_print_1, bitset_stats_read, bitset_stats_reset,
15368 bitset_stats_set, bitset_stats_size, bitset_stats_subset_p,
15369 bitset_stats_test, bitset_stats_toggle, bitset_stats_type_get,
15370 bitset_stats_write, bitset_stats_xor, bitset_stats_xor_cmp,
15371 bitset_stats_zero): Likewise.
15372 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15373 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15374 bitsetv_dump, debug_bitsetv): Likewise.
15375 * lib/ebitset.c (ebitset_and, ebitset_and_cmp, ebitset_andn,
15376 ebitset_andn_cmp, ebitset_bytes, ebitset_copy, ebitset_copy_,
15377 ebitset_copy_cmp, ebitset_disjoint_p, ebitset_elt_add,
15378 ebitset_elt_alloc, ebitset_elt_calloc, ebitset_elt_find,
15379 ebitset_elt_free, ebitset_elt_last, ebitset_elt_remove,
15380 ebitset_elt_zero_p, ebitset_elts_grow, ebitset_empty_p,
15381 ebitset_equal_p, ebitset_free, ebitset_init, ebitset_list,
15382 ebitset_list_reverse, ebitset_not, ebitset_ones, ebitset_op3_cmp,
15383 ebitset_or, ebitset_or_cmp, ebitset_release_memory, ebitset_reset,
15384 ebitset_set, ebitset_size, ebitset_subset_p, ebitset_test,
15385 ebitset_weed, ebitset_xor, ebitset_xor_cmp, ebitset_zero):
15387 * lib/lbitset.c (debug_lbitset, lbitset_and, lbitset_and_cmp,
15388 lbitset_andn, lbitset_andn_cmp, lbitset_bytes, lbitset_copy,
15389 lbitset_copy_cmp, lbitset_disjoint_p, lbitset_elt_alloc,
15390 lbitset_elt_calloc, lbitset_elt_find, lbitset_elt_free,
15391 lbitset_elt_link, lbitset_elt_unlink, lbitset_elt_zero_p,
15392 lbitset_empty_p, lbitset_equal_p, lbitset_free, lbitset_init,
15393 lbitset_list, lbitset_list_reverse, lbitset_not, lbitset_ones,
15394 lbitset_op3_cmp, lbitset_or, lbitset_or_cmp, lbitset_prune,
15395 lbitset_release_memory, lbitset_reset, lbitset_set, lbitset_size,
15396 lbitset_subset_p, lbitset_test, lbitset_weed, lbitset_xor,
15397 lbitset_xor_cmp, lbitset_zero): Likewise.
15399 2002-10-14 Akim Demaille <akim@epita.fr>
15403 2002-10-14 Akim Demaille <akim@epita.fr>
15405 * tests/Makefile.am (maintainer-check-posix): New.
15407 2002-10-14 Akim Demaille <akim@epita.fr>
15409 * data/glr.c [YYDEBUG] (YYLEFTMOST_STATE): Initialize the yyloc
15412 2002-10-14 Akim Demaille <akim@epita.fr>
15414 * src/tables.c (table_ninf_remap): base -> tab.
15415 Reported by Matt Rosing.
15417 2002-10-14 Paul Eggert <eggert@twinsun.com>
15419 * tests/action.at, tests/calc.at, tests/conflicts.at,
15420 tests/cxx-type.at, tests/headers.at, tests/input.at,
15421 tests/regression.at, tests/synclines.at, tests/torture.at:
15422 Say "bison -o foo.c foo.y", not "bison foo.y -o foo.c",
15423 so that the tests still work even if POSIXLY_CORRECT is set.
15424 * doc/bison.texinfo (Rpcalc Compile, Invocation): Likewise.
15426 * data/c.m4 (b4_int_type): Use yysigned_char instead of signed char,
15427 for portability to K&R hosts. Fix typo: signed char is guaranteed
15428 only to 127, not to 128.
15429 * data/glr.c (yysigned_char): New type.
15430 * data/yacc.c (yysigned_char): Likewise.
15431 * tests/regression.at (Web2c Actions): signed char -> yysigned_char.
15433 2002-10-13 Paul Eggert <eggert@twinsun.com>
15435 * data/yacc.c (yyparse): Rewrite to avoid "comparison is always
15436 true due to limited range of data type" warning from GCC.
15438 * data/c.m4 (b4_token_defines): Protect against double-inclusion
15439 by wrapping enum yytokentype's definition inside #ifndef
15440 YYTOKENTYPE. This undoes a bug I introduced on 2002-10-12.
15442 2002-10-13 Akim Demaille <akim@epita.fr>
15444 * data/glr.c (yyglrShiftDefer, yyaddDeferredAction, yydoAction):
15445 Un yy- yyrhs to avoid the name clash with the global YYRHS.
15447 2002-10-13 Akim Demaille <akim@epita.fr>
15449 * Makefile.maint: Update from Autoconf 2.54.
15450 * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Remove, shipped with 2.54.
15452 2002-10-13 Akim Demaille <akim@epita.fr>
15454 * src/print.c (print_state): Separate the list of solved conflicts
15455 from the other items.
15456 * tests/conflicts.at (Resolved SR Conflicts): Adjust.
15458 2002-10-13 Akim Demaille <akim@epita.fr>
15460 Let nondeterministic skeletons be usable with deterministic
15463 With the patch, GAWK compiled by GCC without -O2 passes its test
15464 suite using a GLR parser driven by LALR tables. It fails with -O2
15465 because `struct stat' gives two different answers on my machine:
15466 88 (definition of an auto var) and later 96 (memset on this var).
15467 Hence the stack is badly corrumpted. The headers inclusion is to
15468 blame: if I move the awk.h inclusion before GLR's system header
15469 inclusion, the two struct stat have the same size.
15471 * src/tables.c (pack_table): Always create conflict_table.
15472 (token_actions): Always create conflict_list.
15473 * data/glr.c (YYFLAG): Remove, unused.
15475 2002-10-13 Akim Demaille <akim@epita.fr>
15477 * configure.ac (AC_GNU_SOURCE): Use it instead of hand written code.
15479 (VALGRIND, GXX): New.
15480 * tests/atlocal.in (CFLAGS): Use O0FLAGS.
15481 * tests/bison.in: Run $PREBISON a pre-command.
15482 * tests/Makefile.am (maintainer-check, maintainer-check-valgrind)
15483 (maintainer-check-g++): New.
15484 * Makefile.am (maintainer-check): New.
15486 2002-10-13 Akim Demaille <akim@epita.fr>
15488 * data/glr.c: Formatting changes.
15489 Tweak some trace messages to match yacc.c's.
15491 2002-10-13 Akim Demaille <akim@epita.fr>
15493 GLR parsers sometimes raise parse errors instead of performing the
15495 Reported by Charles-Henry de Boysson.
15497 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Don't
15498 check the length of the traces when %glr.
15499 (_AT_CHECK_CALC_ERROR): Also skip `^Stack' lines, coming from
15501 (AT_CHECK_CALC_LALR, AT_CHECK_CALC_GLR): New.
15503 * data/glr.c (YYLEFTMOST_STATE): Fix its value.
15504 (yyltype): Remove the yy prefix from the member names.
15505 (yytable): Complete its comment.
15506 (yygetLRActions): Map error action number from YYTABLE from
15508 (yyisErrorAction): No longer compare YYACTION to YYPACT_NINF
15509 (which was a bug: it should have been YYTABEL_NINF, and yet it was
15510 not satisfying as we could compare an YYACTION computed from
15511 YYDEFACT to YYTABLE_NINF although they are unrelated): 0 is the
15512 only value for error actions.
15513 (yyreportParseError): In verbose parse error messages, don't issue
15514 `error' in the list of expected tokens.
15515 * data/yacc.c (yyparse) <yybackup>: Rewrite the decoding of the
15516 next action to perform to match glr.c's decoding.
15517 (yytable): Complete its comment.
15519 2002-10-13 Paul Eggert <eggert@twinsun.com>
15521 Fix problem reported by Henrik Grubbstroem in
15522 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00098.html>:
15523 "nonterm: { $$ = 123; } { $$ = $1; };" was wrongly rejected,
15524 because the Bison parser reads the second action before reducing
15526 * src/scan-gram.l (rule_length): New static var.
15527 Use it to keep track of the rule length in the scanner, since
15528 we can't expect the parser to be in lock-step sync with the scanner.
15529 (handle_action_dollar, handle_action_at): Use this var.
15530 * tests/actions.at (Exotic Dollars): Test for the problem.
15532 2002-10-12 Paul Eggert <eggert@twinsun.com>
15534 * lib/timevar.c [! IN_GCC && HAVE_SYS_TIME_H]: Include <sys/time.h>.
15535 * m4/timevar.m4 (BISON_PREREQ_TIMEVAR): Check for <sys/time.h>.
15536 Include <sys/time.h> when checking for clock_t and struct tms.
15537 Use same include order as source.
15538 This is for the SunOS 4.1.4 porting bug reported by Peter Klein in
15539 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00016.html>.
15541 * lib/timevar.c: Update copyright date and clarify comments.
15542 (get_time) [IN_GCC]: Keep the GCC version for reference.
15544 * lib/timevar.c, lib/timevar.h, lib/timevar.def: Import
15545 GCC version as of today, then merge Bison's changes.
15546 Change "GCC" to "Bison" in copyright notice. timevar.def's
15547 author is Akim, so change that too.
15549 * src/reader.c (grammar_current_rule_check):
15550 Don't worry about the default action if $$ is untyped.
15551 Prevents bogus warnings reported by Jim Gifford in
15552 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00015.html>.
15554 * data/c.m4 (b4_token_enum): Do not define YYTOKENTYPE.
15555 * data/glr.c, data/lalr1.cc, data/yacc.c:
15556 Output token definitions before the first part of user declarations.
15557 Fixes compatibility problem reported by Jim Gifford for kbd in
15558 <http://lists.gnu.org/archive/html/bug-bison/2002-10/msg00014.html>.
15560 2002-10-11 Paul Eggert <eggert@twinsun.com>
15562 * data/yacc.c (yyreport_parse_error): Remove, putting its body into...
15563 (yyparse): here. This undoes some of the 2002-07-25 change.
15564 Compatibility problem reported by Ralf S. Engelschall with
15565 OSSP cfg <http://www.ossp.org/pkg/lib/cfg/>.
15567 2002-10-11 Akim Demaille <akim@epita.fr>
15569 * tests/regression.at Characters Escapes): New.
15570 * src/scan-gram.l (SC_ESCAPED_CHARACTER): Accept \' in strings and
15572 Reported by Jan Nieuwenhuizen.
15574 2002-10-11 Akim Demaille <akim@epita.fr>
15578 2002-10-10 Paul Eggert <eggert@twinsun.com>
15580 Portability fixes for bitsets; this also avoids several GCC
15583 * lib/abitset.c: Include <stddef.h>, for offsetof.
15584 * lib/lbitset.c: Likewise.
15586 * lib/abitset.c (abitset_bytes): Return a size that is aligned
15587 properly for vectors of objects. Do not assume that adding a
15588 header size to a multiple of a word size yields a value that is
15589 properly aligned for the whole union.
15590 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15592 * lib/bitset_stats.c (bitset_stats_bytes): Adjust to new,
15593 unique names for structures.
15594 * lib/ebitset.c (ebitset_bytes): Likewise.
15595 * lib/lbitset.c (lbitset_bytes): Likewise.
15597 * lib/abitset.c (abitset_ones, abitset_zero, abitset_empty_p,
15598 abitset_copy1, abitset_not, abitset_equal_p, abitset_subset_p,
15599 abitset_disjoint_p, abitset_and, abitset_and_cmp, abitset_andn,
15600 abitset_andn_cmp, abitset_or, abitset_or_cmp, abitset_xor,
15601 abitset_xor_cmp, abitset_and_or, abitset_and_or_cmp,
15602 abitset_andn_or, abitset_andn_or_cmp, abitset_or_and,
15603 abitset_or_and_cmp, abitset_copy): Supply prototype decls,
15604 to improve the type-checking that GCC can do.
15605 * lib/bitset.c (bitset_op4_cmp): Likewise.
15606 * lib/bitset_stats.c (bitset_stats_count,
15607 bitset_stats_empty_p, bitset_stats_ones, bitset_stats_zero,
15608 bitset_stats_copy, bitset_stats_disjoint_p,
15609 bitset_stats_equal_p, bitset_stats_not, bitset_stats_subset_p,
15610 bitset_stats_and, bitset_stats_and_cmp, bitset_stats_andn,
15611 bitset_stats_andn_cmp, bitset_stats_or, bitset_stats_or_cmp,
15612 bitset_stats_xor, bitset_stats_xor_cmp, bitset_stats_and_or,
15613 bitset_stats_and_or_cmp, bitset_stats_andn_or,
15614 bitset_stats_andn_or_cmp, bitset_stats_or_and,
15615 bitset_stats_or_and_cmp): Likewise.
15616 * lib/lbitset.c (lbitset_and, lbitset_and_cmp, lbitset_andn,
15617 lbitset_andn_cmp, lbitset_or, lbitset_or_cmp, lbitset_xor,
15618 lbitset_xor_cmp, lbitset_empty_p, lbitset_ones, lbitset_not,
15619 lbitset_subset_p, lbitset_disjoint_p, debug_lbitset): Likewise.
15621 * lib/abitset.h: Include bitset.h, not bbitset.h.
15622 * lib/ebitset.h: Likewise.
15623 * lib/lbitset.h: Likewise.
15625 * lib/bbitset.h: (enum_bitset_ops, enum_bitset_type): New types.
15626 All instances of parameters of type enum bitset_opts are now of
15627 type enum_bitset_opts, to conform to the C Standard, and similarly
15628 for enum_bitset_type.
15629 * lib/ebitset.c (enum_ebitset_find_mode): Likewise.
15630 * lib/lbitset.c (enum_lbitset_find_mode): Likewise.
15632 Do not use "struct bitset_struct" to mean different things in
15633 different modules. Not only is this confusing, it violates
15634 the C Standard, which requires that structure types in different
15635 modules must be compatible if one is to be passed to the other.
15636 * lib/bbitset.h (bitset): Now points to a union, not to a struct.
15637 All instances of "struct bitset_struct *" replaced with "bitset".
15638 * lib/bitset.h (struct bitset_struct): Remove, replacing with....
15639 (union bitset_union, struct abitset_struct, struct ebitset_struct,
15640 struct lbitset_struct, struct bitset_stats_struct): New types.
15641 All uses of struct bitset_struct changed to union bitset_union,
15643 * lib/abitset.c (struct abitset_struct, abitset,
15644 struct bitset_struct): Remove.
15645 * lib/bitset_stats.c (struct bitset_stats_struct, bitset_stats,
15646 struct bitset_struct): Remove.
15647 * lib/ebitset.c (struct ebitset_struct, ebitset, struct
15648 bitset_struct): Remove.
15649 * lib/lbitset.c (struct lbitset_struct, lbitset, bitset_struct):
15652 Do not call a function of type T using a call that assumes the
15653 function is of a different type U. Standard C requires that a
15654 function must be called with a type that is compatible with its
15656 * lib/bbitset.h (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15658 * lib/bitset.c (bitset_and_or_, bitset_andn_or_, bitset_or_and_):
15660 * lib/ebitset.c (PFV): Remove.
15661 * lib/lbitset.c (PFV): Likewise.
15662 * lib/ebitset.c (ebitset_and, ebitset_andn, ebitset_or,
15663 ebitset_xor, ebitset_copy, ebitset_ones, ebitset_empty_p): New
15665 (ebitset_and, ebitset_andn, ebitset_or, ebitset_xor): New functions.
15666 (ebitset_vtable): Use them.
15667 * lib/lbitset.c (lbitset_and, lbitset_andn, lbitset_or,
15668 lbitset_xor): New functions.
15669 (lbitset_vtable): Use them.
15671 * lib/bitset.h (bitset_next, bitset_prev, bitset_only_set_p):
15674 * lib/bitsetv.c (bitsetv_alloc): Add a cast to (void *) to avoid a
15676 * lib/lbitset.c (LBITSET_CURRENT1): Likewise.
15677 Use offsetof, for simplicity.
15679 2002-10-06 Paul Eggert <eggert@twinsun.com>
15681 * lib/bitset.h (bitset_reset): Do not assume that bitset_word is
15682 the same width as int. This reapplies a hunk of the 2002-08-12 patch
15683 <http://lists.gnu.org/archive/html/bison-patches/2002-08/msg00007.html>,
15684 which was inadvertently undone by the 2002-09-30 patch.
15685 * lib/lbitset.c (debug_lbitset): Do not assume that bitset_word is
15686 the same width as int.
15688 2002-10-04 Paul Eggert <eggert@twinsun.com>
15692 * configure.ac (AC_INIT), NEWS: Increment version number.
15694 * doc/bison.texinfo: Minor spelling, grammar, and white space
15696 (Symbols): Mention that any negative value returned from yylex
15697 signifies end-of-input. Warn about negative chars. Mention
15698 the portable Standard C character set.
15700 The GNU coding standard says CFLAGS and YFLAGS are reserved
15701 for the installer to set.
15702 * lib/Makefile.am (AM_CFLAGS): Renamed from CFLAGS.
15703 * src/Makefile.am (AM_CFLAGS): Likewise.
15704 (AM_YFLAGS): Renamed from YFLAGS.
15706 Fix some MAX and MIN problems.
15707 * src/gram.h (ITEM_NUMBER_MIN): MIN_MAX -> INT_MIN.
15708 * src/lalr.h (GOTO_NUMBER_MAX): INT_MAX -> SHRT_MAX.
15709 * src/symtab.h (SYMBOL_NUMBER_MAX): New macro.
15710 * src/reader.c (reader): Use it.
15712 * tests/regression.at (Braces parsing): Use grep, not fgrep, as
15713 POSIX 1003.1-2001 has removed fgrep.
15715 2002-10-04 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15717 * lib/bbitset.h (BITSET_WINDEX_MAX): Redefine so that it cannot be
15718 interpreted as signed.
15719 * lib/ebitset.c (ebitset_list): Fix bug.
15721 2002-10-01 Paul Eggert <eggert@twinsun.com>
15723 More fixes for 64-bit hosts and large bitsets.
15725 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
15726 abitset_size, abitset_list, abitset_list_reverse, abitset_list):
15727 Use bitset_bindex, not int or unsigned int or size_t, to count bits.
15728 * lib/bbitset.h (struct bitset_vtable.size, struct bitset_vtable.count,
15729 struct bitset_vtable.list, struct bitset_vtable.list_reverse,
15730 bitset_count_, bitset_next, bitset_prev, bitset_first, bitset_last,
15731 bitset_count_): Likewise.
15732 * lib/bitset.h (bitset_iterator.num, bitset_iterator.i,
15733 bitset_first, bitset_last): Likewise.
15734 * lib/bitset_stats.c (bitset_stats_size, bitset_stats_list,
15735 bitset_stats_list_reverse, bitset_stats_size,
15736 bitset_stats_count, bitset_stats_list, bitset_stat_list_reverse):
15738 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15739 * lib/bitsetv.c (bitsetv_alloc, bitsetv_create, bitsetv_free,
15740 bitsetv_zero, bitsetv_ones, bitsetv_transitive_closure,
15741 bitsetv_reflexive_transitive_closure): Likewise.
15742 * lib/bitsetv.h (bitsetv_alloc, bitsetv_create): Likewise.
15743 * lib/ebitset.c (ebitset_size, ebitset_list, ebitset_list_reverse):
15745 * lib/lbitset.c (lbitset_size, lbitset_list, lbitset_list_merge):
15748 * lib/abitset.c (abitset_ones, abitset_zero, abitset_bytes):
15749 Use size_t, not unsigned int, to count bytes.
15750 * lib/abitset.h (abitset_bytes): Likewise.
15751 * lib/bitset.c (bitset_bytes, bitset_alloc, bitset_obstack_alloc):
15753 * lib/bitset.h (bitset_bytes): Likewise.
15754 * lib/bitset_stats.c (bitset_stats_bytes, bitset_stats_init): Likewise.
15755 * lib/bitset_stats.h (bitset_stats_bytes): Likewise.
15756 * lib/bitsetv.c (bitsetv_alloc): Likewise.
15757 * lib/ebitset.c (ebitset_bytes): Likewise.
15758 * lib/ebitset.h (ebitset_bytes): Likewise.
15759 * lib/lbitset.c (lbitset_bytes): Likewise.
15760 * lib/lbitset.h (lbitset_bytes): Likewise.
15762 * lib/abitset.c (abitset_empty_p, abitset_not, abitset_equal_p,
15763 abitset_subset_p, abitset_disjoint_p, abitset_and,
15764 abitset_and_cmp, abitset_andn, abitset_andn_cmp, abitset_or,
15765 abitset_or_cmp, abitset_xor, abitset_xor_cmp, abitset_and_or,
15766 abitset_and_or_cmp, abitset_andn_or, abitset_andn_or_cmp,
15767 abitset_or_and, abitset_or_and_cmp):
15768 Use bitset_windex instead of unsigned int.
15769 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15770 * lib/ebitset.c (struct ebitset_struct.size, ebitset_elts_grow,
15771 ebitset_elt_add, ebitset_elt_remove, ebitset_weed,
15772 ebitset_elt_find, ebitset_list_reverse, ebitset_list, ebitset_init):
15774 * lib/lbitset.c (lbitset_ones, lbitset_not): Likewise.
15776 * lib/bitset.c (bitset_print):
15777 Use proper printf formats for widths of integer types.
15778 * lib/bitset_stats.c (bitset_percent_histogram_print,
15779 bitset_log_histogram_print, bitset_stats_print_1): Likewise.
15780 * lib/bitsetv-print.c (bitsetv_matrix_dump): Likewise.
15781 * lib/bitsetv.c (bitsetv_dump, debug_bitsetv): Likewise.
15782 * lib/lbitset.c (lbitset_bytes): Likewise.
15784 * lib/bbitset.h (BITSET_BINDEX_MAX, BITSET_WINDEX_MAX,
15785 BITSET_SIZE_MAX): New macros.
15786 (BITSET_INDEX_MAX): Remove. It wasn't right, since it assumed that
15787 sizeof (bitset_word) == sizeof (bitset_windex). All uses changed
15788 to BITSET_WINDEX_MAX.
15790 * lib/bitset.c (bitset_next, bitset_prev, bitset_first,
15791 bitset_last): Return BITSET_BINDEX_MAX (not -1) for no value,
15792 since we now return the bitset_bindex type (not int).
15794 * lib/bitsetv.c (bitsetv_alloc): Check for arithmetic overflow
15795 when computing sizes.
15796 * lib/ebitset.c (ebitset_elts_grow): Likewise.
15798 * lib/lbitset.c (lbitset_elt_find): Simplify windex calculation
15799 and avoid cast to unsigned.
15801 2002-09-30 Akim Demaille <akim@epita.fr>
15803 * lib/abitset.c, lib/bbitset.h, lib/bitset.c, lib/bitset.h,
15804 * lib/bitset_stats.c, lib/bitsetv.c, lib/ebitset.c, lib/lbitset.c:
15805 Updates from Michael Hayes.
15807 2002-09-30 Art Haas <ahaas@neosoft.com>
15809 * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
15811 * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
15814 2002-09-27 Akim Demaille <akim@epita.fr>
15818 2002-09-27 Akim Demaille <akim@epita.fr>
15820 * configure.ac (AM_INIT_AUTOMAKE): We _need_ 1.7.
15821 (Because of AC_LIBSOURCE).
15823 2002-09-27 Akim Demaille <akim@epita.fr>
15825 Playing with Autoscan.
15827 * configure.ac: Remove the old LIBOBJ tweaks.
15828 (AC_REPLACE_FUNCS): Add strrchr and strtol.
15829 * lib/strrchr.c: New.
15830 * lib/strtol.c: New, from the Coreutils 4.5.1.
15832 2002-09-27 Akim Demaille <akim@epita.fr>
15834 Playing with Autoscan.
15836 * m4/prereq.m4 (jm_PREREQ_ARGMATCH, jm_FUNC_ARGMATCH): New.
15837 * lib/Makefile.am (libbison_a_SOURCES): No longer include
15838 argmatch.c and argmatch.h, since they are AC_LIBSOURCE'd.
15839 * lib/strcasecmp.c, lib/strncasecmp.c, lib/memcmp.c: New, from the
15842 2002-09-24 Akim Demaille <akim@epita.fr>
15844 * doc/bison.texinfo (Stack Overflow): xref to Recursion.
15845 (Frequently Asked Questions, Parser Stack Overflow): New.
15847 2002-09-13 Akim Demaille <akim@epita.fr>
15849 Playing with autoscan.
15851 * src/reader.c (get_merge_function): Use xstrdup, not strdup.
15852 * src/files.c (skeleton_find): Remove, unused.
15853 * m4/memcmp.m4: New, from the Coreutils 4.5.1.
15854 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Run jm_FUNC_MEMCMP.
15856 2002-09-13 Akim Demaille <akim@epita.fr>
15858 * configure.ac (AM_INIT_AUTOMAKE): Require Automake 1.6.3.
15859 * Makefile.am (AUTOMAKE_OPTIONS): Don't.
15861 2002-09-13 Akim Demaille <akim@epita.fr>
15863 * configure.ac: Require 2.54.
15864 s/jm_FUNC_MALLOC/AC_FUNC_MALLOC/.
15865 s/jm_FUNC_REALLOC/AC_FUNC_REALLOC/.
15866 * m4/c-bs-a.m4, m4/malloc.m4, m4/mbstate_t.m4, m4/realloc.m4:
15867 Remove, provided by Autoconf macros.
15869 2002-09-12 Akim Demaille <akim@epita.fr>
15871 * m4/prereq.m4: Update, from Coreutils 4.5.1.
15873 2002-09-12 Akim Demaille <akim@epita.fr>
15875 * m4/prereq.m4: Update, from Fileutils 4.1.5.
15876 * configure.ac (jm_PREREQ_TEMPNAME): Invoke it.
15877 Reported by Martin Mokrejs.
15879 2002-09-10 Akim Demaille <akim@epita.fr>
15881 * src/parse-gram.y: Associate a human readable string to each
15883 * tests/regression.at (Invalid inputs): Adjust.
15885 2002-09-10 Gary V. Vaughan <gary@gnu.org>
15887 * tests/Makefile.am ($(srcdir)/package.m4): Bison now ships
15888 with an Autoconf-2.5x style configure.ac.
15890 2002-09-06 Paul Eggert <eggert@twinsun.com>
15892 * doc/bison.texinfo (Conditions): Make explicit that the GPL
15893 exception applies only to yacc.c. This is a modification of a
15894 patch originally suggested by Akim Demaille.
15896 2002-09-06 Akim Demaille <akim@epita.fr>
15898 * data/c.m4 (b4_copyright): Move the GPL exception comment from
15900 * data/yacc.c: here.
15902 * data/lalr1.cc (struct yyltype): Don't define it, since we use
15904 (b4_ltype): Default to yy::Location from location.hh.
15906 2002-09-04 Jim Meyering <jim@meyering.net>
15908 * data/yacc.c: Guard the declaration of yytoknum also with
15909 `#ifdef YYPRINT', so it is declared only when used.
15911 2002-09-04 Akim Demaille <akim@epita.fr>
15913 * configure.in: Rename as...
15914 * configure.ac: this.
15917 2002-09-04 Akim Demaille <akim@epita.fr>
15919 * src/assoc.c, src/closure.c, src/gram.c, src/injections.c,
15920 * src/lalr.c, src/LR0.c, src/relation.c, src/tables.c: Don't
15921 translate maintainer only messages.
15923 2002-08-12 Paul Eggert <eggert@twinsun.com>
15927 * Makefile.am (SUBDIRS): Remove intl.
15928 (DISTCLEANFILES): Remove.
15929 * NEWS: Mention that GNU M4 is now required. Clarify what is
15930 meant by "larger grammars". Mention the pt_BR translation.
15931 * configure.in (AC_CHECK_DECLS): Add getenv, getopt.
15932 (AM_GNU_GETTEXT_VERSION): New macro, replacing GETTEXT_VERSION var.
15933 Bump version from 0.11.2 to 0.11.5.
15934 (BISON_PREREQ_STAGE): Remove.
15935 (AM_GNU_GETTEXT): Use external gettext.
15936 (AC_OUTPUT): Remove intl/Makefile.
15938 * config/depcomp, config/install-sh: Sync with Automake 1.6.3.
15940 * data/glr.c: Include string.h, for strlen.
15941 (yyreportParseError): Use size_t for yysize.
15942 (yy_yypstack): No longer nested inside yypstates, as nested
15943 functions are not portable. Do not assume size_t is the
15945 (yypstates): Do not assume that ptrdiff_t is the same width
15946 as int, and similarly for yyposn and YYINDEX.
15948 * data/yacc.c: Fix comment about `$$ = $1': it can copy garbage.
15950 * lib/Makefile.am (INCLUDES): Do not include from the intl
15951 directory, which has been removed.
15952 * src/Makefile.am (INCLUDES): Likewise.
15954 * lib/Makefile.am (libbison_a_SOURCES): Add unlocked-io.h.
15955 (bitsets_sources, additional_bitsets_sources, timevars_sources):
15958 * lib/Makefile.am (libbison_a_SOURCES): Avoid +=, a GNU make extension.
15959 * tests/Makefile.am (EXTRA_DIST): Likewise.
15961 * lib/abitset.c (abitset_reverse_list, ebitset_reverse_list):
15962 Do not assume that bitset_windex is the same width as unsigned.
15964 * lib/abitset.c (abitset_unused_clear): Do not assume that
15965 bitset_word is the same width as int.
15966 * lib/bbitset.h (BITSET_INDEX_MAX, BITSET_MSB): Likewise.
15967 * lib/bitset.h (bitset_set, bitset_reset): Likewise.
15968 * lib/bitset_stats.c (bitset_stats_set, bitset_stats_reset): Likewise.
15969 * lib/ebitset.c (ebitset_set, ebitset_reset): Likewise.
15970 * lib/lbitset.c (lbitset_set, lbitset_reset): Likewise.
15972 * lib/abitset.c (abitset_op1): Use -1, not ~0, as memset arg (for
15973 portability to one's complement hosts!).
15974 * lib/ebitset.c (ebitset_op1): Likewise.
15975 * lib/lbitset.c (lbitset_op1): Likewise.
15977 * lib/argmatch.c, lib/quotearg.c, quotearg.h: Sync with GNU tar.
15978 * lib/argmatch.h, lib/basename.c, lib/dirname.c, lib/dirname.h,
15979 lib/hash.c, lib/hash.h, lib/strnlen.c, lib/xmalloc.c:
15980 Sync with fileutils.
15981 * lib/error.c, lib/getopt.c, lib/getopt.h, lib/getopt1.c,
15982 lib/gettext.h: Sync with diffutils.
15984 * lib/memrchr.c, lib/mkstemp.c, lib/strchr.c, lib/strnlen.c,
15985 lib/strspn.c, lib/tempname.c: Use GPL, not LGPL.
15987 * lib/obstack.c, lib/obstack.h: Sync with fileutils, except use
15988 PROTOTYPES to check for prototypes, and "defined __STDC__" to
15991 * lib/bbitset.h (BITSET_WORD_BITS): Now of type unsigned, not
15992 size_t; the old version tried to do this but casted improperly.
15993 (bitset_bindex, bitset_windex): Now size_t, not unsigned long.
15994 (bitset_test): Now returns int, not unsigned long.
15996 * lib/bitset_stats.c: Include "gettext.h".
15998 (bitset_stats_set, bitset_stats_reset, bitset_stats_test): Don't
15999 name locals "index", as it generates unnecessary warnings on some
16000 hosts that have an "index" function.
16002 * lib/bitset_stats.c (bitset_stats_print_1, bitset_stats_print,
16003 bitset_stats_read, bitset_stats_write): Wrap strings in _() if
16004 they need translation.
16005 * src/LR0.c (state_list_append, new_itemsets, get_state,
16006 append_states, generate_states): Likewise.
16007 * src/assoc.c (assoc_to_string): Likewise.
16008 * src/closure.c (print_closure, set_firsts, closure): Likewise.
16009 * src/gram.c (grammar_dump): Likewise.
16010 * src/injections.c (injections_compute): Likewise.
16011 * src/lalr.c (lookaheads_print): Likewise.
16012 * src/relation.c (relation_transpose): Likewise.
16013 * src/scan-gram.l: Likewise.
16014 * src/tables.c (table_grow, pack_vector): Likewise.
16016 * m4/Makefile.am (EXTRA_DIST): Remove codeset.m4,
16017 glibc21.m4, isc-posix.m4 lcmessage.m4, stage.m4.
16018 * m4/malloc.m4, m4/realloc.m4: Sync with diffutils.
16019 * m4/mbstate_t.m4: Sync with fileutils.
16020 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): AC_MBSTATE_T -> AC_TYPE_MBSTATE_T.
16022 * po/LINGUAS: Add pt_BR.
16023 * po/POTFILES.in: Add src/assoc.c, src/closure.c, src/gram.c,
16024 src/main.c, src/relation.c, src/state.c, lib/bitset_stats.c,
16026 Use src/parse-gram.y instead of src/parse-gram.c, as the gettext
16028 Similarly, use src/scan-gram.l instead of src/scan-gram.c.
16030 * src/complain.c (strerror_r): Remove decl; not needed.
16031 (strerror): Use same pattern as ../lib/error.c.
16033 * src/files.c, src/files.h (compute_header_macro): Remove; unused.
16035 * src/gram.c (grammar_dump): Do not assume ptrdiff_t fits in int.
16037 * src/main.c (main): Cast result of bindtextdomain and textdomain
16038 to void, to avoid a GCC warning when --disable-nls is in effect.
16040 * src/scan-gram.l: Use strings rather than escapes when possible,
16041 to minimize the number of warnings from xgettext.
16042 (handle_action_dollar, handle_action_at): Don't use isdigit,
16043 as it mishandles negative chars and it may not work as expected
16044 outside the C locale.
16046 * src/symtab.c (symbol_get): Don't cast LHS of an assignment;
16047 this is a GCC extension and is not portable to other compilers.
16049 * src/system.h (alloca): Use same pattern as ../lib/error.c.
16050 Do not include <ctype.h>; no longer needed.
16051 Do not include <malloc.h>; no longer needed (and generates
16052 warnings on OpenBSD 3.0).
16054 * tests/cxx-type.at (yylex): Do not pass signed char to isupper;
16057 * tests/regression.at: Do not use 'cc -c input.c -o input';
16058 Sun C rejects this. Instead, use 'cc -c input.c -o input.o'.
16060 * tests/synclines.at (AC_SYNCLINES_COMPILE): Accept any nonzero
16061 exit status as failure, not just exit status 1. Sun C exits
16062 with status 2 sometimes.
16064 * tests/torture.at (AT_INCREASE_DATA_SIZE): New macro.
16065 Use it for the two large tests.
16067 2002-08-02 Akim Demaille <akim@epita.fr>
16069 * src/conflicts.c (conflicts_output): Don't output rules never
16070 reduced here, since anyway that computation doesn't work.
16071 * src/gram.h, src/gram.h (rule_filter_t, rule_useful_p)
16072 (rule_useless_p, rule_never_reduced_p): New.
16073 (grammar_rules_partial_print): Use a filter instead of a range.
16074 Display the title only if needed.
16075 (grammar_rules_print): Adjust.
16076 (grammar_rules_never_reduced_report): New.
16077 * src/tables.c (action_row): Move the computation of rules never
16079 (token_actions): here.
16080 * src/main.c (main): Make the parser before making the report, so
16081 that rules never reduced are computed.
16082 Call grammar_rules_never_reduced_report.
16083 * src/print.c (print_results): Report rules never reduced.
16084 * tests/conflicts.at, tests/reduce.at: Adjust.
16086 2002-08-01 Akim Demaille <akim@epita.fr>
16088 Instead of attaching lookaheads and duplicating the rules being
16089 reduced by a state, attach the lookaheads to the reductions.
16091 * src/state.h (state_t): Remove the `lookaheads',
16092 `lookaheads_rule' member.
16093 (reductions_t): Add a `lookaheads' member.
16094 Use a regular array for the `rules'.
16095 * src/state.c (reductions_new): Initialize the lookaheads member
16097 (state_rule_lookaheads_print): Adjust.
16098 * src/state.h, src/state.c (state_reductions_find): New.
16099 * src/conflicts.c (resolve_sr_conflict, set_conflicts)
16100 (count_rr_conflicts): Adjust.
16101 * src/lalr.c (LArule): Remove.
16102 (add_lookback_edge): Adjust.
16103 (state_lookaheads_count): New.
16104 (states_lookaheads_initialize): Merge into...
16105 (initialize_LA): this.
16106 (lalr_free): Adjust.
16107 * src/main.c (main): Don't free nullable and derives too early: it
16108 is used by --verbose.
16109 * src/print.c, src/print_graph.c, src/tables.c: Adjust.
16111 2002-08-01 Akim Demaille <akim@epita.fr>
16113 * src/derives.h, src/derives.c (derives): A `rule_t***' instead of
16115 (set_derives, free_derives): Rename as...
16116 (derives_compute, derives_free): this.
16117 Adjust all dependencies.
16118 * src/nullable.c (set_nullable, free_nullable): Rename as...
16119 (nullable_compute, nullable_free): these.
16120 (rule_list_t): Store rule_t *, not rule_number_t.
16121 * src/state.c (state_rule_lookaheads_print): Directly compare rule
16122 pointers, instead of their numbers.
16123 * src/main.c (main): Call nullable_free, and derives_free earlier,
16124 as they were lo longer used.
16126 2002-08-01 Akim Demaille <akim@epita.fr>
16128 * lib/timevar.c (get_time): Include children time.
16129 * src/lalr.h (LA, LArule): Don't export them: used with the
16131 * src/lalr.c (LA, LArule): Static.
16132 * src/lalr.h, src/lalr.c (lalr_free): New.
16133 * src/main.c (main): Call it.
16134 * src/tables.c (pack_vector): Check whether loc is >= to the
16136 (pack_tables): Don't free froms, tos, conflict_tos, and pos...
16137 (tables_generate): do it, since that's also it which allocates
16139 Don't free LA and LArule, main does.
16141 2002-07-31 Akim Demaille <akim@epita.fr>
16143 Separate parser tables computation and output.
16145 * src/output.c (nvectors, base_t, base, base_ninf, conflict_table)
16146 (conflict_list, conflict_list_cnt, table, check, table_ninf)
16147 (yydefgoto, yydefact, high): Move to...
16148 * src/tables.h, src/tables.c: here.
16149 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
16150 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
16151 (symbol_number_to_vector_number, nvectors, BASE_MAX, BASE_MIN)
16152 (froms, tos, conflict_tos, tally, width, action_t, ACTION_MAX)
16153 (ACTION_MIN, actrow, order, nentries, pos, conflrow)
16154 (conflict_list_free, table_size, lowzero, table_grow, conflict_row)
16155 (action_row, save_row, token_actions, save_column, default_goto)
16156 (goto_actions, sort_actions, matching_state, pack_vector)
16157 (table_ninf_remap, pack_table, prepare_actions): Move to...
16158 * src/tables.c: here.
16159 * src/tables.h, src/tables.c(tables_generate, tables_free): New.
16160 * src/output.c (token_actions, output_base, output_conflicts)
16161 (output_check): Merge into...
16162 (prepare_actions): this.
16163 (actions_output): Rename as...
16164 (user_actions_output): this.
16165 * src/main.c (main): Call tables_generate and tables_free.
16167 2002-07-31 Akim Demaille <akim@epita.fr>
16169 Steal GCC's --time-report support.
16171 * lib/timevar.c, lib/timevar.h, lib/timevar.def: New,
16172 stolen/adjusted from GCC.
16173 * m4/stage.m4: Remove time related checks.
16174 * m4/timevar.m4: New.
16175 * configure.in: Adjust.
16176 * src/system.h: Adjust to using timevar.h.
16177 * src/getargs.h, src/getargs.c: Support trace_time for
16179 * src/main.c (stage): Remove.
16180 (main): Replace `stage' invocations with timevar calls.
16181 * src/output.c: Insert pertinent timevar calls.
16183 2002-07-31 Akim Demaille <akim@epita.fr>
16185 Let --trace have arguments.
16187 * src/getargs.h (enum trace_e): New.
16188 * src/getargs.c (trace_args, trace_types, trace_argmatch): New.
16189 (long_options, short_options): --trace/-T takes an optional
16191 Change all the uses of trace_flag to reflect the new flags.
16192 * tests/sets.at (Firsts, Nullable, Broken Closure): Use --trace=sets.
16194 Strengthen `stage' portability.
16196 * m4/stage.m4 (BISON_PREREQ_STAGE): New.
16197 * configure.in: Use it.
16198 Don't check for malloc.h and sys/times.h.
16199 * src/system.h: Include them when appropriate.
16200 * src/main.c (stage): Compile only when mallinfo, struct mallinfo,
16201 times and struct tms are available.
16203 2002-07-30 Akim Demaille <akim@epita.fr>
16205 In verbose parse error message, don't report `error' as an
16207 * tests/actions.at (Printers and Destructors): Adjust.
16208 * tests/calc.at (Calculator $1): Adjust.
16209 * data/yacc.c, data/glr.c, data/lalr1.c: When making the verbose
16210 error message, do not report the parser accepts the error token in
16213 2002-07-30 Akim Demaille <akim@epita.fr>
16215 Normalize conflict related messages.
16217 * src/complain.h, src/complain.c (warn, complain): New.
16218 * src/conflicts.c (conflicts_print): Use them.
16219 (conflict_report_yacc): New, extracted from...
16220 (conflicts_print): here.
16221 * tests/conflicts.at, tests/existing.at: Adjust.
16223 2002-07-30 Akim Demaille <akim@epita.fr>
16225 Report rules which are never reduced by the parser: those hidden
16228 * src/LR0.c (save_reductions): Don't make the final state too
16229 different: save its reduction (accept) instead of having a state
16230 without any action (no shift or goto, no reduce).
16231 Note: the final state is now a ``regular'' state, i.e., the
16232 parsers now contain `reduce 0' as default reduction.
16233 Nevertheless, since they decide to `accept' when yystate =
16234 final_state, they still will not reduce rule 0.
16235 * src/print.c (print_actions, print_reduction): Adjust.
16236 * src/output.c (action_row): Track reduced rules.
16237 (token_actions): Report rules never reduced.
16238 * tests/conflicts.at, tests/regression.at: Adjust.
16240 2002-07-30 Akim Demaille <akim@epita.fr>
16242 `stage' was accidently included in a previous patch.
16243 Initiate its autoconfiscation.
16245 * configure.in: Look for malloc.h and sys/times.h.
16246 * src/main.c (stage): Adjust.
16247 Report only when trace_flag.
16249 2002-07-29 Akim Demaille <akim@epita.fr>
16251 * src/state.h, src/state.c (transitions_t): Holds state_t*'s, not
16253 (errs_t): symbol_t*, not symbol_number_t.
16254 (reductions_t): rule_t*, not rule_number_t.
16255 (FOR_EACH_SHIFT): New.
16256 * src/LR0.c, src/conflicts.c, src/lalr.c, src/output.c
16257 * src/print.c, src/print_graph.c: Adjust.
16259 2002-07-29 Akim Demaille <akim@epita.fr>
16261 Use $accept and $end, as BYacc and BTYacc do, instead of $axiom and $.
16263 * src/symtab.h, src/symtab.c (eoftoken, axiom): Rename as...
16264 (endtoken, accept): these.
16265 * src/reader.c (reader): Set endtoken's default tag to "$end".
16266 Set undeftoken's tag to "$undefined" instead of "$undefined.".
16267 * doc/bison.texinfo (Table of Symbols): Mention $accept and $end.
16270 2002-07-29 Akim Demaille <akim@epita.fr>
16272 * src/reduce.c (reduce_grammar): When the language is empty,
16273 complain about the start symbol, not the axiom.
16275 * tests/reduce.at (Empty Language): New.
16277 2002-07-26 Akim Demaille <akim@epita.fr>
16279 * src/reader.h, src/reader.c (gram_error): ... can't get
16280 yycontrol without making too strong assumptions on the parser
16282 * src/output.c (prepare_tokens): Use the real 0th value of
16283 token_translations instead of `0'.
16284 * src/parse-gram.y (yyerror): Don't rely on yycontrol being
16286 * data/yacc.c (yyreport_parse_error): Rename yylocation as yylloc
16287 for the time being: %locations ought to provide it to yyerror.
16289 2002-07-25 Akim Demaille <akim@epita.fr>
16291 * src/output.c (prepare_tokens): Go up to ntokens, not ntokens + 1.
16292 * doc/bison.texinfo (Decl Summary): s/$illegal/$undefined./.
16293 * tests/regression.at (Web2c Actions): Adjust.
16295 2002-07-25 Akim Demaille <akim@epita.fr>
16297 Stop storing rules from 1 to nrules + 1.
16299 * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c
16300 * src/nullable.c, src/output.c, src/print.c, src/reader.c
16301 * src/reduce.c: Allocate and free from &rules[0], not &rules[1].
16302 Iterate from 0 to nrules.
16303 Use rule_number_as_item_number and item_number_as_rule_number.
16304 Adjust to `derive' now containing possibly 0.
16305 * src/gram.h (rule_number_as_item_number, item_number_as_rule_number):
16306 Handle the `- 1' part in rule numbers from/to item numbers.
16307 * src/conflicts.c (log_resolution): Fix the message which reversed
16309 * src/output.c (action_row): Initialize default_rule to -1.
16310 (token_actions): Adjust.
16311 * tests/sets.at (Nullable, Firsts): Fix the previously bogus
16313 * tests/conflicts.at (Resolved SR Conflicts): Likewise.
16315 2002-07-25 Akim Demaille <akim@epita.fr>
16317 * data/c.m4 (b4_c_function, b4_c_ansi_args, b4_c_ansi_arg)
16318 (b4_c_knr_arg_names, b4_c_knr_arg_name, b4_c_knr_arg_decls)
16319 (b4_c_knr_arg_decl): New.
16320 * data/yacc.c: Use it to define yysymprint, yydestruct, and
16321 yyreport_parse_error.
16323 2002-07-25 Akim Demaille <akim@epita.fr>
16325 * data/yacc.c (yyreport_parse_error): New, extracted from...
16327 (yydestruct, yysymprint): Move above yyparse.
16330 2002-07-25 Akim Demaille <akim@epita.fr>
16332 * data/c.m4 (b4_ints_in, b4_int_type, b4_int_type_for): New,
16334 (b4_sint_type, b4_uint_type): these.
16335 * data/yacc.c, data/glr.c, data/lalr1.cc: Use b4_int_type_for.
16336 * tests/regression.at (Web2c Actions): Adjust.
16338 2002-07-25 Akim Demaille <akim@epita.fr>
16340 * src/gram.h (TIEM_NUMBER_MAX): New.
16341 (item_number_of_rule_number, rule_number_of_item_number): Rename
16343 (rule_number_as_item_number, item_number_as_rule_number): these.
16344 Adjust dependencies.
16345 * src/output.c (vector_number_t, VECTOR_NUMBER_MAX)
16346 (VECTOR_NUMBER_MIN, state_number_to_vector_number)
16347 (symbol_number_to_vector_number): New.
16348 (order): Of vector_number_t* type.
16349 (base_t, BASE_MAX, BASE_MIN): New.
16350 (froms, tos, width, pos, check): Of base_t type.
16351 (action_number_t, ACTION_MIN, ACTION_MAX): New.
16352 (actrow): Of action_number_t type.
16353 (conflrow): Of unsigned int type.
16354 (table_ninf, base_ninf): New.
16355 (GENERATE_MUSCLE_INSERT_TABLE): Also output the `*_min' value.
16356 (muscle_insert_int_table, muscle_insert_base_table)
16357 (muscle_insert_rule_number_table): New.
16358 (prepare_tokens): Output `toknum' as int_table.
16359 (action_row): Returns a rule_number_t.
16360 Use ACTION_MIN, not SHRT_MIN.
16361 (token_actions): yydefact is rule_number_t*.
16362 (table_ninf_remap): New.
16363 (pack_table): Use it for `base' and `table'.
16364 * data/yacc.c, data/glr.c, data/lalr1.cc (YYFLAG): Remove,
16366 (YYPACT_NINF, YYTABLE_NINF): these.
16367 (yypact, yytable): Compute their types instead of hard-coded
16369 * tests/regression.at (Web2c Actions): Adjust.
16371 2002-07-19 Akim Demaille <akim@epita.fr>
16373 * src/scan-gram.l (id): Can start with an underscore.
16375 2002-07-16 Akim Demaille <akim@epita.fr>
16377 * src/assoc.c, src/asssoc.h (assoc_t, assoc_to_string): New.
16378 Adjust all former `associativity' dependencies.
16379 * src/symtab.c (symbol_new): Default associativity is `undef', not
16381 (symbol_check_alias_consistence): Adjust.
16383 2002-07-09 Akim Demaille <akim@epita.fr>
16385 * doc/bison.texinfo: Properly set the ``header'' part.
16386 Use @dircategory ``GNU programming tools'' as per Texinfo's
16390 2002-07-09 Akim Demaille <akim@epita.fr>
16392 * lib/quotearg.h: Protect against multiple inclusions.
16393 * src/location.h (location_t): Add a `file' member.
16394 (LOCATION_RESET, LOCATION_PRINT): Adjust.
16395 * src/complain.c (warn_at, complain_at, fatal_at): Drop
16396 `error_one_per_line' support.
16398 2002-07-09 Akim Demaille <akim@epita.fr>
16400 * src/complain.h, src/complain.c (warn, complain): Remove, unused.
16401 * src/reader.c (lineno): Remove.
16402 Adjust all dependencies.
16403 (get_merge_function): Take a location and use complain_at.
16404 * src/symtab.h, src/symtab.c (symbol_make_alias): Likewise.
16405 * tests/regression.at (Invalid inputs, Mixing %token styles):
16408 2002-07-09 Akim Demaille <akim@epita.fr>
16410 * src/parse-gram.y (rules_or_grammar_declaration): Add an error
16411 recovery rule, and forbid extensions when --yacc.
16412 (gram_error): Use complain_at.
16413 * src/reader.c (reader): Exit if there were parse errors.
16415 2002-07-09 Akim Demaille <akim@epita.fr>
16417 * tests/synclines.at (AT_SYNCLINES_COMPILE): New.
16418 (AT_TEST_SYNCLINE): Adjust to unusual GCC outputs.
16419 Reported by R Blake <blakers@mac.com>.
16421 2002-07-09 Akim Demaille <akim@epita.fr>
16423 * data/yacc.c: Output the copyright notive in the header.
16425 2002-07-03 Akim Demaille <akim@epita.fr>
16427 * src/output.c (froms, tos): Are state_number_t.
16428 (save_column): sp, sp1, and sp2 are state_number_t.
16429 (prepare): Rename `final' as `final_state_number', `nnts' as
16430 `nterms_number', `nrules' as `rules_number', `nstates' as
16431 `states_number', and `ntokens' as `tokens_number'. Remove `nsym',
16433 * data/yacc.c, data/glr.c, data/lalr1.cc: Adjust.
16434 * data/lalr1.cc (nsym_): Remove, unused.
16436 2002-07-03 Akim Demaille <akim@epita.fr>
16438 * src/lalr.h, src/lalr.c (goto_number_t): New.
16439 * src/lalr.c (goto_list_t): New.
16441 * src/nullable.c (rule_list_t): New.
16443 * src/types.h: Remove.
16445 2002-07-03 Akim Demaille <akim@epita.fr>
16447 * src/closure.c (print_fderives): Use rule_rhs_print.
16448 * src/derives.c (print_derives): Use rule_rhs_print.
16449 (rule_list_t): New, replaces `shorts'.
16450 (set_derives): Add comments.
16451 * tests/sets.at (Nullable, Firsts): Adjust.
16453 2002-07-03 Akim Demaille <akim@epita.fr>
16455 * src/output.c (prepare_actions): Free `tally' and `width'.
16456 (prepare_actions): Allocate and free `order'.
16457 * src/symtab.c (symbols_free): Free `symbols'.
16458 * src/scan-gram.l (scanner_free): Clear Flex's scanners memory.
16459 * src/output.c (m4_invoke): Move to...
16460 * src/scan-skel.l: here.
16461 (<<EOF>>): Close yyout, and free its name.
16463 2002-07-03 Akim Demaille <akim@epita.fr>
16465 Fix some memory leaks, and fix a bug: state 0 was examined twice.
16467 * src/LR0.c (new_state): Merge into...
16468 (state_list_append): this.
16469 (new_states): Merge into...
16470 (generate_states): here.
16471 (set_states): Don't ensure a proper `errs' state member here, do it...
16472 * src/conflicts.c (conflicts_solve): here.
16473 * src/state.h, src/state.c: Comment changes.
16474 (state_t): Rename member `shifts' as `transitions'.
16475 Adjust all dependencies.
16476 (errs_new): For consistency, also take the values as argument.
16477 (errs_dup): Remove.
16478 (state_errs_set): New.
16479 (state_reductions_set, state_transitions_set): Assert that no
16480 previous value was assigned.
16482 (states_free): Use it.
16483 * src/conflicts.c (resolve_sr_conflict): Don't use an `errs_t' as
16484 temporary storage: use `errs' and `nerrs' as elsewhere.
16485 (set_conflicts): Allocate and free this `errs'.
16487 2002-07-02 Akim Demaille <akim@epita.fr>
16489 * lib/libiberty.h: New.
16490 * lib: Update the bitset implementation from upstream.
16491 * src/closure.c, src/lalr.c, src/output.c, src/print_graph.c,
16492 * src/state.c: Use BITSET_FOR_EACH, not BITSET_EXECUTE.
16493 * src/main.c: Adjust bitset stats calls.
16495 2002-07-01 Paul Eggert <eggert@twinsun.com>
16497 * src/scan-gram.l (<SC_ESCAPED_CHARACTER>): Convert to unsigned
16498 char, so that negative chars don't collide with $.
16500 2002-06-30 Akim Demaille <akim@epita.fr>
16502 Have the GLR tests be `warning' checked, and fix the warnings.
16504 * data/glr.c (YYFPRINTF): Always define it, not only when YYDEBUG
16505 (yyuserAction, yyreportAmbiguity): `Use' all the arguments.
16506 (yyremoveDeletes): `yyi' and `yyj' are size_t.
16507 Use YYFPRINTF when under if (YYDEBUG) to avoid empty `if' bodies.
16508 (yyaddDeferredAction): static.
16509 (yyglrReduce): yyi, yyk, amd yyposn are size_t.
16510 (yyreportParseError): yyprefix is const.
16511 yytokenp is used only when verbose.
16512 (yy__GNUC__): Replace with __GNUC__.
16513 (yypdumpstack): yyi is size_t.
16514 (yypreference): Un-yy local variables and arguments, to avoid
16515 clashes with `yyr1'. Anyway, we are not in the user name space.
16516 (yytname_size): be an int, as is compared with ints.
16517 * tests/testsuite.at (AT_COMPILE, AT_PARSER_CHECK): New.
16519 * tests/cxx-gram.at: Use quotation to protect $1.
16520 Use AT_COMPILE to enable warnings hunts.
16521 Prototype yylex and yyerror.
16523 Include `string.h', not `strings.h'.
16524 Produce and prototype stmtMerge only when used.
16525 yylex takes a location.
16527 2002-06-30 Akim Demaille <akim@epita.fr>
16529 We spend a lot of time in quotearg, in particular when --verbose.
16531 * src/symtab.c (symbol_get): Store a quoted version of the key.
16532 (symbol_tag_get, symbol_tag_get_n, symbol_tag_print): Remove.
16533 Adjust all callers.
16535 2002-06-30 Akim Demaille <akim@epita.fr>
16537 * src/state.h (reductions_t): Rename member `nreds' as num.
16538 (errs_t): Rename members `nerrs' and `errs' as `num' and `symbols'.
16539 * src/state.c (ERRS_ALLOC, REDUCTIONS_ALLOC): Use the correct types.
16541 2002-06-30 Akim Demaille <akim@epita.fr>
16543 * src/state.h, src/state.c (shift_t, SHIFT_SYMBOL, SHIFT_IS_SHIFT)
16544 (SHIFT_IS_GOTO, SHIFT_IS_ERROR, SHIFT_DISABLE, SHIFT_IS_DISABLED)
16545 (shifts_to): Rename as...
16546 (transition_t, TRANSITION_SYMBOL, TRANSITION_IS_TRANSITION)
16547 (TRANSITION_IS_GOTO, TRANSITION_IS_ERROR, TRANSITION_DISABLE)
16548 (TRANSITION_IS_DISABLED, transitions_to): these.
16550 2002-06-30 Akim Demaille <akim@epita.fr>
16552 * src/print.c (print_shifts, print_gotos): Merge into...
16553 (print_transitions): this.
16554 (print_transitions, print_errs, print_reductions): Align the
16555 lookaheads columns.
16556 (print_core, print_transitions, print_errs, print_state,
16557 print_grammar): Output empty lines separator before, not after.
16558 (state_default_rule_compute): Rename as...
16559 (state_default_rule): this.
16560 * tests/conflicts.at (Defaulted Conflicted Reduction),
16561 (Unresolved SR Conflicts, Resolved SR Conflicts): Adjust.
16562 * tests/regression.at (Rule Line Numbers, Web2c Report): Adjust.
16564 2002-06-30 Akim Demaille <akim@epita.fr>
16566 Display items as we display rules.
16568 * src/gram.h, src/gram.c (rule_lhs_print): New.
16569 * src/gram.c (grammar_rules_partial_print): Use it.
16570 * src/print.c (print_core): Likewise.
16571 * tests/conflicts.at (Defaulted Conflicted Reduction),
16572 (Unresolved SR Conflicts): Adjust.
16573 (Unresolved SR Conflicts): Adjust and rename as...
16574 (Resolved SR Conflicts): this, as was meant.
16575 * tests/regression.at (Web2c Report): Adjust.
16577 2002-06-30 Akim Demaille <akim@epita.fr>
16579 * src/print.c (state_default_rule_compute): New, extracted from...
16580 (print_reductions): here.
16581 Pessimize, but clarify the code.
16582 * tests/conflicts.at (Defaulted Conflicted Reduction): New.
16584 2002-06-30 Akim Demaille <akim@epita.fr>
16586 * src/output.c (action_row): Let default_rule be always a rule
16589 2002-06-30 Akim Demaille <akim@epita.fr>
16591 * src/closure.c (print_firsts, print_fderives, closure):
16592 Use BITSET_EXECUTE.
16593 * src/lalr.c (lookaheads_print): Likewise.
16594 * src/state.c (state_rule_lookaheads_print): Likewise.
16595 * src/print_graph.c (print_core): Likewise.
16596 * src/print.c (print_reductions): Likewise.
16597 * src/output.c (action_row): Likewise.
16598 Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
16600 2002-06-30 Akim Demaille <akim@epita.fr>
16602 * src/print_graph.c: Use report_flag.
16604 2002-06-30 Akim Demaille <akim@epita.fr>
16606 * src/lalr.c (traverse, digraph, matrix_print, transpose): Move
16608 * src/relation.h, src/relation.c (traverse, relation_digraph)
16609 (relation_print, relation_transpose): New.
16611 2002-06-30 Akim Demaille <akim@epita.fr>
16613 * src/state.h, src/state.c (shifts_to): New.
16614 * src/lalr.c (build_relations): Use it.
16616 2002-06-30 Akim Demaille <akim@epita.fr>
16618 * src/gram.h (rule_number_t, RULE_NUMBER_MAX, int_of_rule_number)
16619 (item_number_of_rule_number, rule_number_of_item_number): New.
16620 * src/LR0.c, src/closure.c, src/derives.c, src/derives.h,
16621 * src/gram.c, src/lalr.c, src/nullable.c, src/output.c, src/print.c,
16622 * src/print_graph.c, src/reader.c, src/reduce.c, src/reduce.h:
16623 Propagate their use.
16624 Much remains to be done, in particular wrt `shorts' from types.h.
16626 2002-06-30 Akim Demaille <akim@epita.fr>
16628 * src/symtab.c (symbol_new): Initialize the `printer' member.
16630 2002-06-30 Akim Demaille <akim@epita.fr>
16632 * src/LR0.c (save_reductions): Remove, replaced by...
16633 * src/state.h, src/state.c (state_reductions_set): New.
16634 (reductions, errs): Rename as...
16635 (reductions_t, errs_t): these.
16636 Adjust all dependencies.
16638 2002-06-30 Akim Demaille <akim@epita.fr>
16640 * src/LR0.c (state_list_t, state_list_append): New.
16641 (first_state, last_state): Now symbol_list_t.
16642 (this_state): Remove.
16643 (new_itemsets, append_states, save_reductions): Take a state_t as
16645 (set_states, generate_states): Adjust.
16646 (save_shifts): Remove, replaced by...
16647 * src/state.h, src/state.c (state_shifts_set): New.
16648 (shifts): Rename as...
16650 Adjust all dependencies.
16651 * src/state.h (state_t): Remove the `next' member.
16653 2002-06-30 Akim Demaille <akim@epita.fr>
16655 * src/vcg.c (quote): Use slot 2, since we often pass symbol tag
16658 2002-06-30 Akim Demaille <akim@epita.fr>
16660 Use hash.h for the state hash table.
16662 * src/LR0.c (STATE_HASH_SIZE, state_hash): Remove.
16663 (allocate_storage): Use state_hash_new.
16664 (free_storage): Use state_hash_free.
16665 (new_state, get_state): Adjust.
16666 * src/lalr.h, src/lalr.c (states): Move to...
16667 * src/states.h (state_t): Remove the `link' member, no longer
16669 * src/states.h, src/states.c: here.
16670 (state_hash_new, state_hash_free, state_hash_lookup)
16671 (state_hash_insert, states_free): New.
16672 * src/states.c (state_table, state_compare, state_hash): New.
16673 * src/output.c (output_actions): Do not free states now, since we
16674 still need to know the final_state number in `prepare', called
16675 afterwards. Do it...
16676 * src/main.c (main): here: call states_free after `output'.
16678 2002-06-30 Akim Demaille <akim@epita.fr>
16680 * src/state.h, src/state.c (state_new): New, extracted from...
16681 * src/LR0.c (new_state): here.
16682 * src/state.h (STATE_ALLOC): Move to...
16683 * src/state.c: here.
16684 * src/LR0.h, src/LR0.c (nstates, final_state): Move to...
16685 * src/state.h, src/state.c: here.
16687 2002-06-30 Akim Demaille <akim@epita.fr>
16689 * src/reader.c (gensym): Rename as...
16690 * src/symtab.h, src/symtab.c (dummy_symbol_get): this.
16691 (getsym): Rename as...
16692 (symbol_get): this.
16694 2002-06-30 Akim Demaille <akim@epita.fr>
16696 * src/state.h (state_number_t, STATE_NUMBER_MAX): New.
16697 * src/LR0.c, src/LR0.h, src/conflicts.c, src/lalr.c, src/lalr.h,
16698 * src/output.c, src/print.c, src/print_graph.c: Propagate.
16699 * src/LR0.h, src/LR0.h (final_state): Is a state_t*.
16701 2002-06-30 Akim Demaille <akim@epita.fr>
16703 Make the test suite pass with warnings checked.
16705 * tests/actions.at (Printers and Destructors): Improve.
16706 Avoid unsigned vs. signed issues.
16707 * tests/calc.at: Don't exercise the scanner here, do it...
16708 * tests/input.at (Torturing the Scanner): here.
16710 2002-06-28 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16712 * data/glr.c: Correct typo in Emacs-mode directive. Slightly
16713 reorganize first lines parallel to yacc.c.
16715 2002-06-28 Akim Demaille <akim@epita.fr>
16717 * data/c.m4 (b4_copyright, b4_sint_type, b4_uint_type, b4_token_define)
16718 (b4_token_enum, b4_token_defines): New, factored from...
16719 * data/lalr1.cc, data/yacc.c, glr.c: here.
16721 2002-06-28 Akim Demaille <akim@epita.fr>
16723 * data/yacc.c (yydestruct, yysymprint): Pacify GCC warnings for
16725 * src/output.c (merger_output): static.
16727 2002-06-28 Akim Demaille <akim@epita.fr>
16729 * src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
16730 * src/conflicts.c (conflicts_total_count): `i' is unsigned, to
16732 * src/output.c (save_row): Initialize all the variables to pacify GCC.
16734 2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16736 Accumulated changelog for new GLR parsing features.
16738 * src/conflicts.c (count_total_conflicts): Change name to
16739 conflicts_total_count.
16740 * src/conflicts.h: Ditto.
16741 * src/output.c (token_actions): Use the new name.
16742 (output_conflicts): Change conflp => conflict_list_heads, and
16743 confl => conflict_list for better readability.
16744 * data/glr.c: Use the new names.
16745 * NEWS: Add self to GLR announcement.
16747 * src/reader.c (free_merger_functions): Cleanup: XFREE->free.
16749 * doc/bison.texinfo (GLR Parsers): Make corrections suggested by
16752 * data/bison.glr: Change name to glr.c
16753 * data/glr.c: Renamed from bison.glr.
16754 * data/Makefile.am: Add glr.c
16758 * src/symlist.h: Add dprec and merger fields to symbol_list_s.
16759 * src/symlist.c (symbol_list_new): Initialize dprec and merger fields.
16761 Originally 2002-06-16 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16763 * data/bison.glr: Be sure to restore the
16764 current #line when returning to the skeleton contents after having
16765 exposed the input file's #line.
16767 Originally 2002-06-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16769 * data/bison.glr: Bring up to date with changes to bison.simple.
16771 Originally 2002-06-03 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16773 * data/bison.glr: Correct definitions that use b4_prefix.
16774 Various reformatting.
16775 (GLRStack): Make yychar (in YYPURE case) and yytokenp as part of stack.
16776 (yyreportParseError, yyrecoverParseError, yyprocessOneStack): remove
16777 yytokenp argument; now part of stack.
16778 (yychar): Define to behave as documented.
16779 (yyclearin): Ditto.
16781 Originally 2002-05-14 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
16783 * src/reader.h: Add declaration for free_merger_functions.
16785 * src/reader.c (merge_functions): New variable.
16786 (get_merge_function): New function.
16787 (free_merger_functions): New function.
16788 (readgram): Check for %prec that is not followed by a symbol.
16789 Handle %dprec and %merge declarations.
16790 (packgram): Initialize dprec and merger fields in rules array.
16792 * src/output.c (conflict_tos, conflrow, conflict_table, conflict_list,
16793 conflict_list_cnt, conflict_list_free): New variables.
16794 (table_grow): Also grow conflict_table.
16795 (prepare_rules): Output dprec and merger tables.
16796 (conflict_row): New function.
16797 (action_row): Output conflict lists for GLR parser. Don't use
16798 default reduction in conflicted states for GLR parser so that there
16799 are spaces for the conflict lists.
16800 (save_row): Also save conflict information.
16801 (token_actions): Allocate conflict list.
16802 (merger_output): New function.
16803 (pack_vector): Pack conflict table, too.
16804 (output_conflicts): New function to output yyconflp and yyconfl.
16805 (output_check): Allocate conflict_tos.
16806 (output_actions): Output conflict tables, also.
16807 (output_skeleton): Output b4_mergers definition.
16808 (prepare): Output b4_max_rhs_length definition.
16809 Use 'bison.glr' as default skeleton for GLR parsers.
16811 * src/gram.c (glr_parser): New flag.
16812 (grammar_free): Call free_merger_functions.
16814 * src/conflicts.c (count_rr_conflicts): Augment to optionally count
16815 all pairs of conflicting reductions, rather than just all tokens
16816 causing conflicts. Needed to size conflict tables.
16817 (conflicts_output): Modify call to count_rr_conflicts for new
16819 (conflicts_print): Ditto.
16820 (count_total_conflicts): New function.
16822 * src/reader.h (merger_list): New type.
16823 (merge_functions): New variable.
16825 * src/lex.h (tok_dprec, tok_merge): New token types.
16827 * src/gram.h (rule_s): Add dprec and merger fields.
16828 (glr_parser): New flag.
16830 * src/conflicts.h (count_total_conflicts): New function.
16832 * src/options.c (option_table): Add %dprec, %merge, and %glr-parser.
16834 * doc/bison.texinfo (Generalized LR Parsing): New section.
16835 (GLR Parsers): New section.
16836 (Language and Grammar): Mention GLR parsing.
16837 (Table of Symbols): Add %dprec, %glr-parser, %merge, GLR
16838 Correct typo ("tge" -> "the").
16840 * data/bison.glr: New skeleton for GLR parsing.
16842 * tests/cxx-gram.at: New tests for GLR parsing.
16844 * tests/testsuite.at: Include cxx-gram.at.
16846 * tests/Makefile.am: Add cxx-gram.at.
16848 * src/parse-gram.y:
16850 * src/scan-gram.l: Add %dprec, %glr-parser, %merge.
16852 * src/parse-gram.y: Grammar for %dprec, %merge, %glr-parser.
16854 2002-06-27 Akim Demaille <akim@epita.fr>
16856 * src/options.h, src/options.c: Remove.
16857 * src/getargs.c (short_options, long_options): New.
16859 2002-06-27 Akim Demaille <akim@epita.fr>
16861 * data/bison.simple, data/bison.c++: Rename as...
16862 * data/yacc.c, data/lalr1.cc: these.
16863 * doc/bison.texinfo (Environment Variables): Remove.
16865 2002-06-25 Raja R Harinath <harinath@cs.umn.edu>
16867 * src/getargs.c (report_argmatch): Initialize strtok().
16869 2002-06-20 Akim Demaille <akim@epita.fr>
16871 * data/bison.simple (b4_symbol_actions): New, replaces...
16872 (b4_symbol_destructor, b4_symbol_printer): these.
16873 (yysymprint): Be sure to call YYPRINT only for tokens, and using
16874 user token numbers.
16876 2002-06-20 Akim Demaille <akim@epita.fr>
16878 * data/bison.simple (yydestructor): Rename as...
16879 (yydestruct): this.
16881 2002-06-20 Akim Demaille <akim@epita.fr>
16883 * src/symtab.h, src/symtab.c (symbol_type_set)
16884 (symbol_destructor_set, symbol_precedence_set): The location is
16886 Adjust all callers.
16888 2002-06-20 Akim Demaille <akim@epita.fr>
16890 * src/parse-gram.y (YYPRINT, yyprint): Don't mess with the parser
16892 * src/reader.h, src/reader.c (grammar_current_rule_prec_set):
16894 * src/symtab.h, src/symtab.c (symbol_class_set)
16895 (symbol_user_token_number_set): Likewise.
16896 Adjust all callers.
16897 Promote complain_at.
16898 * tests/input.at (Type Clashes): Adjust.
16900 2002-06-20 Akim Demaille <akim@epita.fr>
16902 * data/bison.simple (YYLEX): Fix the declaration when
16905 2002-06-20 Akim Demaille <akim@epita.fr>
16907 * data/bison.simple (yysymprint): Don't print the token number,
16909 * tests/actions.at (Destructors): Rename as...
16910 (Printers and Destructors): this.
16911 Also exercise %printer.
16913 2002-06-20 Akim Demaille <akim@epita.fr>
16915 * data/bison.simple (YYDSYMPRINT): New.
16916 Use it to remove many of the #if YYDEBUG/if (yydebug).
16918 2002-06-20 Akim Demaille <akim@epita.fr>
16920 * src/symtab.h, src/symtab.c (symbol_t): printer and
16921 printer_location are new members.
16922 (symbol_printer_set): New.
16923 * src/parse-gram.y (PERCENT_PRINTER): New token.
16924 Handle its associated rule.
16925 * src/scan-gram.l: Adjust.
16926 (handle_destructor_at, handle_destructor_dollar): Rename as...
16927 (handle_symbol_code_at, handle_symbol_code_dollar): these.
16928 * src/output.c (symbol_printers_output): New.
16929 (output_skeleton): Call it.
16930 * data/bison.simple (yysymprint): New. Cannot be named yyprint
16931 since there are already many grammar files with a user `yyprint'.
16932 Replace the calls to YYPRINT to calls to yysymprint.
16933 * tests/calc.at: Adjust.
16934 * tests/torture.at (AT_DATA_STACK_TORTURE): Remove YYPRINT: it was
16935 taking advantage of parser very internal details (stack size!).
16937 2002-06-20 Akim Demaille <akim@epita.fr>
16939 * src/scan-gram.l: Complete the scanner with the missing patterns
16941 Use `quote' and `symbol_tag_get' where appropriate.
16943 2002-06-19 Akim Demaille <akim@epita.fr>
16945 * tests/actions.at (Destructors): Augment to test locations.
16946 * data/bison.simple (yydestructor): Pass it the current location
16947 if locations are enabled.
16948 Prototype only when __STDC__ or C++.
16949 Change the argument names to move into the yy name space: there is
16952 2002-06-19 Akim Demaille <akim@epita.fr>
16954 * data/bison.simple (b4_pure_if): New.
16955 Use it instead of #ifdef YYPURE.
16957 2002-06-19 Akim Demaille <akim@epita.fr>
16959 * data/bison.simple (b4_location_if): New.
16960 Use it instead of #ifdef YYLSP_NEEDED.
16962 2002-06-19 Akim Demaille <akim@epita.fr>
16964 Prepare @$ in %destructor, but currently don't bind it in the
16965 skeleton, as %location use is not cleaned up yet.
16967 * src/scan-gram.l (handle_dollar, handle_destructor_at)
16968 (handle_action_at): New.
16969 (handle_at, handle_action_dollar, handle_destructor_dollar): Take
16970 a braced_code_t and a location as additional arguments.
16971 (handle_destructor_dollar): Instead of requiring `b4_eval', just
16972 unquote one when outputting `b4_dollar_dollar'.
16974 * data/bison.simple (b4_eval): Remove.
16975 (b4_symbol_destructor): Adjust.
16976 * tests/input.at (Invalid @n): Adjust.
16978 2002-06-19 Zack Weinberg <zack@codesourcery.com>
16980 * doc/bison.texinfo: Document ability to have multiple
16983 2002-06-18 Akim Demaille <akim@epita.fr>
16985 * src/files.c (compute_base_names): When computing the output file
16986 names from the input file name, strip the directory part.
16988 2002-06-18 Akim Demaille <akim@epita.fr>
16990 * data/bison.simple.new: Comment changes.
16991 Reported by Andreas Schwab.
16993 2002-06-18 Matt Kraai <kraai@alumni.cmu.edu>
16995 * data/bison.simple (yyoverflowlab): #ifndef yyoverflow, so that
16996 there are no `label `yyoverflowlab' defined but not used' warnings
16997 when yyoverflow is defined.
16999 2002-06-18 Akim Demaille <akim@epita.fr>
17001 * src/symtab.h, src/symtab.c (symbol_t): destructor_location is a
17003 (symbol_destructor_set): Adjust.
17004 * src/output.c (symbol_destructors_output): Output the destructor
17006 Output the symbol name.
17007 * data/bison.simple (b4_symbol_destructor): Adjust.
17009 2002-06-18 Cris Bailiff <c.bailiff@awayweb.com>
17010 and Akim Demaille <akim@epita.fr>
17012 * data/bison.simple.new (yyerrlab1): Be sure to pop and destroy
17013 what's left on the stack when the error recovery hits EOF.
17014 * tests/actions.at (Destructors): Complete to exercise this case.
17016 2002-06-17 Akim Demaille <akim@epita.fr>
17018 * data/m4sugar/m4sugar.m4 (m4_map): Recognize when the list of
17019 arguments is really empty, not only equal to `[]'.
17020 * src/symtab.h, src/symtab.c (symbol_t): `destructor' is a new
17022 (symbol_destructor_set): New.
17023 * src/output.c (symbol_destructors_output): New.
17024 * src/reader.h (brace_code_t, current_braced_code): New.
17025 * src/scan-gram.l (BRACED_CODE): Use it to branch on...
17026 (handle_dollar): Rename as...
17027 (handle_action_dollar): this.
17028 (handle_destructor_dollar): New.
17029 * src/parse-gram.y (PERCENT_DESTRUCTOR): New.
17030 (grammar_declaration): Use it.
17031 * data/bison.simple (yystos): Is always defined.
17032 (yydestructor): New.
17033 * tests/actions.at (Destructors): New.
17034 * tests/calc.at (_AT_CHECK_CALC_ERROR): Don't rely on egrep.
17036 2002-06-17 Akim Demaille <akim@epita.fr>
17038 * src/symlist.h, src/symlist.c (symbol_list_length): New.
17039 * src/scan-gram.l (handle_dollar, handle_at): Compute the
17040 rule_length only when needed.
17041 * src/output.c (actions_output, token_definitions_output): Output
17043 * src/symtab.c: Don't access directly to the symbol tag, use
17045 * src/parse-gram.y: Use symbol_list_free.
17047 2002-06-17 Akim Demaille <akim@epita.fr>
17049 * src/reader.h, src/reader.c (symbol_list, symbol_list_new)
17050 (symbol_list_prepend, get_type_name): Move to...
17051 * src/symlist.h, src/symlist.c (symbol_list_t, symbol_list_new)
17052 (symbol_list_prepend, symbol_list_n_type_name_get): here.
17053 Adjust all callers.
17054 (symbol_list_free): New.
17055 * src/scan-gram.l (handle_dollar): Takes a location.
17056 * tests/input.at (Invalid $n): Adjust.
17058 2002-06-17 Akim Demaille <akim@epita.fr>
17060 * src/reader.h, src/reader.c (symbol_list_new): Export it.
17061 (symbol_list_prepend): New.
17062 * src/parse-gram.y (%union): `list' is a new member.
17063 (symbols.1): New, replaces...
17064 (terms_to_prec.1, nterms_to_type.1): these.
17065 * src/symtab.h, src/symtab.c (symbol_type_set, symbol_precedence_set)
17066 Take a location as additional argument.
17067 Adjust all callers.
17069 2002-06-15 Akim Demaille <akim@epita.fr>
17071 * src/parse-gram.y: Move %token in the declaration section so that
17072 we don't depend upon CVS Bison.
17074 2002-06-15 Akim Demaille <akim@epita.fr>
17076 * src/state.h, src/state.c (state_rule_lookaheads_print): New.
17077 * src/print.c (print_core): Use it.
17079 2002-06-15 Akim Demaille <akim@epita.fr>
17081 * src/conflicts.c (log_resolution): Accept the rule involved in
17082 the sr conflicts instead of the lookahead number that points to
17084 (flush_reduce): Accept the current lookahead vector as argument,
17085 instead of the index in LA.
17086 (resolve_sr_conflict): Accept the current number of lookahead
17087 bitset to consider for the STATE, instead of the index in LA.
17088 (set_conflicts): Adjust.
17089 * src/lalr.c, src/lalr.h, src/state.h: Comment changes.
17091 2002-06-15 Akim Demaille <akim@epita.fr>
17093 * src/state.h (state_t): Replace the `lookaheadsp' member, a
17094 short, with `lookaheads' (bitsetv), `lookaheads_rule' (rule_t**).
17095 Adjust all dependencies.
17096 * src/lalr.c (initialize_lookaheads): Split into...
17097 (states_lookaheads_count, states_lookaheads_initialize): these.
17100 2002-06-15 Akim Demaille <akim@epita.fr>
17102 * src/gram.h, src/gram.c (grammar_rules_partial_print): New, eved
17104 (grammar_rules_print): here.
17105 * src/reduce.c (reduce_output): Use it.
17106 * tests/reduce.at (Useless Rules, Reduced Automaton)
17107 (Underivable Rules): Adjust.
17109 2002-06-15 Akim Demaille <akim@epita.fr>
17111 Copy BYacc's nice way to report the grammar.
17113 * src/gram.h, src/gram.c (grammar_rhs_print, grammar_rules_print):
17115 Don't print the rules' location, it is confusing and useless.
17116 (rule_print): Use grammar_rhs_print.
17117 * src/print.c (print_grammar): Use grammar_rules_print.
17119 2002-06-15 Akim Demaille <akim@epita.fr>
17121 Complete and rationalize `useless thing' warnings.
17123 * src/symtab.h, src/symtab.c (symbol_tag_get, symbol_tag_get_n)
17124 (symbol_tag_print): New.
17125 Use them everywhere in place of accessing directly the tag member.
17126 * src/gram.h, src/gram.c (rule_print): New.
17127 Use it where a rule used to be printed `by hand'.
17128 * src/reduce.c (nonterminals_reduce): Report the use nonterminals.
17129 (reduce_grammar_tables): Report the useless rules.
17130 (reduce_print): Useless things are a warning, not an error.
17132 * tests/reduce.at (Useless Nonterminals, Useless Rules):
17133 (Reduced Automaton, Underivable Rules): Adjust.
17134 * tests/regression.at (Web2c Report, Web2c Report): Adjust.
17135 * tests/conflicts.at (Unresolved SR Conflicts)
17136 (Solved SR Conflicts): Adjust.
17138 2002-06-15 Akim Demaille <akim@epita.fr>
17140 Let symbols have a location.
17142 * src/symtab.h, src/symtab.c (symbol_t): Location is a new member.
17144 Adjust all callers.
17145 * src/complain.h, src/complain.c (complain_at, fatal_at, warn_at):
17146 Use location_t, not int.
17147 * src/symtab.c (symbol_check_defined): Take advantage of the
17149 * tests/regression.at (Invalid inputs): Adjust.
17151 2002-06-15 Akim Demaille <akim@epita.fr>
17153 * src/parse-gram.y (YYLLOC_DEFAULT, current_lhs_location): New.
17154 (input): Don't try to initialize yylloc here, do it in the
17156 * src/scan-gram.l (YY_USER_INIT): Initialize yylloc.
17157 * src/gram.h (rule_t): Change line and action_line into location
17158 and action_location, of location_t type.
17159 Adjust all dependencies.
17160 * src/location.h, src/location.c (empty_location): New.
17161 * src/reader.h, src/reader.c (grammar_start_symbol_set)
17162 (grammar_symbol_append, grammar_rule_begin, grammar_rule_end)
17163 (grammar_current_rule_symbol_append)
17164 (grammar_current_rule_action_append): Expect a location as argument.
17165 * src/reader.c (grammar_midrule_action): Adjust to attach an
17166 action's location as dummy symbol location.
17167 * src/symtab.h, src/symtab.c (startsymbol_location): New.
17168 * tests/regression.at (Web2c Report, Rule Line Numbers): Adjust
17171 2002-06-14 Akim Demaille <akim@epita.fr>
17173 Grammar declarations may be found in the grammar section.
17175 * src/parse-gram.y (rules_or_grammar_declaration): New.
17176 (declarations): Each declaration may end with a semicolon, not
17178 (grammar_declaration): `"%union"'.
17179 (grammar): Branch to rules_or_grammar_declaration.
17181 2002-06-14 Akim Demaille <akim@epita.fr>
17183 * src/main.c (main): Invoke scanner_free.
17185 2002-06-14 Akim Demaille <akim@epita.fr>
17187 * src/output.c (m4_invoke): Extracted from...
17188 (output_skeleton): here.
17191 2002-06-14 Akim Demaille <akim@epita.fr>
17193 * src/parse-gram.y (directives, directive, gram)
17194 (grammar_directives, precedence_directives, precedence_directive):
17196 (declarations, declaration, grammar, grammar_declaration)
17197 (precedence_declaration, precedence_declarator): these.
17198 (symbol_declaration): New.
17200 2002-06-14 Akim Demaille <akim@epita.fr>
17202 * src/files.c (action_obstack): Remove, unused.
17203 (output_obstack): Remove it, and all its dependencies, as it is no
17205 * src/reader.c (epilogue_set): Build the epilogue in the
17207 * src/output.h, src/output.c (muscle_obstack): Move to...
17208 * src/muscle_tab.h, src/muscle_tab.h: here.
17209 (muscle_init): Initialize muscle_obstack.
17210 (muscle_free): New.
17211 * src/main.c (main): Call it.
17213 2002-06-14 Akim Demaille <akim@epita.fr>
17215 * src/location.h: New, extracted from...
17216 * src/reader.h: here.
17217 * src/Makefile.am (noinst_HEADERS): Merge into
17218 (bison_SOURCES): this.
17220 * src/parse-gram.y: Use location_t instead of Bison's.
17221 * src/reader.h, src/reader.c (prologue_augment, epilogue_set):
17222 Use location_t instead of ints.
17224 2002-06-14 Akim Demaille <akim@epita.fr>
17226 * data/bison.simple, data/bison.c++: Be sure to restore the
17227 current #line when returning to the skeleton contents after having
17228 exposed the input file's #line.
17230 2002-06-12 Akim Demaille <akim@epita.fr>
17232 * src/scan-gram.l (SC_BRACED_CODE): Don't use `<.*>', it is too
17234 * tests/actions.at (Exotic Dollars): New.
17236 2002-06-12 Akim Demaille <akim@epita.fr>
17238 * src/scan-gram.l (SC_PROLOGUE): Don't eat characters amongst
17240 * tests/input.at (Torturing the Scanner): New.
17242 2002-06-11 Akim Demaille <akim@epita.fr>
17244 * src/scan-gram.l (YY_OBS_INIT): Remove, replace with...
17245 [SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE]
17246 [SC_EPILOGUE]: Output the quadrigraphs only when not in a comment.
17247 * src/reader.h, src/scan-gram.l (scanner_initialize): this.
17248 * src/reader.c (reader): Use it.
17250 2002-06-11 Akim Demaille <akim@epita.fr>
17252 * src/scan-gram.l (YY_OBS_FINISH): Don't set yylval.
17253 Adjust all callers.
17254 (scanner_last_string_free): New.
17256 2002-06-11 Akim Demaille <akim@epita.fr>
17258 * src/scan-gram.l (YY_INIT, YY_GROW, YY_FINISH): Rename as...
17259 (YY_OBS_INIT, YY_OBS_GROW, YY_OBS_FINISH): these.
17260 (last_string, YY_OBS_FREE): New.
17261 Use them when returning an ID.
17263 2002-06-11 Akim Demaille <akim@epita.fr>
17265 Have Bison grammars parsed by a Bison grammar.
17267 * src/reader.c, src/reader.h (prologue_augment): New.
17268 * src/reader.c (copy_definition): Remove.
17270 * src/reader.h, src/reader.c (gram_start_symbol_set, prologue_augment)
17271 (grammar_symbol_append, grammar_rule_begin, grammar_midrule_action)
17272 (grammar_current_rule_prec_set, grammar_current_rule_check)
17273 (grammar_current_rule_symbol_append)
17274 (grammar_current_rule_action_append): Export.
17275 * src/parse-gram.y (symbol_list_new, symbol_list_symbol_append_
17276 (symbol_list_action_append): Remove.
17277 Hook the routines from reader.
17278 * src/scan-gram.l: In INITIAL, characters and strings are tokens.
17279 * src/system.h (ATTRIBUTE_NORETURN, ATTRIBUTE_UNUSED): Now.
17281 * src/reader.c (read_declarations): Remove, unused.
17283 * src/parse-gram.y: Handle the epilogue.
17284 * src/reader.h, src/reader.c (gram_start_symbol_set): Rename as...
17285 (grammar_start_symbol_set): this.
17286 * src/scan-gram.l: Be sure to ``use'' yycontrol to keep GCC quiet.
17287 * src/reader.c (readgram): Remove, unused.
17288 (reader): Adjust to insert eoftoken and axiom where appropriate.
17290 * src/reader.c (copy_dollar): Replace with...
17291 * src/scan-gram.h (handle_dollar): this.
17292 * src/parse-gram.y: Remove `%thong'.
17294 * src/reader.c (copy_at): Replace with...
17295 * src/scan-gram.h (handle_at): this.
17297 * src/complain.h, src/complain.c (warn_at, complain_at, fatal_at):
17300 * src/scan-gram.l (YY_LINES): Keep lineno synchronized for the
17303 * src/reader.h, src/reader.c (grammar_rule_end): New.
17305 * src/parse.y (current_type, current_class): New.
17306 Implement `%nterm', `%token' support.
17307 Merge `%term' into `%token'.
17308 (string_as_id): New.
17309 * src/symtab.h, src/symtab.c (symbol_make_alias): Don't pass the
17312 * src/parse-gram.y: Be sure to handle properly the beginning of
17315 * src/parse-gram.y: Handle %type.
17316 * src/reader.c (grammar_rule_end): Call grammar_current_rule_check.
17318 * src/parse-gram.y: More directives support.
17319 * src/options.c: No longer handle source directives.
17321 * src/parse-gram.y: Fix %output.
17323 * src/parse-gram.y: Handle %union.
17324 Use the prologue locations.
17325 * src/reader.c (parse_union_decl): Remove.
17327 * src/reader.h, src/reader.c (epilogue_set): New.
17328 * src/parse-gram.y: Use it.
17330 * data/bison.simple, data/bison.c++: b4_stype is now either not
17331 defined, then default to int, or to the contents of %union,
17332 without `union' itself.
17334 * src/muscle_tab.c (muscle_init): Don't predefine `stype'.
17336 * src/output.c (actions_output): Don't output braces, as they are
17337 already handled by the scanner.
17339 * src/scan-gram.l (SC_CHARACTER): Set the user_token_number of
17340 characters to themselves.
17342 * tests/reduce.at (Reduced Automaton): End the grammars with %% so
17343 that the epilogue has a proper #line.
17345 * src/parse-gram.y: Handle precedence/associativity.
17347 * src/symtab.c (symbol_precedence_set): Requires the symbol to be
17349 * src/scan-gram.l (SC_BRACED_CODE): Catch strings and characters.
17350 * tests/calc.at: Do not use `%token "foo"' as it makes not sense
17351 at all to define terminals that cannot be emitted.
17353 * src/scan-gram.l: Escape M4 characters.
17355 * src/scan-gram.l: Working properly with escapes in user
17356 strings/characters.
17358 * tests/torture.at (AT_DATA_TRIANGULAR_GRAMMAR)
17359 (AT_DATA_HORIZONTAL_GRAMMAR): Respect the `%token ID NUM STRING'
17361 Use more modest sizes, as for the time being the parser does not
17362 release memory, and therefore the process swallows a huge amount
17365 * tests/torture.at (AT_DATA_LOOKAHEADS_GRAMMAR): Adjust to the
17366 stricter %token grammar.
17368 * src/symtab.h (associativity): Add `undef_assoc'.
17369 (symbol_precedence_set): Do nothing when passed an undef_assoc.
17370 * src/symtab.c (symbol_check_alias_consistence): Adjust.
17372 * tests/regression.at (Invalid %directive): Remove, as it is now
17374 (Invalid inputs): Adjust to the new error messages.
17375 (Token definitions): The new grammar doesn't allow too many
17378 * src/lex.h, src/lex.c: Remove.
17379 * src/reader.c (lastprec, skip_to_char, read_signed_integer)
17380 (copy_character, copy_string2, copy_string, copy_identifier)
17381 (copy_comment, parse_token_decl, parse_type_decl, parse_assoc_decl)
17382 (parse_muscle_decl, parse_dquoted_param, parse_skel_decl)
17383 (parse_action): Remove.
17384 * po/POTFILES.in: Adjust.
17386 2002-06-11 Akim Demaille <akim@epita.fr>
17388 * src/reader.c (parse_action): Don't store directly into the
17389 rule's action member: return the action as a string.
17390 Don't require `rule_length' as an argument: compute it.
17391 (grammar_current_rule_symbol_append)
17392 (grammar_current_rule_action_append): New, eved out from
17394 Remove `action_flag', `rulelength', unused now.
17396 2002-06-11 Akim Demaille <akim@epita.fr>
17398 * src/reader.c (grammar_current_rule_prec_set).
17399 (grammar_current_rule_check): New, eved out from...
17401 Remove `xaction', `first_rhs': useless.
17402 * tests/input.at (Type clashes): New.
17403 * tests/existing.at (GNU Cim Grammar): Adjust.
17405 2002-06-11 Akim Demaille <akim@epita.fr>
17407 * src/reader.c (grammar_midrule_action): New, Eved out from
17410 2002-06-11 Akim Demaille <akim@epita.fr>
17412 * src/reader.c (grammar_rule_begin, previous_rule, current_rule):
17414 (readgram): Use them as replacement of inlined code, crule and
17417 2002-06-11 Akim Demaille <akim@epita.fr>
17419 * src/reader.c (grammar_end, grammar_symbol_append): New.
17420 (readgram): Use them.
17421 Make the use of `p' as local as possible.
17423 2002-06-10 Akim Demaille <akim@epita.fr>
17425 GCJ's parser requires the tokens to be defined before the prologue.
17427 * data/bison.simple: Output the token definition before the user's
17429 * tests/regression.at (Braces parsing, Duplicate string)
17430 (Mixing %token styles): Check the output from bison.
17431 (Early token definitions): New.
17433 2002-06-10 Akim Demaille <akim@epita.fr>
17435 * src/symtab.c (symbol_user_token_number_set): Don't complain when
17436 assigning twice the same user number to a token, so that we can
17438 * src/lex.c (lex): here.
17439 Also use `symbol_class_set' instead of hand written code.
17440 * src/reader.c (parse_assoc_decl): Likewise.
17442 2002-06-10 Akim Demaille <akim@epita.fr>
17444 * src/symtab.c, src/symtab.c (symbol_class_set)
17445 (symbol_user_token_number_set): New.
17446 * src/reader.c (parse_token_decl): Use them.
17447 Use a switch instead of ifs.
17448 Use a single argument.
17450 2002-06-10 Akim Demaille <akim@epita.fr>
17452 Remove `%thong' support as it is undocumented, unused, duplicates
17453 `%token's job, and creates useless e-mail traffic with people who
17454 want to know what it is, why it is undocumented, unused, and
17455 duplicates `%token's job.
17457 * src/reader.c (parse_thong_decl): Remove.
17458 * src/options.c (option_table): Remove "thong".
17459 * src/lex.h (tok_thong): Remove.
17461 2002-06-10 Akim Demaille <akim@epita.fr>
17463 * src/symtab.c, src/symtab.c (symbol_type_set)
17464 (symbol_precedence_set): New.
17465 * src/reader.c (parse_type_decl, parse_assoc_decl): Use them.
17466 (value_components_used): Remove, unused.
17468 2002-06-09 Akim Demaille <akim@epita.fr>
17470 Move symbols handling code out of the reader.
17472 * src/reader.h, src/reader.c (errtoken, undeftoken, eoftoken)
17473 (axiom): Move to...
17474 * src/symtab.h, src/symtab.c: here.
17476 * src/gram.c (start_symbol): Remove: use startsymbol->number.
17477 * src/reader.c (startval): Rename as...
17478 * src/symtab.h, src/symtab.c (startsymbol): this.
17479 * src/reader.c: Adjust.
17481 * src/reader.c (symbol_check_defined, symbol_make_alias)
17482 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
17483 (token_translations_init)
17485 * src/symtab.c: here.
17486 * src/reader.c (packsymbols): Move to...
17487 * src/symtab.h, src/symtab.c (symbols_pack): here.
17488 * src/symtab.h, src/symtab.c (symbol_make_alias): Takes SYMVAL as
17491 2002-06-03 Akim Demaille <akim@epita.fr>
17493 * src/muscle_tab.c (muscle_insert, muscle_find): Declarations,
17496 2002-06-03 Akim Demaille <akim@epita.fr>
17498 * src/muscle_tab.c (muscle_find, muscle_insert): Don't initialize
17499 structs with non literals.
17500 * src/scan-skel.l: never-interactive.
17501 * src/conflicts.c (enum conflict_resolution_e): No trailing
17503 * src/getargs.c (usage): Split long literal strings.
17504 Reported by Hans Aberg.
17506 2002-05-28 Akim Demaille <akim@epita.fr>
17508 * data/bison.c++: Use C++ ostreams.
17509 (cdebug_): New member.
17511 2002-05-28 Akim Demaille <akim@epita.fr>
17513 * src/output.c (output_skeleton): Be sure to allocate enough room
17514 for `/' _and_ for `\0' in full_skeleton.
17516 2002-05-28 Akim Demaille <akim@epita.fr>
17518 * data/bison.c++: Catch up with bison.simple:
17519 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17520 and Paul Eggert <eggert@twinsun.com>: `error' handing.
17521 2002-05-26 Akim Demaille <akim@epita.fr>: stos_, token_number_,
17522 and popping traces.
17524 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17526 * src/output.c (output_skeleton): Put an explicit path in front of
17527 the skeleton file name, rather than relying on the -I directory,
17528 to partially alleviate effects of having a skeleton file lying around
17529 in the current directory.
17531 2002-05-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17533 * src/conflicts.c (log_resolution): Correct typo:
17534 obstack_printf should be obstack_fgrow1.
17536 2002-05-26 Akim Demaille <akim@epita.fr>
17538 * src/state.h (state_t): `solved_conflicts' is a new member.
17539 * src/LR0.c (new_state): Set it to 0.
17540 * src/conflicts.h, src/conflicts.c (print_conflicts)
17541 (free_conflicts, solve_conflicts): Rename as...
17542 (conflicts_print, conflicts_free, conflicts_solve): these.
17544 * src/conflicts.c (enum conflict_resolution_e)
17545 (solved_conflicts_obstack): New, used by...
17546 (log_resolution): this.
17547 Adjust to attach the conflict resolution to each state.
17548 Complete the description with the precedence/associativity
17550 (resolve_sr_conflict): Adjust.
17551 * src/print.c (print_state): Output its solved_conflicts.
17552 * tests/conflicts.at (Unresolved SR Conflicts)
17553 (Solved SR Conflicts): Exercise --report=all.
17555 2002-05-26 Akim Demaille <akim@epita.fr>
17557 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17558 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
17559 * src/reader.c, src/reduce.c, src/state.h, src/symtab.h
17560 (token_number_t, item_number_as_token_number)
17561 (token_number_as_item_number, muscle_insert_token_number_table):
17563 (symbol_number_t, item_number_as_symbol_number)
17564 (symbol_number_as_item_number, muscle_insert_symbol_number_table):
17565 these, since it is more appropriate.
17567 2002-05-26 Akim Demaille <akim@epita.fr>
17569 * tests/calc.at (AT_CHECK_CALC): Adjust: there are now additional
17571 * data/bison.simple (yystos) [YYDEBUG]: New.
17572 (yyparse) [YYDEBUG]: Display the symbols which are popped during
17574 * tests/regression.at (Web2c Actions): Adjust: yystos is output now.
17576 2002-05-25 Akim Demaille <akim@epita.fr>
17578 * doc/bison.texinfo (Debugging): Split into...
17579 (Tracing): this new section, its former contents, and...
17580 (Understanding): this new section.
17581 * src/getargs.h, src/getargs.c (verbose_flag): Remove, replaced
17583 (report_flag): this.
17584 Adjust all dependencies.
17585 (report_args, report_types, report_argmatch): New.
17586 (usage, getargs): Report/support -r, --report.
17588 (struct option_table_struct): Rename as..,
17589 (struct option_table_s): this.
17590 Rename the `set_flag' member to `flag' to match with getopt_long's
17592 * src/options.c (option_table): Split verbose into an entry for
17593 %verbose, and another for --verbose.
17594 Support --report/-r, so remove -r from the obsolete --raw.
17595 * src/print.c: Attach full item sets and lookaheads reports to
17596 report_flag instead of trace_flag.
17597 * lib/argmatch.h, lib/argmatch.c: New, from Fileutils 4.1.
17599 2002-05-24 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17600 and Paul Eggert <eggert@twinsun.com>
17602 * data/bison.simple (yyparse): Correct error handling to conform to
17603 POSIX and yacc. Specifically, after syntax error is discovered,
17604 do not reduce further before shifting the error token.
17605 Clean up the code a bit by removing the labels yyerrdefault,
17606 yyerrhandle, yyerrpop.
17607 * NEWS: Document the above.
17609 2002-05-20 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17611 * data/bison.simple (yyr1): Don't use yy_token_number_type as element
17612 type; it isn't always big enough, since it doesn't necessarily
17613 include non-terminals.
17614 (yytranslate): Expand definition of yy_token_number_type, so that
17615 the latter can be removed.
17616 (yy_token_number_type): Remove, only one use.
17617 * data/bison.c++ (r1_): Parallel change to yyr1 in bison.simple---
17618 don't use TokenNumberType as element type.
17620 * tests/regression.at: Modify expected output to agree with change
17621 to yyr1 and yytranslate.
17623 2002-05-13 Florian Krohm <florian@edamail.fishkill.ibm.com>
17625 * src/reader.c (parse_action): Use copy_character instead of
17628 2002-05-13 Akim Demaille <akim@epita.fr>
17630 * tests/regression.at (Token definitions): Prototype yylex and
17633 2002-05-12 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
17635 * src/scan-skel.l: Correct off-by-one error in handling of __oline__.
17636 * data/bison.simple (b4_sint_type, b4_uint_type): Correct to reflect
17638 * data/bison.c++ (b4_sint_type, b4_uint_type): Ditto.
17640 2002-05-07 Akim Demaille <akim@epita.fr>
17642 * tests/synclines.at: Be sure to prototype yylex and yyerror to
17643 avoid GCC warnings.
17645 2002-05-07 Akim Demaille <akim@epita.fr>
17649 * src/reduce.c (nonterminals_reduce): Don't loop over RITEM: loop
17650 over the RHS of each rule.
17651 * src/gram.h, src/gram.c (nritems): Is `unsigned int', not int.
17652 * src/state.h (state_t): Member `nitems' is unsigned short.
17653 * src/LR0.c (get_state): Adjust.
17654 * src/reader.c (packgram): Likewise.
17655 * src/output.c (GENERATE_MUSCLE_INSERT_TABLE): `max' is of type
17657 (muscle_insert_int_table): Remove, unused.
17658 (prepare_rules): Remove `max'.
17660 2002-05-06 Akim Demaille <akim@epita.fr>
17662 * src/closure.c (print_firsts): Display of the symbol tags.
17663 (bitmatrix_print): Move to...
17664 * lib/bitsetv-print.h, lib/bitsetv-print.c (bitsetv_matrix_dump):
17666 * tests/sets.at (Nullable, Broken Closure, Firsts): Adjust.
17668 2002-05-06 Akim Demaille <akim@epita.fr>
17670 * src/muscle_tab.c (muscle_m4_output): Must return TRUE for
17673 2002-05-06 Akim Demaille <akim@epita.fr>
17675 * src/LR0.c (new_state, get_state): Instead of using the global
17676 `kernel_size' and `kernel_base', have two new arguments:
17677 `core_size' and `core'.
17680 2002-05-06 Akim Demaille <akim@epita.fr>
17682 * src/reader.c (packgram): No longer end `ritem' with a 0
17683 sentinel: it is not used.
17685 2002-05-05 Akim Demaille <akim@epita.fr>
17687 New experimental feature: display the lookaheads in the report and
17690 * src/print (print_core): When --trace-flag, display the rules
17692 * src/print_graph.c (print_core): Likewise.
17693 Swap the arguments.
17696 2002-05-05 Akim Demaille <akim@epita.fr>
17698 * tests/torture.at (Many lookaheads): New test.
17700 2002-05-05 Akim Demaille <akim@epita.fr>
17702 * src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
17703 (GENERATE_MUSCLE_INSERT_TABLE): this.
17704 (output_int_table, output_unsigned_int_table, output_short_table)
17705 (output_token_number_table, output_item_number_table): Replace with...
17706 (muscle_insert_int_table, muscle_insert_unsigned_int_table)
17707 (muscle_insert_short_table, muscle_insert_token_number_table)
17708 (muscle_insert_item_number_table): these.
17709 Adjust all callers.
17710 (prepare_tokens): Don't free `translations', since...
17711 * src/reader.h, src/reader.c (grammar_free): do it.
17713 * src/gram.h, src/gram.c (grammar_free): here.
17714 * data/bison.simple, data/bison.c++: b4_token_number_max is now
17717 2002-05-05 Akim Demaille <akim@epita.fr>
17719 * src/output.c (output_unsigned_int_table): New.
17720 (prepare_rules): `i' is unsigned.
17721 `prhs', `rline', `r2' are unsigned int.
17722 Rename muscle `rhs_number_max' as `rhs_max'.
17723 Output muscles `prhs_max', `rline_max', and `r2_max'.
17725 * data/bison.simple, data/bison.c++: Adjust to use these muscles
17726 to compute types instead of constant types.
17727 * tests/regression.at (Web2c Actions): Adjust.
17729 2002-05-04 Akim Demaille <akim@epita.fr>
17731 * src/symtab.h (SALIAS, SUNDEF): Rename as...
17732 (USER_NUMBER_ALIAS, USER_NUMBER_UNDEFINED): these.
17733 Adjust dependencies.
17734 * src/output.c (token_definitions_output): Be sure not to output a
17735 `#define 'a'' when fed with `%token 'a' "a"'.
17736 * tests/regression.at (Token definitions): New.
17738 2002-05-03 Paul Eggert <eggert@twinsun.com>
17740 * data/bison.simple (b4_token_defines): Also define YYTOKENTYPE
17743 2002-05-03 gettextize <bug-gnu-gettext@gnu.org>
17745 * Makefile.am (SUBDIRS): Remove intl.
17746 (EXTRA_DIST): Add config/config.rpath.
17748 2002-05-03 Akim Demaille <akim@epita.fr>
17750 * data/bison.simple (m4_if): Don't output empty enums.
17751 And actually, output valid enum definitions :(.
17753 2002-05-03 Akim Demaille <akim@epita.fr>
17755 * configure.bat: Remove, completely obsolete.
17756 * Makefile.am (EXTRA_DIST): Adjust.
17757 Don't distribute config.rpath...
17758 * config/Makefile.am (EXTRA_DIST): Do it.
17760 2002-05-03 Akim Demaille <akim@epita.fr>
17762 * configure.in (GETTEXT_VERSION): New.
17763 Suggested by Bruno Haible for the forthcoming Gettext 0.10.3.
17765 2002-05-03 Akim Demaille <akim@epita.fr>
17767 * data/bison.simple (b4_token_enum): New.
17768 (b4_token_defines): Use it to output tokens both as #define and
17770 Suggested by Paul Eggert.
17771 * src/output.c (token_definitions_output): Don't output spurious
17774 2002-05-03 Akim Demaille <akim@epita.fr>
17776 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
17778 2002-05-02 Robert Anisko <robert@lrde.epita.fr>
17780 * data/bison.c++: Adapt expansion of $s and @s to the C++ parser.
17781 Update the stack class, give a try to deque as the default container.
17783 2002-05-02 Akim Demaille <akim@epita.fr>
17785 * data/bison.simple (yyparse): Do not implement @$ = @1.
17786 (YYLLOC_DEFAULT): Adjust to do it.
17787 * doc/bison.texinfo (Location Default Action): Fix.
17789 2002-05-02 Akim Demaille <akim@epita.fr>
17791 * src/reader.c (parse_braces): Merge into...
17792 (parse_action): this.
17794 2002-05-02 Akim Demaille <akim@epita.fr>
17796 * configure.in (ALL_LINGUAS): Remove.
17797 * po/LINGUAS, hr.po: New.
17799 2002-05-02 Akim Demaille <akim@epita.fr>
17801 Remove the so called hairy (semantic) parsers.
17803 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove.
17804 * src/gram.h, src/gram.c (semantic_parser): Remove.
17805 (rule_t): Remove the guard and guard_line members.
17806 * src/lex.h (token_t): remove tok_guard.
17807 * src/options.c (option_table): Remove %guard and %semantic_parser
17809 * src/output.c, src/output.h (guards_output): Remove.
17811 (token_definitions_output): Don't output the `T'
17813 (output_skeleton): Don't output the guards.
17814 * src/files.c, src/files.c (attrsfile): Remove.
17815 * src/reader.c (symbol_list): Remove the guard and guard_line
17817 Adjust dependencies.
17818 (parse_guard): Remove.
17819 * data/bison.hairy: Remove.
17820 * doc/bison.texinfo (Environment Variables): Remove occurrences of
17823 2002-05-02 Akim Demaille <akim@epita.fr>
17825 * src/reader.c (copy_at, copy_dollarm parse_braces, parse_action)
17826 (parse_guard): Rename the formal argument `stack_offset' as
17827 `rule_length', which is more readable.
17829 (copy_at, copy_dollar): Instead of outputting the hard coded
17830 values of $$, $n and so forth, output invocation to b4_lhs_value,
17831 b4_lhs_location, b4_rhs_value, and b4_rhs_location.
17832 Note: this patch partially drops `semantic-parser' support: it
17833 always does `rule_length - n', where semantic parsers ought to
17835 * data/bison.simple, data/bison.c++ (b4_lhs_value)
17836 (b4_lhs_location, b4_rhs_value, and b4_rhs_location: New.
17838 2002-05-02 Akim Demaille <akim@epita.fr>
17840 * configure.in (AC_INIT): Bump to 1.49b.
17841 (AM_INIT_AUTOMAKE): Short invocation.
17843 2002-05-02 Akim Demaille <akim@epita.fr>
17847 2002-05-01 Akim Demaille <akim@epita.fr>
17849 * src/skeleton.h: Remove.
17851 2002-05-01 Akim Demaille <akim@epita.fr>
17853 * src/skeleton.h: Fix the #endif.
17854 Reported by Magnus Fromreide.
17856 2002-04-26 Paul Eggert <eggert@twinsun.com>
17858 * data/bison.simple (YYSTYPE_IS_TRIVIAL, YYLTYPE_IS_TRIVIAL):
17859 Define if we define YYSTYPE and YYLTYPE, respectively.
17860 (YYCOPY): Fix [] quoting problem in the non-GCC case.
17862 2002-04-25 Robert Anisko <robert@lrde.epita.fr>
17864 * src/scan-skel.l: Postprocess quadrigraphs.
17866 * src/reader.c (copy_character): New function, used to output
17867 single characters while replacing `[' and `]' with quadrigraphs, to
17868 avoid troubles with M4 quotes.
17869 (copy_comment): Output characters with copy_character.
17870 (read_additionnal_code): Likewise.
17871 (copy_string2): Likewise.
17872 (copy_definition): Likewise.
17874 * tests/calc.at: Exercise M4 quoting.
17876 2002-04-25 Akim Demaille <akim@epita.fr>
17878 * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
17879 between `!' and the command.
17880 Reported by Paul Eggert.
17882 2002-04-24 Robert Anisko <robert@lrde.epita.fr>
17884 * tests/calc.at: Exercise prologue splitting.
17886 * data/bison.simple, data/bison.c++: Use `b4_pre_prologue' and
17887 `b4_post_prologue' instead of `b4_prologue'.
17889 * src/output.c (prepare): Add the `pre_prologue' and `post_prologue'
17891 (output): Free pre_prologue_obstack and post_prologue_obstack.
17892 * src/files.h, src/files.c (attrs_obstack): Remove.
17893 (pre_prologue_obstack, post_prologue_obstack): New.
17894 * src/reader.c (copy_definition): Add a parameter to specify the
17895 obstack to fill, instead of using attrs_obstack unconditionally.
17896 (read_declarations): Pass pre_prologue_obstack to copy_definition if
17897 `%union' has not yet been seen, pass post_prologue_obstack otherwise.
17899 2002-04-23 Paul Eggert <eggert@twinsun.com>
17901 * data/bison.simple: Remove unnecessary commentary and white
17902 space differences from 1_29-branch.
17903 Depend on YYERROR_VERBOSE, not defined (YYERROR_VERBOSE).
17905 (union yyalloc, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYCOPY,
17906 YYSTACK_RELOCATE): Do not define if yyoverflow is defined, or
17907 if this is a C++ parser and YYSTYPE or YYLTYPE has nontrivial
17908 constructors or destructors.
17910 (yyparse) [! defined YYSTACK_RELOCATE]: Do not relocate the stack.
17912 2002-04-23 Akim Demaille <akim@epita.fr>
17914 * tests/sets.at (AT_EXTRACT_SETS): Don't use 8 char long sed labels.
17915 * tests/synclines.at (AT_TEST_SYNCLINE): Be robust to GCC's
17916 location with columns.
17917 * tests/conflicts.at (%nonassoc and eof): Don't use `error.h'.
17918 All reported by Paul Eggert.
17920 2002-04-22 Akim Demaille <akim@epita.fr>
17922 * src/reduce.c (dump_grammar): Move to...
17923 * src/gram.h, src/gram.c (grammar_dump): here.
17924 Be sure to separate long item numbers.
17925 Don't read the members of a rule's prec if its nil.
17927 2002-04-22 Akim Demaille <akim@epita.fr>
17929 * src/output.c (table_size, table_grow): New.
17930 (MAXTABLE): Remove, replace uses with table_size.
17931 (pack_vector): Instead of dying when the table is too big, grow it.
17933 2002-04-22 Akim Demaille <akim@epita.fr>
17935 * data/bison.simple (yyr1): Its type is that of a token number.
17936 * data/bison.c++ (r1_): Likewise.
17937 * tests/regression.at (Web2c Actions): Adjust.
17939 2002-04-22 Akim Demaille <akim@epita.fr>
17941 * src/reader.c (token_translations_init): 256 is now the default
17942 value for the error token, i.e., it will be assigned another
17943 number if the user assigned 256 to one of her tokens.
17944 (reader): Don't force 256 to error.
17945 * doc/bison.texinfo (Symbols): Adjust.
17946 * tests/torture.at (AT_DATA_HORIZONTAL_GRAMMAR)
17947 (AT_DATA_TRIANGULAR_GRAMMAR): Number the tokens as 1, 2, 3
17948 etc. instead of 10, 20, 30 (which was used to `jump' over error
17949 (256) and undefined (2)).
17951 2002-04-22 Akim Demaille <akim@epita.fr>
17953 Propagate more token_number_t.
17955 * src/gram.h (token_number_as_item_number)
17956 (item_number_as_token_number): New.
17957 * src/output.c (GENERATE_OUTPUT_TABLE): New.
17958 Use it to create output_item_number_table and
17959 output_token_number_table.
17960 * src/LR0.c, src/derives.c, src/gram.c, src/gram.h, src/lalr.c,
17961 * src/lex.c, src/nullable.c, src/output.c, src/print.c,
17962 * src/print_graph.c, src/reader.c, src/reduce.c, src/state.h,
17963 * src/symtab.c, src/symtab.h: Use token_number_t instead of shorts.
17965 2002-04-22 Akim Demaille <akim@epita.fr>
17967 * src/output.h, src/output.c (get_lines_number): Remove.
17969 2002-04-19 Akim Demaille <akim@epita.fr>
17971 * doc/bison.texinfo (Actions): Make clear that `|' is not the same
17973 (Debugging): More details about enabling the debugging features.
17974 (Table of Symbols): Describe $$, $n, @$, and @n.
17975 Suggested by Tim Josling.
17977 2002-04-19 Akim Demaille <akim@epita.fr>
17979 * doc/bison.texinfo: Remove the uses of the obsolete @refill.
17981 2002-04-10 Akim Demaille <akim@epita.fr>
17983 * src/system.h: Rely on HAVE_LIMITS_H.
17984 Suggested by Paul Eggert.
17986 2002-04-09 Akim Demaille <akim@epita.fr>
17988 * tests/calc.at (_AT_CHECK_CALC_ERROR): Receive as argument the
17989 full stderr, and strip it according to the bison options, instead
17990 of composing the error message from different bits.
17991 This makes it easier to check for several error messages.
17992 Adjust all the invocations.
17993 Add an invocation exercising the error token.
17994 Add an invocation demonstrating a stupid error message.
17995 (_AT_DATA_CALC_Y): Follow the GCS: initial column is 1, not 0.
17997 Error message are for stderr, not stdout.
17999 2002-04-09 Akim Demaille <akim@epita.fr>
18001 * src/gram.h, src/gram.c (error_token_number): Remove, use
18003 * src/reader.c (reader): Don't specify the user token number (2)
18004 for $undefined, as it uselessly prevents using it.
18005 * src/gram.h (token_number_t): Move to...
18006 * src/symtab.h: here.
18007 (state_t.number): Is a token_number_t.
18008 * src/print.c, src/reader.c: Use undeftoken->number instead of
18010 (Even though this 2 is not the same as above: the number of the
18011 undeftoken remains being 2, it is its user token number which
18013 * src/output.c (prepare_tokens): Rename the `maxtok' muscle with
18014 `user_token_number_max'.
18015 Output `undef_token_number'.
18016 * data/bison.simple, data/bison.c++: Use them.
18017 Be sure to map invalid yylex return values to
18018 `undef_token_number'. This saves us from gratuitous SEGV.
18020 * tests/conflicts.at (Solved SR Conflicts)
18021 (Unresolved SR Conflicts): Adjust.
18022 * tests/regression.at (Web2c Actions): Adjust.
18024 2002-04-08 Akim Demaille <akim@epita.fr>
18026 * data/bison.c++: s/b4_item_number_max/b4_rhs_number_max/.
18028 Remove the duplicate `typedefs'.
18029 (RhsNumberType): Fix the declaration and various other typos.
18031 * data/bison.simple: Use __ofile__.
18032 * src/scan-skel.l: Handle __ofile__.
18034 2002-04-08 Akim Demaille <akim@epita.fr>
18036 * src/gram.h (item_number_t): New, the type of item numbers in
18037 RITEM. Note that it must be able to code symbol numbers as
18038 positive number, and the negation of rule numbers as negative
18040 Adjust all dependencies (pretty many).
18041 * src/reduce.c (rule): Remove this `short *' pointer: use
18043 * src/system.h (MINSHORT, MAXSHORT): Remove.
18044 Include `limits.h'.
18045 Adjust dependencies to using SHRT_MAX and SHRT_MIN.
18046 (shortcpy): Remove.
18047 (MAXTABLE): Move to...
18048 * src/output.c (MAXTABLE): here.
18049 (prepare_rules): Use output_int_table to output rhs.
18050 * data/bison.simple, data/bison.c++: Adjust.
18051 * tests/torture.at (Big triangle): Move the limit from 254 to
18053 * tests/regression.at (Web2c Actions): Ajust.
18055 Trying with bigger grammars shows various phenomena: at 3000 (28Mb
18056 of grammar file) bison is killed by my system, at 2000 (12Mb) bison
18057 passes, but produces negative #line number, once fixed, GCC is
18058 killed while compiling 14Mb, at 1500 (6.7 Mb of grammar, 8.2Mb of
18060 * src/state.h (state_h): Code input lines on ints, not shorts.
18062 2002-04-08 Akim Demaille <akim@epita.fr>
18064 * src/reduce.c (reduce_grammar): First reduce the nonterminals,
18065 and then the grammar.
18067 2002-04-08 Akim Demaille <akim@epita.fr>
18069 * src/system.h: No longer using strndup.
18071 2002-04-07 Akim Demaille <akim@epita.fr>
18073 * src/muscle_tab.h (MUSCLE_INSERT_LONG_INT): New.
18074 * src/output.c (output_table_data): Return the longest number.
18075 (prepare_tokens): Output `token_number_max').
18076 * data/bison.simple, data/bison.c++ (b4_sint_type, b4_uint_type):
18078 Use them to define yy_token_number_type/TokenNumberType.
18079 Use this type for yytranslate.
18080 * tests/torture.at (Big triangle): Push the limit from 124 to
18082 * tests/regression.at (Web2c Actions): Adjust.
18084 2002-04-07 Akim Demaille <akim@epita.fr>
18086 * tests/torture.at (Big triangle): New.
18087 (GNU AWK Grammar, GNU Cim Grammar): Move to...
18088 * tests/existing.at: here.
18090 2002-04-07 Akim Demaille <akim@epita.fr>
18092 * src/gram.h, src/gram.c (nitems): Remove, it is an alias of
18094 Adjust dependencies.
18096 2002-04-07 Akim Demaille <akim@epita.fr>
18098 * src/reader.c: Normalize increments to prefix form.
18100 2002-04-07 Akim Demaille <akim@epita.fr>
18102 * src/reader.c, symtab.c: Remove debugging code.
18104 2002-04-07 Akim Demaille <akim@epita.fr>
18106 Rename all the `bucket's as `symbol_t'.
18108 * src/gram.c, src/gram.h, src/lex.c, src/lex.h, src/output.c,
18109 * src/reader.c, src/reader.h, src/reduce.c, src/state.h,
18110 * src/symtab.c, src/symtab.h (bucket): Rename as...
18112 (symbol_list_new, bucket_check_defined, bucket_make_alias)
18113 (bucket_check_alias_consistence, bucket_pack, bucket_translation)
18114 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18115 (buckets_new, buckets_free, buckets_do): Rename as...
18116 (symbol_list_new, symbol_check_defined, symbol_make_alias)
18117 (symbol_check_alias_consistence, symbol_pack, symbol_translation)
18118 (symbol_new, symbol_free, hash_compare_symbol_t, hash_symbol_t)
18119 (symbols_new, symbols_free, symbols_do): these.
18121 2002-04-07 Akim Demaille <akim@epita.fr>
18123 Use lib/hash for the symbol table.
18125 * src/gram.c (ntokens): Initialize to 1, to reserve a slot for
18127 * src/lex.c (lex): Set the `number' member of new terminals.
18128 * src/reader.c (bucket_check_defined, bucket_make_alias)
18129 (bucket_check_alias_consistence, bucket_translation): New.
18130 (reader, grammar_free, readgram, token_translations_init)
18131 (packsymbols): Adjust.
18132 (reader): Number the predefined tokens.
18133 * src/reduce.c (inaccessable_symbols): Just use hard coded numbers
18134 for predefined tokens.
18135 * src/symtab.h (bucket): Remove all the hash table related
18137 * src/symtab.c (symtab): Replace by...
18138 (bucket_table): this.
18139 (bucket_new, bucket_free, hash_compare_bucket, hash_bucket)
18140 (buckets_new, buckets_do): New.
18142 2002-04-07 Akim Demaille <akim@epita.fr>
18144 * src/gram.c (nitems, nrules, nsyms, ntokens, nvars, nritems)
18145 (start_symbol, max_user_token_number, semantic_parser)
18146 (error_token_number): Initialize.
18147 * src/reader.c (grammar, start_flag, startval, typed, lastprec):
18150 (errtoken, eoftoken, undeftoken, axiom): Extern.
18152 2002-04-07 Akim Demaille <akim@epita.fr>
18154 * src/gram.h (rule_s): prec and precsym are now pointers
18155 to the bucket giving the priority/associativity.
18156 Member `associativity' removed: useless.
18157 * src/reduce.c, src/conflicts.c: Adjust.
18159 2002-04-07 Akim Demaille <akim@epita.fr>
18161 * src/lalr.c, src/LR0.c, src/closure.c, src/gram.c, src/reduce.c:
18162 Properly escape the symbols' TAG when outputting them.
18164 2002-04-07 Akim Demaille <akim@epita.fr>
18166 * src/lalr.h (LA): Is a bitsetv, not bitset*.
18168 2002-04-07 Akim Demaille <akim@epita.fr>
18170 * src/lalr.h, src/lalr.c (LAruleno): Replace with...
18171 (LArule): this, which is an array to rule_t*.
18172 * src/print.c, src/conflicts.c: Adjust.
18174 2002-04-07 Akim Demaille <akim@epita.fr>
18176 * src/gram.h (rule_t): Rename `number' as `user_number'.
18177 `number' is a new member.
18178 Adjust dependencies.
18179 * src/reduce.c (reduce_grammar_tables): Renumber rule_t.number.
18181 2002-04-07 Akim Demaille <akim@epita.fr>
18183 As a result of the previous patch, it is no longer needed
18184 to reorder ritem itself.
18186 * src/reduce.c (reduce_grammar_tables): Don't sort RITEM.
18188 2002-04-07 Akim Demaille <akim@epita.fr>
18190 Be sure never to walk through RITEMS, but use only data related to
18191 the rules themselves. RITEMS should be banished.
18193 * src/output.c (output_token_translations): Rename as...
18194 (prepare_tokens): this.
18195 In addition to `translate', prepare the muscles `tname' and
18196 `toknum', which were handled by...
18197 (output_rule_data): this.
18198 Remove, and move the remainder of its outputs into...
18199 (prepare_rules): this new routines, which also merges content from
18200 (output_gram): this.
18201 (prepare_rules): Be sure never to walk through RITEMS.
18202 (output_stos): Rename as...
18203 (prepare_stos): this.
18204 (output): Always invoke prepare_states, after all, just don't use it
18205 in the output if you don't need it.
18207 2002-04-07 Akim Demaille <akim@epita.fr>
18209 * src/LR0.c (new_state): Display `nstates' as the name of the
18210 newly created state.
18211 Adjust to initialize first_state and last_state if needed.
18212 Be sure to distinguish the initial from the final state.
18213 (new_states): Create the itemset of the initial state, and use
18215 * src/closure.c (closure): Now that the initial state has its
18216 items properly set, there is no need for a special case when
18217 creating `ruleset'.
18219 As a result, now the rule 0, reducing to $axiom, is visible in the
18220 outputs. Adjust the test suite.
18222 * tests/conflicts.at (Solved SR Conflicts)
18223 (Unresolved SR Conflicts): Adjust.
18224 * tests/regression.at (Web2c Report, Rule Line Numbers): Idem.
18225 * tests/conflicts.at (S/R in initial): New.
18227 2002-04-07 Akim Demaille <akim@epita.fr>
18229 * src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
18230 the RHS of the rules.
18231 * src/output.c (output_gram): Likewise.
18233 2002-04-07 Akim Demaille <akim@epita.fr>
18235 * src/gram.h (rule_t): `lhs' is now a pointer to the symbol's
18237 Adjust all dependencies.
18238 * src/reduce.c (nonterminals_reduce): Don't forget to renumber the
18239 `number' of the buckets too.
18240 * src/gram.h: Include `symtab.h'.
18241 (associativity): Move to...
18242 * src/symtab.h: here.
18243 No longer include `gram.h'.
18245 2002-04-07 Akim Demaille <akim@epita.fr>
18247 * src/gram.h, src/gram.c (rules_rhs_length): New.
18248 (ritem_longest_rhs): Use it.
18249 * src/gram.h (rule_t): `number' is a new member.
18250 * src/reader.c (packgram): Set it.
18251 * src/reduce.c (reduce_grammar_tables): Move the useless rules at
18252 the end of `rules', and count them out of `nrules'.
18253 (reduce_output, dump_grammar): Adjust.
18254 * src/print.c (print_grammar): It is no longer needed to check for
18255 the usefulness of a rule, as useless rules are beyond `nrules + 1'.
18256 * tests/reduce.at (Reduced Automaton): New test.
18258 2002-04-07 Akim Demaille <akim@epita.fr>
18260 * src/reduce.c (inaccessable_symbols): Fix a buglet: because of a
18261 lacking `+ 1' to nrules, Bison reported as useless a token if it
18262 was used solely to set the precedence of the last rule...
18264 2002-04-07 Akim Demaille <akim@epita.fr>
18266 * data/bison.c++, data/bison.simple: Don't output the current file
18267 name in #line, to avoid useless diffs between two identical
18268 outputs under different names.
18270 2002-04-07 Akim Demaille <akim@epita.fr>
18272 * src/closure.c, src/print.c, src/reader.c, src/reduce.c:
18273 Normalize loops to using `< nrules + 1', not `<= nrules'.
18275 2002-04-07 Akim Demaille <akim@epita.fr>
18279 2002-04-07 Akim Demaille <akim@epita.fr>
18281 * src/output.c, src/reader.c, src/symtab.c, src/symtab.h: Rename
18282 bucket.value as bucket.number.
18284 2002-04-07 Akim Demaille <akim@epita.fr>
18286 * src/closure.c, src/derives.c, src/gram.h, src/lalr.c,
18287 * src/nullable.c, src/output.c, src/print.c, src/print_graph.c,
18288 * src/reader.c, src/reduce.c: Let rule_t.rhs point directly to the
18289 RHS, instead of being an index in RITEMS.
18291 2002-04-04 Paul Eggert <eggert@twinsun.com>
18293 * doc/bison.texinfo: Update copyright date.
18294 (Rpcalc Lexer, Symbols, Token Decl): Don't assume ASCII.
18295 (Symbols): Warn about running Bison in one character set,
18296 but compiling and/or running in an incompatible one.
18297 Warn about character code 256, too.
18299 2002-04-03 Paul Eggert <eggert@twinsun.com>
18301 * src/bison.data (YYSTACK_ALLOC): Depend on whether
18302 YYERROR_VERBOSE is nonzero, not whether it is defined.
18304 Merge changes from bison-1_29-branch.
18306 2002-03-20 Paul Eggert <eggert@twinsun.com>
18308 Merge fixes from Debian bison_1.34-1.diff.
18310 * configure.in (AC_PREREQ): 2.53.
18312 2002-03-20 Akim Demaille <akim@epita.fr>
18314 * src/conflicts.c (log_resolution): Argument `resolution' is const.
18316 2002-03-19 Paul Eggert <eggert@twinsun.com>
18318 * src/bison.simple (YYCOPY): New macro.
18319 (YYSTACK_RELOCATE): Use it.
18320 Remove Type arg; no longer needed. All callers changed.
18321 (yymemcpy): Remove; no longer needed.
18323 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
18324 * doc/Makefile.am (AUTOMAKE_OPTIONS): Remove.
18326 2002-03-19 Akim Demaille <akim@epita.fr>
18328 Test and fix the #line outputs.
18330 * tests/atlocal.at (GCC): New.
18331 * tests/synclines.at (AT_TEST_SYNCLINE): New macro.
18332 (Prologue synch line, %union synch line, Postprologue synch line)
18333 (Action synch line, Epilogue synch line): New tests.
18334 * src/reader.c (parse_union_decl): Define the muscle stype_line.
18335 * data/bison.simple, data/bison.c++: Use it.
18337 2002-03-19 Akim Demaille <akim@epita.fr>
18339 * tests/regression.at (%nonassoc and eof, Unresolved SR Conflicts)
18340 (Solved SR Conflicts, %expect not enough, %expect right)
18341 (%expect too much): Move to...
18342 * tests/conflicts.at: this new file.
18344 2002-03-19 Akim Demaille <akim@epita.fr>
18346 * data/m4sugar/m4sugar.m4: Update from CVS Autoconf.
18347 * data/bison.simple, data/bison.c++: Handle the `#define' part, so
18348 that we can move to enums for instance.
18349 * src/output.c (token_definitions_output): Output a list of
18350 `token-name, token-number' instead of the #define.
18351 (output_skeleton): Name this list `b4_tokens', not `b4_tokendefs'.
18353 2002-03-14 Akim Demaille <akim@epita.fr>
18355 Use Gettext 0.11.1.
18357 2002-03-09 Robert Anisko <robert@lrde.epita.fr>
18359 * data/bison.c++: Make the user able to add members to the generated
18360 parser by subclassing.
18362 2002-03-05 Robert Anisko <robert@lrde.epita.fr>
18364 * src/reader.c (read_additionnal_code): `c' should be an integer, not
18366 Reported by Nicolas Tisserand and Nicolas Burrus.
18368 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
18370 * src/reader.c: Warn about lacking semi-colons, do not complain.
18372 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
18374 * data/bison.c++: Remove a debug line.
18376 2002-03-04 Robert Anisko <robert@lrde.epita.fr>
18378 * data/bison.c++: Unmerge value as yylval and value as yyval. Unmerge
18379 location as yylloc and location as yyloc. Use YYLLOC_DEFAULT, and
18380 provide a default implementation.
18382 2002-03-04 Akim Demaille <akim@epita.fr>
18384 * tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
18385 * tests/output.at (AT_CHECK_OUTPUT): Likewise.
18386 * tests/headers.at (AT_TEST_CPP_GUARD_H): Ditto.
18387 * tests/semantic.at (Parsing Guards): Similarly.
18388 * src/reader.at (readgram): Complain if the last rule is not ended
18391 2002-03-04 Akim Demaille <akim@epita.fr>
18393 * src/warshall.h, src/warshall.c (bitmatrix_print): Move to...
18394 * src/closure.c: here.
18395 (set_firsts): Use bitsetv_reflexive_transitive_closure instead of
18397 * src/warshall.h, src/warshall.c: Remove.
18398 * tests/sets.at (Broken Closure): Adjust.
18400 2002-03-04 Akim Demaille <akim@epita.fr>
18402 * src/output.c (output_skeleton): tempdir is const.
18403 bytes_read is unused.
18405 2002-03-04 Akim Demaille <akim@epita.fr>
18407 * lib/bbitset.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18408 * lib/bitsetv.h, lib/ebitset.c, lib/lbitset.c, lib/sbitset.c:
18410 From Michael Hayes.
18412 2002-03-04 Akim Demaille <akim@epita.fr>
18414 * src/closure.c (closure): `r' is unused.
18416 2002-03-04 Akim Demaille <akim@epita.fr>
18418 * tests/sets.at (Broken Closure): Add the ending `;'.
18419 * src/reader.at (readgram): Complain if a rule is not ended with a
18422 2002-03-04 Akim Demaille <akim@epita.fr>
18424 * src/conflicts.c (set_conflicts): Use bitset_disjoint_p.
18425 (count_sr_conflicts): Use bitset_count.
18426 * src/reduce.c (inaccessable_symbols): Ditto.
18427 (bits_size): Remove.
18428 * src/warshall.h, src/warshall.c: Convert to bitsetv.
18430 2002-03-04 Akim Demaille <akim@epita.fr>
18432 * src/closure.c, src/conflicts.c, src/lalr.c, src/print.c,
18433 * src/reduce.c: Remove the `bitset_zero's following the
18434 `bitset_create's, as now it is performed by the latter.
18436 2002-03-04 Akim Demaille <akim@epita.fr>
18438 * lib/bitset.c, lib/bitset.h, lib/bitsetv.c, lib/bitsetv.h,
18439 * lib/ebitset.c, lib/ebitset.h, lib/lbitset.c, lib/lbitset.h,
18440 * lib/sbitset.c, lib/sbitset.h, lib/bbitset.h: Update from the
18441 latest sources from Michael.
18443 2002-03-04 Akim Demaille <akim@epita.fr>
18445 * src/output.c (output): Don't free the grammar.
18446 * src/reader.c (grammar_free): New.
18447 * src/main.c (main): Call it and don't free symtab here.
18449 2002-03-04 Akim Demaille <akim@epita.fr>
18451 * src/lex.c (parse_percent_token): Be sure to 0-end token_buffer
18453 Reported by Benoit Perrot.
18455 2002-03-04 Akim Demaille <akim@epita.fr>
18457 Use bitset operations when possible, not loops over bits.
18459 * src/conflicts.c (set_conflicts, count_sr_conflicts): Use
18461 * src/print.c (print_reductions): Use bitset_and, bitset_andn.
18462 * src/reduce.c (useless_nonterminals): Formatting changes.
18463 * src/warshall.c (TC): Use bitset_or.
18465 2002-03-04 Akim Demaille <akim@epita.fr>
18467 * src/lalr.h, src/lalr.c (tokensetsize): Remove, unused.
18468 * src/system.h (BITS_PER_WORD, WORDSIZE, SETBIT, RESETBIT, BITISSET):
18471 2002-03-04 Akim Demaille <akim@epita.fr>
18473 * src/lalr.c (F): Now a bitset*.
18474 Adjust all dependencies.
18476 2002-03-04 Akim Demaille <akim@epita.fr>
18478 * src/conflicts.c (shiftset, lookaheadset): Now bitset.
18479 Adjust all dependencies.
18481 2002-03-04 Akim Demaille <akim@epita.fr>
18483 * src/L0.c, src/LR0.h (nstates): Be size_t.
18484 Adjust comparisons (signed vs unsigned).
18485 * src/conflics.c, src/lalr.c, src/lalr.h, src/output.c (LA): Now a
18487 Adjust all dependencies.
18489 2002-03-04 Akim Demaille <akim@epita.fr>
18491 * src/closure.c (firsts): Now, also a bitset.
18492 Adjust all dependencies.
18493 (varsetsize): Remove, now unused.
18494 * src/warshall.h, src/warshall.c: Now work on arrays of bitsets.
18496 2002-03-04 Akim Demaille <akim@epita.fr>
18498 * src/print.c: Convert to use bitset.h, not hand coded iterations
18501 2002-03-04 Akim Demaille <akim@epita.fr>
18503 * src/reduce.c: Convert to use bitset.h, not hand coded BSet.
18505 2002-03-04 Akim Demaille <akim@epita.fr>
18507 * src/closure.c (ruleset): Be a bitset.
18508 (rulesetsize): Remove.
18510 2002-03-04 Akim Demaille <akim@epita.fr>
18512 * lib/bitset-int.h, lib/bitset.c, lib/bitset.h, lib/bitsetv.c,
18513 * lib/bitsetv.h, lib/ebitset.c, lib/ebitset.h, lib/lbitset.c,
18514 * lib/lbitset.h, lib/sbitset.c, lib/sbitset.h: New.
18515 * src/closure.c (fderives): Be an array of bitsets.
18517 2002-02-28 Robert Anisko <robert@lrde.epita.fr>
18519 * data/bison.c++: Merge the two generated headers. Insert a copyright
18520 notice in each output file.
18522 2002-02-28 Akim Demaille <akim@epita.fr>
18524 * data/bison.c++: Copy the prologue of bison.simple to fetch
18525 useful M4 definitions, such as b4_header_guard.
18527 2002-02-25 Akim Demaille <akim@epita.fr>
18529 * src/getargs.c (version): Give the name of the authors, and use a
18530 translator friendly scheme for the bgr
18533 2002-02-25 Akim Demaille <akim@epita.fr>
18535 * src/output.c (header_output): Remove, now handled completely via
18538 2002-02-25 Akim Demaille <akim@epita.fr>
18540 * m4/m4.m4: New, from CVS Autoconf.
18541 * configure.in: Invoke it.
18542 * src/output.c (output_skeleton): Use its result instead of the
18545 2002-02-25 Akim Demaille <akim@epita.fr>
18547 * lib/tempname.c, lib/mkstemp.c, m4/mkstemp.m4: New, stolen from
18549 * configure.in: Invoke UTILS_FUNC_MKSTEMP.
18550 * src/output.c (output_skeleton): Use mkstemp to create a real
18552 Move the filling of `skeleton' and its muscle to...
18554 (output): Move the definition of the prologue muscle to...
18556 * src/system.h (DEFAULT_TMPDIR): New.
18558 2002-02-14 Paul Eggert <eggert@twinsun.com>
18560 Remove the support for C++ namespace cleanliness; it was
18561 causing more problems than it was curing, since it didn't work
18562 properly on some nonstandard C++ compilers. This can wait
18563 for a proper C++ parser.
18565 * NEWS: Document this.
18566 * doc/bison.texinfo (Bison Parser, Debugging): Remove special mention
18567 of C++, as it's treated like C now.
18568 * src/bison.simple (YYSTD): Remove.
18569 (YYSIZE_T, YYFPRINTF, YYPARSE_PARAM_ARG, YYPARSE_PARAM_DECL):
18570 Treat C++ just like Standard C instead of trying to support
18571 namespace cleanliness.
18573 2002-02-14 Akim Demaille <akim@epita.fr>
18575 * tests/regression.at (else): Adjust to Andreas' change.
18577 2002-02-14 Akim Demaille <akim@epita.fr>
18579 * lib/Makefile.am (EXTRA_DIST): Ship strnlen.c.
18581 2002-02-13 Andreas Schwab <schwab@suse.de>
18583 * src/output.c (output_rule_data): Don't output NULL, it might
18584 not be defined yet.
18586 2002-02-11 Robert Anisko <robert@lrde.epita.fr>
18588 * data/bison.c++ (YYDEBUG, YYERROR_VERBOSE): After the prologue.
18589 (Copyright notice): Update.
18591 2002-02-11 Akim Demaille <akim@epita.fr>
18593 * tests/regression.at (%nonassoc and eof): Don't include
18594 nonportable headers.
18596 2002-02-08 Robert Anisko <robert@lrde.epita.fr>
18598 * data/bison.c++: Correct error recovery. Make the user able to
18599 initialize the starting location.
18601 2002-02-07 Akim Demaille <akim@epita.fr>
18603 * tests/input.at: New.
18605 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18607 * data/bison.c++: Replace some direct m4 expansions by constants. Be
18608 more consistent when naming methods and variables. Put preprocessor
18609 directives around tables only needed for debugging.
18611 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18613 * data/bison.c++ (yy::b4_name::print_): New method, replaces yyprint in
18615 (yy::b4_name::parse): Use print_.
18617 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18619 * data/bison.c++ (yy::b4_name::parse): Error recovery is back.
18621 2002-02-07 Robert Anisko <robert@lrde.epita.fr>
18623 * data/bison.c++ (yy::b4_name::error_): New method, replaces yyerror in
18625 (yy::b4_name::parse): Build verbose error messages, and use error_.
18627 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
18629 * data/bison.c++: Fix m4 quoting in comments.
18631 2002-02-06 Robert Anisko <robert@lrde.epita.fr>
18633 * data/bison.c++: Adjust the parser code. Fix some muscles that were
18634 not expanded by m4.
18636 2002-02-05 Akim Demaille <akim@epita.fr>
18638 * data/bison.c++: Adjust to the M4 back end.
18639 More is certainly needed.
18641 2002-02-05 Akim Demaille <akim@epita.fr>
18643 Give a try to M4 as a back end.
18645 * lib/readpipe.c: New, from wdiff.
18646 * src/Makefile.am (DEFS): Define PKGDATADIR, not BISON_SIMPLE and
18648 * src/system.h (BISON_HAIRY, BISON_SIMPLE): Remove the DOS and VMS
18649 specific values. Now it is m4 that performs the lookup.
18650 * src/parse-skel.y: Remove.
18651 * src/muscle_tab.c, src/muscle_tab.h (muscles_m4_output): New.
18652 * src/output.c (actions_output, guards_output)
18653 (token_definitions_output): No longer keeps track of the output
18654 line number, hence remove the second argument.
18655 (guards_output): Check against the guard member of a rule, not the
18658 (output_skeleton): Don't look for the skeleton location, let m4 do
18660 Create `/tmp/muscles.m4'. This is temporary, a proper temporary
18662 Invoke `m4' on m4sugar.m4, muscles.m4, and the skeleton.
18663 (prepare): Given that for the time being changesyntax is not
18664 usable in M4, rename the muscles using `-' to `_'.
18665 Define `defines_flag', `output_parser_name' and `output_header_name'.
18666 * src/output.h (actions_output, guards_output)
18667 (token_definitions_output): Adjust prototypes.
18668 * src/scan-skel.l: Instead of scanning the skeletons, it now
18669 processes the output of m4: `__oline__' and `#output'.
18670 * data/bison.simple: Adjust to be used by M4(sugar).
18671 * tests/Makefile.am: Use check_SCRIPTS to make sure `bison' is up
18673 * tests/bison.in: Use the secrete envvar `BISON_PKGDATADIR'
18674 instead of the dead `BISON_SIMPLE' and `BISON_HAIRY'.
18675 * data/m4sugar/m4sugar.m4, data/m4sugar/version.m4: New,
18676 shamelessly stolen from CVS Autoconf.
18678 2002-02-05 Akim Demaille <akim@epita.fr>
18680 * lib/hash.c, lib/hash.h: Replace with Fileutils 4.1's version.
18681 * configure.in: Check for the declarations of free and malloc.
18682 * src/muscle_tab.c: Adjust.
18684 2002-02-05 Akim Demaille <akim@epita.fr>
18686 * src/muscle_tab.c (muscle_init): Don't default to NULL muscle
18687 which have no values.
18689 2002-02-05 Akim Demaille <akim@epita.fr>
18691 * src/bison.simple, src/bison.hairy, src/bison.c++: Move to...
18694 2002-01-29 Paul Eggert <eggert@twinsun.com>
18696 * src/bison.simple (YYSIZE_T): Do not define merely because
18697 YYSTACK_USE_ALLOCA is nonzero or alloca or _ALLOCA_H are defined.
18698 On some platforms, <alloca.h> does not declare YYSTD (size_t).
18700 2002-01-27 Akim Demaille <akim@epita.fr>
18702 Fix `%nonassoc and eof'.
18704 * src/state.c (errs_dup): Aaaah! The failure was due to bytes
18705 which were not properly copied! Replace
18706 memcpy (res->errs, src->errs, src->nerrs);
18708 memcpy (res->errs, src->errs, src->nerrs * sizeof (src->errs[0]));
18710 * tests/regression.at (%nonassoc and eof): Adjust to newest
18711 Autotest: `.' is not in the PATH.
18713 2002-01-27 Akim Demaille <akim@epita.fr>
18715 * tests/sets.at (AT_EXTRACT_SETS): New.
18716 (Nullable): Use it.
18719 2002-01-26 Akim Demaille <akim@epita.fr>
18721 * tests/actions.at, tests/calc.at, tests/headers.at,
18722 * tests/torture.at: Adjust to the newest Autotest which no longer
18723 forces `.' in the PATH.
18725 2002-01-25 Akim Demaille <akim@epita.fr>
18727 * tests/regression.at (%nonassoc and eof): New.
18728 Suggested by Robert Anisko.
18730 2002-01-24 Akim Demaille <akim@epita.fr>
18732 Bison dumps core when trying to complain about broken input files.
18733 Reported by Cris van Pelt.
18735 * src/lex.c (parse_percent_token): Be sure to set token_buffer.
18736 * tests/regression.at (Invalid input: 1, Invalid input: 2): Merge
18738 (Invalid inputs): Strengthen: exercise parse_percent_token.
18740 2002-01-24 Robert Anisko <robert.anisko@epita.fr>
18742 * src/Makefile.am: Add bison.c++.
18743 * src/bison.c++: New skeleton.
18745 2002-01-21 Paolo Bonzini <bonzini@gnu.org>
18749 2002-01-21 Kees Zeelenberg <kzlg@users.sourceforge.net>
18751 * src/files.c (skeleton_find) [MSDOS]: Fix cp definition.
18753 2002-01-20 Marc Autret <marc@gnu.org>
18755 * src/files.c (compute_output_file_names): Fix
18757 2002-01-20 Marc Autret <marc@gnu.org>
18759 * tests/output.at: New test.
18760 * src/files.c (compute_base_names): Don't map extensions when
18761 the YACC flag is set, use defaults.
18762 Reported by Evgeny Stambulchik.
18764 2002-01-20 Marc Autret <marc@gnu.org>
18766 * src/system.h: Need to define __attribute__ away for non-GCC
18767 compilers as well (i.e., the vendor C compiler).
18768 Suggested by Albert Chin-A-Young.
18770 2002-01-11 Tim Van Holder <tim.van.holder@pandora.be>
18772 * lib/hash.h, lib/hash.c: Renamed __P to PARAMS and used the
18773 canonical definition.
18774 * src/system.h: Use the canonical definition for PARAMS (avoids
18775 a conflict with the macro from lib/hash.h).
18777 2002-01-11 Akim Demaille <akim@epita.fr>
18779 * configure.in: Use AC_FUNC_STRNLEN.
18780 Fixes the failures observed on AIX 4.3 by H.Merijn Brand.
18782 2002-01-09 Akim Demaille <akim@epita.fr>
18784 * src/files.c, src/files.h (output_infix): New.
18785 (tab_extension): Remove.
18786 (compute_base_names): Compute the former, drop the latter.
18787 * src/output.c (prepare): Insert the muscles `output-infix', and
18789 * src/parse-skel.y (string, string.1): New.
18790 (section.header): Use it.
18791 (section.yacc): Remove.
18792 (prefix): Remove too.
18793 * src/scan-skel.l: Adjust.
18794 * src/bison.simple, src/bison.hairy: Adjust.
18796 2002-01-09 Akim Demaille <akim@epita.fr>
18798 * configure.in (WERROR_CFLAGS): Compute it.
18799 * src/Makefile.am (CFLAGS): Pass it.
18800 * tests/atlocal.in (CFLAGS): Idem.
18801 * src/files.c: Fix a few warnings.
18802 (get_extension_index): Remove, unused.
18804 2002-01-08 Akim Demaille <akim@epita.fr>
18806 * src/getargs.c (AS_FILE_NAME): New.
18807 (getargs): Use it to convert DOSish file names.
18808 * src/files.c (base_name): Rename as full_base_name to avoid
18809 clashes with `base_name ()'.
18810 (filename_split): New.
18811 (compute_base_names): N-th rewrite, using filename_split.
18813 2002-01-08 Akim Demaille <akim@epita.fr>
18815 * lib/basename.c, lib/dirname.h, lib/dirname.c, lib/memrchr.c:
18816 New, stolen from the Fileutils 4.1.
18817 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
18818 * configure.in: Check for the presence of memrchr, and of its
18821 2002-01-07 Tim Van Holder <tim.van.holder@pandora.be>
18823 * lib/hash.h (__P): Added definition for this macro.
18824 * src/Makefile.am: Add parse-skel.c and scan-skel.c to
18825 BUILT_SOURCES, to ensure they are generated first.
18826 * src/parse-skel.y: Use YYERROR_VERBOSE instead of
18827 %error-verbose to allow bootstrapping with bison 1.30x.
18829 2002-01-06 Akim Demaille <akim@epita.fr>
18831 * src/reader.c (parse_braces): Don't fetch the next char, the
18832 convention is to fetch on entry.
18833 * tests/torture.at (GNU Cim Grammar): Reintroduce their weird
18834 'switch' without a following semicolon.
18835 * tests/regression.at (braces parsing): New.
18837 2002-01-06 Akim Demaille <akim@epita.fr>
18839 Bison is dead wrong in its RR conflict reports.
18841 * tests/torture.at (GNU Cim Grammar): New.
18842 * src/conflicts.c (count_rr_conflicts): Fix.
18844 2002-01-06 Akim Demaille <akim@epita.fr>
18846 Creating package.m4 from configure.ac causes too many problems.
18848 * tests/Makefile.am (package.m4): Create it by hand,
18849 AC_CONFIG_TESTDIR no longer does in the most recent CVS Autoconf.
18851 2002-01-06 Akim Demaille <akim@epita.fr>
18853 * src/Makefile.am (bison_SOURCES): Add parse-skel.h and
18856 2002-01-04 Paul Eggert <eggert@twinsun.com>
18858 * doc/bison.texinfo (Debugging):
18859 Remove YYSTDERR; it's no longer defined or used.
18860 Also, s/cstdio.h/cstdio/.
18862 2002-01-03 Akim Demaille <akim@epita.fr>
18864 * tests/bison.in, tests/atlocal.in: Adjust to CVS Autoconf.
18866 2002-01-03 Akim Demaille <akim@epita.fr>
18868 * src/parse-skel.y (process_skeleton): Don't bind the parser's
18869 tracing code to --trace, wait for a better --trace option, with
18872 2002-01-03 Akim Demaille <akim@epita.fr>
18874 * src/bison.simple (YYSTDERR): Remove, replace `stderr'.
18875 The ISO C++ standard is extremely clear about it: stderr is
18876 considered a macro, not a regular symbol (see table 94 `Header
18877 <cstdio> synopsis', [lib.c.files] 27.8.2 C Library files).
18878 Therefore std:: does not apply to it. It still does with fprintf.
18879 Also, s/cstdio.h/cstdio/.
18881 2002-01-03 Akim Demaille <akim@epita.fr>
18883 * lib/quotearg.c: Use `#include "..."' instead of `#include <...>'
18884 for non system headers.
18886 2002-01-02 Akim Demaille <akim@epita.fr>
18888 Equip the skeleton chain with location tracking, runtime trace,
18889 pure parser and scanner.
18891 * src/parse-skel.y: Request a pure parser, locations, and prefix
18893 (%union): Having several members with the same type does not help
18894 type mismatches, simplify.
18895 (YYPRINT, yyprint): New.
18896 (yyerror): ``Rename'' (there is a #define yyerror skel_error) as...
18897 (skel_error): this.
18899 * src/scan-skel.l: Adjust to these changes.
18900 * src/skeleton.h (LOCATION_RESET, LOCATION_LINES, LOCATION_STEP)
18901 (LOCATION_PRINT, skel_control_t): New.
18903 2001-12-30 Akim Demaille <akim@epita.fr>
18905 * src/parse-skel.y: Get rid of the shift/reduce conflict:
18906 replace `gb' with BLANKS.
18907 * src/scan-skel.l: Adjust.
18909 2001-12-30 Akim Demaille <akim@epita.fr>
18911 * src/system.h: We don't need nor want bcopy.
18912 Throw away MS-DOS crap: we don't need getpid.
18913 * configure.in: We don't need strndup. It was even causing
18914 problems: because Flex includes the headers *before* us,
18915 _GNU_SOURCE is not defined by config.h, and therefore strndup was
18917 * lib/xstrndup.c: New.
18918 * src/scan-skel.l: Use it.
18919 Be sure to initialize yylval.muscle member when scanning a MUSCLE.
18920 * src/parse-skel.y: Use %directives instead of #defines.
18922 2001-12-30 Akim Demaille <akim@epita.fr>
18924 * src/skeleton.h: New.
18925 * src/output.c (output_parser, output_master_parser): Remove, dead
18927 * src/output.h (get_lines_number, actions_output, guards_output)
18928 (token_definitions_output): Prototype them.
18929 * src/parse-skel.y: Add the license notice.
18930 Include output.h and skeleton.h.
18931 (process_skeleton): Returns void, and takes a single parameter.
18932 * src/scan-skel.l: Add the license notice.
18933 Include skeleton.h.
18934 Don't use %option yylineno: it seems that then Flex imagines
18935 REJECT has been used, and therefore it won't reallocate its
18936 buffers (which makes no other sense to me than a bug). It results
18937 in warnings for `unused: yy_flex_realloc'.
18939 2001-12-30 Robert Anisko <robert.anisko@epita.fr>
18941 * src/muscle_tab.h (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18942 (MUSCLE_INSERT_PREFIX): ...to there.
18943 * src/output.c (MUSCLE_INSERT_INT, MUSCLE_INSERT_STRING)
18944 (MUSCLE_INSERT_PREFIX): Move from here...
18946 * src/bison.hairy: Add a section directive. Put braces around muscle
18947 names. This parser skeleton is still broken, but Bison should not
18948 choke on a bad muscle 'syntax'.
18949 * src/bison.simple: Add a section directive. Put braces around muscle
18952 * src/files.h (strsuffix, stringappend): Add declarations.
18953 (tab_extension): Add declaration.
18954 (short_base_name): Add declaration.
18956 * src/files.c (strsuffix, stringappend): No longer static. These
18957 functions are used in the skeleton parser.
18958 (tab_extension): New.
18959 (compute_base_names): Use the computations done in this function
18960 to guess if the generated parsers should have '.tab' in their
18962 (short_base_name): No longer static.
18964 * src/output.c (output_skeleton): New.
18965 (output): Disable call to output_master_parser, and give a try to
18966 a new skeleton handling system.
18967 (guards_output, actions_output): No longer static.
18968 (token_definitions_output, get_lines_number): No longer static.
18970 * configure.in: Use AM_PROG_LEX and AC_PROG_YACC.
18972 * src/Makefile.am (bison_SOURCES): Add scan-skel.l and
18975 * src/parse-skel.y: New file.
18976 * src/scan-skel.l: New file.
18978 2001-12-29 Akim Demaille <akim@epita.fr>
18980 %name-prefix is broken.
18982 * src/files.c (spec_name_prefix): Initialize to NULL, not to "yy".
18983 Adjust all dependencies.
18984 * tests/headers.at (export YYLTYPE): Strengthen this test: use
18987 Renaming yylval but not yylloc is not consistent. Now we do.
18989 * src/bison.simple: Prefix yylloc if used.
18990 * doc/bison.texinfo (Decl Summary): Document that.
18992 2001-12-29 Akim Demaille <akim@epita.fr>
18994 * doc/bison.texinfo: Promote `%long-directive' over
18996 Remove all references to fixed-output-files, yacc is enough.
18998 2001-12-29 Akim Demaille <akim@epita.fr>
19000 * src/bison.simple: Define YYDEBUG and YYERROR_VERBOSE *after* the
19001 user prologue. These are defaults.
19002 * tests/actions.at (Mid-rule actions): Make sure the user can
19003 define YYDEBUG and YYERROR_VERBOSE.
19005 2001-12-29 Akim Demaille <akim@epita.fr>
19007 * src/output.c (header_output): Don't forget to export YYLTYPE and
19009 * tests/headers.at (export YYLTYPE): New, make sure it does.
19010 * tests/regression.at (%union and --defines, Invalid CPP headers):
19012 * tests/headers.at: here.
19014 2001-12-29 Akim Demaille <akim@epita.fr>
19016 * src/gram.h (rule_s): Member `assoc' is of type `associativity'.
19018 2001-12-29 Akim Demaille <akim@epita.fr>
19020 * tests/actions.at (Mid-rule actions): Output on a single line
19021 instead of several.
19023 2001-12-29 Akim Demaille <akim@epita.fr>
19025 * doc/bison.texinfo: Formatting changes.
19027 2001-12-29 Akim Demaille <akim@epita.fr>
19029 Don't store the token defs in a muscle, just be ready to output it
19030 on command. Now possible via `symbols'. Fixes a memory leak.
19032 * src/output.c (token_definitions_output): New.
19033 (output_parser, header_output): Use it.
19034 * src/reader.c (symbols_save): Remove.
19036 2001-12-29 Akim Demaille <akim@epita.fr>
19038 * src/bison.simple: Do not provide a default for YYSTYPE and
19039 YYLTYPE before the user's prologue. Otherwise it's hardly... a
19042 2001-12-29 Akim Demaille <akim@epita.fr>
19044 Mid-rule actions are simply... ignored!
19046 * src/reader.c (readgram): Be sure to attach mid-rule actions to
19047 the empty-rule associated to the dummy symbol, not to the host
19049 * tests/actions.at (Mid-rule actions): New.
19051 2001-12-29 Akim Demaille <akim@epita.fr>
19055 * src/reader.c (reader): Free grammar.
19057 2001-12-29 Akim Demaille <akim@epita.fr>
19061 * src/LR0.c (new_itemsets): Don't allocate `shift_symbol' here,
19062 since it allocates it for each state, although only one is needed.
19063 (allocate_storage): Do it here.
19065 2001-12-29 Akim Demaille <akim@epita.fr>
19067 * src/options.h, src/options.c (create_long_option_table): Rename
19069 (long_option_table_new): this, with a clearer prototype.
19070 (percent_table): Remove, unused,
19071 * src/getargs.c (getargs): Adjust.
19073 2001-12-29 Akim Demaille <akim@epita.fr>
19075 * src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
19076 * src/print.c, src/print_graph.c, src/state.h: Rename state_table
19079 2001-12-29 Akim Demaille <akim@epita.fr>
19081 * src/lalr.c (build_relations): Rename `states' as `states1'.
19082 Sorry, I don't understand exactly what it is, no better name...
19084 2001-12-29 Akim Demaille <akim@epita.fr>
19086 * src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
19087 * src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
19088 * src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
19091 2001-12-29 Akim Demaille <akim@epita.fr>
19093 * src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
19096 2001-12-29 Akim Demaille <akim@epita.fr>
19098 * src/reader.c, src/reader.h (user_toknums): Remove.
19099 Adjust all users to use symbols[i]->user_token_number.
19101 2001-12-29 Akim Demaille <akim@epita.fr>
19103 * src/gram.c, src/gram.h (sprec, sassoc): Remove.
19104 Adjust all users to use symbols[i]->prec or ->assoc.
19106 2001-12-29 Akim Demaille <akim@epita.fr>
19108 * src/reader.c, src/reader.h (tags): Remove.
19109 Adjust all users to use symbols[i]->tag.
19111 2001-12-29 Akim Demaille <akim@epita.fr>
19113 * src/gram.h, src/gram.c (symbols): New, similar to state_table
19115 * src/reader.c (packsymbols): Fill this table.
19117 * src/conflicts.c (resolve_sr_conflict): Adjust.
19118 * src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
19120 Use symbols[i]->tag instead of tags[i].
19122 2001-12-29 Akim Demaille <akim@epita.fr>
19124 * tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
19125 In addition, put a comment in there, to replace...
19126 * tests/regression.at (%union and C comments): Remove.
19128 2001-12-29 Akim Demaille <akim@epita.fr>
19130 * tests/regression.at (Web2c Actions): Blindly move the actual
19131 output as expected output. The contents *seem* right to me, but I
19132 can't pretend reading perfectly parser tables... Nonetheless, all
19133 the other tests pass correctly, the table look OK, even though the
19134 presence of `$axiom' is to be noted: AFAICS it is useless (but
19137 2001-12-29 Akim Demaille <akim@epita.fr>
19139 * src/reader.c (readgram): Don't add the rule 0 if there were no
19140 rules read. In other words, add it _after_ having performed
19141 grammar sanity checks.
19142 Fixes the `tests/regression.at (Invalid input: 1)' Failure.
19144 2001-12-29 Akim Demaille <akim@epita.fr>
19146 * tests/regression.at (Web2c Report): Catch up: the rule 0 is now
19147 visible, and some states have now a different number.
19149 2001-12-29 Akim Demaille <akim@epita.fr>
19151 * src/reader.c (readgram): Bind the initial rule's lineno to that
19153 * tests/regression.at (Rule Line Numbers, Unresolved SR Conflicts):
19154 (Solved SR Conflicts): Adjust rule 0's line number.
19156 2001-12-29 Akim Demaille <akim@epita.fr>
19158 Fix the `GAWK Grammar' failure.
19160 * src/LR0.c (final_state): Initialize to -1 so that we do compute
19161 the reductions of the first state which was mistakenly confused
19162 with the final state because precisely final_state was initialized
19164 * tests/sets.at (Nullable): Adjust: state 0 does have lookaheads,
19165 now noticed by Bison.
19166 * tests/regression.at (Rule Line Numbers): Adjust: state 0 does
19167 have a reduction on $default.
19169 2001-12-29 Akim Demaille <akim@epita.fr>
19171 * src/gram.c (ritem_print): Be sure to subtract 1 when displaying
19173 * src/closure.c (print_closure): Likewise.
19174 * src/derives.c (print_derives): Likewise.
19175 * tests/sets.at (Nullable): Adjust: the rule numbers are correct
19178 2001-12-29 Akim Demaille <akim@epita.fr>
19180 * src/lalr.c (lookaheads_print): New.
19181 (lalr): Call it when --trace-flag.
19182 * tests/sets.at (Nullable): Adjust: when tracing, the lookaheads
19185 2001-12-29 Akim Demaille <akim@epita.fr>
19187 * src/derives.c (print_derives): Be sure to use `>= 0', not `> 0',
19188 when walking through ritem, even via rule->rhs.
19189 * src/reduce.c (dump_grammar, useful_production, reduce_output)
19190 (useful_production, useless_nonterminals): Likewise.
19191 (reduce_grammar_tables): Likewise, plus update nritems.
19192 * src/nullable.c (set_nullable): Likewise.
19193 * src/lalr.c (build_relations): Likewise.
19194 * tests/sets.at (Nullable): Adjust.
19195 Fortunately, now, the $axiom is no longer nullable.
19197 2001-12-29 Akim Demaille <akim@epita.fr>
19199 * src/LR0.c (generate_states): Use nritems, not nitems, nor using
19201 * src/gram.c (ritem_longest_rhs): Likewise.
19202 * src/reduce.c (nonterminals_reduce): Likewise.
19203 * src/print_graph.c (print_graph): Likewise.
19204 * src/output.c (output_rule_data): Likewise.
19205 * src/nullable.c (set_nullable): Likewise.
19207 2001-12-29 Akim Demaille <akim@epita.fr>
19209 * src/output.c: Comment changes.
19211 2001-12-27 Paul Eggert <eggert@twinsun.com>
19213 * src/bison.simple (YYSTACK_ALLOC, YYSIZE_T): Remove special
19214 cases for non-GNU systems like AIX, HP-UX, SGI, Sun, and
19215 Sparc, as they were causing more porting problems than the
19216 (minor) performance improvement was worth.
19218 Also, catch up with 1.31's YYSTD.
19220 2001-12-27 Akim Demaille <akim@epita.fr>
19222 * src/output.c (output_gram): Rely on nritems, not the
19223 0-sentinel. See below.
19224 Use -1 as separator, not 0.
19225 * src/bison.simple (yyparse): Subtract 1 to the rule numbers.
19226 Rely on -1 as separator in yyrhs, instead of 0.
19227 * tests/calc.at (AT_CHECK_CALC): Now, the parsers no longer issue
19228 twice `Now at end of input', therefore there are two lines less to
19231 2001-12-27 Akim Demaille <akim@epita.fr>
19233 * tests/regression.at (Unresolved SR Conflicts):
19234 (Solved SR Conflicts, Rule Line Numbers): Adjust to the changes
19237 2001-12-27 Akim Demaille <akim@epita.fr>
19239 * src/LR0.c (new_state): Recognize the final state by the fact it
19240 is reached by eoftoken.
19241 (insert_start_shifting_state, insert_eof_shifting_state)
19242 (insert_accepting_state, augment_automaton): Remove, since now
19243 these states are automatically computed from the initial state.
19244 (generate_states): Adjust.
19245 * src/print.c: When reporting a rule number to the user, substract
19246 1, so that the axiom rule is rule 0, and the first user rule is 1.
19247 * src/reduce.c: Likewise.
19248 * src/print_graph.c (print_core): For the time being, just as for
19249 the report, depend upon --trace-flags to dump the full set of
19251 * src/reader.c (readgram): Once the grammar read, insert the rule
19252 0: `$axiom: START-SYMBOL $'.
19253 * tests/set.at: Adjust: rule 0 is now displayed, and since the
19254 number of the states has changed (the final state is no longer
19255 necessarily the last), catch up.
19257 2001-12-27 Akim Demaille <akim@epita.fr>
19259 Try to make the use of the eoftoken valid. Given that its value
19260 is 0 which was also used as a sentinel in ritem, (i) make sure >= 0
19261 is used instead of > 0 where appropriate, (ii), depend upon nritems
19262 instead of the 0-sentinel.
19264 * src/gram.h, src/gram.c (nritems): New.
19265 Expected to be duplication of nitems, but for the time being...
19266 * src/reader.c (packgram): Assert nritems and nitems are equal.
19267 * src/LR0.c (allocate_itemsets, new_itemsets): Adjust.
19268 * src/closure.c (print_closure, print_fderives): Likewise.
19269 * src/gram.c (ritem_print): Likewise.
19270 * src/print.c (print_core, print_grammar): Likewise.
19271 * src/print_graph.c: Likewise.
19273 2001-12-27 Akim Demaille <akim@epita.fr>
19275 * src/main.c (main): If there are complains after grammar
19276 reductions, then output the report anyway if requested, then die.
19277 * src/symtab.c (bucket_new): Initialize `value' to -1, not 0.
19278 * src/reader.c (eoftoken): New.
19279 (parse_token_decl): If the token being defined has value `0', it
19281 (packsymbols): No longer hack `tags' to insert `$' by hand.
19282 Be sure to preserve the value of the eoftoken.
19283 (reader): Make sure eoftoken is defined.
19284 Initialize nsyms to 0: now eoftoken is created just like the others.
19285 * src/print.c (print_grammar): Don't special case the eof token.
19286 * src/regression.at: Adjust: `$' has value 0, not -1, which was a
19287 lie anyway, albeit pleasant.
19288 * tests/calc.at: Exercise error messages with eoftoken.
19289 Change the grammar so that empty input is invalid.
19290 Adjust expectations.
19291 When yyungeting, be sure to use a valid yylloc: use last_yylloc.
19293 2001-12-27 Akim Demaille <akim@epita.fr>
19295 * configure.in: Check the protos of strchr ans strspn.
19296 Replace strchr if needed.
19297 * src/system.h: Provide the protos of strchr, strspn and memchr if
19299 * lib/strchr.c: New.
19300 * src/reader.c (symbols_save): Use strchr.
19302 2001-12-27 Akim Demaille <akim@epita.fr>
19304 * src/print.c, src/print_graph.c (escape): New.
19305 Use it to quote the TAGS outputs.
19306 * src/print_graph.c (print_state): Now errors are in red, and
19307 reductions in green.
19308 Prefer high to wide: output the state number on a line of its own.
19310 2001-12-27 Akim Demaille <akim@epita.fr>
19312 * src/state.h, src/state.c (reductions_new): New.
19313 * src/LR0.c (set_state_table): Let all the states have a
19314 `reductions', even if reduced to 0.
19315 (save_reductions): Adjust.
19316 * src/lalr.c (initialize_LA, initialize_lookaheads): Adjust.
19317 * src/print.c (print_reductions, print_actions): Adjust.
19318 * src/output.c (action_row): Adjust.
19320 2001-12-27 Akim Demaille <akim@epita.fr>
19322 * src/state.h, src/state.c (errs_new, errs_dup): New.
19323 * src/LR0.c (set_state_table): Let all the states have an errs,
19324 even if reduced to 0.
19325 * src/print.c (print_errs, print_reductions): Adjust.
19326 * src/output.c (output_actions, action_row): Adjust.
19327 * src/conflicts.c (resolve_sr_conflict): Adjust.
19329 2001-12-27 Akim Demaille <akim@epita.fr>
19331 * src/lalr.c (set_goto_map, initialize_F): Use SHIFT_SYMBOL.
19333 2001-12-27 Akim Demaille <akim@epita.fr>
19335 * src/conflicts.c, src/conflicts.h (print_reductions): Move to...
19336 * src/print.c: here.
19337 (lookaheadset, shiftset): New, used as additional storage by
19339 (print_results): Adjust.
19340 (print_shifts, print_gotos, print_errs): New, extracted from...
19341 (print_actions): here.
19342 * src/print_graph.c (print_actions): Remove dead code.
19344 2001-12-27 Akim Demaille <akim@epita.fr>
19346 * src/reader.c (copy_dollar, copy_at): Better checking of `n' in
19349 2001-12-27 Akim Demaille <akim@epita.fr>
19351 * src/lalr.c (add_lookback_edge): Use state_t instead of ints.
19352 (build_relations): Adjust.
19354 2001-12-27 Akim Demaille <akim@epita.fr>
19356 * src/lalr.c (set_goto_map): Remove a wrong but benign loop
19359 2001-12-27 Akim Demaille <akim@epita.fr>
19361 * src/reader.c (packgram): Catch nitems overflows.
19363 2001-12-27 Akim Demaille <akim@epita.fr>
19365 * src/files.c, src/files.h (guard_obstack): Remove.
19366 * src/output.c (output): Adjust.
19367 * src/reader.c (parse_braces): New, factoring...
19368 (copy_action, copy_guard): these two which are renamed as...
19369 (parse_action, parse_guard): these.
19370 As a voluntary consequence, using braces around guards is now
19373 2001-12-27 Akim Demaille <akim@epita.fr>
19375 * src/gram.h (rule_t): `guard' and `guard_line' are new members.
19376 * src/reader.c (symbol_list): `guard' and `guard_line' are new
19378 (symbol_list_new): Adjust.
19379 (copy_action): action_line is the first line, not the last.
19380 (copy_guard): Just as for actions, store the `action' only, not
19381 the switch/case/break flesh.
19382 Don't parse the user action that might follow the guard, let...
19383 (readgram): do it, i.e., now, there can be an action after a
19385 In other words the guard is just explicitly optional.
19386 (packgram): Adjust.
19387 * src/output.c (guards_output): New.
19388 (output_parser): Call it when needed.
19389 (output): Also free the guard and attrs obstacks.
19390 * src/files.c, src/files.h (obstack_save): Remove.
19391 (output_files): Remove.
19392 As a result, if one needs the former `.act' file, using an
19393 appropriate skeleton which requires actions and guards is now
19395 * src/main.c (main): Adjust.
19396 * tests/semantic.at: New.
19397 * tests/regression.at: Use `input.y' as input file name.
19398 Avoid 8+3 problems by requiring input.c when the test needs the
19401 2001-12-27 Akim Demaille <akim@epita.fr>
19403 * src/reader.c (symbol_list_new): Be sure to initialize all the
19406 2001-12-27 Akim Demaille <akim@epita.fr>
19408 All the hacks using a final pseudo state are now useless.
19410 * src/LR0.c (set_state_table): state_table holds exactly nstates.
19411 * src/lalr.c (nLA): New.
19412 (initialize_LA, compute_lookaheads, initialize_lookaheads): Use it
19413 instead of lookaheadsp from the pseudo state (nstate + 1).
19415 2001-12-27 Akim Demaille <akim@epita.fr>
19417 * src/output.c (action_row, token_actions): Use a state_t instead
19418 of a integer, and nlookaheads instead of the following state's
19421 2001-12-27 Akim Demaille <akim@epita.fr>
19423 * src/conflicts.c (log_resolution, flush_shift)
19424 (resolve_sr_conflict, set_conflicts, solve_conflicts)
19425 (count_sr_conflicts, count_rr_conflicts, conflicts_output)
19426 (conflicts_print, print_reductions): Use a state_t instead of an
19427 integer when referring to a state.
19428 As much as possible, depend upon nlookaheads, instead of the
19429 `lookaheadsp' member of the following state (since lookaheads of
19430 successive states are successive, the difference between state n + 1
19431 and n served as the number of lookaheads for state n).
19432 * src/lalr.c (add_lookback_edge): Likewise.
19433 * src/print.c (print_core, print_actions, print_state)
19434 (print_results): Likewise.
19435 * src/print_graph.c (print_core, print_actions, print_state)
19436 (print_graph): Likewise.
19437 * src/conflicts.h: Adjust.
19439 2001-12-27 Akim Demaille <akim@epita.fr>
19441 * src/bison.hairy: Formatting/comment changes.
19443 Remove `register' indications.
19444 Add plenty of `static'.
19446 2001-12-27 Akim Demaille <akim@epita.fr>
19448 * src/output.c (prepare): Drop the muscle `ntbase' which
19449 duplicates ntokens.
19450 * src/bison.simple: Formatting/comment changes.
19451 Use YYNTOKENS only, which is documented, but not YYNTBASE, which
19452 is an undocumented synonym.
19454 2001-12-22 Akim Demaille <akim@epita.fr>
19456 * src/output.c (output_table_data): Change the prototype to use
19457 `int' for array ranges: some invocations do pass an int, not a
19459 Reported by Wayne Green.
19461 2001-12-22 Akim Demaille <akim@epita.fr>
19463 Some actions of web2c.y are improperly triggered.
19464 Reported by Mike Castle.
19466 * src/lalr.c (traverse): s/F (i)[k] = F (j)[k]/F (j)[k] = F (i)[k]/.
19467 * tests/regression.at (Web2c): Rename as...
19468 (Web2c Report): this.
19469 (Web2c Actions): New.
19471 2001-12-22 Akim Demaille <akim@epita.fr>
19473 Reductions in web2c.y are improperly reported.
19474 Reported by Mike Castle.
19476 * src/conflicts.c (print_reductions): Fix.
19477 * tests/regression.at (Web2c): New.
19479 2001-12-18 Akim Demaille <akim@epita.fr>
19481 Some host fail on `assert (!"foo")', which expands to
19482 ((!"foo") ? (void)0 : __assert("!"foo."", __FILE__, __LINE__))
19483 Reported by Nelson Beebee.
19485 * src/output.c, src/vcg.c: Replace `assert (!"it succeeded")' with
19486 `#define it_succeeded 0' and `assert (it_succeeded)'.
19488 2001-12-17 Marc Autret <autret_m@epita.fr>
19490 * src/bison.simple: Don't hard code the skeleton line and filename.
19491 * src/output.c (output_parser): Rename 'line' as 'output_line'.
19492 New line counter 'skeleton_line' (skeleton-line muscle).
19494 2001-12-17 Paul Eggert <eggert@twinsun.com>
19496 * NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
19497 YYDEBUG must be defined to a nonzero value.
19499 * src/bison.simple (yytname): Do not assume that the user defines
19500 YYDEBUG to a properly parenthesized expression.
19502 2001-12-17 Akim Demaille <akim@epita.fr>
19504 * src/state.h (state_t): Rename lookaheads as lookaheadsp.
19505 nlookaheads is a new member.
19507 * src/lalr.h (nlookaheads): Remove this orphan declaration.
19508 * src/lalr.c (initialize_lookaheads): Set nlookaheads for each
19511 2001-12-17 Akim Demaille <akim@epita.fr>
19513 * src/files.h, src/files.c (open_files, close_files): Remove.
19514 * src/main.c (main): Don't open/close files, nor invoke lex_free,
19516 * src/reader.c (reader): Do it.
19518 2001-12-17 Akim Demaille <akim@epita.fr>
19520 * src/conflicts.c (print_reductions): Formatting changes.
19522 2001-12-17 Akim Demaille <akim@epita.fr>
19524 * src/conflicts.c (flush_shift): Also adjust lookaheadset.
19525 (flush_reduce): New.
19526 (resolve_sr_conflict): Adjust.
19528 2001-12-17 Akim Demaille <akim@epita.fr>
19530 * src/output.c (output_obstack): Be static and rename as...
19531 (format_obstack): this, to avoid any confusion with files.c's
19533 * src/reader.h (muscle_obstack): Move to...
19534 * src/output.h: here, since it's defined in output.c.
19536 2001-12-17 Akim Demaille <akim@epita.fr>
19538 * src/output.c (action_row, save_column, default_goto)
19539 (sort_actions, matching_state, pack_vector): Better variable
19542 2001-12-17 Akim Demaille <akim@epita.fr>
19544 * src/output.c: Various formatting changes.
19546 2001-12-17 Akim Demaille <akim@epita.fr>
19548 * src/files.c (output_files): Free the output_obstack.
19549 * src/main.c (main): Call print and print_graph conditionally.
19550 * src/print.c (print): Work unconditionally.
19551 * src/print_graph.c (print_graph): Work unconditionally.
19552 * src/conflicts.c (log_resolution): Output only if verbose_flag.
19554 2001-12-16 Marc Autret <autret_m@epita.fr>
19556 * src/output.c (actions_output): Fix. When we use %no-lines,
19557 there is one less line per action.
19559 2001-12-16 Marc Autret <autret_m@epita.fr>
19561 * src/bison.simple: Remove a useless #line directive.
19562 s/#line %%line %%skeleton/#line %%line "%%parser-file-name"/'.
19563 * src/output.c (get_lines_number): New.
19564 (output_parser): Adjust, now takes care about the lines of a
19566 Fix line numbering.
19567 (actions_output): Computes the number of lines taken by actions.
19568 (output_master_parser): Insert new skeleton which is the name of
19569 the output parser file name.
19571 2001-12-15 Marc Autret <autret_m@epita.fr>
19573 * src/bison.simple [YYERROR_VERBOSE]: Restore backward compatibility.
19575 2001-12-15 Marc Autret <autret_m@epita.fr>
19577 * src/output.c (output_gram): Keep track of the hairy one.
19579 2001-12-15 Akim Demaille <akim@epita.fr>
19581 Make `make distcheck' work.
19583 * lib/Makefile.am (INCLUDES): Add top_srcdir/intl, since hash uses
19584 system.h which uses libgettext.h.
19586 2001-12-15 Akim Demaille <akim@epita.fr>
19588 * src/nullable.c (set_nullable): Useless rules must be skipped,
19589 otherwise, since we range over their symbols, we might look at a
19590 nonterminal which no longer ``exists'', i.e., it is not counted in
19591 `nvars', hence we overflow our arrays.
19593 2001-12-15 Akim Demaille <akim@epita.fr>
19595 The header can also be produced directly, without any obstack!
19598 * src/files.c, src/files.h (defines_obstack): Remove.
19599 (compute_header_macro): Global.
19600 (defines_obstack_save): Remove.
19601 * src/reader.c (parse_union_decl): No longer output to
19602 defines_obstack: its content can be found in the `stype' muscle
19604 (output_token_translations): Merge into...
19605 (symbols_output): this.
19607 (symbols_save): this.
19609 * src/output.c (header_output): New.
19612 2001-12-15 Akim Demaille <akim@epita.fr>
19614 * src/reader.c (parse_union_decl): Instead of handling two obstack
19615 simultaneously, use one to define the `stype' muscle, and use the
19616 value of the latter to fill defines_obstack.
19617 (copy_comment): Remove.
19618 (copy_comment2): Work for a single obstack.
19620 (copy_comment): this.
19622 2001-12-15 Akim Demaille <akim@epita.fr>
19624 * src/lex.c, src/lex.h (xgetc): No longer static.
19625 * src/reader.c (parse_union_decl): Revamp.
19627 2001-12-15 Akim Demaille <akim@epita.fr>
19629 Still making progress in separating Bison into (i) input, (ii)
19630 process, (iii) output: now we can directly output the parser file
19631 without using table_obstack at all.
19633 * src/files.c, src/files.h (table_obstack): Bye bye.
19634 (parser_file_name): New.
19635 * src/files.c (compute_output_file_names): Compute it.
19636 * src/output.c (actions_output, output_parser)
19637 (output_master_parser): To a file instead of an obstack.
19639 2001-12-15 Akim Demaille <akim@epita.fr>
19641 Attach actions to rules, instead of pre-outputting them to
19644 * src/gram.h (rule_t): action and action_line are new members.
19645 * src/reader.c (symbol_list): Likewise.
19646 (copy_action): Save the actions within the rule.
19647 (packgram): Save them in rule_table.
19648 * src/output.c (actions_output): New.
19649 (output_parser): Use it on `%%actions'.
19650 (output_rule_data): Don't free rule_table.
19652 (prepare): Don't save the `action' muscle.
19653 * src/bison.simple: s/%%action/%%actions/.
19655 2001-12-15 Akim Demaille <akim@epita.fr>
19657 * src/reader.c (copy_action): When --yacc, don't append a `;'
19658 to the user action: let it fail if lacking.
19659 Suggested by Arnold Robbins and Tom Tromey.
19661 2001-12-14 Akim Demaille <akim@epita.fr>
19663 * src/lex.c (literalchar): Simply return the char you decoded, non
19664 longer mess around with obstacks and int pointers.
19665 Adjust all callers.
19667 2001-12-14 Akim Demaille <akim@epita.fr>
19669 * src/lex.c (literalchar): Don't escape the special characters,
19670 just decode them, and keep them as char (before, eol was output as
19671 the 2 char string `\n' etc.).
19672 * src/output.c (output_rule_data): Use quotearg to output the
19675 2001-12-13 Paul Eggert <eggert@twinsun.com>
19677 * src/bison.simple (YYSIZE_T, YYSTACK_ALLOC, YYSTACK_FREE):
19678 Do not infringe on the global user namespace when using C++.
19679 (YYFPRINTF, YYSTDERR): New macros, needed for the above.
19680 All uses of `fprintf' and `stderr' changed.
19682 * doc/bison.texinfo: Document YYFPRINTF, YYSTDERR.
19684 2001-12-13 Akim Demaille <akim@epita.fr>
19686 The computation of nullable is broken: it doesn't handle empty
19689 * tests/torture.at (GNU AWK Grammar): New.
19690 * tests/sets.at (Nullable): New.
19691 * src/nullable.c (set_nullable): Instead of blindly looping over
19692 `ritems', loop over the rules, and then over their rhs's.
19694 Work around Autotest bugs.
19696 * src/warshall.c (bitmatrix_print): Don't use `+--+' as table
19697 frame, because Autotest understand lines starting with a `+' as
19698 traces from the shell. Then, they are not processed properly.
19699 Admittedly an Autotest bug, but we don't have time to wait for
19700 Autotest to catch up.
19701 * tests/regression.at (Broken Closure): Adjust to the new table
19704 * tests/sets.at: here.
19706 2001-12-13 Akim Demaille <akim@epita.fr>
19708 * src/closure.c (closure): Use nrules instead of playing tricks
19709 with BITS_PER_WORD.
19711 2001-12-13 Akim Demaille <akim@epita.fr>
19713 * src/print.c (print_actions): Output the handling of `$' as the
19714 traces do: shifting the token EOF. Before EOF was treated as a
19716 * tests/regression.at: Adjust some tests.
19717 * src/print_graph.c (print_core): Complete the set of items via
19718 closure. The next-to-final and final states are still unsatisfying,
19719 but that's to be addressed elsewhere.
19720 No longer output the rule numbers, but do output the state number.
19721 A single loop for the shifts + gotos is enough, but picked a
19722 distinct color for each.
19723 (print_graph): Initialize and finalize closure.
19725 2001-12-13 Akim Demaille <akim@epita.fr>
19727 * src/reader.c (readgram): Remove dead code, an strip useless
19729 (get_type): Remove, unused.
19731 2001-12-12 Akim Demaille <akim@epita.fr>
19733 * src/complain.h, src/complain.c: Remove error_one_per_line, rely
19734 on that of lib/error.c.
19736 2001-12-12 Akim Demaille <akim@epita.fr>
19738 Some hosts don't like `/' in includes.
19740 * src/system.h: Include libgettext.h without qualifying the path.
19741 * src/Makefile.am (INCLUDES): Add $(top_srcdir)/intl, remove
19744 2001-12-11 Marc Autret <autret_m@epita.fr>
19746 * src/output.c (output_parser): Remove useless muscle.
19748 2001-12-11 Marc Autret <autret_m@epita.fr>
19750 * src/bison.simple: Remove #line just before %%epilogue. It
19751 is now handled in ...
19752 * src/reader.c (read_additionnal_code): Add the output of a
19753 #line for the epilogue.
19755 2001-12-10 Marc Autret <autret_m@epita.fr>
19757 * src/reader.c (copy_definition): Re-use CPP-outed code which
19758 replace precedent remove.
19759 * src/bison.simple: Remove #line before %%prologue because
19760 %%input-line is wrong at this time.
19762 2001-12-10 Marc Autret <autret_m@epita.fr>
19764 * src/reader.c (symbols_output): Clean up.
19765 * src/output.c (output_gram, output): Clean up.
19767 2001-12-10 Akim Demaille <akim@epita.fr>
19769 * src/lalr.c (initialize_lookaheads): New. Extracted from...
19770 * src/LR0.c (set_state_table): here.
19771 * src/lalr.c (lalr): Call it.
19773 2001-12-10 Akim Demaille <akim@epita.fr>
19775 * src/state.h (shifts): Remove the `number' member: shifts are
19776 attached to state, hence no longer need to be labelled with a
19779 2001-12-10 Akim Demaille <akim@epita.fr>
19781 Now that states have a complete set of members, the linked list of
19782 shifts is useless: just fill directly the state's shifts member.
19784 * src/state.h (shifts): Remove the `next' member.
19785 * src/LR0.c (first_state, last_state): Remove.
19786 Adjust the callers.
19787 (augment_automaton): Don't look for the shifts that must be added
19788 a shift on EOF: it is those of the state we looked for! But now,
19789 since shifts are attached, it is no longer needed to looking
19790 merely by its id: its number.
19792 2001-12-10 Akim Demaille <akim@epita.fr>
19794 * src/LR0.c (augment_automaton): Better variable locality.
19795 Remove an impossible branch: if there is a state corresponding to
19796 the start symbol being shifted, then there is shift for the start
19797 symbol from the initial state.
19799 2001-12-10 Akim Demaille <akim@epita.fr>
19801 * src/LR0.c (augment_automaton): Call `insert_eof_shifting_state'
19802 only when appropriate: when insert_start_shifting_state' is not
19804 * tests/regression.at (Rule Line Numbers): Adjust.
19806 2001-12-10 Akim Demaille <akim@epita.fr>
19808 * src/LR0.c (augment_automaton): Now that all states have shifts,
19809 merge the two cases addition shifts to the initial state.
19811 2001-12-10 Akim Demaille <akim@epita.fr>
19813 * src/lalr.c (set_state_table): Move to...
19815 * src/lalr.c (lalr): Don't call it...
19816 * src/LR0.c (generate_states): do it.
19817 * src/LR0.h (first_state): Remove, only the table is used.
19819 2001-12-10 Akim Demaille <akim@epita.fr>
19821 * src/LR0.h (first_shift, first_reduction): Remove.
19822 * src/lalr.c: Don't use first_shift: find shifts through the
19825 2001-12-10 Akim Demaille <akim@epita.fr>
19827 * src/LR0.c: Attach shifts to states as soon as they are
19829 * src/lalr.c (set_state_table): Instead of assigning shifts to
19830 state, just assert that the mapping was properly done.
19832 2001-12-10 Akim Demaille <akim@epita.fr>
19834 * src/LR0.c (insert_start_shift): Rename as...
19835 (insert_start_shifting_state): this.
19836 (insert_eof_shifting_state, insert_accepting_state): New.
19837 (augment_automaton): Adjust.
19838 Better locality of the variables.
19839 When looking if the start_symbol is shifted from the initial
19840 state, using `while (... symbol != start_symbol ...)' sounds
19841 better than `while (... symbol < start_symbol ...)': If fail
19842 to see how the order between symbols could be relevant!
19844 2001-12-10 Akim Demaille <akim@epita.fr>
19846 * src/getargs.h: Don't declare `spec_name_prefix' and
19847 `spec_file_prefix', declared by src/files.h.
19848 * src/files.c, src/files.h: Default for spec_name_prefix is "yy".
19849 * src/muscle_tab.c (muscle_init): Default prefix to NULL.
19850 * src/output.c (prepare): Adjust.
19851 * src/reader.c (symbols_output): Likewise.
19852 * src/vmsgetargs.c: Vaguely adjust, but who cares?
19854 2001-12-10 Akim Demaille <akim@epita.fr>
19856 * src/muscle_tab.c (muscle_init): NULL is a better default than
19859 2001-12-10 Akim Demaille <akim@epita.fr>
19861 * src/reader.c (reader): Calling symbols_output once is enough.
19863 2001-12-10 Akim Demaille <akim@epita.fr>
19865 Now that states have a complete set of members, the linked list of
19866 reductions is useless: just fill directly the state's reductions
19869 * src/state.h (struct reductions): Remove member `number' and
19871 * src/LR0.c (first_reduction, last_reduction): Remove.
19872 (save_reductions): Don't link the new reductions, store them in
19874 * src/lalr.c (set_state_table): No need to attach reductions to
19875 states, it's already done.
19876 * src/output.c (output_actions): No longer free the shifts, then
19877 the reductions, then the states: free all the states and their
19880 2001-12-10 Akim Demaille <akim@epita.fr>
19882 * src/options.c (OPTN, DRTV, BOTH): New.
19883 (option_table): Use them.
19885 * src/muscle_tab.c: Don't include xalloc.h and string.h: that's
19886 the job of system.h.
19887 * src/options.c: Don't include stdio.h and xalloc.h for the same
19890 2001-12-10 Akim Demaille <akim@epita.fr>
19892 * src/output.c (output, prepare): Make sure the values of the
19893 muscles `action' and `prologue' are 0-terminated.
19895 2001-12-10 Akim Demaille <akim@epita.fr>
19897 Clean up GCC warnings.
19899 * src/reader.c (copy_action): `buf' is not used.
19900 (parse_skel_decl): Be static.
19901 * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'.
19902 * src/options.h (create_long_option_table): Have a real prototype.
19903 * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete)
19904 (hash_delete_at): Return const void *.
19905 Adjust casts to preserve the const.
19907 2001-12-10 Akim Demaille <akim@epita.fr>
19909 * configure.in: Require 2.52g.
19910 M4 is not needed, but AUTOM4TE is.
19911 * m4/m4.m4: Remove.
19912 * tests/Makefile.am: Adjust.
19914 2001-12-10 Akim Demaille <akim@epita.fr>
19916 One structure for states is enough, even though theoretically
19917 there are LR(0) states and LALR(1) states.
19919 * src/lalr.h (state_t): Remove.
19920 (state_table): Be state_t **, not state_t *.
19921 * src/state.h (core, CORE_ALLOC): Rename as...
19922 (state_t, STATE_ALLOC): this.
19923 Add the LALR(1) members: shifts, reductions, errs.
19924 * src/LR0.c (state_table): Rename as...
19925 (state_hash): this, to avoid name clashes with the global
19927 * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c
19928 * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust.
19930 2001-12-10 Akim Demaille <akim@epita.fr>
19932 Bison dumps core on bash.y.
19933 Reported by Pascal Bart.
19935 * src/warshall.c (bitmatrix_print): New.
19937 When performing a transitive closure R(i, j) && R(j, k) => R(i, k),
19938 j must be the outer loop.
19939 * tests/regression.at (Broken Closure): New.
19941 2001-12-05 Akim Demaille <akim@epita.fr>
19943 * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and
19945 Reported by Peter Hamorsky.
19947 2001-12-05 Akim Demaille <akim@epita.fr>
19949 * src/conflicts.c (err_table): Remove.
19950 (resolve_sr_conflict): Adjust.
19951 * src/lalr.h (state_t.reduction_table, state_t.shift_table):
19953 (state_t.reductions, state_t.shifts): this.
19955 2001-12-05 Akim Demaille <akim@epita.fr>
19957 * src/reduce.c (reduce_grammar_tables): No longer disable the
19958 removal of useless rules via CPP but via `if (0)', so that the
19959 compiler still check the code is valid.
19960 For instance, it should have noticed `rline' no longer exists: use
19961 the `line' member of rule_t.
19962 * src/gram.c (dummy, rline): Remove, unused.
19964 2001-12-05 Akim Demaille <akim@epita.fr>
19966 * src/output.c (pack_vector): Use assert, not berror.
19967 * src/main.c (berror): Remove, unused.
19969 2001-12-05 Akim Demaille <akim@epita.fr>
19971 New experimental feature: if --verbose --trace output all the
19972 items of a state, not only its kernel.
19974 * src/print.c (print_core): If `trace_flag', then invoke closure
19975 before outputting the items of the state (print_core is no longer
19976 a correct name them).
19977 (print_results): Invoke new_closure/free_closure if needed.
19979 2001-12-05 Akim Demaille <akim@epita.fr>
19981 * src/LR0.c (new_itemsets): Use nshifts only, not shiftcount.
19982 * src/closure.c, src/closure.h (itemsetsize): Rename as...
19983 (nitemset): for consistency with the rest of the project.
19985 2001-12-05 Akim Demaille <akim@epita.fr>
19987 * src/closure.c (print_closure): Improve.
19988 (closure): Use it for printing input and output.
19990 2001-12-05 Akim Demaille <akim@epita.fr>
19992 * src/closure.c (FIRSTS, FDERIVES): Adjust to reality: they are
19993 indexed by nonterminals.
19995 2001-12-05 Akim Demaille <akim@epita.fr>
19997 * src/warshall.c (TC, RTC): De-obsfucate (source reduced to 22% of
19999 * src/warshall.h: Remove accidental duplication of the content.
20001 2001-12-05 Akim Demaille <akim@epita.fr>
20003 * src/closure.c (set_fderives): De-obfuscate.
20005 2001-12-05 Akim Demaille <akim@epita.fr>
20007 * src/closure.c (print_firsts, print_fderives): De-obfuscate.
20009 2001-12-05 Akim Demaille <akim@epita.fr>
20011 * src/closure.c (set_firsts): De-obfuscate.
20013 2001-12-05 Akim Demaille <akim@epita.fr>
20015 * src/output.c (action_row): De-obfuscate
20016 using the good o' techniques: arrays not pointers, variable
20017 locality, BITISSET, RESETBIT etc.
20019 2001-12-05 Akim Demaille <akim@epita.fr>
20021 Pessimize the code to simplify it: from now on, all the states
20022 have a valid SHIFTS, which NSHIFTS is possibly 0.
20024 * src/LR0.c (shifts_new): Be global and move to..
20025 * src/state.c, src/state.h: here.
20026 * src/conflicts, src/lalr.c, src/output.c, src/print.c,
20027 * src/print_graph: Adjust.
20029 2001-12-05 Akim Demaille <akim@epita.fr>
20031 * src/state.h (SHIFT_DISABLE, SHIFT_IS_DISABLED): New.
20032 * src/conflicts.c: Use it.
20033 Restore a few missing `if (!SHIFT_IS_DISABLED)' which were
20034 incorrectly ``simplified''.
20036 2001-12-05 Akim Demaille <akim@epita.fr>
20038 * src/conflicts.c (flush_shift, resolve_sr_conflict): De-obfuscate
20039 using the good o' techniques: arrays not pointers, variable
20040 locality, BITISSET, RESETBIT etc.
20042 2001-12-05 Akim Demaille <akim@epita.fr>
20044 * src/state.h (SHIFT_SYMBOL): New.
20045 * src/conflicts.c: Use it to deobfuscate.
20047 2001-12-05 Akim Demaille <akim@epita.fr>
20049 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts)
20050 (print_reductions): De-obfuscate using the good o' techniques:
20051 arrays not pointers, variable locality, BITISSET.
20053 2001-12-05 Akim Demaille <akim@epita.fr>
20055 * src/conflicts.c (print_reductions): Arrays, not pointers.
20058 2001-12-05 Akim Demaille <akim@epita.fr>
20060 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20062 2001-12-05 Akim Demaille <akim@epita.fr>
20064 * src/conflicts.c (print_reductions): Improve variable locality.
20066 2001-12-05 Akim Demaille <akim@epita.fr>
20068 * src/conflicts.c (print_reductions): Pessimize, but clarify.
20070 2001-12-05 Akim Demaille <akim@epita.fr>
20072 * src/conflicts.c (print_reductions): Improve variable locality.
20074 2001-12-05 Akim Demaille <akim@epita.fr>
20076 * src/state.h (SHIFT_IS_ERROR, SHIFT_IS_GOTO, SHIFT_IS_SHIFT): New.
20077 * src/lalr.c: Use them.
20079 2001-12-05 Akim Demaille <akim@epita.fr>
20081 * src/LR0.c (augment_automaton): Formatting changes.
20082 Better variable locality.
20084 2001-12-05 Akim Demaille <akim@epita.fr>
20086 * src/lalr.c (matrix_print): New.
20087 (transpose): Use it.
20088 Use arrays instead of pointers.
20090 2001-12-05 Akim Demaille <akim@epita.fr>
20092 * src/lalr.c (maxrhs): Move to...
20093 * src/gram.c, src/gram.h (ritem_longest_rhs): here.
20094 * src/lalr.c (build_relations): Adjust.
20096 2001-12-05 Akim Demaille <akim@epita.fr>
20098 * src/lalr.c (transpose): Free the memory allocated to the
20099 argument, as it is replaced by the results by the unique caller.
20100 (build_relations): Merely invoke transpose: it handles the memory
20102 Improve variable locality.
20103 Avoid variables used as mere abbreviations.
20104 (compute_lookaheads): Use arrays instead of pointers.
20106 2001-12-05 Akim Demaille <akim@epita.fr>
20108 * src/lalr.c (initialize_F): Improve variable locality.
20109 Avoid variables used as mere abbreviations.
20111 2001-12-05 Akim Demaille <akim@epita.fr>
20113 * src/derives.c (print_derives): Display the ruleno.
20114 * src/lalr.c (initialize_F, transpose): Better variable locality
20115 to improve readability.
20116 Avoid variables used as mere abbreviations.
20118 2001-12-05 Akim Demaille <akim@epita.fr>
20120 * src/lalr.c (traverse): Use arrays instead of pointers.
20122 2001-12-05 Akim Demaille <akim@epita.fr>
20124 * src/nullable.c (set_nullable): Use a for loop to de-obfuscate
20125 the handling of squeue.
20126 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20128 2001-12-05 Akim Demaille <akim@epita.fr>
20130 Because useless nonterminals are now kept alive (instead of being
20131 `destroyed'), we now sometimes examine them, and store information
20132 related to them. Hence we need to know their number, and adjust
20133 memory allocations.
20135 * src/reduce.c, src/reduce.h (nuseless_nonterminals): No longer
20137 * src/LR0.c (allocate_itemsets): The memory allocated to
20138 `symbol_count' was used for two different purpose: once to count
20139 the number of occurrences of each symbol, and later reassigned to
20140 `shift_symbol', containing the symbol that can be shifted from a
20142 Deobfuscate, i.e., allocate, use and free `symbol_count' here
20144 (new_itemsets): Allocate `shift_symbol' here.
20145 (allocate_itemsets): symbol_count includes useless nonterminals.
20146 Make room for them.
20147 (free_storage): Use `free', not `XFREE', for pointers that cannot
20150 2001-12-05 Akim Demaille <akim@epita.fr>
20152 * src/nullable.c (set_nullable): Deobfuscate the handling of
20154 `symbol >= 0' is wrong now, use `rule_table[ruleno].useful'.
20156 2001-12-05 Akim Demaille <akim@epita.fr>
20158 * src/gram.c, src/gram.h (ritem_print): New.
20159 * src/gram.c (dummy): Remove, now there is actual code in gram.c.
20160 (This useless function was defined only to work around VMS linkers
20161 that can't handle compilation units with variables only).
20162 * src/reduce.c (dump_grammar): Use it to trace the construction of
20165 2001-12-04 Paul Eggert <eggert@twinsun.com>
20167 * src/bison.simple (union yyalloc): Change member names
20168 to be the same as the stack names.
20169 (yyparse): yyptr is now union yyalloc *, not char *.
20170 (YYSTACK_RELOCATE): Likewise. This avoids a GCC warning,
20171 and may generate better code on some machines.
20172 (yystpcpy): Use prototype if __STDC__ is defined, not just
20173 if __cplusplus is defined.
20175 2001-11-30 Akim Demaille <akim@epita.fr>
20177 * configure.in (WARNING_CFLAGS): Add -Werror when possible.
20178 (CFLAGS): Do not include the WARNING_CFLAGS here, since GNU
20179 Gettext doesn't compile cleanly, and dies with -Werror.
20180 * src/Makefile.am, lib/Makefile.am, tests/atlocal.in (CFLAGS):
20181 Include WARNING_CFLAGS here.
20182 * lib/xstrdup.c: Include xalloc.h, so that xstrdup be declared
20183 before being defined.
20185 2001-11-27 Paul Eggert <eggert@twinsun.com>
20187 * lib/quotearg.h (quotearg_n, quotearg_n_style):
20188 First arg is int, not unsigned.
20189 * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
20190 (SIZE_MAX, UINT_MAX): New macros.
20191 (quotearg_n_options): Abort if N is negative.
20192 Avoid overflow check on hosts where size_t is 64 bits and int
20193 is 32 bits, as overflow is impossible there.
20194 Fix off-by-one typo that caused unnecessary reallocation.
20196 2001-11-29 Paul Eggert <eggert@twinsun.com>
20198 Name space cleanup in generated parser.
20200 * doc/bison.texinfo (Bison Parser): Discuss system headers
20201 and their effect on the user name space.
20203 * src/bison.simple:
20204 (YYSTACK_ALLOC, YYSTACK_FREE, union yyalloc, YYSTACK_GAP_MAX,
20205 YYSTACK_BYTES, YYSTACK_RELOCATE): Do not define unless necessary,
20206 i.e. unless ! defined (yyoverflow) || defined (YYERROR_VERBOSE).
20208 (YYSIZE_T): New macro. Use it instead of size_t, to avoid infringing
20209 on user names when possible.
20211 (YYSTACK_USE_ALLOCA): Do not define; just use any existing defn.
20212 Simplify test for whather <alloca.h> exists.
20214 (<stdlib.h>): Include if we will use malloc, and if standard C or C++.
20216 (<stdio.h>): Include if YYDEBUG.
20218 (yymemcpy): Renamed from __yy_memcpy. Do not define unless
20219 ! defined (yyoverflow) && ! defined (yymemcpy).
20221 (yymemcpy, yyparse): Rename local variables as needed so that
20222 they all begin with 'yy'.
20224 (yystrlen, yystpcpy): New functions.
20226 (YY_DECL_NON_LSP_VARIABLES): Renamed from _YY_DECL_VARIABLES.
20229 (yyparse): size_t -> YYSIZE_T. Use yystrlen and yystpcpy
20230 instead of relying on string.h functions. Use YYSTACK_ALLOC
20231 and YYSTACK_FREE instead of malloc and free.
20233 2001-11-30 Akim Demaille <akim@epita.fr>
20235 * src/bison.simple (YYSTYPE, YYLTYPE): Move their definitions
20236 before their first uses.
20237 (YYBISON, YYPURE): Move to the top of the output.
20239 2001-11-30 Akim Demaille <akim@epita.fr>
20241 * tests/reduce.at (Useless Nonterminals): Fix.
20243 2001-11-30 Akim Demaille <akim@epita.fr>
20245 * src/bison.simple (YYSTACK_FREE): Use `do {;} while (0)' as empty
20246 if body instead of `;' to pacify GCC's warnings.
20248 2001-11-30 Akim Demaille <akim@epita.fr>
20250 Instead of mapping the LHS of unused rules to -1, keep the LHS
20251 valid, but flag the rules as invalid.
20253 * src/gram.h (rule_t): `useful' is a new member.
20254 * src/print.c (print_grammar): Adjust.
20255 * src/derives.c (set_derives): Likewise.
20256 * src/reader.c (packgram, reduce_output): Likewise.
20257 * src/reduce.c (reduce_grammar_tables): Likewise.
20258 * tests/reduce.at (Underivable Rules, Useless Rules): New.
20260 2001-11-30 Akim Demaille <akim@epita.fr>
20262 * src/reduce.c (reduce_output): Formatting changes.
20263 * src/print.c (print_results, print_grammar): Likewise.
20264 * tests/regression.at (Rule Line Numbers)
20265 (Solved SR Conflicts, Unresolved SR Conflicts): Adjust.
20267 2001-11-30 Akim Demaille <akim@epita.fr>
20269 * src/reduce.c (nonterminals_reduce): Instead of throwing away
20270 useless nonterminals, move them at the end of the symbol arrays.
20271 (reduce_output): Adjust.
20272 * tests/reduce.at (Useless Nonterminals): Adjust.
20274 2001-11-30 Akim Demaille <akim@epita.fr>
20276 * src/reduce.c: Various comment/formatting changes.
20277 (nonterminals_reduce): New, extracted from...
20278 (reduce_grammar_tables): here.
20279 (reduce_grammar): Call nonterminals_reduce.
20281 2001-11-29 Paul Eggert <eggert@twinsun.com>
20283 * src/bison.simple (YYSTACK_REALLOC): Remove.
20284 (YYSTACK_ALLOC): Resurrect this macro, with its old meaning.
20285 (YYSTACK_FREE, YYSTACK_GAP_MAX, YYSTACK_BYTES, YYSTACK_RELOCATE):
20287 (union yyalloc): New type.
20288 (__yy_memcpy): Last arg is size_t, not unsigned int, to remove
20289 an arbitrary restriction on hosts where size_t is wider than int.
20291 (yyparse): Don't dump core if alloca or malloc fails; instead, report
20292 a parser stack overflow. Allocate just one block of memory for all
20293 three stacks, instead of allocating three blocks; this typically is
20294 faster and reduces fragmentation.
20296 Do not limit the number of items in the stack to a value that fits
20297 in 'int', as this is an arbitrary limit on hosts with 64-bit
20298 size_t and 32-bit int.
20300 2001-11-29 Marc Autret <autret_m@epita.fr>
20302 * tests/calc.at [AT_DATA_CALC_Y]: Use %error-verbose instead
20303 of defining YYERROR_VERBOSE.
20304 [AT_DATA]: $4 is now out of C declarations in the prologue.
20306 2001-11-28 Marc Autret <autret_m@epita.fr>
20308 * src/reader.c (parse_dquoted_param): New.
20309 (parse_skel_decl): Use it.
20310 * src/lex.h: Add its prototype.
20311 * src/lex.c (literalchar): Become not static.
20313 2001-11-28 Marc Autret <autret_m@epita.fr>
20315 * src/output.h: And put its extern declaration here.
20316 * src/output.c (error_verbose): Define here.
20317 (prepare): Echo name modification.
20318 * src/getargs.h: Clean its extern declaration.
20319 * src/getargs.c (error_verbose_flag): Remove.
20320 (getargs): Remove case 'e'.
20321 * src/options.c (option_table): 'error-verbose' is now seen as simple
20325 * src/reader.c (read_declarations): Remove case tok_include.
20326 (parse_include_decl): Remove.
20327 * src/lex.h (token_t): Remove tok_include.
20328 * src/options.c (option_table): 'include' is now a simple command line
20331 2001-11-28 Marc Autret <autret_m@epita.fr>
20333 * src/bison.simple: Adjust muscle names.
20334 * src/muscle_tab.c (muscle_init): Also rename the muscles.
20335 * src/output.c (prepare): s/_/-/ for the muscles names.
20336 (output_parser): When scanning for a muscle, allow '-' instead of '_'.
20338 2001-11-28 Marc Autret <autret_m@epita.fr>
20340 * src/bison.simple: Fix debug.
20341 [YYERROR_VERBOSE]: Re-integrate as an internal macro.
20343 2001-11-28 Akim Demaille <akim@epita.fr>
20345 * src/LR0.c (shifts_new): New.
20346 (save_shifts, insert_start_shift, augment_automaton): Use it.
20348 2001-11-28 Akim Demaille <akim@epita.fr>
20350 * src/closure.c (closure): `b' and `ruleno' denote the same value:
20353 2001-11-28 Akim Demaille <akim@epita.fr>
20355 * src/closure.c (closure): Instead of looping over word in array
20356 then bits in words, loop over bits in array.
20358 2001-11-28 Akim Demaille <akim@epita.fr>
20360 * src/closure.c (closure): No longer optimize the special case
20361 where all the bits of `ruleset[r]' are set to 0, to make the code
20364 2001-11-28 Akim Demaille <akim@epita.fr>
20366 * src/closure.c (closure): `r' and `c' are new variables, used to
20367 de-obfuscate accesses to RULESET and CORE.
20369 2001-11-28 Akim Demaille <akim@epita.fr>
20371 * src/reduce.c (reduce_print): Use ngettext.
20372 (dump_grammar): Improve the trace accuracy.
20374 2001-11-28 Akim Demaille <akim@epita.fr>
20376 * src/reduce.c (dump_grammar): Don't translate trace messages.
20378 2001-11-28 Akim Demaille <akim@epita.fr>
20380 * tests/reduce.at (Useless Terminals, Useless Nonterminals): New.
20381 * src/reduce.c (reduce_grammar_tables): Do not free useless tags,
20382 as all tags are free'ed afterwards.
20383 From Enrico Scholz.
20385 2001-11-27 Paul Eggert <eggert@twinsun.com>
20387 * src/bison.simple (YYSTACK_REALLOC): Fix typo that caused us to
20388 use alloca when we didn't want to, and vice versa.
20390 2001-11-27 Marc Autret <autret_m@epita.fr>
20392 * src/muscle_tab.c (muscle_init): Remove 'verbose' muscle
20394 * src/output.c (prepare): Remove its update.
20396 2001-11-27 Marc Autret <autret_m@epita.fr>
20398 * tests/torture.at [AT_DATA]: Remove YYERROR_VERBOSE definition.
20399 Use %error-verbose.
20401 2001-11-27 Marc Autret <autret_m@epita.fr>
20403 * src/bison.simple: Remove YYERROR_VERBOSE using.
20404 Use %%error_verbose.
20405 (yyparse): Likewise.
20406 * src/output.c (prepare): Give its final value.
20407 * src/muscle_tab.c (muscle_init): Init new muscle 'error_verbose'.
20408 * src/getargs.h: Add its extern declaration.
20409 * src/getargs.c (error_verbose_flag): New int.
20410 (getargs): Update to catch new case.
20411 * src/options.c (option_table): 'error-verbose' is a new option.
20412 (shortopts): Update.
20414 2001-11-27 Akim Demaille <akim@epita.fr>
20416 * src/system.h: Use intl/libgettext.h.
20417 * src/Makefile.am (INCLUDES): Add -I $(top_srcdir).
20419 2001-11-27 Akim Demaille <akim@epita.fr>
20421 * tests/torture.at (Exploding the Stack Size with Malloc):
20422 s/YYSTACK_USE_ALLOCA_ALLOCA/YYSTACK_USE_ALLOCA/.
20424 2001-11-27 Akim Demaille <akim@epita.fr>
20426 * src/files.c: Include error.h.
20427 Reported by Hans Aberg.
20429 2001-11-26 Marc Autret <autret_m@epita.fr>
20431 * src/reader.c (parse_include_decl): New, not yet implemented.
20432 (read_declarations): Add case tok_include.
20433 * src/getargs.h (include): Add its extern definition.
20434 * src/getargs.c (include): New const char *.
20435 (getargs): Add case '-I'.
20436 * src/options.c (option_table): Add include as command line and
20438 * src/lex.h (token_t): Add tok_include.
20440 2001-11-26 Akim Demaille <akim@epita.fr>
20442 * src/reader.c (readgram): Make sure rules for mid-rule actions
20443 have a lineno equal to that of their host rule.
20444 Reported by Hans Aberg.
20445 * tests/regression.at (Rule Line Numbers): New.
20447 2001-11-26 Akim Demaille <akim@epita.fr>
20449 * src/LR0.c (allocate_itemsets): kernel_size contains ints, not
20452 2001-11-26 Akim Demaille <akim@epita.fr>
20454 * src/complain.c, src/complain.h (error): Remove, provided by
20457 2001-11-26 Akim Demaille <akim@epita.fr>
20459 * src/reader.c (read_declarations): Don't abort on tok_illegal,
20460 issue an error message.
20461 * tests/regression.at (Invalid %directive): New.
20462 Reported by Hans Aberg.
20464 2001-11-26 Akim Demaille <akim@epita.fr>
20466 * configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.
20467 * lib/Makefile.am (libbison_a_SOURCES): Adjust.
20469 2001-11-26 Akim Demaille <akim@epita.fr>
20471 * src/conflicts.c (conflicts_print): Don't complain at all when
20472 there are no reduce/reduce conflicts, and as many shift/reduce
20473 conflicts as expected.
20474 * tests/regression.at (%expect right): Adjust.
20476 2001-11-23 Akim Demaille <akim@epita.fr>
20478 * lib/alloca.c: Update, from fileutils.
20480 2001-11-23 Akim Demaille <akim@epita.fr>
20482 * lib/Makefile.am (libbison_a_LIBADD): Add @ALLOCA@.
20484 2001-11-23 Akim Demaille <akim@epita.fr>
20486 * src/system.h: Include alloca.h.
20487 * src/main.c (main) [C_ALLOCA]: Call alloca (0).
20489 2001-11-23 Akim Demaille <akim@epita.fr>
20491 * src/print_graph.c (print_actions): Remove `rule', unused.
20492 * src/LR0.c (kernel_size): Contain `int' instead of `size_t' to
20493 pacify GCC's signed < unsigned warnings.
20494 * src/closure.c (itemsetsize): Likewise.
20495 * src/reader.c (symbol_list_new): Static.
20497 2001-11-23 Akim Demaille <akim@epita.fr>
20499 Attaching lineno to buckets is stupid, since only one copy of each
20500 symbol is kept, only the line of the first occurrence is kept too.
20502 * src/symtab.h, src/symtab.c (bucket): Remove the line member.
20503 * src/reader.c (rline_allocated): Remove, unused.
20504 (symbol_list): Have a `line' member.
20505 (symbol_list_new): New.
20506 (readgram): Use it.
20507 * src/print.c (print_grammar): Output the rule line numbers.
20508 * tests/regression.at (Solved SR Conflicts)
20509 (Unresolved SR Conflicts): Adjust.
20510 Reported by Hans Aberg.
20512 2001-11-22 Marc Autret <autret_m@epita.fr>
20514 * src/bison.simple [YYERROR_VERBOSE]: Force its value to be 1 or 0.
20516 2001-11-22 Marc Autret <autret_m@epita.fr>
20518 * src/muscle_tab.c (muscle_init): Remove initialization of
20520 * src/output.c (output_master_parser): Do it here.
20522 2001-11-20 Akim Demaille <akim@epita.fr>
20525 * configure.in (ALL_LINGUAS): Adjust.
20526 * po/POTFILE.in: Remove `nullable.c' and `derives.c' which no
20527 longer contains strings to translate.
20529 2001-11-19 Akim Demaille <akim@epita.fr>
20531 * src/conflicts.c (conflicts_print): Add a missing \n.
20533 2001-11-19 Akim Demaille <akim@epita.fr>
20535 * src/nullable.c (nullable_print): New.
20536 (set_nullable): Call it when tracing.
20537 Better locality of variables.
20539 2001-11-19 Akim Demaille <akim@epita.fr>
20541 * src/print.c (print_actions): Better locality of variables.
20543 2001-11-19 Akim Demaille <akim@epita.fr>
20545 * src/derives.c (print_derives): Fix and enrich.
20546 * src/closure.c (print_fderives): Likewise.
20548 2001-11-19 Akim Demaille <akim@epita.fr>
20550 * src/closure.c (itemsetend): Remove, replaced with...
20551 (itemsetsize): new.
20553 2001-11-19 Akim Demaille <akim@epita.fr>
20555 * src/LR0.c (kernel_end): Remove, replaced with...
20556 (kernel_size): new.
20558 2001-11-19 Akim Demaille <akim@epita.fr>
20560 * src/conflicts.c (set_conflicts): Use arrays instead of pointers
20563 2001-11-19 Akim Demaille <akim@epita.fr>
20565 * src/closure.c (closure): Use arrays instead of pointers to clarify.
20567 2001-11-19 Akim Demaille <akim@epita.fr>
20569 * src/closure.c, src/derives.c, src/nullable.c: Adjust various
20571 * src/LR0.c: Likewise.
20572 (allocate_itemsets): Use arrays instead of pointers to clarify.
20574 2001-11-19 Akim Demaille <akim@epita.fr>
20576 * src/getargs.c (statistics_flag): Replace with...
20578 (longopts): Accept --trace instead of --statistics.
20579 * src/getargs.h, src/options.c: Adjust.
20580 * src/LR0.c, src/closure.c, src/derives.c, src/nullable.c,
20581 * src/reduce.c: Use trace_flags instead of the CPP conditional TRACE.
20583 2001-11-19 Akim Demaille <akim@epita.fr>
20585 * src/LR0.c (new_itemsets, get_state): Use more arrays and fewer
20586 pointers to clarify the code.
20587 (save_reductions, save_shifts): Factor common parts of alternatives.
20589 2001-11-19 Akim Demaille <akim@epita.fr>
20591 * src/LR0.c (new_state, get_state): Complete TRACE code.
20592 * src/closure.c: Include `reader.h' to get `tags', needed by the
20594 Rename the conditional DEBUG as TRACE.
20595 Output consistently TRACEs to stderr, not stdout.
20596 * src/derives.c: Likewise.
20597 * src/reduce.c: (inaccessable_symbols): Using if is better style
20599 Use `#if TRACE' instead of `#if 0' for tracing code.
20601 2001-11-19 Akim Demaille <akim@epita.fr>
20603 * src/system.h (LIST_FREE, shortcpy): New.
20604 * src/LR0.c: Use them.
20605 * src/output.c (free_itemsets, free_reductions, free_shifts):
20606 Remove, replaced by LIST_FREE.
20608 2001-11-19 Akim Demaille <akim@epita.fr>
20610 * src/state.h (CORE_ALLOC, SHIFTS_ALLOC, ERRS_ALLOC)
20611 (REDUCTIONS_ALLOC): New.
20612 * src/LR0.c, src/conflicts.c: Use them to de-obfuscate memory
20615 2001-11-19 Akim Demaille <akim@epita.fr>
20617 * src/LR0.c (new_state): Complete trace code.
20618 * src/nullable.c (set_nullable): Don't translate traces.
20620 2001-11-19 Akim Demaille <akim@epita.fr>
20622 * src/print_graph.c (print_core): Better locality of variables.
20623 * src/print.c (print_core): Likewise.
20625 2001-11-19 Akim Demaille <akim@epita.fr>
20627 * src/vcg.c: You do the output, so you are responsible of the
20628 handling of VCG syntax, in particular: use quotearg.
20629 * src/print_graph.c: Don't.
20630 (print_actions): Don't output the actions as part of the nodes,
20631 since that's the job of the edges.
20632 (print_state): Don't output by hand: fill the node description,
20633 and ask for its output.
20635 2001-11-19 Akim Demaille <akim@epita.fr>
20637 * src/bison.simple (yyparse): When verbosely reporting an error,
20638 no longer put additional quotes around token names.
20639 * tests/calc.at: Adjust.
20641 2001-11-19 Akim Demaille <akim@epita.fr>
20643 * src/symtab.h, src/symtab.c: `line' is a new member of `bucket'.
20644 * src/reader.c (record_rule_lines, rline, rline_allocated): Remove.
20645 * src/output.c: Adjust.
20647 2001-11-19 Akim Demaille <akim@epita.fr>
20649 * src/gram.h (rprec, rprecsym, rassoc): Remove, now part of...
20651 * src/conflicts.c, src/reader.c, src/reduce.c: Adjust.
20653 2001-11-19 Akim Demaille <akim@epita.fr>
20655 * src/gram.h (rule_t): New.
20657 (rrhs, rlhs): Remove, part of state_t.
20658 * src/print_graph.c, src/closure.c, src/conflicts.c, src/derives.c,
20659 * src/lalr.c, src/nullable.c, src/output.c, src/print.c,
20660 * src/reader.c, src/reduce.c: Adjust.
20662 2001-11-19 Akim Demaille <akim@epita.fr>
20664 * src/reader.c (symbols_output): New, extracted from...
20665 (packsymbols): Here.
20668 2001-11-19 Akim Demaille <akim@epita.fr>
20670 * src/lalr.c (set_maxrhs, maxrhs): Remove, replaced with...
20671 (maxrhs): this new function.
20673 2001-11-19 Akim Demaille <akim@epita.fr>
20675 * src/lalr.c (F): New macro to access the variable F.
20678 2001-11-19 Akim Demaille <akim@epita.fr>
20680 * src/lalr.h (LA): New macro to access the variable LA.
20681 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20682 * src/lalr.c: Adjust.
20684 2001-11-19 Akim Demaille <akim@epita.fr>
20686 * src/lalr.c (initialize_LA): Only initialize LA. Let...
20687 (set_state_table): handle the `lookaheads' members.
20689 2001-11-19 Akim Demaille <akim@epita.fr>
20691 * src/lalr.h (lookaheads): Removed array, whose contents is now
20693 (state_t): this structure.
20694 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20697 2001-11-19 Akim Demaille <akim@epita.fr>
20699 * src/lalr.h (consistent): Removed array, whose contents is now
20701 (state_t): this structure.
20702 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20705 2001-11-19 Akim Demaille <akim@epita.fr>
20707 * src/lalr.h (reduction_table, shift_table): Removed arrays, whose
20708 contents are now members of...
20709 (state_t): this structure.
20710 * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
20713 2001-11-19 Akim Demaille <akim@epita.fr>
20715 * src/lalr.h (state_t): New.
20716 (state_table): Be a state_t * instead of a core **.
20717 (accessing_symbol): Remove, part of state_t.
20718 * src/lalr.c: Adjust.
20719 (set_accessing_symbol): Merge into...
20720 (set_state_table): this.
20721 * src/print_graph.c, src/conflicts.c: Adjust.
20723 2001-11-14 Akim Demaille <akim@epita.fr>
20725 * tests/calc.at, tests/output.at, tests/regression.at,
20726 * tests/testsuite.at, tests/torture.at: Rely on Autotest 2.52g:
20727 now the tests are run in private dirs, therefore AC_CLEANUP and
20728 family can be simplified to 0-ary.
20729 * tests/atlocal.in: Now that we run `elsewhere' than in tests/,
20730 use abs. path to find config.h.
20731 * tests/calc.at (AT_CHECK_CALC): Don't try to check the compiler's
20732 stderr, there can be way too much random noise.
20733 Instead pass -Werror to GCC and rely on the exit status.
20734 Reported by Wolfram Wagner.
20736 2001-11-14 Akim Demaille <akim@epita.fr>
20738 * src/bison.simple (yyparse): Let yyls1, yyss1 and yyvs1 be
20739 defined only if yyoverflow is defined, to avoid `warning: unused
20741 Reported by The Test Suite.
20743 2001-11-14 Akim Demaille <akim@epita.fr>
20745 * src/print.c: Include reduce.h.
20746 Reported by Hans Aberg.
20748 2001-11-14 Akim Demaille <akim@epita.fr>
20750 * src/lex.c, src/lex.h (token_buffer, unlexed_token_buffer):
20751 Revert a previous patch: these are really const.
20752 * src/conflicts.c (conflict_report): Additional useless pair of
20753 braces to pacify GCC's warnings for `if () if () {} else {}'.
20754 * src/lex.c (parse_percent_token): Replace equal_offset with
20757 Be sure to strdup `arg' when used, since there is no reason for
20758 token_buffer not to change.
20760 2001-11-14 Akim Demaille <akim@epita.fr>
20762 * src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper
20764 * src/main.c (main): Use them.
20765 Suggested by Hans Aberg.
20767 2001-11-12 Akim Demaille <akim@epita.fr>
20769 * src/system.h (ngettext): Now that we use ngettext, be sure to
20770 provide a default definition when NLS are not used.
20772 2001-11-12 Akim Demaille <akim@epita.fr>
20774 * doc/bison.texinfo: Use `$' as shell prompt, not `%'.
20775 Use @kbd to denote user input.
20776 (Language and Grammar): ANSIfy the example.
20777 Adjust its layout for info/notinfo.
20778 (Location Tracking Calc): Output error messages to stderr.
20779 Output locations in a more GNUtically correct way.
20780 Fix a couple of Englishos.
20781 Adjust @group/@end group pairs.
20783 2001-11-12 Akim Demaille <akim@epita.fr>
20785 %expect was not functioning at all.
20787 * src/conflicts.c (expected_conflicts): Set to -1.
20788 (conflict_report): Use ngettext.
20789 (conflicts_print): Check %expect and make its violation an error.
20790 * doc/bison.texinfo (Expect Decl): Adjust.
20791 * configure.in (AM_GNU_GETTEXT): Ask for ngettext.
20792 * tests/regression.at (%expect not enough, %expect right)
20793 (%expect too much): New.
20795 2001-11-12 Akim Demaille <akim@epita.fr>
20797 * tests/regression.at (Conflicts): Rename as...
20798 (Unresolved SR Conflicts): this.
20799 (Solved SR Conflicts): New.
20801 2001-11-12 Akim Demaille <akim@epita.fr>
20803 * src/reduce.c (print_results): Rename as...
20804 (reduce_output): This.
20805 Output to OUT, passed as argument, instead of output_obstack.
20806 (dump_grammar): Likewise.
20807 (reduce_free): New.
20809 (reduce_grammar): No longer call reduce_output, since...
20810 * src/print.c (print_results): do it.
20811 * src/main.c (main): Call reduce_free;
20813 2001-11-12 Akim Demaille <akim@epita.fr>
20815 * src/conflicts.c (print_reductions): Accept OUT as argument.
20816 Output to it, not to output_obstack.
20817 * src/print.c (print_actions): Adjust.
20819 2001-11-12 Akim Demaille <akim@epita.fr>
20821 * src/conflicts.c (count_sr_conflicts, count_rr_conflicts): Return
20822 the result instead of using...
20823 (src_total, rrc_total, src_count, rrc_count): Remove.
20824 (any_conflicts): Remove.
20825 (print_conflicts): Split into...
20826 (conflicts_print, conflicts_output): New.
20827 * src/conflicts.h: Adjust.
20828 * src/main.c (main): Invoke both conflicts_output and conflicts_print.
20829 * src/print.c (print_grammar): Issue `\n' between two rules.
20830 * tests/regression.at (Conflicts): New.
20831 Reported by Tom Lane.
20833 2001-11-12 Akim Demaille <akim@epita.fr>
20835 * tests/regression.at (Invalid input): Remove, duplicate with
20836 ``Invalid input: 1''.
20838 2001-11-12 Akim Demaille <akim@epita.fr>
20840 * tests/torture.at (AT_DATA_STACK_TORTURE)
20841 (Exploding the Stack Size with Alloca)
20842 (Exploding the Stack Size with Malloc): New.
20844 2001-11-12 Akim Demaille <akim@epita.fr>
20846 * src/bison.simple (YYSTACK_REALLOC): New.
20847 (yyparse) [!yyoverflow]: Use it and free the old stack.
20848 Reported by Per Allansson.
20850 2001-11-12 Pascal Bart <pascal.bart@epita.fr>
20852 * src/bison.simple: Define type yystype instead of YYSTYPE, and
20853 define CPP macro, which substitute YYSTYPE by yystype.
20854 * src/reader.c (parse_union_decl): Output yystype/YYSTYPE as we do
20855 with yyltype/YYLTYPE. This allows inclusion of the generated
20856 header within the parser if the compiler, such as GGC, accepts
20857 multiple equivalent #defines.
20860 2001-11-05 Akim Demaille <akim@epita.fr>
20862 * src/reader.c (symbols_output): New, extracted from...
20863 (packsymbols): here.
20866 2001-11-05 Akim Demaille <akim@epita.fr>
20868 * src/lex.c (parse_percent_token): s/quotearg/quote/.
20870 2001-11-05 Akim Demaille <akim@epita.fr>
20872 * tests/regression.at (AT_TEST_CPP_GUARD_H): Adjust the clean up
20875 2001-11-05 Akim Demaille <akim@epita.fr>
20877 * src/options.h (struct option_table_struct): set_flags is void*.
20878 * src/options.c (longopts): Support `--output' and `%output'.
20880 * src/lex.h (tok_setopt): Remove, replaced with...
20881 (tok_intopt, tok_stropt): these new guys.
20882 * src/lex.c (getopt.h): Not needed.
20883 (token_buffer, unlexed_token_buffer): Not const.
20884 (percent_table): Promote `-' over `_' in directive names.
20885 Active `%name-prefix', `file-prefix', and `output'.
20886 (parse_percent_token): Accept possible arguments to directives.
20887 Promote `-' over `_' in directive names.
20889 2001-11-04 Akim Demaille <akim@epita.fr>
20891 * doc/bison.texinfo (Decl Summary): Split the list into
20892 `directives for grammars' and `directives for bison'.
20894 Add description of `%name-prefix', `file-prefix', and `output'.
20895 Promote `-' over `_' in directive names.
20896 (Bison Options): s/%locactions/%locations/. Nice Freudian slip.
20897 Simplify the description of `--name-prefix'.
20898 Promote `-' over `_' in directive names.
20899 Promote `--output' over `--output-file'.
20900 Fix the description of `--defines'.
20901 * tests/output.at: Exercise %file-prefix and %output.
20903 2001-11-02 Akim Demaille <akim@epita.fr>
20905 * doc/refcard.tex: Update.
20907 2001-11-02 Akim Demaille <akim@epita.fr>
20909 * src/symtab.h (SUNDEF): New.
20910 * src/symtab.c (bucket_new): Init user_token_number to SUNDEF to
20911 stand for `uninitialized', instead of 0.
20912 * src/reader.c (packsymbols, parse_thong_decl): Adjust.
20913 * src/lex.c (lex): Adjust.
20915 * tests/calc.at (_AT_DATA_CALC_Y): Declare a token for EOF.
20917 Let yylex return it instead of a plain 0.
20918 Reported by Dick Streefland.
20920 2001-11-02 Akim Demaille <akim@epita.fr>
20922 * tests/regression.at (Mixing %token styles): New test.
20924 2001-11-02 Akim Demaille <akim@epita.fr>
20926 * src/reader.c (parse_thong_decl): Formatting changes.
20927 (token_translations_init): New, extracted from...
20928 (packsymbols): Here.
20931 2001-11-01 Akim Demaille <akim@epita.fr>
20933 * tests/regression.at (AT_TEST_CPP_GUARD_H): New.
20934 Check that `9foo.y' produces correct cpp guards.
20935 * src/files.c (compute_header_macro): Prepend `BISON_' to CPP
20939 2001-11-01 Akim Demaille <akim@epita.fr>
20941 * tests/regression.at (Invalid input: 2): New.
20942 * src/lex.c (unlexed_token_buffer): New.
20943 (lex, unlex): Adjust: when unlexing, be sure to save token_buffer
20947 2001-11-01 Akim Demaille <akim@epita.fr>
20949 * tests/calc.at: Catch up with 1.30.
20950 * configure.in: Bump to 1.49a.
20951 Adjust to newer Autotest.
20953 2001-10-19 Pascal Bart <pascal.bart@epita.fr>
20955 * src/conflicts.c: Move global variables rrc_total and src_total ...
20956 (print_conflicts): here.
20957 * src/output.c (output): Free global variable user_toknums.
20958 * src/lex.c (token_obstack): Become static.
20960 2001-10-18 Akim Demaille <akim@epita.fr>
20962 * tests/atlocal.in (GCC): Add.
20963 * tests/calc.at: s/m4_match/m4_bmatch/.
20964 s/m4_patsubst/m4_bpatsubst/.
20965 (AT_CHECK_CALC): Check the compiler's stderr only if it's GCC.
20966 * configure.in: AC_SUBST(GCC).
20968 2001-10-14 Marc Autret <autret_m@epita.fr>
20970 * src/options.c (create_long_option_table): Fix.
20972 2001-10-10 Akim Demaille <akim@epita.fr>
20974 * src/bison.simple: Be sure to set YYSTACK_USE_ALLOCA.
20976 2001-10-04 Akim Demaille <akim@epita.fr>
20978 * src/reader.c (parse_union_decl): Push the caracters in
20979 union_obstack, not attrs_obstack.
20981 2001-10-04 Akim Demaille <akim@epita.fr>
20983 Merge in the branch 1.29.
20985 * src/reader.c (packsymbols): Use a temporary obstack for
20986 `%%tokendef', since output_stack is already used elsewhere.
20988 2001-10-02 Akim Demaille <akim@epita.fr>
20992 2001-10-02 Akim Demaille <akim@epita.fr>
20996 2001-10-02 Akim Demaille <akim@epita.fr>
20998 * tests/regression.at (Invalid CPP headers): New.
20999 From Alexander Belopolsky.
21000 * src/files.c (compute_header_macro): Map non alnum chars to `_'.
21002 2001-10-02 Akim Demaille <akim@epita.fr>
21004 * tests/regression.at (Invalid input): New.
21005 * src/lex.c (lex): Be sure to set `token_buffer' in any case.
21008 2001-10-02 Akim Demaille <akim@epita.fr>
21010 * tests/calc.at: Now that --debug works, the tests must be adjusted.
21012 2001-10-02 Akim Demaille <akim@epita.fr>
21014 * src/output.c (output_parser): Assert `skeleton'.
21015 * src/files.c (skeleton_find): Look harder for skeletons on DOSish
21019 2001-10-01 Marc Autret <autret_m@epita.fr>
21021 * src/lex.h: Echo modifications.
21022 * src/lex.c (unlex): Parameter is now token_t.
21025 2001-10-01 Marc Autret <autret_m@epita.fr>
21027 * src/main.c: Include lex.h.
21030 2001-09-29 Akim Demaille <akim@epita.fr>
21032 * src/getargs.c (longopts): `--debug' is `-t', not `-d'.
21034 2001-09-28 Akim Demaille <akim@epita.fr>
21036 * tests/testsuite.at: Update to newer Autotest.
21037 * tests/Makefile.am (EXTRA_DIST): bison is not to be shipped.
21039 2001-09-27 Akim Demaille <akim@epita.fr>
21041 Position independent wrapper.
21043 * tests/bison: Remove.
21044 * tests/bison.in: New.
21045 * configure.in: Adjust.
21047 2001-09-27 Paul Eggert <eggert@twinsun.com>
21049 Port quotearg fixes from tar 1.13.24.
21051 * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
21053 (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
21054 (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
21056 * m4/Makefile.am (EXTRA_DIST): Add mbrtowc.m4.
21057 * m4/mbrtowc.m4: New file.
21058 * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for mbsinit and stddef.h.
21059 Use jm_FUNC_MBRTOWC instead of AC_CHECK_FUNCS(mbrtowc).
21061 2001-09-27 Akim Demaille <akim@epita.fr>
21065 2001-09-27 Akim Demaille <akim@epita.fr>
21069 2001-09-25 Akim Demaille <akim@epita.fr>
21071 * src/system.h: Include `xalloc.h'.
21072 Remove it from the C files.
21073 * src/files.c (output_files): Free the obstacks.
21074 * src/lex.c (init_lex): Rename as...
21077 * src/main.c (main): Use it.
21079 2001-09-24 Marc Autret <autret_m@epita.fr>
21081 * src/vcg.c (open_edge, close_edge, open_node, close_node): Change
21082 to output informations in fout (FILE*).
21083 (open_graph, close_graph): Likewise.
21084 (output_graph, output_edge, output_node): Likewise.
21085 * src/vcg.h: Update function prototypes.
21086 * src/print_graph.c (print_graph): Open output graph file.
21087 (print_actions): Adjust.
21088 * src/files.h: Remove extern declaration.
21089 * src/files.c: Remove graph_obstack declaration.
21090 (open_files): Remove graph_obstack initialization.
21091 (output_files): Remove graph_obstack saving.
21093 2001-09-24 Marc Autret <autret_m@epita.fr>
21095 * src/files.c (compute_output_file_names): Fix.
21097 2001-09-24 Marc Autret <autret_m@epita.fr>,
21098 Akim Demaille <akim@epita.fr>
21100 * src/reader.c (reader): Remove call to free_symtab ().
21101 * src/main.c (main): Call it here.
21103 * src/conflicts.c (initialize_conflicts): Rename as...
21104 (solve_conflicts): this.
21105 * src/print.c (print_core, print_actions, print_state)
21106 (print_grammar): Dump to a file instead a `output_obstack'.
21107 (print_results): Dump `output_obstack', and then proceed with the
21109 * src/files.c (compute_output_file_names, close_files): New.
21110 (output_files): Adjust.
21111 * src/main.c (main): Adjust.
21113 2001-09-23 Marc Autret <autret_m@epita.fr>
21115 * src/files.c (compute_header_macro): Computes header macro name
21116 from spec_defines_file when given.
21118 2001-09-23 Marc Autret <autret_m@epita.fr>
21120 * src/files.c (output_files): Add default extensions.
21122 2001-09-22 Akim Demaille <akim@epita.fr>
21124 * src/conflicts.c (finalize_conflicts): Rename as...
21125 (free_conflicts): this.
21127 2001-09-22 Akim Demaille <akim@epita.fr>
21129 * src/gram.c (gram_free): Rename back as...
21131 (output_token_translations): Free `token_translations'.
21132 * src/symtab.c (free_symtab): Free the tag field.
21134 2001-09-22 Akim Demaille <akim@epita.fr>
21136 Remove `translations' as it is always set to true.
21138 * src/gram.h: Adjust.
21139 * src/reader.c (packsymbols, parse_token_decl): Adjust
21140 * src/print.c (print_grammar): Adjust.
21141 * src/output.c (output_token_translations): Adjust.
21142 * src/lex.c (lex): Adjust.
21143 * src/gram.c: Be sure the set pointers to NULL.
21144 (dummy): Rename as...
21147 2001-09-22 Akim Demaille <akim@epita.fr>
21149 * configure.in: Invoke AM_LIB_DMALLOC.
21150 * src/system.h: Use dmalloc.
21151 * src/LR0.c: Be sure to have pointers initialized to NULL.
21152 (allocate_itemsets): Allocate kernel_items only if needed.
21154 2001-09-22 Akim Demaille <akim@epita.fr>
21156 * configure.in: Bump to 1.29b.
21157 * tests/Makefile.am (DISTCLEANFILES): Add package.m4.
21158 * tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
21159 need xmalloc.c in calc.y.
21162 2001-09-21 Akim Demaille <akim@epita.fr>
21165 * Makefile.maint, config/config.guess, config/config.sub,
21166 * config/missing: Update from masters.
21167 * tests/Makefile.am ($(srcdir)/$(TESTSUITE)): No longer depend
21169 * configure.in (ALL_LINGUAS): Add `tr'.
21171 2001-09-21 Akim Demaille <akim@epita.fr>
21173 * tests/Makefile.am (package.m4): Move to...
21174 ($(srcdir)/$(TESTSUITE)): here.
21176 2001-09-20 Akim Demaille <akim@epita.fr>
21178 * src/complain.c: No longer try to be standalone: use system.h.
21179 Don't assume __STDC__ is defined to 1. Just test if it is defined.
21180 * src/complain.h: Likewise.
21181 * src/reduce.c (useless_nonterminals, inaccessable_symbols):
21182 Remove the unused variable `n'.
21183 From Albert Chin-A-Young.
21185 2001-09-18 Marc Autret <autret_m@epita.fr>
21187 * doc/bison.1: Update.
21188 * doc/bison.texinfo (Bison Options): Update --defines and --graph
21190 (Option Cross Key): Update.
21193 2001-09-18 Marc Autret <autret_m@epita.fr>
21195 * tests/regression.at: New test (comment in %union).
21197 2001-09-18 Marc Autret <autret_m@epita.fr>
21199 * src/reader.c (parse_union_decl): Do not output '/'. Let copy_comment
21201 Reported by Keith Browne.
21203 2001-09-18 Marc Autret <autret_m@epita.fr>
21205 * tests/output.at: Add tests for --defines and --graph.
21207 2001-09-18 Marc Autret <autret_m@epita.fr>
21209 * tests/output.at: Removes tests of %{header,src}_extension features.
21211 2001-09-18 Akim Demaille <akim@epita.fr>
21213 * tests/Makefile.am (package.m4): New.
21214 * tests/calc.at (_AT_CHECK_CALC): Just run `calc input'.
21215 (_AT_CHECK_CALC_ERROR): Likewise.
21216 Factor the `, ' part of verbose error messages.
21218 2001-09-18 Marc Autret <autret_m@epita.fr>
21220 * src/getargs.c (longopts): Declare --defines and --graph as options
21221 with optional arguments.
21222 * src/files.h: Add extern declarations.
21223 * src/files.c (spec_graph_file, spec_defines_file): New.
21224 (output_files): Update.
21225 Remove CPP-outed code.
21227 2001-09-18 Marc Autret <autret_m@epita.fr>
21229 Turn off %{source,header}_extension feature.
21231 * src/files.c (compute_exts_from_gf): Update.
21232 (compute_exts_from_src): Update.
21233 (output_files): CPP-out useless code.
21234 * src/files.h: Remove {header,source}_extension extern declarations.
21235 * src/reader.c (parse_dquoted_param): CPP-out.
21236 (parse_header_extension_decl): Remove.
21237 (parse_source_extension_decl): Remove.
21238 (read_declarations): Remove cases tok_{hdrext,srcext}.
21239 * src/lex.c (percent_table): Remove {header,source}_extension entries.
21240 * src/lex.h (token_t): Remove tok_hdrext and tok_srcext.
21242 2001-09-10 Akim Demaille <akim@epita.fr>
21244 * tests/output.at (AT_CHECK_BISON_FLAGS, AT_CHECK_BISON_PERCENT):
21245 (AT_CHECK_BISON_PERCENT_FLAGS): Merge into...
21246 (AT_CHECK_OUTPUT): this.
21247 Merely check ls' exit status, its output is useless.
21249 2001-09-10 Akim Demaille <akim@epita.fr>
21251 * tests/calc.at: Use m4_match.
21252 (_AT_DATA_CALC_Y): Check `yyin != NULL', not `stdin != NULL'.
21254 2001-09-10 Marc Autret <autret_m@epita.fr>,
21255 Akim Demaille <akim@epita.fr>
21257 * src/vcg.h (graph_s): color, textcolor, bordercolor are now
21259 * src/print_graph.c (print_graph): Initalize graph.layoutalgorithm
21261 * src/reader.c (parse_token_decl): Initialize token with tok_eof.
21262 * src/lex.h: Adjust prototype.
21263 (token_t): Add `tok_undef'.
21264 * src/lex.c (struct percent_table_struct): Retval is now a token_t.
21265 (parse_percent_token): Now returns token_t.
21266 Add default statement in switch.
21267 (lex): Separate `c' as an input variable, from the token_t result
21269 (unlexed): Is a token_t.
21271 2001-09-10 Akim Demaille <akim@epita.fr>
21273 * configure.in: Bump to 1.29a.
21275 2001-09-07 Akim Demaille <akim@epita.fr>
21279 2001-08-30 Akim Demaille <akim@epita.fr>
21281 * tests/atgeneral.m4, tests/atconfig.in, tests/suite.at: Remove.
21282 * m4/atconfig.m4: Remove.
21283 * tests/testsuite.at, tests/atlocal.in, tests/output.at,
21284 * tests/bison: New.
21285 * tests/regression.at, tests/calc.at: Use m4_define, AT_BANNER,
21286 m4_if, m4_patsubst, and m4_regexp.
21287 * tests/calc.at (_AT_CHECK_CALC, _AT_CHECK_CALC_ERROR): Use an
21288 `input' file instead of echo.
21290 2001-08-29 Akim Demaille <akim@epita.fr>
21294 2001-08-29 Akim Demaille <akim@epita.fr>
21298 2001-08-29 Paul Eggert <eggert@twinsun.com>
21300 * src/bison.simple (yyparse): Don't take the address of an
21301 item before the start of an array, as that doesn't conform to
21304 2001-08-29 Robert Anisko <anisko_r@epita.fr>
21306 * doc/bison.texinfo (Location Tracking Calc): New node.
21308 2001-08-29 Paul Eggert <eggert@twinsun.com>
21310 * src/output.c (output): Do not define const, as this now
21311 causes more problems than it cures.
21313 2001-08-29 Akim Demaille <akim@epita.fr>
21315 * doc/bison.texinfo: Modernize `@node' and `@top' use: just name
21317 Be sure to tag the `detailmenu'.
21319 2001-08-29 Akim Demaille <akim@epita.fr>
21321 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
21322 download in a tmp dir.
21324 2001-08-28 Marc Autret <autret_m@epita.fr>
21326 * config/depcomp: New file.
21328 2001-08-28 Marc Autret <autret_m@epita.fr>
21330 * doc/bison.1 (mandoc): Adjust.
21331 From Juan Manuel Guerrero.
21333 2001-08-28 Marc Autret <autret_m@epita.fr>
21335 * src/print_graph.c (print_state): Fix.
21337 2001-08-27 Marc Autret <autret_m@epita.fr>
21339 * src/vcg.h (classname_s, infoname_s, node_s): Constify the
21341 Echo modifications to the functions prototypes.
21342 * src/vcg.c (add_classname, add_infoname): Adjust arguments.
21344 2001-08-27 Marc Autret <autret_m@epita.fr>
21346 * src/vcg.c: Include `xalloc.h'.
21347 (add_colorentry): New.
21348 (add_classname): New.
21349 (add_infoname): New.
21350 * src/vcg.h: Add new prototypes.
21352 2001-08-27 Akim Demaille <akim@epita.fr>
21354 * Makefile.maint: Sync. again with CVS Autoconf.
21356 2001-08-27 Akim Demaille <akim@epita.fr>
21358 * Makefile.maint: Formatting changes.
21359 (po-update, cvs-update, update): New targets.
21362 2001-08-27 Akim Demaille <akim@epita.fr>
21364 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21365 * Makefile.maint: Sync. with CVS Autoconf.
21367 2001-08-27 Marc Autret <autret_m@epita.fr>
21369 * src/vcg.h (struct infoname_s): New.
21370 (struct colorentry_s): New.
21371 (graph_s): New fields {vertical,horizontal}_order in structure.
21372 Add `infoname' field.
21373 Add `colorentry' field;
21374 * src/vcg_defaults.h (G_VERTICAL_ORDER): New.
21375 (G_HORIZONTAL_ORDER): New.
21377 (G_COLORENTRY): New.
21378 * src/vcg.c (output_graph): Add output of {vertical,horizontal}_order.
21379 Add output of `infoname'.
21380 Add output of `colorentry'.
21382 2001-08-27 Marc Autret <autret_m@epita.fr>
21384 * src/reader.c (parse_dquoted_param): Rename variable `index' to `i'.
21385 This one shadowed a global parameter.
21387 2001-08-24 Marc Autret <autret_m@epita.fr>
21389 * src/print_graph.c (node_output_size): Declared POSIX `size_t' type,
21390 instead of `unsigned'.
21391 (print_state): Do not call obstack_object_size () in obstack_grow ()
21392 to avoid macro variables shadowing.
21394 2001-08-23 Marc Autret <autret_m@epita.fr>
21396 * src/lex.c (percent_table): Typo: s/naem/name/.
21398 Normalize new options declarations.
21400 2001-08-20 Pascal Bart <pascal.bart@epita.fr>
21402 * tests/suite.at: Exercise %header_extension and %source_extension.
21404 2001-08-16 Marc Autret <autret_m@epita.fr>
21406 * src/reader.c (parse_dquoted_param): New.
21407 (parse_header_extension_decl): Use it.
21408 (parse_source_extension_decl): Likewise.
21410 2001-08-16 Marc Autret <autret_m@epita.fr>
21412 * src/vcg.c: Remove includes of `complain.h' and `xalloc.h'.
21413 (get_xxxx_str): Use assert () instead of complain ().
21414 Remove return invokations in default cases.
21415 (get_decision_str): Modify default behaviour. Remove second argument.
21416 Echo modifications on calls.
21417 (output_graph): Fix.
21419 2001-08-16 Marc Autret <autret_m@epita.fr>
21421 * src/getargs.c (usage): Update with ``-g, --graph''.
21423 2001-08-16 Marc Autret <autret_m@epita.fr>
21425 * doc/bison.texinfo (Bison Options): Add items `-g', `--graph'.
21426 (Option Cross Key): Likewise.
21427 * doc/bison.1: Update.
21429 2001-09-25 Pascal Bart <pascal.bart@epita.fr>
21431 * src/output.c (output_master_parser): Don't finish action_obstack.
21432 (output_parser): Don't care about the muscle action, here.
21433 (prepare): Copy the action_obstack in the action muscle.
21434 (output): Free action_obstack.
21436 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
21438 * src/reader.c (parse_union_decl): Add new obstack union_obstack. Which
21439 will contain `%union' declaration.
21440 (parse_union_decl): Delete #line directive output.
21441 (parse_union_decl): Substitute /attrs_obstack/union_obstack for all
21442 informations about %union.
21443 (parse_union_decl): Copy the union_obstack in the muscle stype.
21444 * src/bison.simple: Add new #line directive.
21445 Add typdef %%stype YYSTYPE.
21447 2001-09-23 Pascal Bart <pascal.bart@epita.fr>
21449 * src/bison.simple: Add new `#line' directive.
21451 2001-09-22 Pascal Bart <pascal.bart@epita.fr>
21453 * src/bison.simple: New `#line' directive.
21454 * src/output.c (output_parser): Support new dynamic muscle input_line.
21456 2001-09-22 Marc Autret <autret_m@epita.fr>
21458 * src/output.c (output_master_parser): New.
21459 (output_parser): Be more re-entrant.
21461 2001-09-21 Marc Autret <autret_m@epita.fr>
21463 * src/reader.c (copy_definition, parse_union_decl): Update and use
21465 (copy_action): Likewise.
21466 Use obstack_1grow ().
21467 * src/muscle_tab.c (muscle_init): Add muscle `linef'.
21469 2001-09-21 Marc Autret <autret_m@epita.fr>
21471 * src/options.c (option_table): Adjust.
21472 * src/lex.c (parse_percent_token): Fix.
21474 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
21476 * src/options.c (symtab.h): Include it, need by lex.h.
21478 2001-09-20 Pascal Bart <pascal.bart@epita.fr>
21480 * src/lex.c (parse_percent_token): Change type of variable `tx', which
21481 is now an option_table_struct*.
21482 (option_strcmp): New function option_strcmp.
21483 (parse_percent_token): Call option_strcmp.
21484 * src/getargs.c (xalloc.h, options.h): Include it.
21485 (getargs): Call create_long_option_table.
21486 (getargs): Free longopts at the end of the function.
21487 (shortopts): Move in options.c.
21488 * src/options.c (create_long_option_table): New function. Convert
21489 information from option_table to option structure.
21490 * src/reader.c (options.h): Include it.
21492 * src/Makefile.am: Adjust.
21493 * src/options.c (option_table): Create from longopts and percent_table.
21494 * src/getargs.c (longopts): Delete.
21495 * src/lex.c (struct percent_table_struct): Delete.
21496 (percent_table): Delete.
21497 (options.h): Include it.
21498 * src/options.c: Create.
21499 * src/options.h: Create.
21500 Declare enum opt_access_e.
21501 Define struct option_table_struct.
21503 2001-09-20 Marc Autret <autret_m@epita.fr>
21505 * doc/bison.texinfo: Adjust terminologies about prologue and epilogue
21508 2001-09-19 Pascal Bart <pascal.bart@epita.fr>
21510 * src/bison.simple: s/%%filename/%%skeleton.
21511 * src/muscle_tab.c (getargs.h): Include it.
21512 (muscle_init): Insert new muscle skeleton.
21514 2001-09-18 Pascal Bart <pascal.bart@epita.fr>
21516 * src/output.c (output_parser): Delete unused variable actions_dumped.
21518 2001-09-07 Pascal Bart <pascal.bart@epita.fr>
21520 * src/output.c (output): Delete call to reader_output_yylsp.
21521 * src/reader.c (reader): Likewise.
21522 * src/reader.h: Delete declaration of reader_output_yylsp.
21524 2001-09-02 Marc Autret <autret_m@epita.fr>
21526 * src/reader.c: Include muscle_tab.h.
21527 (parse_union_decl): Update.
21528 (parse_macro_decl): Rename parse_muscle_decl.
21529 Update to use renamed functions and variable.
21530 (read_declarations, copy_action, read_additionnal_code, : Updated
21531 with correct variables and functions names.
21532 (packsymbols, reader): Likewise.
21534 * src/reader.h (muscle_obstack): Extern declaration update.
21536 * src/output.c: Include muscle_tab.h
21537 In all functions using macro_insert, change by using muscle_insert ().
21538 (macro_obstack): Rename muscle_obstack.
21539 Echo modifications in the whole file.
21540 (MACRO_INSERT_INT): Rename MUSCLE_INSERT_INT.
21541 (MACRO_INSERT_STRING): Rename MUSCLE_INSERT_STRING.
21542 (MACRO_INSERT_PREFIX): Rename MUSCLE_INSERT_PREFIX.
21544 * src/muscle_tab.h: Update double inclusion macros.
21545 (macro_entry_s): Rename muscle_entry_s.
21548 * src/muscle_tab.c: Include muscle_tab.h.
21549 Rename macro_tabble to muscle_table.
21550 (mhash1, mhash2, mcmp): Use muscle_entry.
21551 (macro_init): Rename muscle_init. Update.
21552 (macro_insert): Rename muscle_insert. Update.
21553 (macro_find): Rename muscle_find. Update.
21555 * src/main.c: Include muscle_tab.h.
21556 (main): Call muscle_init ().
21557 * src/Makefile.am (bison_SOURCES): Echo modifications.
21559 2001-09-02 Marc Autret <autret_m@epita.fr>
21561 Now the files macro_tab.[ch] are named muscle_tab.[ch].
21563 * src/muscle_tab.c, src/muscle_tab.h: Add files.
21565 2001-09-02 Marc Autret <autret_m@epita.fr>
21567 * src/macrotab.c, src/macrotab.h: Remove.
21569 2001-09-01 Pascal Bart <pascal.bart@epita.fr>
21571 * src/reader.c (copy_guard): Use muscle to specify the `#line'
21574 2001-09-01 Marc Autret <autret_m@epita.fr>
21576 * tests/calc.at (exp): Now, YYERROR_VERBOSE need to be set
21577 to an explicit value to activate the feature. We do it here.
21579 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21581 * src/output.c (prepare): Delete the `filename' muscule insertion.
21582 * src/reader.c (copy_action): Use `filename' muscule with `#line'.
21583 (parse_union_decl): Likewise.
21584 * src/macrotab.c (macro_init): Initialize filename by infile.
21586 2001-08-31 Marc Autret <autret_m@epita.fr>
21588 * src/bison.simple (YYLSP_NEEDED): New definition.
21589 * src/output.c (prepare): Add macro insertion of `locations_flag'
21591 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21593 * src/output.c (prepare): Delete insertion of previous muscles,
21594 and insert the `prefix' muscles.
21595 * src/macrotab.c (macro_init): Likewise.
21596 (macro_init): Initialization prefix directive by `yy'.
21597 * src/bison.simple: Substitute all %%yylex, %%yychar, %%yylval,
21598 %%yydebug, %%yyerror, %%yynerrs and %%yyparse by yylex, yychar,
21599 yylval, yydebug, yyerror, yynerrs and yyparse.
21600 New directive `#define' to substitute yydebug, ... with option
21603 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21605 * src/main.c (main): Standardize.
21606 * src/output.c (output_table_data, output_parser): Likewise.
21607 * src/macrotab.h, src/macrotab.c, src/bison.simple: Likewise.
21609 2001-08-31 Pascal Bart <pascal.bart@epita.fr>, Marc Autret <autret_m@epita.fr>
21611 * src/reader.c (read_additionnal_code): Rename %%user_code to
21613 * src/output.c (output): Rename %%declarations to %%prologue.
21614 * src/bison.simple: Echo modifications.
21616 2001-08-31 Marc Autret <autret_m@epita.fr>
21618 * src/reader.c (readgram): CleanUp.
21619 (output_token_defines): Likewise.
21620 (packsymbols): Likewise.
21621 (reader): Likewise.
21622 * src/output.c (output): CPP-out useless code.
21624 2001-08-31 Pascal Bart <pascal.bart@epita.fr>
21626 * src/reader.c (reader): Delete obsolete call to function
21627 output_trailers and output_headers.
21628 * src/output.h: Remove obsolete functions prototypes of output_headers
21629 and output_trailers.
21631 2001-08-30 Pascal Bart <pascal.bart@epita.fr>
21633 * src/main.c: Include macrotab.h.
21634 * src/macrotab.h (macro_entry_s): Constify fields.
21635 Adjust functions prototypes.
21636 * src/macrotab.c (macro_insert): Constify key and value.
21637 (macro_find): Constify key.
21638 (macro_insert): Include 'xalloc.h'
21639 (macro_insert): Use XMALLOC.
21640 (macro_find): Constify return value.
21641 * src/output.c (output_table_data): Rename table to table_data.
21642 (output_parser): Constify macro_key, macro_value.
21644 2001-08-30 Marc Autret <autret_m@epita.fr>
21646 * src/reader.c (parse_skel_decl): New.
21647 (read_declarations): Add case `tok_skel', call parse_skel_decl ().
21648 * src/lex.h (token_t): New token `tok_skel'.
21649 * src/lex.c (percent_table): Add skeleton option entry.
21652 2001-08-29 Marc Autret <autret_m@epita.fr>
21654 * src/bison.simple: Add %%user_code directive at the end.
21655 * src/reader.c (read_additionnal_code): New.
21657 * src/output.c (output_program): Remove.
21660 2001-08-28 Marc Autret <autret_m@epita.fr>
21662 * src/output.c (output_actions): Clean up.
21663 (output_gram): CPP-out useless code.
21664 * src/reader.c (reader): Clean up, CPP-out useless code.
21666 2001-08-28 Pascal Bart <pascal.bart@epita.fr>
21668 * src/output.c (output): Copy attrs_obstack in the '%%definitions'
21670 * src/bison.simple: Add `%%definitions'.
21672 2001-08-28 Marc Autret <autret_m@epita.fr>
21674 * config/depcomp: New file.
21676 2001-08-27 Paul Eggert <eggert@twinsun.com>
21678 * src/bison.simple (yyparse): Don't take the address of an
21679 item before the start of an array, as that doesn't conform to
21682 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
21684 * src/output.c (output): Remove the initialization of the macro
21685 obstack. It was done too late here.
21687 * src/reader.c (parse_macro_decl): Fix. Use of the macro obstack was
21689 (reader): Initialize the macro obstack here, since we need it to grow
21690 '%define' directives.
21692 * src/reader.h: Declare the macro obstack as extern.
21694 2001-08-27 Robert Anisko <robert.anisko@epita.fr>
21696 * src/output.c (output_parser): Fix. Store single '%' characters in
21697 the output obstack instead of throwing them away.
21699 2001-08-27 Akim Demaille <akim@epita.fr>
21701 * Makefile.am (AUTOMAKE_OPTIONS): 1.5.
21703 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21705 * lib/Makefile.am: Adjust.
21707 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21709 * src/bison.simple: Update and add '%%' directives.
21711 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21713 * src/reader.c (reader): Remove calls to 'output_headers' and
21714 'output_trailers'. Remove some C output.
21715 (readgram): Disable a piece of code that was writing a default
21716 definition for 'YYSTYPE'.
21717 (reader_output_yylsp): Remove.
21718 (packsymbols): Output token defintions to a macro.
21719 (copy_definition): Disable C output.
21721 * src/reader.c (parse_macro_decl): New function used to parse macro
21723 (copy_string2): Put the body of copy_string into this new function.
21724 Add a parameter to let the caller choose whether he wants to copy the
21725 string delimiters or not.
21726 (copy_string): Be a simple call to copy_string2 with the last argument
21728 (read_declarations): Add case for macro definition.
21729 (copy_identifier): New.
21730 (parse_macro_decl): Read macro identifiers using copy_identifier
21733 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21735 * src/output.c (prepare): Add prefixed names.
21736 (output_parser): Output semantic actions.
21737 (output_parser): Fix bug on '%%line' directives.
21739 * src/output.c (output_headers): Remove. The C code printed by this
21740 function should now be in the skeletons.
21741 (output_trailers): Remove.
21742 (output): Disable call to 'reader_output_yylsp'.
21743 (output_rule_data): Do not output tables to the table obstack.
21745 * src/output.c: Remove some C dedicated output.
21746 Improve the use of macro and output obstacks.
21747 (output_defines): Remove.
21749 * src/output.c (output_token_translations): Associate 'translate'
21750 table with a macro. No output to the table obstack.
21751 (output_gram): Same for 'rhs' and 'prhs'.
21752 (output_stos): Same for 'stos'.
21753 (output_rule_data): Same for 'r1' and 'r2'.
21754 (token_actions): Same for 'defact'.
21755 (goto_actions): Same for 'defgoto'.
21756 (output_base): Same for 'pact' and 'pgoto'.
21757 (output_table): Same for 'table'.
21758 (output_check): Same for 'check'.
21760 * src/output.c (output_table_data): New function.
21761 (output_short_table): Remove.
21762 (output_short_or_char_table): Remove.
21764 * src/output.c (output_parser): Replace most of the skeleton copy code
21765 with something new. Skeletons are now processed character by character
21766 rather than line by line, and Bison looks for '%%' macros. This is the
21767 first step in making Bison's output process (a lot) more flexible.
21768 (output_parser): Use the macro table.
21770 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21772 * src/main.c (main): Initialize the macro table.
21774 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21776 * src/lex.c (percent_table): Add tok_define.
21777 * src/lex.h: Add tok_define.
21779 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21781 * src/macrotab.c: New file.
21782 * src/macrotab.h: New file.
21783 * src/Makefile.am: Update.
21785 2001-08-25 Robert Anisko <robert.anisko@epita.fr>
21787 * lib/hash.c: New file.
21788 * lib/hash.h: New file.
21789 * lib/Makefile.am: Update.
21791 2001-08-15 Akim Demaille <akim@epita.fr>
21795 2001-08-15 Marc Autret <autret_m@epita.fr>
21797 * src/reader.c (readgram): Indent output macro YYSTYPE.
21798 (packsymbols): Likewise.
21799 (output_token_defines): Likewise.
21800 * src/files.c: Standardize.
21801 (compute_header_macro): New.
21802 (defines_obstack_save): New. Use compute_header_macro.
21803 (output_files): Update. Use defines_obstack_save.
21805 2001-08-15 Akim Demaille <akim@epita.fr>
21807 * doc/bison.texinfo (Table of Symbols): Document
21808 YYSTACK_USE_ALLOCA.
21810 2001-08-15 Akim Demaille <akim@epita.fr>
21812 * missing: Update from CVS Automake.
21813 * config/config.guess, config/config.sub, config/texinfo.tex:
21814 Update from gnu.org.
21816 2001-08-15 Akim Demaille <akim@epita.fr>
21818 * Makefile.maint: Sync with CVS Autoconf.
21820 2001-08-14 Pascal Bart <pascal.bart@epita.fr>
21822 * doc/bison.texinfo: Include GNU Free Documentation License from
21824 * doc/fdl.texi: Add to package.
21826 2001-08-14 Marc Autret <autret_m@epita.fr>
21828 Turn on %{source,header}_extension features.
21830 * src/lex.c (percent_table): Un-CPP out header_extension and
21832 * src/files.c (compute_exts_from_gf): Compare pointers with NULL.
21833 (compute_exts_from_src): Remove conditions. It restores priorities
21836 2001-08-14 Marc Autret <autret_m@epita.fr>
21838 * src/files.c (compute_base_names): Add extensions computing when
21839 `--file-prefix' used.
21840 Standardize function calls.
21842 2001-08-13 Marc Autret <autret_m@epita.fr>
21844 * src/bison.simple (YYSTACK_USE_ALLOCA): Changed to allow users
21845 defining it (defined but null disables alloca).
21847 2001-08-13 Marc Autret <autret_m@epita.fr>
21849 * src/bison.simple (_yy_memcpy): CPP reformat.
21851 2001-08-13 Pascal Bart <pascal.bart@epita.fr>
21853 * tests/atconfig.in (CPPFLAGS): Fix.
21855 2001-08-10 Pascal Bart <pascal.bart@epita.fr>
21857 * doc/bison.texinfo: Include GNU General Public License from
21859 * doc/gpl.texi: Add to package.
21861 2001-08-10 Marc Autret <autret_m@epita.fr>
21863 * src/print_graph.h: Fix.
21864 * src/reader.c (read_declarations): Use parse_header_extension_decl ().
21866 2001-08-10 Akim Demaille <akim@epita.fr>
21868 * src/system.h: Provide default declarations for stpcpy, strndup,
21871 2001-08-10 Robert Anisko <anisko_r@epita.fr>
21873 * doc/bison.texinfo (Locations): Update @$ stuff.
21875 2001-08-09 Robert Anisko <anisko_r@epita.fr>
21877 * src/bison.simple (YYLLOC_DEFAULT): Update.
21880 2001-08-08 Marc Autret <autret_m@epita.fr>
21882 * doc/bison.texinfo: Change @samp{$<@dots{}>} to
21883 @samp{$<@dots{}>@var{n}} in Section Actions in Mid-Rule.
21884 Reported by Fabrice Bauzac.
21886 2001-08-08 Marc Autret <autret_m@epita.fr>
21888 * src/vcg_default.h: Use NULL instead of 0 to initialize pointers.
21889 * src/vcg.c (output_node): Fix.
21890 * src/vcg.h: Cleanup.
21891 * src/print_graph.c: Add comments.
21892 (node_output_size): New global variable. Simplify the formatting of
21893 the VCG graph output.
21894 (print_actions): Unused code is now used. It notifies the final state
21895 and no action states in the VCG graph. It also give the reduce actions.
21896 The `shift and goto' edges are red and the `go to state' edges are
21898 Get the current node name and node_obstack by argument.
21899 (node_obstack): New variable.
21900 (print_state): Manage node_obstack.
21901 (print_core): Use node_obstack given by argument.
21902 A node is not only computed here but in print_actions also.
21903 (print_graph): CPP out useless code instead of commenting it.
21905 2001-08-07 Pascal Bart <pascal.bart@epita.fr>
21907 * tests/atconfig.in (CPPFLAGS): Fix.
21909 2001-08-07 Akim Demaille <akim@epita.fr>
21911 * src/print_graph.c (quote): New.
21912 (print_core): Use it.
21914 2001-08-06 Akim Demaille <akim@epita.fr>, Marc Autret <autret_m@epita.fr>
21916 * src/vcg.c (complain.h): Include it.
21917 Unepitaize `return' invocations.
21918 [NDEBUG] (main): Remove.
21919 * src/vcg.h (node_t, edge_t, graph_t): Constify the char * members.
21920 * src/files.c (open_files): Initialize graph_obstack.
21921 * src/print_graph.c (print_actions): CPP out useless code.
21922 (print_core): Don't output the last `\n' in labels.
21924 * src/files.c (output_files): Output the VCG file.
21925 * src/main.c (main): Invoke print_graph ();
21927 2001-08-06 Marc Autret <autret_m@epita.fr>
21929 Automaton VCG graph output.
21930 Using option ``-g'' or long option ``--graph'', you can generate
21931 a gram_filename.vcg file containing a VCG description of the LALR (1)
21932 automaton of your grammar.
21934 * src/main.c: Call to print_graph() function.
21935 * src/getargs.h: Update.
21936 * src/getargs.c (options): Update to catch `-g' and `--graph' options.
21937 (graph_flag): New flag.
21938 (longopts): Update.
21939 (getargs): Add case `g'.
21940 * src/files.c (graph_obstack): New obstack struct.
21941 (open_files): Initialize new obstack.
21942 (output_files): Saves graph_obstack if required.
21943 * src/files.h (graph_obstack): New extern declaration.
21944 * src/Makefile.am: Add new source files.
21946 2001-08-06 Marc Autret <autret_m@epita.fr>
21948 * src/print_graph.c, src/print_graph.h (graph): New.
21949 * src/vcg.h: New file.
21950 * src/vcg.c: New file, VCG graph handling.
21952 2001-08-06 Marc Autret <autret_m@epita.fr>
21954 Add of %source_extension and %header_extension which specify
21955 the source or/and the header output file extension.
21957 * src/files.c (compute_base_names): Remove initialisation of
21958 src_extension and header_extension.
21959 (compute_exts_from_gf): Update.
21960 (compute_exts_from_src): Update.
21961 (output_files): Update.
21962 * src/reader.c (parse_header_extension_decl): New.
21963 (parse_source_extension_decl): New.
21964 (read_declarations): New case statements for the new tokens.
21965 * src/lex.c (percent_table): Add entries for %source_extension
21966 and %header_extension.
21967 * src/lex.h (token_e): New tokens tok_hdrext and tok_srcext.
21969 2001-08-06 Marc Autret <autret_m@epita.fr>
21971 * configure.in: Bump to 1.28c.
21972 * doc/bison.texinfo: Texinfo thingies.
21974 2001-08-04 Pascal Bart <pascal.bart@epita.fr>
21976 * tests/atconfig.in (CPPFLAGS): Add.
21977 * tests/calc.at (AT_CHECK): Use CPPFLAGS.
21979 2001-08-03 Akim Demaille <akim@epita.fr>
21983 2001-08-03 Akim Demaille <akim@epita.fr>
21985 * tests/Makefile.am (check-local): Ship testsuite.
21986 * tests/calc.at (_AT_DATA_CALC_Y): Prototype all the functions.
21987 Include `string.h'.
21989 2001-08-03 Akim Demaille <akim@epita.fr>
21991 * configure.in: Try using -Wformat when compiling.
21993 2001-08-03 Akim Demaille <akim@epita.fr>
21995 * configure.in: Bump to 1.28b.
21997 2001-08-03 Akim Demaille <akim@epita.fr>
21999 * src/complain.c: Adjust strerror_r portability issues.
22001 2001-08-03 Akim Demaille <akim@epita.fr>
22005 2001-08-03 Akim Demaille <akim@epita.fr>
22007 * src/getargs.c, src/getarg.h (skeleton)): Constify.
22008 * src/lex.c (literalchar): Avoid name clashes on `buf'.
22009 * src/getargs.c: Include complain.h.
22010 * src/files.c, src/files.h (skeleton_find): Avoid name clashes.
22011 * lib/quotearg.c, lib/quotearg.h: Update from fileutils 4.1.
22013 2001-08-03 Akim Demaille <akim@epita.fr>
22015 * src/reader.c (readgram): Display hidden chars in error messages.
22017 2001-08-03 Akim Demaille <akim@epita.fr>
22019 Update to gettext 0.10.39.
22021 2001-08-03 Akim Demaille <akim@epita.fr>
22023 * lib/strspn.c: New.
22025 2001-08-01 Marc Autret <autret_m@epita.fr>
22027 * doc/bison.texinfo: Update.
22028 * doc/bison.1 (mandoc): Update.
22029 * src/system.h (EXT_GUARD_C, EXT_STYPE_H): Remove .c and .h.
22030 * src/files.c: Support output files extensions computing.
22031 (src_extension): New static variable.
22032 (header_extension): New static variable.
22033 (tr): New function.
22034 (get_extension_index): New function, gets the index of an extension
22035 filename in a string.
22036 (compute_exts_from_gf): New function, computes extensions from the
22037 grammar file extension.
22038 (compute_exts_from_src): New functions, computes extensions from the
22039 C source file extension, file given by ``-o'' option.
22040 (compute_base_names): Update.
22041 (output_files): Update.
22043 2001-08-01 Robert Anisko <anisko_r@epita.fr>
22045 * doc/bison.texi: Document @$.
22046 (Locations): New section.
22048 2001-07-18 Akim Demaille <akim@epita.fr>
22050 * Makefile.maint, GNUmakefile: New, from Autoconf 2.52.
22051 * config/prev-version.txt, config/move-if-change: New.
22052 * Makefile.am: Adjust.
22054 2001-07-08 Pascal Bart <pascal.bart@epita.fr>
22056 * src/bison.simple (yyparse): Suppress warning `comparaison
22057 between signed and unsigned'.
22059 2001-07-05 Pascal Bart <pascal.bart@epita.fr>
22061 * src/getargs.h (raw_flag): Remove.
22062 * src/getargs.c: Die on `-r'/`--raw'.
22063 * src/lex.c (parse_percent_token): Die on `%raw'.
22064 * src/reader.c (output_token_defines): Suppress call to `raw_flag'.
22065 * tests/calc.at: Suppress test with option `--raw'.
22067 2001-07-14 Akim Demaille <akim@epita.fr>
22070 * configure.in: Require Autoconf 2.50.
22071 Update to gettext 0.10.38.
22073 2001-03-16 Akim Demaille <akim@epita.fr>
22075 * doc/bison.texinfo: ANSIfy the examples.
22077 2001-03-16 Akim Demaille <akim@epita.fr>
22079 * getargs.c (skeleton): New variable.
22080 (longopts): --skeleton is a new option.
22081 (shortopts, getargs): -S is a new option.
22082 * getargs.h: Declare skeleton.
22083 * output.c (output_parser): Use it.
22085 2001-03-16 Akim Demaille <akim@epita.fr>
22087 * m4/strerror_r.m4: New.
22088 * m4/error.m4: Run AC_FUNC_STRERROR_R.
22089 * lib/error.h, lib/error.c: Update.
22091 2001-03-16 Akim Demaille <akim@epita.fr>
22093 * src/getargs.c (longopts): Clean up.
22095 2001-02-21 Akim Demaille <akim@epita.fr>
22097 * src/reader.c (gensym): `gensym_count' is your own.
22098 Use a static buf to create the symbol name, as token_buffer is no
22101 2001-02-08 Akim Demaille <akim@epita.fr>
22103 * src/conflicts.c (conflict_report): Be sure not to append to res
22104 between two calls, which could happen if both first sprintf were
22105 skipped, but not the first cp += strlen.
22107 2001-02-08 Akim Demaille <akim@epita.fr>
22109 * lib/memchr.c, lib/stpcpy.c, lib/strndup.c, lib/strnlen.c:
22110 New, from fileutils 4.0.37.
22111 * configure.in: Require Autoconf 2.49c. I took some time before
22112 making this decision. This is the only way out for portability
22113 issues in Bison, it would mean way too much duplicate effort to
22114 import in Bison features implemented in 2.49c since 2.13.
22115 AC_REPLACE_FUNCS and AC_CHECK_DECLS the functions above.
22117 2001-02-02 Akim Demaille <akim@epita.fr>
22119 * lib/malloc.c, lib/realloc.c: New, from the fileutils 4.0.37.
22120 * lib/xalloc.h, lib/xmalloc.c: Update.
22122 2001-01-19 Akim Demaille <akim@epita.fr>
22124 Get rid of the ad hoc handling of token_buffer in the scanner: use
22127 * src/lex.c (token_obstack): New.
22128 (init_lex): Initialize it. No longer call...
22129 (grow_token_buffer): this. Remove it.
22130 Adjust all the places which used it to use the obstack.
22132 2001-01-19 Akim Demaille <akim@epita.fr>
22134 * src/lex.h: Rename all the tokens:
22135 s/\bENDFILE\b/tok_eof/g;
22136 s/\bIDENTIFIER\b/tok_identifier/g;
22138 Let them be enums, not #define, to ease debugging.
22139 Adjust all the code.
22141 2001-01-18 Akim Demaille <akim@epita.fr>
22143 * src/lex.h (MAXTOKEN, maxtoken, grow_token_buffer): Remove, private.
22144 * src/lex.c (maxtoken, grow_token_buffer): Static.
22146 2001-01-18 Akim Demaille <akim@epita.fr>
22148 Since we now use obstacks, more % directives can be enabled.
22150 * src/lex.c (percent_table): Also accept `%yacc',
22151 `%fixed_output_files', `%defines', `%no_parser', `%verbose', and
22153 Handle the actions for `%semantic_parser' and `%pure_parser' here,
22154 instead of returning a token.
22155 * src/lex.h (SEMANTIC_PARSER, PURE_PARSER): Remove, unused.
22156 * src/reader.c (read_declarations): Adjust.
22157 * src/files.c (open_files): Don't call `compute_base_names', don't
22158 compute `attrsfile' since they depend upon data which might be
22159 *in* the input file now.
22160 (output_files): Do it here.
22161 * src/output.c (output_headers): Document the fact that this patch
22162 introduces a guaranteed SEGV for semantic parsers.
22163 * doc/bison.texinfo: Document them.
22164 * tests/suite.at: Exercise these %options.
22166 2000-12-20 Akim Demaille <akim@epita.fr>
22168 Also handle the output file (--verbose) with obstacks.
22170 * files.c (foutput): Remove.
22171 (output_obstack): New.
22172 Adjust all dependencies.
22173 * src/conflicts.c: Return a string.
22174 * src/system.h (obstack_grow_string): Rename as...
22175 (obstack_sgrow): this. Be ready to work with non literals.
22176 (obstack_fgrow4): New.
22178 2000-12-20 Akim Demaille <akim@epita.fr>
22180 * src/files.c (open_files): Fix the computation of short_base_name
22181 in the case of `-o foo.tab.c'.
22183 2000-12-20 Akim Demaille <akim@epita.fr>
22185 * src/reader.c (copy_string, copy_comment, copy_comment2, copy_at)
22186 (copy_dollar): Now that everything uses obstacks, get rid of the
22189 2000-12-20 Akim Demaille <akim@epita.fr>
22191 * src/files.c (open_files): Actually the `.output' file is based
22192 on the short_base_name, not base_name.
22193 * tests/suite.at (Checking output file names): Adjust.
22195 2000-12-20 Akim Demaille <akim@epita.fr>
22197 * src/bison.s1: Remove, we now use directly...
22198 * src/bison.simple: this.
22199 * src/Makefile.am: Use pkgdata instead of data.
22201 2000-12-20 Akim Demaille <akim@epita.fr>
22203 * src/files.c (guard_obstack): New.
22204 (open_files): Initialize it.
22205 (output_files): Dump it...
22206 * src/files.h: Export it.
22207 * src/reader.c (copy_guard): Use it.
22209 2000-12-19 Akim Demaille <akim@epita.fr>
22211 * src/files.c (outfile, defsfile, actfile): Removed as global
22213 (open_files): Don't compute them.
22214 (output_files): Adjust.
22215 (base_name, short_base_name): Be global.
22216 Adjust dependencies.
22218 2000-12-19 Akim Demaille <akim@epita.fr>
22220 * src/files.c (strsuffix): New.
22221 (stringappend): Be just like strcat but allocate.
22222 (base_names): Eve out from open_files.
22223 Try to simplify the rather hairy computation of base_name and
22225 (open_files): Use it.
22226 * tests/suite.at (Checking output file names): New test.
22228 2000-12-19 Akim Demaille <akim@epita.fr>
22230 * src/system.h (obstack_grow_literal_string): Rename as...
22231 (obstack_grow_string): this.
22232 * src/output.c (output_parser): Recognize `%% actions' instead of
22234 * src/bison.s1: s/$/%% actions/.
22235 * src/bison.hairy: Likewise.
22237 2000-12-19 Akim Demaille <akim@epita.fr>
22239 * src/output.c (output_parser): Compute the `#line' lines when
22241 * src/Makefile.am (bison.simple): Be a simple copy of bison.s1.
22242 Suggested by Hans Aberg.
22244 2000-12-19 Akim Demaille <akim@epita.fr>
22246 Let the handling of the skeleton files be local to the procedures
22249 * src/files.c (xfopen, xfclose, skeleton_find, guardfile): No
22251 (fparser, open_extra_files): Remove.
22252 (open_files, output_files): Don't take care of fparser.
22253 * src/files.h: Adjust.
22254 * src/output.c (output_parser): Open and close the file to the
22256 * src/reader.c (read_declarations): When %semantic_parser, open
22259 2000-12-19 Akim Demaille <akim@epita.fr>
22261 * src/file.h (BISON_SIMPLE, BISON_HAIRY): Move from here...
22262 * src/system.h (BISON_SIMPLE, BISON_HAIRY): ... to here.
22264 2000-12-19 Akim Demaille <akim@epita.fr>
22266 * src/files.c (open_files): Yipee! We no longer need all the code
22267 looking for `/tmp' since we have no tmp file.
22269 2000-12-19 Akim Demaille <akim@epita.fr>
22271 * src/system.h (EXT_TAB, EXT_OUTPUT, EXT_STYPE_H, EXT_GUARD_C):
22273 * src/files.c (open_files): Less dependency on MSDOS etc.
22275 2000-12-14 Akim Demaille <akim@epita.fr>
22277 * src/bison.s1 (YYLLOC_DEFAULT): New macro.
22278 Provide a default definition.
22279 Use it when executing the default @ action.
22280 * src/reader.c (reader_output_yylsp): No longer include
22281 `timestamp' and `text' in the default YYLTYPE.
22283 2000-12-12 Akim Demaille <akim@epita.fr>
22285 * src/reader.c (copy_definition, parse_union_decl, copy_action)
22286 (copy_guard): Quote the file names.
22287 Reported by Laurent Mascherpa.
22289 2000-12-12 Akim Demaille <akim@epita.fr>
22291 * src/output.c (output_headers, output_program, output): Be sure
22292 to escape special characters when outputting filenames.
22293 (ACTSTR_PROLOGUE, ACTSTR_EPILOGUE): Remove.
22294 (output_headers): Don't depend on them, Use ACTSTR.
22296 2000-11-17 Akim Demaille <akim@epita.fr>
22298 * lib/obstack.h: Formatting changes.
22299 (obstack_grow, obstack_grow0): Don't cast WHERE at all: it
22300 prevents type checking.
22301 (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
22302 cast the value to (void *): assigning a `foo *' to a `void *'
22304 (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
22305 * src/reader.c (parse_union_decl): Typo: use obstack_1grow to
22308 2000-11-17 Akim Demaille <akim@epita.fr>
22310 * tests/Makefile.am (suite.m4, regression.m4, calc.m4): Rename
22312 (suite.m4, regression.m4, calc.m4): these.
22313 * tests/atgeneral.m4: Update from CVS Autoconf.
22315 2000-11-17 Akim Demaille <akim@epita.fr>
22317 * tests/regression.m4 (%union and --defines): New test,
22318 demonstrating a current bug in the obstack implementation.
22320 2000-11-17 Akim Demaille <akim@epita.fr>
22322 * src/bison.s1 (_YY_DECL_VARIABLES, YY_DECL_VARIABLES): New
22324 Use them to declare the variables which are global or local to
22327 2000-11-17 Akim Demaille <akim@epita.fr>
22329 * acconfig.h: Remove, no longer used.
22331 2000-11-07 Akim Demaille <akim@epita.fr>
22333 * src: s/Copyright (C)/Copyright/g.
22335 2000-11-07 Akim Demaille <akim@epita.fr>
22337 * src/reader.c (reader): #define YYLSP_NEEDED to 1 instead of just
22339 * src/bison.s1: s/#ifdef YYLSP_NEEDED/#if YYLSP_NEEDED/.
22341 2000-11-07 Akim Demaille <akim@epita.fr>
22343 * src/bison.s1 (YYLEX): Use #if instead of #ifdef.
22344 Merge in a single CPP if/else.
22346 2000-11-07 Akim Demaille <akim@epita.fr>
22348 * src/output.c (output): Remove useless variables.
22349 * lib/obstack.c (obstack_grow, obstack_grow0): Rename the second
22350 argument `data' for consistency with the prototypes.
22351 Qualify it `const'.
22352 (obstack_copy, obstack_copy0): Rename the second argument as
22353 `address' for consistency. Qualify it `const'.
22354 * lib/obstack.h (obstack_copy, obstack_copy0, obstack_grow)
22355 (obstack_grow0, obstack_ptr_grow, obstack_ptr_grow_fast): Qualify
22356 `const' their input argument (`data' or `address').
22357 Adjust the corresponding macros to include `const' in casts.
22359 2000-11-03 Akim Demaille <akim@epita.fr>
22361 * src/Makefile.am (INCLUDES): s/PFILE/BISON_SIMPLE/.
22362 s/PFILE1/BISON_HAIRY/.
22363 Adjust dependencies.
22365 2000-11-03 Akim Demaille <akim@epita.fr>
22367 For some reason, this was not applied.
22369 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
22370 `unlink': it's no longer used.
22372 2000-11-03 Akim Demaille <akim@epita.fr>
22374 * src/files.c (skeleton_find): New function, eved out of...
22375 (open_files, open_extra_files): here.
22377 2000-11-03 Akim Demaille <akim@epita.fr>
22379 Don't use `atexit'.
22381 * src/files.c (obstack_save): New function.
22382 (done): Rename as...
22383 (output_files): this.
22384 Use `obstack_save'.
22385 * src/main.c (main): Don't use `atexit' to register `done', since
22386 it no longer has to remove tmp files, just call `output_files'
22387 when there are no errors.
22389 2000-11-02 Akim Demaille <akim@epita.fr>
22391 * src/files.c [VMS]: No longer include `ssdef.h', no longer define
22392 `unlink': it's no longer used.
22393 * src/files.h: Formatting changes.
22395 2000-11-02 Akim Demaille <akim@epita.fr>
22397 Remove the last uses of mktemp and unlink/delete.
22399 * src/files.c (fdefines, ftable): Removed.
22400 (defines_ostack, table_obstack): New.
22401 Adjust dependencies of the former into uses of the latter.
22402 * src/output.c (output_short_or_char_table, output_short_table):
22403 Convert to using obstacks.
22404 * src/reader.c (copy_comment2): Accept one FILE * and two
22406 (output_token_defines, reader_output_yylsp): Use obstacks.
22407 * src/system.h (obstack_fgrow3): New.
22408 * po/POTFILES.in: Adjust.
22410 2000-11-01 Akim Demaille <akim@epita.fr>
22412 Change each use of `fattrs' into a use of `attrs_obstack'.
22414 * src/reader.c (copy_at): Typo: s/yylloc/yyloc/.
22415 * src/files.c (fattrs): Remove.
22416 (attrs_obstack): New.
22417 Adjust all dependencies.
22418 (done): If SEMANTIC_PARSER, dump attrs_obstack into attrsfile.
22420 2000-11-01 Akim Demaille <akim@epita.fr>
22422 Introduce obstacks.
22423 Change each use of `faction' into a use of `action_obstack'.
22425 * lib/obstack.h, lib/obstack.c: New files.
22426 * src/files.c (faction): Remove.
22427 (action_obstack): New.
22428 Adjust all dependencies.
22430 2000-10-20 Akim Demaille <akim@epita.fr>
22432 * lib/quote.h (PARAMS): New macro. Use it.
22434 2000-10-16 Akim Demaille <akim@epita.fr>
22436 * src/output.c (output_short_or_char_table): New function.
22437 (output_short_table, output_token_translations): Use it.
22438 (goto_actions): Use output_short_table.
22440 2000-10-16 Akim Demaille <akim@epita.fr>
22442 * src/symtab.c (bucket_new): New function.
22445 * src/output.c (output_short_table): New argument to display the
22446 comment associated with the table.
22447 Adjust dependencies.
22448 (output_gram): Use it.
22449 (output_rule_data): Nicer output layout for YYTNAME.
22451 2000-10-16 Akim Demaille <akim@epita.fr>
22453 * src/lex.c (read_typename): New function.
22455 * src/reader.c (copy_dollar): Likewise.
22457 2000-10-16 Akim Demaille <akim@epita.fr>
22459 * src/reader.c (copy_comment2): Expect the input stream to be on
22460 the `/' which is suspected to open a comment, instead of being
22461 called after `//' or `/*' was read.
22462 (copy_comment, copy_definition, parse_union_decl, copy_action)
22463 (copy_guard): Adjust.
22465 2000-10-16 Akim Demaille <akim@epita.fr>
22467 * src/reader.c (parse_expect_decl): Use `skip_white_space' and
22468 `read_signed_integer'.
22470 2000-10-16 Akim Demaille <akim@epita.fr>
22472 * src/reader.c (copy_dollar): New function.
22473 (copy_guard, copy_action): Use it.
22475 2000-10-16 Akim Demaille <akim@epita.fr>
22477 * lib/quote.h, lib/quote.c, lib/quotearg.h, lib/quotearg.c:
22478 * m4/prereq.m4, m4/c-bs-a.m4, m4/mbstate.m4:
22479 New files, from Fileutils 4.0.27.
22480 * src/main.c (printable_version): Remove.
22481 * src/lex.c, src/reader.c: Use `quote'.
22483 2000-10-04 Akim Demaille <akim@epita.fr>
22485 * lib/error.c, lib/error.h: New files, needed by xmalloc.c.
22487 2000-10-04 Akim Demaille <akim@epita.fr>
22489 * doc/bison.texinfo: Various typos spotted by Neil Booth.
22491 2000-10-04 Akim Demaille <akim@epita.fr>
22493 When a literal string is used to define two different tokens,
22494 `bison -v' segfaults.
22495 Reported by Piotr Gackiewicz, and fixed by Neil Booth.
22497 * tests/regression.m4: New file.
22498 Include the core of the sample provided by Piotr Gackiewicz.
22499 * src/reader.c (parse_token_decl): Diagnose bad cases, and proceed
22502 2000-10-04 Akim Demaille <akim@epita.fr>
22504 * src/reader.c (parse_expect_decl): Keep `count' within the size
22508 2000-10-02 Paul Eggert <eggert@twinsun.com>
22510 * bison.s1 (yyparse): Assign the default value
22511 unconditionally, to avoid a GCC warning and make the parser a
22514 2000-10-02 Akim Demaille <akim@epita.fr>
22516 * src/getargs.c (getargs): Don't dump `--help' on unrecognized
22519 2000-10-02 Akim Demaille <akim@epita.fr>
22521 * src/derives.c, src/print.c, src/reduce.c: To ease the
22522 translation, move some `\n' out of the translated strings.
22524 2000-10-02 Akim Demaille <akim@epita.fr>
22526 The location tracking mechanism is precious for parse error
22527 messages. Nevertheless, it is enabled only when `@n' is used in
22528 the grammar, which is a different issue (you can use it in error
22529 message, but not in the grammar per se). Therefore, there should
22530 be another means to enable it.
22532 * src/getargs.c (getargs): Support `--locations'.
22533 (usage): Report it.
22534 * src/getargs.h (locationsflag): Export it.
22535 * src/lex.c (percent_table): Support `%locations'.
22536 * src/reader.c (yylsp_needed): Remove this variable, now replaced
22537 with `locationsflag'.
22538 * doc/bison.texinfo: Document `--locations' and `%locations'.
22540 * tests/calc.m4: Test it.
22542 For regularity of the names, replace each
22543 (nolineflag, toknumflag, rawtokenumflag, noparserflag): with...
22544 (no_lineflag, token_tableflag, rawflag, no_parserflag): this.
22545 In addition replace each `flag' with `_flag'.
22547 2000-10-02 Akim Demaille <akim@epita.fr>
22549 Also test parse error messages, including with YYERROR_VERBOSE.
22551 * tests/calc.m4 (calc.y): Add support for `exp = exp' (non
22553 Use it to check the computations.
22554 Use it to check `nonassoc' is honored.
22555 (AT_DATA_CALC_Y): Equip `calc.y' with YYERROR_VERBOSE when passed
22556 `--yyerror-verbose'.
22557 (_AT_CHECK_CALC): Adjust to this option.
22558 (_AT_CHECK_CALC_ERROR): New macro to check parse error messages.
22560 2000-10-02 Akim Demaille <akim@epita.fr>
22562 Test also `--verbose', `--defines' and `--name-prefix'. Testing
22563 the latter demonstrates a flaw in the handling of non debugging
22564 parsers introduced by myself on 2000-03-16: `#define yydebug 0'
22565 was used in order to simplify:
22581 unfortunately this leads to a CPP conflict when
22582 `--name-prefix=foo' is used since it produces `#define yydebug
22585 * src/bison.s1 [!YYDEBUG]: Do not define yydebug.
22586 (YYDPRINTF): New macro.
22588 * tests/calc.m4 (AT_CHECK_CALC): Do require a title, build it from
22590 Also test `--verbose', `--defines' and `--name-prefix'.
22592 2000-10-02 Akim Demaille <akim@epita.fr>
22594 Improve the readability of the produced parsers.
22596 * src/bison.s1: Formatting changes.
22597 Improve the comment related to the `$' mark.
22598 (yydefault): Don't fall through to `yyresume': `goto' there.
22599 * src/output.c (output_parser): When the `$' is met, skip the end
22601 New variable, `number_of_dollar_signs', to check there's exactly
22602 one `$' in the parser skeleton.
22604 2000-10-02 Akim Demaille <akim@epita.fr>
22606 * lib/xstrdup.c: New file, from the fileutils.
22607 * src/reader.c (parse_token_decl, get_type_name, parse_type_decl)
22608 (parse_assoc_decl, parse_thong_decl, get_type): Use `xstrdup'
22609 instead of strlen + xmalloc + strcpy.
22610 * src/symtab.c (copys): Remove, use xstrdup instead.
22612 2000-10-02 Akim Demaille <akim@epita.fr>
22614 * src/gram.h (associativity): New enum type which replaces the
22615 former CPP macros `RIGHT_ASSOC', `LEFT_ASSOC' and `NON_ASSOC' with
22616 `right_assoc', `left_assoc' and `non_assoc'.
22617 Adjust all dependencies.
22618 * src/reader.c: Formatting changes.
22619 (LTYPESTR): Don't define it, use it as a literal in
22620 `reader_output_yylsp'.
22621 * src/symtab.h (symbol_class): New enum type which replaces the
22622 former CPP macros `SUNKNOWN', `STOKEN and `SNTERM' with
22623 `sunknown', `stoken and `snterm'.
22625 2000-10-02 Akim Demaille <akim@epita.fr>
22627 * src/getargs.c (fixed_outfiles): Rename as...
22628 (yaccflag): for consistency and accuracy.
22629 Adjust dependencies.
22631 2000-10-02 Akim Demaille <akim@epita.fr>
22633 Use the more standard files `xalloc.h' and `xmalloc.c' instead of
22634 Bison's `allocate.c' and `alloc.h'. This patch was surprisingly
22635 difficult and introduced a lot of core dump. It turns out that
22636 Bison used an implementation of `xmalloc' based on `calloc', and
22637 at various places it does depend upon the initialization to 0. I
22638 have not tried to isolate the pertinent places, and all the former
22639 calls to Bison's `xmalloc' are now using `XCALLOC'. Someday,
22640 someone should address this issue.
22642 * src/allocate.c, src/alloc.h, m4/bison-decl.m4: Remove.
22643 * lib/xmalloc.c, lib/xalloc.h, m4/malloc.m4, m4/realloc.m4: New
22645 Adjust dependencies.
22646 * src/warshall.h: New file.
22649 2000-10-02 Akim Demaille <akim@epita.fr>
22651 Various anti-`extern in *.c' changes.
22653 * src/system.h: Include `assert.h'.
22655 2000-10-02 Akim Demaille <akim@epita.fr>
22657 * src/state.h (nstates, final_state, first_state, first_shift)
22658 (first_reduction): Move their exportation from here...
22659 * src/LR0.h: to here.
22660 Adjust dependencies.
22661 * src/getargs.c (statisticsflag): New variable.
22662 Add support for `--statistics'.
22663 Adjust dependencies.
22665 Remove a lot of now useless `extern' statements in most files.
22667 2000-10-02 Akim Demaille <akim@epita.fr>
22669 * src/LR0.h: New file.
22672 2000-10-02 Akim Demaille <akim@epita.fr>
22674 * src/print.h: New file.
22676 * src/print.c: Formatting and ordering changes.
22677 (verbose, terse): Replace with...
22678 (print_results): this new function.
22679 Adjust dependencies.
22681 2000-10-02 Akim Demaille <akim@epita.fr>
22683 * src/conflicts.c (conflict_report): New function.
22684 (conflict_log, verbose_conflict_log): Replace with...
22685 (print_conflicts): this function.
22686 Adjust dependencies.
22687 * src/conflicts.h: New file.
22688 Propagate its inclusion.
22690 2000-10-02 Akim Demaille <akim@epita.fr>
22692 * src/nullable.h: New file.
22693 Propagate its inclusion.
22694 * src/nullable.c: Formatting changes.
22696 2000-10-02 Akim Demaille <akim@epita.fr>
22698 * src/reduce.h: New file.
22699 Propagate its inclusion.
22700 * src/reduce.c: Topological sort and other formatting changes.
22701 (bool, TRUE, FALSE): Move their definition to...
22702 * src/system.h: here.
22704 2000-10-02 Akim Demaille <akim@epita.fr>
22706 * src/files.c: Formatting changes.
22707 (tryopen, tryclose, openfiles): Rename as...
22708 (xfopen, xfclose, open_files): this.
22709 (stringappend): static.
22710 * src/files.h: Complete the list of exported symbols.
22713 2000-10-02 Akim Demaille <akim@epita.fr>
22715 * src/reader.h: New file.
22716 Propagate its use instead of tedious list of `extern' and
22718 * src/reader.c: Formatting changes, topological sort,
22721 2000-10-02 Akim Demaille <akim@epita.fr>
22723 * src/lex.h: Prototype `lex.c' exported functions.
22724 * src/reader.c: Adjust.
22725 * src/lex.c: Formatting changes.
22726 (safegetc): Rename as...
22729 2000-10-02 Akim Demaille <akim@epita.fr>
22731 * src/lalr.h: New file.
22732 Propagate its inclusion instead of prototypes and `extern'.
22733 * src/lalr.c: Formatting changes, topological sorting etc.
22735 2000-10-02 Akim Demaille <akim@epita.fr>
22737 * src/output.c (token_actions): Introduce a temporary array,
22738 YYDEFACT, that makes it possible for this function to use
22739 output_short_table.
22741 2000-10-02 Akim Demaille <akim@epita.fr>
22743 `user_toknums' is output as a `short[]' in `output.c', while it is
22744 defined as a `int[]' in `reader.c'. For consistency with the
22745 other output tables, `user_toknums' is now defined as a table of
22748 * src/reader.c (user_toknums): Be a short table instead of an int
22750 Adjust dependencies.
22752 Factor the short table outputs.
22754 * src/output.c (output_short_table): New function.
22755 * src/output.c (output_gram, output_stos, output_rule_data)
22756 (output_base, output_table, output_check): Use it.
22758 2000-10-02 Akim Demaille <akim@epita.fr>
22760 * src/output.c (output): Topological sort of the functions, in
22761 order to get rid of the `static' prototypes.
22762 No longer use `register'.
22763 * src/output.h: New file.
22764 Propagate its inclusion in files explicitly prototyping functions
22767 2000-09-21 Akim Demaille <akim@epita.fr>
22769 * src/atgeneral.m4: Update from Autoconf.
22771 2000-09-21 Akim Demaille <akim@epita.fr>
22773 * src/closure.h: New file.
22774 * src/closure.c: Formatting changes, topological sort over the
22775 functions, use of closure.h.
22776 (initialize_closure, finalize_closure): Rename as...
22777 (new_closure, free_closure): these. Adjust dependencies.
22778 * src/LR0.c: Formatting changes, topological sort, use of
22780 (initialize_states): Rename as...
22781 (new_states): this.
22782 * src/Makefile.am (noinst_HEADERS): Adjust.
22784 2000-09-20 Akim Demaille <akim@epita.fr>
22786 * src/acconfig.h: Don't protect config.h against multiple
22788 Don't define PARAMS.
22789 * src/system.h: Define PARAMS.
22790 Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the
22791 purpose of config.h. system.h must not try to fix wrong
22792 definitions in config.h.
22794 2000-09-20 Akim Demaille <akim@epita.fr>
22796 * src/derives.h: New file.
22797 * src/main.c, src/derives.h: Use it.
22798 Formatting changes.
22799 * src/Makefile.am (noinst_HEADERS): Adjust.
22801 2000-09-20 Akim Demaille <akim@epita.fr>
22803 * tests/atgeneral.m4: Update from Autoconf.
22804 * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC)
22805 (AT_CHECK_CALC): New macros.
22806 Use these macros to test bison with options `', `--raw',
22807 `--debug', `--yacc', `--yacc --debug'.
22809 2000-09-19 Akim Demaille <akim@epita.fr>
22811 * src/output.c: Formatting changes.
22812 * src/machine.h: Remove, leaving its contents in...
22813 * src/system.h: here.
22815 Adjust all dependencies on stdio.h and machine.h.
22816 * src/getargs.h: New file.
22817 Let all `extern' declarations about getargs.c be replaced with
22818 inclusion of `getargs.h'.
22819 * src/Makefile.am (noinst_HEADERS): Adjust.
22821 * tests/calc.m4 (yyin): Be initialized in main, not on the global
22823 (yyerror): Returns void, not int.
22824 * doc/bison.texinfo: Formatting changes.
22826 2000-09-19 Akim Demaille <akim@epita.fr>
22828 * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
22831 2000-09-18 Akim Demaille <akim@epita.fr>
22833 * configure.in: Append WARNING_CFLAGS to CFLAGS.
22834 * src/Makefile.am (INCLUDES): Don't.
22835 Be ready to fetch headers in lib/.
22837 2000-09-18 Akim Demaille <akim@epita.fr>
22839 * doc/bison.texinfo: Update the copyright.
22840 ANSIfy and GNUify the examples.
22841 Remove the old menu.
22843 2000-09-18 Akim Demaille <akim@epita.fr>
22845 First set of tests: use the `calc' example from the documentation.
22847 * src/bison.s1 (yyparse): Condition the code using `yytname' which
22848 is defined only when YYDEBUG is.
22849 * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
22850 * src/files.c (tryopen, tryclose): Formatting changes.
22851 Move to the top and be static.
22852 * src/reader.c (read_signed_integer): Likewise.
22853 * tests/calc.m4: New file.
22854 * Makefile.am, suite.m4: Adjust.
22855 * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
22857 2000-09-18 Akim Demaille <akim@epita.fr>
22859 Add support for an Autotest test suite for Bison.
22861 * m4/m4.m4, m4/atconfig.m4: New files.
22862 * m4/Makefile.am (EXTRA_DIST): Adjust.
22863 * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
22865 * src/getargs.c: Display a more standard --version message.
22866 * src/reader.c (reader): Formatting changes.
22867 No longer depend upon VERSION_STRING.
22868 * configure.in: No longer use `dnl'.
22869 Set up the test suite and the new directory `tests/.
22870 (VERSION_STRING): Remove.
22872 2000-04-14 Akim Demaille <akim@epita.fr>
22874 * src/reader.c (copy_comment2): New function, same as former
22875 `copy_comment', but outputs into two FILE *.
22876 (copy_comment): Use it.
22877 (parse_union_decl): Use it.
22878 (get_type, parse_start_decl): Use the same `invalid' message.
22879 (parse_start_decl, parse_union_decl): Use the same `multiple'
22881 (parse_union_decl, copy_guard, copy_action): Use the same
22882 `unmatched' message.
22883 * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
22885 2000-03-31 Akim Demaille <akim@epita.fr>
22887 * src/files.c (tryopen, tryclose): Move to the top.
22890 2000-03-31 Akim Demaille <akim@epita.fr>
22892 * src/main.c (main): Don't call `done', exit does it.
22894 2000-03-31 Akim Demaille <akim@epita.fr>
22896 * allocate.c: s/return (foo)/return foo/.
22897 * lalr.c: Likewise.
22899 * output.c: Likewise.
22900 * reader.c: Likewise.
22901 * symtab.c: Likewise.
22902 * vmsgetargs.c: Likewise.
22904 2000-03-31 Akim Demaille <akim@epita.fr>
22906 Clean up the error reporting functions.
22908 * src/report.c: New file.
22909 * src/report.h: Likewise.
22910 * src/Makefile.am: Adjust.
22911 * m4/error.m4: New file.
22912 * m4/Makefile.am: Adjust.
22913 * configure.in (jm_PREREQ_ERROR): Call it.
22914 * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
22916 (fatal, fatals): Remove. All callers use complain.c::fatal.
22917 (warn, warni, warns, warnss, warnss): Remove. All callers use
22918 complain.c::complain.
22919 (toomany): Remove, use fatal instead.
22920 * src/files.c (done): No argument, use complain_message_count.
22921 * src/main.c (main): Register `done' to `atexit'.
22923 * src/getargs.c (usage): More `fputs', less `fprintf'.
22925 2000-03-28 Akim Demaille <akim@epita.fr>
22927 * lib/: New directory.
22928 * Makefile.am (SUBDIRS): Adjust.
22929 * configure.in: Adjust.
22930 (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
22932 * src/alloca.c: Moved to lib/.
22933 * src/getopt.c: Likewise.
22934 * src/getopt1.c: Likewise.
22935 * src/getopt.h: Likewise.
22936 * src/ansi2knr.c: Likewise.
22937 * src/ansi2knr.1: Likewise.
22938 * src/Makefile.am: Adjust.
22939 * lib/Makefile.am: New file.
22941 2000-03-28 Akim Demaille <akim@epita.fr>
22943 * src/getargs.c (usage): Refresh the help message.
22945 2000-03-17 Akim Demaille <akim@epita.fr>
22947 * src/getopt1.c: Updated from textutils 2.0e
22948 * src/getopt.c: Likewise.
22949 * src/getopt.h: Likewise.
22951 2000-03-17 Akim Demaille <akim@epita.fr>
22953 * src/Makefile.am (bison.simple): Fix the awk program: quote only
22954 the file name, not the whole `#line LINE FILE'.
22956 2000-03-17 Akim Demaille <akim@epita.fr>
22958 On syntax errors, report the token on which we choked.
22960 * src/bison.s1 (yyparse): In the label yyerrlab, when
22961 YYERROR_VERBOSE, add yychar in msg.
22963 2000-03-17 Akim Demaille <akim@epita.fr>
22965 * src/reader.c (copy_at): New function.
22966 (copy_guard): Use it.
22967 (copy_action): Use it.
22969 2000-03-17 Akim Demaille <akim@epita.fr>
22971 Be kind to translators, save some useless translations.
22973 * src/main.c (banner): New function.
22974 (fatal_banner): Use it.
22975 (warn_banner): Use it.
22977 2000-03-17 Akim Demaille <akim@epita.fr>
22979 * src/reader.c (copy_definition): Use copy_string and
22980 copy_comment. Removed now unused `match', `ended',
22982 (copy_comment, copy_string): Moved, to be visible from
22985 2000-03-17 Akim Demaille <akim@epita.fr>
22987 * src/reader.c (copy_string): Declare `static inline'. No
22988 problems with inline, since it is checked by configure.
22989 (copy_comment): Likewise.
22991 2000-03-17 Akim Demaille <akim@epita.fr>
22993 * src/reader.c (packsymbols): Formatting changes.
22995 2000-03-17 Akim Demaille <akim@epita.fr>
22997 * src/reader.c (copy_comment): New function, factored out from:
22998 (copy_action): Use it. Removed now unused `match', `ended',
23000 (copy_guard): Likewise.
23002 2000-03-17 Akim Demaille <akim@epita.fr>
23004 * src/reader.c (copy_string): New function, factored out from:
23005 (copy_action): Use it.
23006 (copy_guard): Likewise.
23008 2000-03-17 Akim Demaille <akim@epita.fr>
23010 Change the handling of @s so that they behave exactly like $s.
23011 There is now a pseudo variable @$ (readble and writable), location
23012 of the lhs of the rule (by default ranging from the location of
23013 the first symbol of the rhs, to the location of the last symbol,
23014 or, if the rhs is empty, YYLLOC).
23016 * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of
23018 (yyparse): When providing a default semantic action, provide a
23019 default location action.
23020 (after the $): No longer change `*YYLSP', just stack YYLOC the
23021 same way you stack YYVAL.
23022 * src/reader.c (read_declarations): Use warns.
23023 (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'.
23024 (copy_action, case '@'): Likewise.
23025 Use a standard error message, to save useless work from
23028 2000-03-17 Akim Demaille <akim@epita.fr>
23030 * src/bison.s1: Formatting and cosmetics changes.
23031 * src/reader.c: Likewise.
23032 Update the Copyright notice.
23034 2000-03-17 Akim Demaille <akim@epita.fr>
23036 * src/bison.s1 (#line): All set to `#line' only, since the
23037 Makefile now handles them.
23039 2000-03-16 Akim Demaille <akim@epita.fr>
23041 * src/output.c (output_rule_data): Output the documentation of
23042 some of the tables.
23043 (Copyright notice): Update.
23044 Formatting changes.
23046 2000-03-16 Akim Demaille <akim@epita.fr>
23048 * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to
23049 remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough.
23050 One `#if YYDEBUG' remains, since it uses variables which are
23051 defined only if `YYDEBUG != 0'.
23053 2000-03-16 Akim Demaille <akim@epita.fr>
23055 * src/bison.s1 (yyparse): Reorganize the definitions of the stacks
23056 and related variables so that the similarities are highlighted.
23058 2000-03-16 Akim Demaille <akim@epita.fr>
23060 * src/bison.s1: Properly indent CPP directives.
23062 2000-03-16 Akim Demaille <akim@epita.fr>
23064 * src/bison.s1: Properly indent the `alloca' CPP section.
23066 2000-03-16 Akim Demaille <akim@epita.fr>
23068 Do not hard code values of directories in `configure.in'.
23069 Update the `configure' tool chain.
23071 * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by
23073 (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED.
23074 (AC_OUTPUT): Add m4/Makefile.
23075 Bump to bison 1.28a, 1.29 has never been released.
23076 * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are
23077 handled via src/Makefile.am.
23078 (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS,
23079 HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by
23081 * Makefile.am (SUBDIRS): Add m4.
23082 (ACLOCAL_AM_FLAGS): New variable.
23083 (AUTOMAKE_OPTIONS): Add check-news.
23084 * src/Makefile.am (bison.simple): Use awk to replace #line lines with
23085 the proper line number and file name.
23086 (DEFS): Propagate the location of bison library files and of the
23088 (INCLUDES): Added `-I ..' so that one can compile with srcdir !=
23090 * acinclude.m4: Remove, replaced by the directory m4.
23091 * m4/Makefile.am (EXTRA_DIST): New variable.
23092 * m4/gettext.m4: New file, from the fileutils.
23093 * m4/lcmessage.m4: Likewise
23094 * m4/progtest.m4: Likewise.
23095 * m4/bison-decl.m4: New file, extracted from former acinclude.m4.
23097 2000-03-10 Akim Demaille <akim@epita.fr>
23100 Formatting changes of various comments.
23101 Respect the GNU coding standards at various places.
23102 Don't use `_()' when no translation is needed.
23104 1999-12-13 Jesse Thilo <jthilo@gnu.org>
23107 OS/2 honors TMPDIR environment variable.
23109 1999-12-13 Jesse Thilo <jthilo@gnu.org>
23111 * doc/bison.texinfo: Tweaked spelling and grammar.
23113 Removed reference to price of printed copy.
23114 Mention BISON_SIMPLE and BISON_HAIRY.
23116 1999-12-13 Jesse Thilo <jthilo@gnu.org>
23118 * configure.in, NEWS:
23119 Bison 1.29 released.
23121 1999-10-27 Jesse Thilo <jthilo@gnu.org>
23123 * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex:
23124 Added reference card.
23126 1999-07-26 Jesse Thilo <jthilo@gnu.org>
23128 * po/ru.po: Added Russian translation.
23130 1999-07-26 Jesse Thilo <jthilo@gnu.org>
23132 * configure.in: Added Russian translation.
23134 1999-07-06 Jesse Thilo <jthilo@gnu.org>
23136 * configure.in, NEWS, README:
23137 Released version 1.28.
23139 1999-06-14 Jesse Thilo <jthilo@gnu.org>
23142 Squashed redefinition warning on some systems.
23144 * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c:
23145 Have configure build version string instead of relying on ANSI string
23148 1999-06-14 Jesse Thilo <jthilo@gnu.org>
23150 * po/POTFILES.in: Got rid of version.c.
23152 1999-06-14 Jesse Thilo <jthilo@gnu.org>
23154 * acconfig.h, configure.in:
23155 Have configure build version string instead of relying on ANSI string
23158 1999-06-08 Jesse Thilo <jthilo@gnu.org>
23161 Dropped mention of `+' for long-named options.
23163 1999-05-30 Jesse Thilo <jthilo@gnu.org>
23165 * src/files.c: Added <unistd.h> for unlink().
23167 * src/Makefile.am, src/system.h:
23170 1999-05-30 Jesse Thilo <jthilo@gnu.org>
23172 * README: Added a FAQ list.
23174 * configure.in, acconfig.h:
23177 1999-05-30 Jesse Thilo <jthilo@gnu.org>
23179 * doc/FAQ, doc/Makefile.am:
23182 1999-05-19 Jesse Thilo <jthilo@gnu.org>
23184 * src/alloc.h, src/symtab.h, src/version.c:
23185 Protected inclusion of "config.h" with HAVE_CONFIG_H.
23187 1999-04-18 Jesse Thilo <jthilo@gnu.org>
23189 * src/.cvsignore, src/Makefile.am:
23190 Reorganized: sources in `src', documentation in `doc'.
23192 * src/lex.c (literalchar):
23193 fixed the code for escaping double quotes (thanks
23196 1999-04-18 Jesse Thilo <jthilo@gnu.org>
23198 * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in:
23199 Adjusted paths to reflect directory reorganization.
23201 1999-04-18 Jesse Thilo <jthilo@gnu.org>
23203 * doc/.cvsignore, doc/Makefile.am:
23204 Reorganized: sources in `src', documentation in `doc'.
23206 1999-04-18 Jesse Thilo <jthilo@gnu.org>
23209 Updated AC_INIT file to reflect directory reorganization.
23211 * configure.in, .cvsignore, Makefile.am, POTFILES.in:
23212 Reorganized: sources in `src', documentation in `doc'.
23214 1999-04-13 Jesse Thilo <jthilo@gnu.org>
23217 Don't declare calloc() and realloc() if not necessary.
23219 1999-04-13 Jesse Thilo <jthilo@gnu.org>
23221 * configure.in, acconfig.h, acinclude.m4:
23222 Don't declare calloc() and realloc() if not necessary.
23224 1999-03-23 Jesse Thilo <jthilo@gnu.org>
23226 * po/.cvsignore: Added i18n support.
23228 1999-03-23 Jesse Thilo <jthilo@gnu.org>
23230 * acconfig.h, configure.in, Makefile.am:
23231 Added i18n support.
23233 1999-03-22 Jesse Thilo <jthilo@gnu.org>
23235 * src/bison.s1: Fixed #line numbers.
23237 1999-03-15 Jesse Thilo <jthilo@gnu.org>
23239 * po/es.po, po/fr.po, po/nl.po, po/de.po:
23240 Added PO files from Translation Project.
23242 1999-03-03 Jesse Thilo <jthilo@gnu.org>
23245 Added support for non-ANSI compilers (ansi2knr).
23247 1999-02-16 Jesse Thilo <jthilo@gnu.org>
23249 * configure.in: Bumped version number to 1.27.
23252 Added `bison.simple' to list of files removed by `make distclean'.
23254 1999-02-12 Jesse Thilo <jthilo@gnu.org>
23256 * src/files.c, src/files.h:
23257 Defined locations of parser files in config.h instead of Makefile.
23259 1999-02-12 Jesse Thilo <jthilo@gnu.org>
23261 * acconfig.h, acinclude.m4, configure.in, Makefile.am:
23262 Defined locations of parser files in config.h instead of Makefile.
23264 1999-02-09 Jesse Thilo <jthilo@gnu.org>
23267 Removed inappropriate use of $< macro.
23269 1999-02-05 Jesse Thilo <jthilo@gnu.org>
23271 * po/Makefile.in.in, po/POTFILES.in:
23272 Add `po' directory skeleton.
23274 1999-01-27 Jesse Thilo <jthilo@gnu.org>
23276 * README: Document help-bison list.
23278 * configure.in: Add check for mkstemp().
23280 1999-01-20 Jesse Thilo <jthilo@gnu.org>
23282 * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c:
23283 Hush a few compiler warnings.
23286 Add tryclose(), which verifies that fclose was successful.
23287 Hush a couple of compiler warnings.
23289 1999-01-20 Jesse Thilo <jthilo@gnu.org>
23291 * Makefile.am, OChangeLog:
23292 ChangeLog is now automatically generated. Include the old version as
23295 1999-01-14 Jesse Thilo <jthilo@gnu.org>
23297 * 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:
23298 Update FSF address.
23300 1999-01-14 Jesse Thilo <jthilo@gnu.org>
23302 * doc/bison.texinfo: Fix formatting glitch.
23304 * doc/bison.texinfo: Update FSF address.
23306 1999-01-14 Jesse Thilo <jthilo@gnu.org>
23308 * acconfig.h: Update FSF address.
23310 1999-01-08 Jesse Thilo <jthilo@gnu.org>
23313 Don't define PACKAGE here, since config.h defines it.
23315 1998-12-30 Jesse Thilo <jthilo@gnu.org>
23317 * src/reader.c: Update copyright date.
23320 Ditch sprintf to statically-sized buffers in fatal/warn functions in
23321 favor of output directly to stderr (avoids buffer overruns).
23323 * src/reader.c: Some checks for premature EOF.
23325 * 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:
23326 Use prototypes if the compiler understands them.
23328 * src/files.c: Honor TMPDIR on Unix hosts.
23329 Use prototypes if the compiler understands them.
23332 Fix a couple of buffer overrun bugs.
23333 Use prototypes if the compiler understands them.
23335 * src/system.h: Include unistd.h and ctype.h.
23336 Use #ifdef instead of #if for NLS symbols.
23338 1998-12-30 Jesse Thilo <jthilo@gnu.org>
23340 * doc/bison.texinfo:
23341 Delete comment "consider using @set for edition number, etc..." since
23342 we now are doing so.
23344 1998-12-30 Jesse Thilo <jthilo@gnu.org>
23347 Use prototypes if the compiler understands them.
23349 * NEWS: Document 1.26 highlights.
23351 * Makefile.am: Require Automake 1.3 or later.
23354 Use prototypes if the compiler understands them.
23356 1998-12-29 Jesse Thilo <jthilo@gnu.org>
23359 Use VERSION symbol from automake for version number.
23361 1998-12-29 Jesse Thilo <jthilo@gnu.org>
23363 * acconfig.h, configure.in, version.cin:
23364 Use VERSION symbol from automake for version number.
23366 1998-11-28 Jesse Thilo <jthilo@gnu.org>
23369 Distribute original version of simple parser (bison.s1), not built
23370 version (bison.simple).
23372 1998-11-28 Jesse Thilo <jthilo@gnu.org>
23374 * doc/bison.texinfo: Add info dir entry.
23376 * doc/bison.texinfo:
23377 Let automake put version number into documentation.
23379 1998-11-26 Jesse Thilo <jthilo@gnu.org>
23381 * src/bison.cld, src/build.com, src/vmshlp.mar:
23382 Add non-RCS files from /gd/gnu/bison.
23384 1998-11-26 Jesse Thilo <jthilo@gnu.org>
23387 Document the BISON_HAIRY and BISON_SIMPLE variables.
23389 1998-11-25 Jesse Thilo <jthilo@gnu.org>
23391 * src/version.c: Build version.c automatically.
23394 Fix token numbering (used to start at 258, not 257).
23396 * src/system.h: Include config.h.
23398 * src/getargs.c: Update bug report address.
23400 * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h:
23401 Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org.
23403 1998-11-25 Jesse Thilo <jthilo@gnu.org>
23406 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23408 * configure.in, version.cin:
23409 Build version.c automatically.
23411 * AUTHORS: Add AUTHORS file.
23413 * README: Update bug report address.
23416 Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1).
23418 * configure.in, Makefile.am, Makefile.in, stamp-h.in:
23419 Add automake stuff.
23421 1998-11-25 Jesse Thilo <jthilo@gnu.org>
23423 * doc/bison.texinfo: Clean up some formatting.
23425 1998-05-05 Richard Stallman <rms@gnu.org>
23427 * doc/bison.texinfo:
23428 Explain better why to make a pure parser.
23430 1998-01-05 Richard Stallman <rms@gnu.org>
23432 * src/files.c (openfiles):
23433 [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to
23434 find a temporary directory, if possible. Do not unlink files while
23437 1997-08-25 Richard Stallman <rms@gnu.org>
23439 * src/reader.c (stack_offset;):
23440 Change some warni to warns.
23442 * src/lex.c (literalchar): Use warns, not warni.
23444 1997-06-28 Richard Stallman <rms@gnu.org>
23446 * src/bison.s1: Add a Bison version comment.
23448 * src/main.c (fatal, warn, berror):
23451 1997-06-28 Richard Stallman <rms@gnu.org>
23453 * Makefile.in (bison_version): New variable.
23454 (dist): Use that variable.
23455 (bison.s1): Substitute the Bison version into bison.simple.
23457 * bison.simple: Add a Bison version comment.
23459 1997-06-18 Richard Stallman <rms@gnu.org>
23461 * src/main.c (fatal, warn, berror):
23462 Make error messages standard.
23463 (toomany): Improve error message text.
23465 * 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:
23466 new.h renamed to alloc.h.
23468 1997-06-18 Richard Stallman <rms@gnu.org>
23470 * Makefile.in: new.h renamed to alloc.h.
23472 1997-05-24 Richard Stallman <rms@gnu.org>
23474 * src/lex.c (literalchar):
23475 Fix the code for escaping \, " and '.
23477 (lex): Avoid trouble when there are many chars
23478 to discard in a char literal with just several chars in it.
23480 1997-05-17 Richard Stallman <rms@gnu.org>
23483 Use malloc, if using alloca is troublesome.
23484 (YYSTACK_USE_ALLOCA): New flag macro.
23485 Define it for some systems and compilers.
23486 (YYSTACK_ALLOC): New macro.
23487 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23488 If it was malloc'd, free it.
23490 1997-05-17 Richard Stallman <rms@gnu.org>
23493 Use malloc, if using alloca is troublesome.
23494 (YYSTACK_USE_ALLOCA): New flag macro.
23495 Define it for some systems and compilers.
23496 (YYSTACK_ALLOC): New macro.
23497 (yyparse): Use YYSTACK_ALLOC to allocate stack.
23498 If it was malloc'd, free it.
23500 1997-04-23 Richard Stallman <rms@gnu.org>
23503 (alloca) [__hpux]: Always define as __builtin_alloca.
23505 1997-04-23 Richard Stallman <rms@gnu.org>
23508 (alloca) [__hpux]: Always define as __builtin_alloca.
23510 1997-04-22 Richard Stallman <rms@gnu.org>
23513 [__hpux]: Include alloca.h (right for HPUX 10)
23514 instead of declaring alloca (right for HPUX 9).
23516 * src/bison.s1 (__yy_memcpy):
23517 Declare arg `count' as unsigned int.
23518 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23520 1997-04-22 Richard Stallman <rms@gnu.org>
23523 [__hpux]: Include alloca.h (right for HPUX 10)
23524 instead of declaring alloca (right for HPUX 9).
23526 * bison.simple (__yy_memcpy):
23527 Declare arg `count' as unsigned int.
23528 (yyparse): Cast third arg to __yy_memcpy to unsigned int.
23530 1997-01-03 Richard Stallman <rms@gnu.org>
23532 * src/allocate.c: [__STDC__ or _MSC_VER]:
23533 Declare calloc and realloc to return void *.
23535 1997-01-02 Richard Stallman <rms@gnu.org>
23538 [_MSC_VER]: Include stdlib.h and process.h.
23539 [_MSC_VER] (getpid): Define as macro--translate it to _getpid.
23541 * src/main.c (main): Return FAILURE as a value.
23542 (printable_version): Declare arg as int, not char.
23544 1997-01-02 Richard Stallman <rms@gnu.org>
23546 * Makefile.in (dist):
23547 Explicitly check for symlinks, and copy them.
23549 1996-12-19 Richard Stallman <rms@gnu.org>
23552 [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined.
23554 1996-12-18 Paul Eggert <eggert@gnu.org>
23556 * src/bison.s1 (yyparse):
23557 If __GNUC__ and YYPARSE_PARAM are both defined,
23558 declare yyparse to have a void * argument.
23560 1996-12-18 Paul Eggert <eggert@gnu.org>
23562 * bison.simple (yyparse):
23563 If __GNUC__ and YYPARSE_PARAM are both defined,
23564 declare yyparse to have a void * argument.
23566 1996-12-17 Richard Stallman <rms@gnu.org>
23568 * src/reduce.c (nbits): Add some casts.
23570 1996-08-12 Richard Stallman <rms@gnu.org>
23572 * src/bison.s1: Test _MSDOS as well as _MSDOS_.
23574 1996-08-12 Richard Stallman <rms@gnu.org>
23576 * bison.simple: Test _MSDOS as well as _MSDOS_.
23578 1996-07-31 Richard Stallman <rms@gnu.org>
23581 [__sun && __i386]: Include alloca.h.
23583 1996-07-31 Richard Stallman <rms@gnu.org>
23586 [__sun && __i386]: Include alloca.h.
23588 1996-07-30 Richard Stallman <rms@gnu.org>
23590 * src/bison.s1: Comment change.
23592 * src/bison.s1: Test _MSDOS_, not MSDOS.
23594 1996-07-30 Richard Stallman <rms@gnu.org>
23596 * bison.simple: Comment change.
23598 * bison.simple: Test _MSDOS_, not MSDOS.
23600 1996-06-01 Richard Stallman <rms@gnu.org>
23602 * 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:
23603 Insert `_' macro around many string constants.
23606 Insert `_' macro around many string constants.
23608 (main): Call setlocale, bindtextdomain and textdomain.
23610 * src/system.h: [HAVE_LOCALE_H]: Include locale.h.
23611 [! HAVE_LOCALE_H] (setlocale): Define as no-op.
23612 [ENABLE_NLS]: Include libintl.h.
23613 [ENABLE_NLS] (gettext): Define.
23614 [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions.
23615 (N_, PACKAGE, LOCALEDIR): New macros.
23617 1996-06-01 Richard Stallman <rms@gnu.org>
23619 * POTFILES.in: New file.
23621 * Makefile.in (allocate.o):
23622 Define target explicitly.
23624 * Makefile.in (CFLAGS): Set to @CFLAGS@.
23625 (LDFLAGS): Set to @LDFLAGS@.
23626 (configure): Run autoconf only if preceding `cd' succeeds.
23627 (bison.s1): Redirect output to temporary file then move the
23628 temporary to the target, rather than redirecting directly to bison.s1.
23629 (clean): Remove config.status and config.log.
23630 (distclean): Don't remove config.status here.
23632 1996-05-12 Richard Stallman <rms@gnu.org>
23635 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23637 1996-05-12 Richard Stallman <rms@gnu.org>
23640 (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t.
23642 1996-05-11 Richard Stallman <rms@gnu.org>
23644 * src/bison.s1 (__yy_memcpy):
23645 Really reorder the args, as was supposedly done on Feb 14 1995.
23646 (yyparse): Calls changed accordingly.
23648 1996-05-11 Richard Stallman <rms@gnu.org>
23650 * Makefile.in (dist): Don't use $(srcdir).
23652 * bison.simple (__yy_memcpy):
23653 Really reorder the args, as was supposedly done on Feb 14 1995.
23654 (yyparse): Calls changed accordingly.
23656 1996-01-27 Richard Stallman <rms@gnu.org>
23658 * src/output.c (output_rule_data):
23659 Test YYERROR_VERBOSE in the conditional
23660 around the definition of ttyname.
23662 1995-12-29 Richard Stallman <rms@gnu.org>
23665 Fix line numbers in #line commands.
23667 1995-12-29 Richard Stallman <rms@gnu.org>
23670 Fix line numbers in #line commands.
23672 1995-12-27 Richard Stallman <rms@gnu.org>
23674 * src/bison.s1 (YYPARSE_PARAM_DECL):
23675 In C++, make it always null.
23676 (YYPARSE_PARAM_ARG): New macro.
23677 (yyparse): Use YYPARSE_PARAM_ARG.
23679 1995-12-27 Richard Stallman <rms@gnu.org>
23681 * bison.simple (YYPARSE_PARAM_DECL):
23682 In C++, make it always null.
23683 (YYPARSE_PARAM_ARG): New macro.
23684 (yyparse): Use YYPARSE_PARAM_ARG.
23686 1995-11-29 Richard Stallman <rms@gnu.org>
23688 * doc/bison.texinfo:
23689 Describe literal string tokens, %raw, %no_lines, %token_table.
23691 1995-11-29 Daniel Hagerty <hag@gnu.org>
23693 * doc/bison.texinfo: Fixed update date
23695 1995-10-16 Richard Stallman <rms@gnu.org>
23697 * src/version.c: Version 1.25.
23699 1995-10-16 Richard Stallman <rms@gnu.org>
23701 * NEWS: *** empty log message ***
23703 1995-10-16 Richard Stallman <rms@gnu.org>
23705 * doc/bison.1, doc/bison.rnh:
23708 1995-10-15 Richard Stallman <rms@gnu.org>
23710 * src/vmsgetargs.c, src/getargs.c:
23711 Added -n, -k, and -raw switches.
23712 (noparserflag, toknumflag, rawtoknumflag): New variables.
23714 * src/symtab.h (SALIAS):
23715 New #define for adding aliases to %token.
23716 (struct bucket): Added `alias' field.
23718 * src/reduce.c (reduce_grammar):
23719 Revise error message.
23720 (print_notices): Remove final `.' from error message.
23722 * src/reader.c (reader_output_yylsp):
23724 (readgram): Use `#if 0' around code that accepted %command
23725 inside grammar rules: The documentation doesn't allow it,
23726 and it will fail since the %command processors scan for the next %.
23727 (parse_token_decl): Extended the %token
23728 declaration to allow a multi-character symbol as an alias.
23729 (parse_thong_decl): New function.
23730 (read_declarations): Added %thong declarations.
23731 (read_declarations): Handle NOOP to deal with allowing
23732 % declarations as another means to specify the flags.
23733 (readgram): Allow %prec prior to semantics embedded in a rule.
23734 (skip_to_char, read_declarations, copy_definition)
23735 (parse_token_decl, parse_start_decl, parse_type_decl)
23736 (parse_assoc_decl, parse_union_decl, parse_expect_decl)
23737 (get_type_name, copy_guard, copy_action, readgram)
23738 (get_type, packsymbols): Revised most error messages.
23739 Changed `fatal' to `warnxxx' to avoid aborting for error.
23740 Revised and use multiple warnxxx functions to avoid using VARARGS1.
23741 (read_declarations): Improve the error message for
23742 an invalid character. Do not abort.
23743 (read_declarations, copy_guard, copy_action): Use
23744 printable_version to avoid unprintable characters in printed output.
23745 (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
23746 (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):
23747 Allow the type of a non-terminal can be given
23748 more than once, as long as all specifications give the same type.
23751 (output_headers, output_trailers, output, output_gram)
23752 (output_rule_data): Implement noparserflag variable.
23753 Implement toknumflag variable.
23754 (output): Call reader_output_yylsp to output LTYPESTR.
23756 * src/main.c (main):
23757 If reader sees an error, don't process the grammar.
23758 (fatals): Updated to not use VARARGS1.
23759 (printable_version, int_to_string, warn, warni, warns, warnss)
23760 (warnsss): New error reporting functions. Avoid abort for error.
23763 Added THONG and NOOP for alias processing.
23764 Added SETOPT for the new code that allows setting options with %flags.
23767 Include getopt.h. Add some extern decls.
23768 (safegetc): New function to deal with EOF gracefully.
23769 (literalchar); new function to deal with reading \ escapes.
23770 (lex): Use literalchar.
23771 (lex): Implemented "..." tokens.
23772 (literalchar, lex, parse_percent_token): Made tokenbuffer
23773 always contain the token. This includes growing the token
23774 buffer while reading an integer.
23775 (parse_percent_token): Replaced if-else statement with percent_table.
23776 (parse_percent_token): Added % declarations as another
23777 way to specify the flags -n, -l, and -r. Also added hooks for
23778 -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
23779 major changes to files.c.
23780 (lex) Retain in the incoming stream a character following
23782 (skip_white_space, lex): Revised most error messages
23783 and changed fatal to warn to avoid aborting.
23784 (percent_table): Added %thong declarations.
23786 * src/gram.h: Comment changes.
23788 * src/files.c (openfiles, open_extra_files, done):
23790 and actfile file. Handle noparserflag. Both for -n switch.
23792 * src/conflicts.c (resolve_sr_conflict):
23793 Remove use of alloca.
23795 1995-06-01 Jim Meyering <meyering@gnu.org>
23797 * doc/bison.texinfo: *** empty log message ***
23799 1995-05-06 Richard Stallman <rms@gnu.org>
23801 * src/bison.s1: Comment change.
23803 1995-05-06 Richard Stallman <rms@gnu.org>
23805 * bison.simple: Comment change.
23807 1995-05-03 Richard Stallman <rms@gnu.org>
23809 * src/version.c: Version now 1.24.
23811 * src/bison.s1: Change distribution terms.
23813 * src/version.c: Version now 1.23.
23815 1995-05-03 Richard Stallman <rms@gnu.org>
23817 * doc/bison.texinfo:
23818 Rewrite "Conditions for Using Bison".
23819 Update version to 1.24.
23821 1995-05-03 Richard Stallman <rms@gnu.org>
23823 * bison.simple: Change distribution terms.
23825 1995-02-23 Richard Stallman <rms@gnu.org>
23827 * src/files.c: Test __VMS_POSIX as well as VMS.
23829 1995-02-14 Jim Meyering <meyering@gnu.org>
23831 * src/bison.s1 (__yy_memcpy):
23832 Renamed from __yy_bcopy to avoid
23833 confusion. Reverse FROM and TO arguments to be consistent with
23836 1995-02-14 Jim Meyering <meyering@gnu.org>
23838 * bison.simple (__yy_memcpy):
23839 Renamed from __yy_bcopy to avoid
23840 confusion. Reverse FROM and TO arguments to be consistent with
23843 1994-11-10 David J. MacKenzie <djm@gnu.org>
23849 * Makefile.in (DISTFILES): Include NEWS.
23851 * Makefile.in (DISTFILES):
23852 Include install-sh, not install.sh.
23854 * configure.in: Update to Autoconf v2 macro names.
23856 1994-10-05 David J. MacKenzie <djm@gnu.org>
23858 * Makefile.in: fix typo
23860 * Makefile.in (prefix, exec_prefix):
23861 Let configure set them.
23863 1994-09-28 David J. MacKenzie <djm@gnu.org>
23865 * Makefile.in: Set datadir to $(prefix)/share.
23867 1994-09-15 Richard Stallman <rms@gnu.org>
23870 Update copyright notice and GPL version.
23872 1994-09-15 Richard Stallman <rms@gnu.org>
23875 Update copyright notice and GPL version.
23877 1994-07-12 Richard Stallman <rms@gnu.org>
23879 * src/reduce.c, src/reader.c:
23882 1994-05-05 David J. MacKenzie <djm@gnu.org>
23884 * Makefile.in: entered into RCS
23886 1994-03-26 Richard Stallman <rms@gnu.org>
23888 * src/bison.s1: entered into RCS
23890 1994-03-26 Richard Stallman <rms@gnu.org>
23892 * bison.simple: entered into RCS
23894 1994-03-25 Richard Stallman <rms@gnu.org>
23896 * src/main.c: entered into RCS
23898 1994-03-24 Richard Stallman <rms@gnu.org>
23900 * src/conflicts.c: entered into RCS
23902 1994-01-02 Richard Stallman <rms@gnu.org>
23904 * Makefile.in: *** empty log message ***
23906 1993-11-21 Richard Stallman <rms@gnu.org>
23908 * src/bison.s1: *** empty log message ***
23910 1993-11-21 Richard Stallman <rms@gnu.org>
23912 * doc/bison.texinfo: entered into RCS
23914 * doc/bison.texinfo: *** empty log message ***
23916 1993-11-21 Richard Stallman <rms@gnu.org>
23918 * bison.simple: *** empty log message ***
23920 1993-10-25 David J. MacKenzie <djm@gnu.org>
23922 * doc/bison.texinfo: *** empty log message ***
23924 1993-10-19 Richard Stallman <rms@gnu.org>
23926 * src/bison.s1: *** empty log message ***
23928 1993-10-19 Richard Stallman <rms@gnu.org>
23930 * bison.simple: *** empty log message ***
23932 1993-10-14 Richard Stallman <rms@gnu.org>
23934 * src/bison.s1: *** empty log message ***
23936 1993-10-14 Richard Stallman <rms@gnu.org>
23938 * bison.simple: *** empty log message ***
23940 1993-09-14 David J. MacKenzie <djm@gnu.org>
23942 * doc/bison.texinfo: *** empty log message ***
23944 1993-09-13 Noah Friedman <friedman@gnu.org>
23946 * Makefile.in: *** empty log message ***
23948 1993-09-10 Richard Stallman <rms@gnu.org>
23950 * src/conflicts.c: *** empty log message ***
23952 * src/system.h: entered into RCS
23954 1993-09-10 Richard Stallman <rms@gnu.org>
23956 * doc/bison.1: entered into RCS
23958 1993-09-06 Noah Friedman <friedman@gnu.org>
23960 * src/version.c: entered into RCS
23962 1993-09-06 Noah Friedman <friedman@gnu.org>
23964 * Makefile.in: *** empty log message ***
23966 1993-07-30 David J. MacKenzie <djm@gnu.org>
23968 * Makefile.in: *** empty log message ***
23970 1993-07-24 Richard Stallman <rms@gnu.org>
23972 * src/bison.s1: *** empty log message ***
23974 1993-07-24 Richard Stallman <rms@gnu.org>
23976 * bison.simple: *** empty log message ***
23978 1993-07-08 David J. MacKenzie <djm@gnu.org>
23980 * Makefile.in: *** empty log message ***
23982 1993-07-04 Richard Stallman <rms@gnu.org>
23984 * src/bison.s1: *** empty log message ***
23986 1993-07-04 Richard Stallman <rms@gnu.org>
23988 * bison.simple: *** empty log message ***
23990 1993-06-26 David J. MacKenzie <djm@gnu.org>
23992 * src/getargs.c: entered into RCS
23994 1993-06-26 David J. MacKenzie <djm@gnu.org>
23996 * doc/bison.texinfo: *** empty log message ***
23998 * doc/bison.1: New file.
24000 1993-06-25 Richard Stallman <rms@gnu.org>
24002 * src/getargs.c: New file.
24004 1993-06-16 Richard Stallman <rms@gnu.org>
24006 * src/bison.s1: *** empty log message ***
24008 1993-06-16 Richard Stallman <rms@gnu.org>
24010 * bison.simple: *** empty log message ***
24012 1993-06-03 Richard Stallman <rms@gnu.org>
24014 * src/bison.s1: New file.
24016 1993-06-03 Richard Stallman <rms@gnu.org>
24018 * doc/bison.texinfo: *** empty log message ***
24020 1993-06-03 Richard Stallman <rms@gnu.org>
24022 * bison.simple: New file.
24024 1993-05-19 Richard Stallman <rms@gnu.org>
24026 * doc/bison.texinfo: New file.
24028 1993-05-07 Noah Friedman <friedman@gnu.org>
24030 * Makefile.in: *** empty log message ***
24032 1993-04-28 Noah Friedman <friedman@gnu.org>
24034 * src/reader.c: *** empty log message ***
24036 1993-04-23 Noah Friedman <friedman@gnu.org>
24038 * src/alloc.h: entered into RCS
24040 1993-04-20 David J. MacKenzie <djm@gnu.org>
24042 * src/version.c: *** empty log message ***
24044 * src/files.c, src/allocate.c:
24047 * src/reader.c: *** empty log message ***
24049 * src/lex.c: entered into RCS
24051 * src/conflicts.c: New file.
24053 * src/symtab.c: entered into RCS
24055 * src/alloc.h: New file.
24057 * src/LR0.c: entered into RCS
24059 1993-04-18 Noah Friedman <friedman@gnu.org>
24061 * src/reader.c: New file.
24063 * src/version.c: *** empty log message ***
24065 1993-04-18 Noah Friedman <friedman@gnu.org>
24067 * Makefile.in: *** empty log message ***
24069 1993-04-17 Noah Friedman <friedman@gnu.org>
24071 * Makefile.in: *** empty log message ***
24073 1993-04-15 Richard Stallman <rms@gnu.org>
24075 * src/main.c, src/files.c:
24078 1993-04-15 Noah Friedman <friedman@gnu.org>
24080 * configure.in: entered into RCS
24082 * configure.in: *** empty log message ***
24084 * configure.in: New file.
24086 1993-04-14 Richard Stallman <rms@gnu.org>
24088 * Makefile.in: New file.
24090 1993-04-13 Richard Stallman <rms@gnu.org>
24092 * src/version.c: New file.
24094 1993-03-25 Richard Stallman <rms@gnu.org>
24096 * src/output.c: entered into RCS
24098 1992-09-25 Richard Stallman <rms@gnu.org>
24100 * configure.bat: entered into RCS
24102 1992-06-22 Richard Stallman <rms@gnu.org>
24104 * src/vmsgetargs.c: entered into RCS
24106 1992-06-22 Richard Stallman <rms@gnu.org>
24108 * doc/bison.rnh: entered into RCS
24110 1992-04-20 David J. MacKenzie <djm@gnu.org>
24112 * README: entered into RCS
24114 1992-01-22 Richard Stallman <rms@gnu.org>
24116 * src/machine.h: entered into RCS
24118 1991-12-21 Richard Stallman <rms@gnu.org>
24120 * src/lalr.c, src/closure.c:
24123 1991-12-20 Richard Stallman <rms@gnu.org>
24125 * src/state.h: entered into RCS
24127 1991-12-18 Richard Stallman <rms@gnu.org>
24129 * src/print.c, src/nullable.c, src/derives.c:
24132 1991-11-03 David J. MacKenzie <djm@gnu.org>
24134 * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h:
24137 1988-09-09 Richard Stallman <rms@gnu.org>
24139 * src/bison.hairy: entered into RCS
24141 1987-12-16 Richard Stallman <rms@gnu.org>
24143 * REFERENCES: entered into RCS
24148 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996,
24149 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
24150 2008, 2009 Free Software Foundation, Inc.
24152 Copying and distribution of this file, with or without
24153 modification, are permitted provided the copyright notice and this
24154 notice are preserved.